From cacc9faceee9d33b5e0022d2abd5159fe30d1580 Mon Sep 17 00:00:00 2001 From: Sven Greb Date: Thu, 12 May 2022 10:26:12 +0200 Subject: [PATCH 1/5] Update to `tmpl` template repository version `0.11.0` (#87) Updated to `tmpl` version `0.11.0` [1], including the versions in between starting from 0.10.0 [2]: 1. Optimized GitHub action workflow scope [3]. 2. Updated Node.js packages & GitHub actions [4] [^1] [^2]. 3. Opts-in the Dependabot version update configuration [5]. 4. Migrated to Markdown style guide version 0.4.0 [6]. This also includes changes required for any linter matches. [1]: https://github.com/svengreb/tmpl/releases/tag/v0.11.0 [2]: https://github.com/svengreb/tmpl/releases/tag/v0.10.0 [3]: https://github.com/svengreb/tmpl/issues/84 [4]: https://github.com/svengreb/tmpl/issues/86 [5]: https://github.com/svengreb/tmpl/issues/94 [6]: https://github.com/svengreb/tmpl/issues/76 [^1]: https://github.com/svengreb/tmpl/issues/78 [^2]: https://github.com/svengreb/tmpl/issues/83 Co-authored-by: Sven Greb GH-86 --- .github/dependabot.yml | 40 ------------------- .github/workflows/{ci.yml => ci-node.yaml} | 31 +++++++++----- README.md | 2 +- assets/images/badge.ai | 0 assets/images/badge.svg | 0 .../eslint-config-base/repository-hero.ai | 0 .../eslint-config-base/repository-hero.svg | 0 .../repository-hero.ai | 0 .../repository-hero.svg | 0 .../eslint-config/repository-hero.ai | 0 .../eslint-config/repository-hero.svg | 0 assets/images/repository-hero.ai | 0 assets/images/repository-hero.svg | 0 package.json | 16 ++++---- 14 files changed, 32 insertions(+), 57 deletions(-) delete mode 100644 .github/dependabot.yml rename .github/workflows/{ci.yml => ci-node.yaml} (61%) mode change 100755 => 100644 assets/images/badge.ai mode change 100755 => 100644 assets/images/badge.svg mode change 100755 => 100644 assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.ai mode change 100755 => 100644 assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.svg mode change 100755 => 100644 assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.ai mode change 100755 => 100644 assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.svg mode change 100755 => 100644 assets/images/packages/@arcticicestudio/eslint-config/repository-hero.ai mode change 100755 => 100644 assets/images/packages/@arcticicestudio/eslint-config/repository-hero.svg mode change 100755 => 100644 assets/images/repository-hero.ai mode change 100755 => 100644 assets/images/repository-hero.svg diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 4b12a01..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. - -# Configuration for the native Dependabot integration. -# -# References: -# 1. https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates -# 2. https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/about-dependabot-version-updates -# 3. https://docs.github.com/en/free-pro-team@latest/github/managing-security-vulnerabilities/about-dependabot-security-updates -# 4. https://github.com/features#features-security - -version: 2 -updates: - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - reviewers: - - "arcticicestudio" - - "svengreb" - labels: - - "scope-quality" - - "scope-security" - - "target-base" - - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "monthly" - allow: - # Check all explicitly defined dependencies. - - dependency-type: "direct" - reviewers: - - "arcticicestudio" - - "svengreb" - labels: - - "scope-quality" - - "scope-security" - - "target-base" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci-node.yaml similarity index 61% rename from .github/workflows/ci.yml rename to .github/workflows/ci-node.yaml index c460ee5..23d7610 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci-node.yaml @@ -1,20 +1,32 @@ -# Copyright (c) 2018-present Arctic Ice Studio # Copyright (c) 2018-present Sven Greb # This source code is licensed under the MIT license found in the LICENSE file. # GitHub Action Workflow for continuous integration jobs. # See https://docs.github.com/en/actions and https://github.com/features/actions for more details. -name: ci +name: ci-node on: push: + paths: + - "**.js" + - "**.json" + - "**.md" + - "**.yaml" + - "**.yml" branches: - main tags: - v* pull_request: + paths: + - "**.js" + - "**.json" + - "**.md" + - "**.yaml" + - "**.yml" + jobs: - lint-node: + lint: runs-on: ubuntu-latest steps: - name: Print metadata and context information @@ -24,11 +36,12 @@ jobs: echo "Workflow Actor: $GITHUB_ACTOR" - name: Checkout repository uses: actions/checkout@v2 - - name: "Setup Node.js version 15" - uses: actions/setup-node@v2.1.5 + - name: Setup Node.js version 16 + uses: actions/setup-node@v2.4.1 with: - node-version: "15" + node-version: "16" + cache: "npm" - name: Install Node modules - run: npm install - - name: Run linters - run: npm run lint + run: npm install --no-package-lock + - name: Run linters in CI/CD mode + run: npm run lint:ci diff --git a/README.md b/README.md index d52e58a..4802350 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@

-

+

Every major open source project has its own style guide, a set of standards and conventions for the writing and design of code, documentations and assets. It is much easier to understand a large codebase when all the code in it is in a consistent style. diff --git a/assets/images/badge.ai b/assets/images/badge.ai old mode 100755 new mode 100644 diff --git a/assets/images/badge.svg b/assets/images/badge.svg old mode 100755 new mode 100644 diff --git a/assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.ai b/assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.ai old mode 100755 new mode 100644 diff --git a/assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.svg b/assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.svg old mode 100755 new mode 100644 diff --git a/assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.ai b/assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.ai old mode 100755 new mode 100644 diff --git a/assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.svg b/assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.svg old mode 100755 new mode 100644 diff --git a/assets/images/packages/@arcticicestudio/eslint-config/repository-hero.ai b/assets/images/packages/@arcticicestudio/eslint-config/repository-hero.ai old mode 100755 new mode 100644 diff --git a/assets/images/packages/@arcticicestudio/eslint-config/repository-hero.svg b/assets/images/packages/@arcticicestudio/eslint-config/repository-hero.svg old mode 100755 new mode 100644 diff --git a/assets/images/repository-hero.ai b/assets/images/repository-hero.ai old mode 100755 new mode 100644 diff --git a/assets/images/repository-hero.svg b/assets/images/repository-hero.svg old mode 100755 new mode 100644 diff --git a/package.json b/package.json index 339b563..d9e4933 100644 --- a/package.json +++ b/package.json @@ -21,8 +21,8 @@ "license": "MIT", "private": true, "engines": { - "node": "^15.13.0", - "npm": "^7.7.0" + "node": ">=15.13", + "npm": ">=7.7" }, "workspaces": [ "packages/@arcticicestudio/*" @@ -38,8 +38,10 @@ "format:fix": "eslint --fix .", "format:pretty": "prettier --write .", "lint": "run-s lint:*", + "lint:ci": "run-s lint:md lint:ci:*", + "lint:ci:pretty": "prettier --loglevel silent --check .", "lint:js": "eslint .", - "lint:md": "remark --no-stdout . .github/**/*.md", + "lint:md": "remark --no-stdout . \".github/**/*.md\"", "lint:pretty": "prettier --check .", "prepare": "run-s prepare:*", "prepare:husky": "husky install", @@ -53,10 +55,10 @@ "eslint-plugin-import": "^2.22.1", "eslint-plugin-prettier": "^3.3.1", "gitbook-cli": "2.3.2", - "husky": "^6.0.0", - "lint-staged": "^10.5.4", + "husky": "^7.0.4", + "lint-staged": "^12.0.4", "npm-run-all": "^4.1.5", - "prettier": "^2.2.1", - "remark-cli": "^9.0.0" + "prettier": "^2.4.1", + "remark-cli": "^10.0.1" } } From 61b554e7ea33ce098e044c02309b2db4eb2295c1 Mon Sep 17 00:00:00 2001 From: Sven Greb Date: Thu, 27 Apr 2023 15:51:09 +0200 Subject: [PATCH 2/5] `svengreb` GitHub account and `@svengreb` npm package scope migration (#89) With the retirement of the "Arctic Ice Studio" personal & Nord project brand [1] this project has also moved to the "real-in-person" identity "Sven Greb" both in the context of the repository to the `svengreb` GitHub account [2] and the `@svengreb` npm package scope. During the migration the current npm packages `@arcticicestudio/eslint-config-base` [3], `@arcticicestudio/eslint-config`[8] and `@arcticicestudio/eslint-config-typescript` [9] were deprecated in favor of the new and upcoming `@svengreb/eslint-config-base`[10], `@svengreb/eslint-config` [11] and `@svengreb/eslint-config-typescript` [12] packages that will be published afterwards. Also the current visual representation of this style guide [6] through the way too outdated and deprecated GitBook [5] major version `2` has been unpublished and removed. The documentations and references have been updated to use the GitHub repository with the Markdown rendering instead for now until a custom website has been implemented using a modern "TechStack" like Next.js [7]. [1]: https://github.com/orgs/nordtheme/discussions/183#retire-arctic-ice-studio-as-nord-brand [2]: https://github.com/svengreb [3]: https://www.npmjs.com/package/@arcticicestudio/eslint-config-base [4]: https://www.npmjs.com/package/@svengreb/remark-preset-lint [5]: https://www.gitbook.com [6]: https://arcticicestudio.github.io/styleguide-markdown [7]: https://nextjs.org [8]: https://www.npmjs.com/package/@arcticicestudio/eslint-config-base [9]: https://www.npmjs.com/package/@arcticicestudio/eslint-config-typescript [10]: https://www.npmjs.com/package/@svengreb/eslint-config-base [11]: https://www.npmjs.com/package/@svengreb/eslint-config [12]: https://www.npmjs.com/package/@svengreb/eslint-config-typescript GH-88 --- .editorconfig | 7 +- .eslintignore | 19 +- .eslintrc.js | 28 +- .gitattributes | 12 +- .github/CODEOWNERS | 19 +- .github/ISSUE_TEMPLATE.md | 13 - .github/ISSUE_TEMPLATE/bugs.md | 86 - .github/ISSUE_TEMPLATE/enhancement.md | 58 - .github/PULL_REQUEST_TEMPLATE.md | 28 - .github/workflows/ci-node.yaml | 8 +- .gitignore | 12 +- .husky/.gitignore | 1 - .husky/pre-commit | 6 +- .mailmap | 7 +- .npmrc | 18 +- .prettierignore | 9 +- .remarkignore | 9 +- .remarkrc.js | 13 +- CHANGELOG.md | 1357 -- CODE_OF_CONDUCT.md | 61 - CONTRIBUTING.md | 199 - README.md | 61 - assets/images/badge.ai | 12618 --------------- assets/images/badge.svg | 10 - .../eslint-config-base/repository-hero.ai | 13025 --------------- .../eslint-config-base/repository-hero.svg | 8 - .../repository-hero.ai | 13161 ---------------- .../repository-hero.svg | 11 - .../eslint-config/repository-hero.ai | 12887 --------------- .../eslint-config/repository-hero.svg | 9 - assets/images/repository-hero.ai | 12812 --------------- assets/images/repository-hero.svg | 9 - changelog.md | 1301 ++ LICENSE => license | 5 +- lint-staged.config.js | 13 +- package-lock.json | 8886 +++++++++++ package.json | 68 +- .../eslint-config-base/README.md | 151 - .../eslint-config-base/package.json | 63 - .../rules/import/module-systems.js | 36 - .../eslint-config-typescript/README.md | 183 - .../eslint-config-typescript/package.json | 64 - .../rules/react/jsx.js | 23 - .../@arcticicestudio/eslint-config/README.md | 144 - .../@arcticicestudio/eslint-config/index.js | 27 - .../eslint-config/package.json | 66 - .../eslint-config/react-hooks.js | 17 - .../eslint-config/rules/react-hooks/index.js | 35 - .../eslint-config-base/index.js | 16 +- .../@svengreb/eslint-config-base/package.json | 65 + .../eslint-config-base/prettier.js | 7 +- .../@svengreb/eslint-config-base/readme.md | 200 + .../rules/best-practices.js | 195 +- .../eslint-config-base/rules/es6.js | 116 +- .../rules/import/helpful-warnings.js | 21 +- .../rules/import/module-systems.js | 34 + .../rules/import/settings.js | 10 +- .../rules/import/static-analysis.js | 38 +- .../eslint-config-base/rules/import/style.js | 44 +- .../rules/node-and-common.js | 9 +- .../rules/possible-errors.js | 87 +- .../rules/prettier/index.js | 6 +- .../eslint-config-base/rules/strict.js | 9 +- .../eslint-config-base/rules/style.js | 274 +- .../eslint-config-base/rules/variables.js | 36 +- .../eslint-config-typescript/index.js | 16 +- .../eslint-config-typescript/package.json | 63 + .../eslint-config-typescript/prettier.js | 11 +- .../eslint-config-typescript/readme.md | 230 + .../rules/import/settings.js | 10 +- .../rules/import/style.js | 10 +- .../rules/prettier/index.js | 6 +- .../rules/react/index.js | 8 +- .../rules/react/jsx.js | 21 + .../rules/typescript/index.js | 10 +- packages/@svengreb/eslint-config/index.js | 18 + packages/@svengreb/eslint-config/package.json | 64 + .../eslint-config/prettier.js | 11 +- .../@svengreb/eslint-config/react-hooks.js | 17 + packages/@svengreb/eslint-config/readme.md | 191 + .../eslint-config/rules/jsx-a11y/index.js | 82 +- .../eslint-config/rules/react-hooks/index.js | 35 + .../eslint-config/rules/react/index.js | 123 +- .../eslint-config/rules/react/jsx.js | 100 +- prettier.config.js | 19 +- readme.md | 115 + {src/rules => rules}/accessors.md | 0 {src/rules => rules}/arrays.md | 18 +- {src/rules => rules}/arrow_functions.md | 25 +- {src/rules => rules}/blocks.md | 12 +- .../classes_and_constructors.md | 8 +- {src/rules => rules}/commas.md | 14 +- {src/rules => rules}/comments.md | 4 +- .../comparison_operators_and_equality.md | 24 +- {src/rules => rules}/control_statements.md | 6 +- {src/rules => rules}/destructuring.md | 6 +- rules/ecmascript_5_compatibility.md | 3 + rules/ecmascript_6+_styles.md | 46 + {src/rules => rules}/events.md | 0 {src/rules => rules}/functions.md | 56 +- {src/rules => rules}/hoisting.md | 10 +- rules/index.md | 216 + .../iterators_and_generators.md | 9 +- {src/rules => rules}/modules.md | 20 +- {src/rules => rules}/naming_conventions.md | 43 +- {src/rules => rules}/objects.md | 24 +- {src/rules => rules}/properties.md | 16 +- .../react/accessibility_a11y.md | 20 +- {src/rules => rules}/react/blocks.md | 4 +- .../react/classes_and_constructors.md | 10 +- .../react/higher_order_components.md | 4 +- {src/rules => rules}/react/index.md | 8 +- {src/rules => rules}/react/methods.md | 46 +- rules/react/naming_conventions.md | 90 + {src/rules => rules}/react/ordering.md | 8 +- {src/rules => rules}/react/props.md | 63 +- rules/react/strings.md | 26 + {src/rules => rules}/react/tags.md | 8 +- {src/rules => rules}/react/whitespace.md | 10 +- {src/rules => rules}/references.md | 10 +- rules/semicolons.md | 70 + {src/rules => rules}/standard_library.md | 10 +- {src/rules => rules}/strings.md | 30 +- {src/rules => rules}/testing.md | 20 +- .../type_casting_and_coercion.md | 23 +- {src/rules => rules}/types.md | 0 {src/rules => rules}/variables.md | 22 +- {src/rules => rules}/whitespace.md | 84 +- src/README.md | 1 - src/SUMMARY.md | 208 - src/assets/react-logo.png | Bin 216799 -> 0 bytes src/book.json | 20 - src/rules/ecmascript_5_compatibility.md | 3 - src/rules/ecmascript_6+_styles.md | 46 - src/rules/index.md | 15 - src/rules/react/naming_conventions.md | 90 - src/rules/react/strings.md | 26 - src/rules/semicolons.md | 70 - src/styles/website.css | 35 - 139 files changed, 12755 insertions(+), 68875 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md delete mode 100644 .github/ISSUE_TEMPLATE/bugs.md delete mode 100644 .github/ISSUE_TEMPLATE/enhancement.md delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md delete mode 100644 .husky/.gitignore delete mode 100644 CHANGELOG.md delete mode 100644 CODE_OF_CONDUCT.md delete mode 100644 CONTRIBUTING.md delete mode 100644 README.md delete mode 100644 assets/images/badge.ai delete mode 100644 assets/images/badge.svg delete mode 100644 assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.ai delete mode 100644 assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.svg delete mode 100644 assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.ai delete mode 100644 assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.svg delete mode 100644 assets/images/packages/@arcticicestudio/eslint-config/repository-hero.ai delete mode 100644 assets/images/packages/@arcticicestudio/eslint-config/repository-hero.svg delete mode 100644 assets/images/repository-hero.ai delete mode 100644 assets/images/repository-hero.svg create mode 100644 changelog.md rename LICENSE => license (84%) create mode 100644 package-lock.json delete mode 100644 packages/@arcticicestudio/eslint-config-base/README.md delete mode 100644 packages/@arcticicestudio/eslint-config-base/package.json delete mode 100644 packages/@arcticicestudio/eslint-config-base/rules/import/module-systems.js delete mode 100644 packages/@arcticicestudio/eslint-config-typescript/README.md delete mode 100644 packages/@arcticicestudio/eslint-config-typescript/package.json delete mode 100644 packages/@arcticicestudio/eslint-config-typescript/rules/react/jsx.js delete mode 100644 packages/@arcticicestudio/eslint-config/README.md delete mode 100644 packages/@arcticicestudio/eslint-config/index.js delete mode 100644 packages/@arcticicestudio/eslint-config/package.json delete mode 100644 packages/@arcticicestudio/eslint-config/react-hooks.js delete mode 100644 packages/@arcticicestudio/eslint-config/rules/react-hooks/index.js rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/index.js (53%) create mode 100644 packages/@svengreb/eslint-config-base/package.json rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/prettier.js (71%) create mode 100644 packages/@svengreb/eslint-config-base/readme.md rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/best-practices.js (60%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/es6.js (52%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/import/helpful-warnings.js (60%) create mode 100644 packages/@svengreb/eslint-config-base/rules/import/module-systems.js rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/import/settings.js (55%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/import/static-analysis.js (54%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/import/style.js (52%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/node-and-common.js (57%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/possible-errors.js (63%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/prettier/index.js (75%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/strict.js (55%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/style.js (59%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-base/rules/variables.js (59%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-typescript/index.js (50%) create mode 100644 packages/@svengreb/eslint-config-typescript/package.json rename packages/{@arcticicestudio => @svengreb}/eslint-config-typescript/prettier.js (65%) create mode 100644 packages/@svengreb/eslint-config-typescript/readme.md rename packages/{@arcticicestudio => @svengreb}/eslint-config-typescript/rules/import/settings.js (50%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-typescript/rules/import/style.js (57%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-typescript/rules/prettier/index.js (75%) rename packages/{@arcticicestudio => @svengreb}/eslint-config-typescript/rules/react/index.js (50%) create mode 100644 packages/@svengreb/eslint-config-typescript/rules/react/jsx.js rename packages/{@arcticicestudio => @svengreb}/eslint-config-typescript/rules/typescript/index.js (80%) create mode 100644 packages/@svengreb/eslint-config/index.js create mode 100644 packages/@svengreb/eslint-config/package.json rename packages/{@arcticicestudio => @svengreb}/eslint-config/prettier.js (60%) create mode 100644 packages/@svengreb/eslint-config/react-hooks.js create mode 100644 packages/@svengreb/eslint-config/readme.md rename packages/{@arcticicestudio => @svengreb}/eslint-config/rules/jsx-a11y/index.js (79%) create mode 100644 packages/@svengreb/eslint-config/rules/react-hooks/index.js rename packages/{@arcticicestudio => @svengreb}/eslint-config/rules/react/index.js (56%) rename packages/{@arcticicestudio => @svengreb}/eslint-config/rules/react/jsx.js (53%) create mode 100644 readme.md rename {src/rules => rules}/accessors.md (100%) rename {src/rules => rules}/arrays.md (80%) rename {src/rules => rules}/arrow_functions.md (77%) rename {src/rules => rules}/blocks.md (82%) rename {src/rules => rules}/classes_and_constructors.md (92%) rename {src/rules => rules}/commas.md (61%) rename {src/rules => rules}/comments.md (95%) rename {src/rules => rules}/comparison_operators_and_equality.md (85%) rename {src/rules => rules}/control_statements.md (92%) rename {src/rules => rules}/destructuring.md (89%) create mode 100644 rules/ecmascript_5_compatibility.md create mode 100644 rules/ecmascript_6+_styles.md rename {src/rules => rules}/events.md (100%) rename {src/rules => rules}/functions.md (77%) rename {src/rules => rules}/hoisting.md (82%) create mode 100644 rules/index.md rename {src/rules => rules}/iterators_and_generators.md (81%) rename {src/rules => rules}/modules.md (80%) rename {src/rules => rules}/naming_conventions.md (77%) rename {src/rules => rules}/objects.md (83%) rename {src/rules => rules}/properties.md (52%) rename {src/rules => rules}/react/accessibility_a11y.md (64%) rename {src/rules => rules}/react/blocks.md (76%) rename {src/rules => rules}/react/classes_and_constructors.md (67%) rename {src/rules => rules}/react/higher_order_components.md (76%) rename {src/rules => rules}/react/index.md (82%) rename {src/rules => rules}/react/methods.md (52%) create mode 100644 rules/react/naming_conventions.md rename {src/rules => rules}/react/ordering.md (90%) rename {src/rules => rules}/react/props.md (57%) create mode 100644 rules/react/strings.md rename {src/rules => rules}/react/tags.md (62%) rename {src/rules => rules}/react/whitespace.md (62%) rename {src/rules => rules}/references.md (76%) create mode 100644 rules/semicolons.md rename {src/rules => rules}/standard_library.md (68%) rename {src/rules => rules}/strings.md (75%) rename {src/rules => rules}/testing.md (64%) rename {src/rules => rules}/type_casting_and_coercion.md (65%) rename {src/rules => rules}/types.md (100%) rename {src/rules => rules}/variables.md (88%) rename {src/rules => rules}/whitespace.md (79%) delete mode 100644 src/README.md delete mode 100644 src/SUMMARY.md delete mode 100644 src/assets/react-logo.png delete mode 100644 src/book.json delete mode 100644 src/rules/ecmascript_5_compatibility.md delete mode 100644 src/rules/ecmascript_6+_styles.md delete mode 100644 src/rules/index.md delete mode 100644 src/rules/react/naming_conventions.md delete mode 100644 src/rules/react/strings.md delete mode 100644 src/rules/semicolons.md delete mode 100644 src/styles/website.css diff --git a/.editorconfig b/.editorconfig index 6ae8b13..f160665 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,5 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Configurations for EditorConfig. # See https://editorconfig.org/#file-format-details for more details. @@ -16,7 +15,7 @@ end_of_line = lf indent_size = 2 indent_style = space insert_final_newline = true -max_line_length = 120 +max_line_length = 160 trim_trailing_whitespace = true # +-----------+ diff --git a/.eslintignore b/.eslintignore index d61a3d1..9b3cc63 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,11 +1,14 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. -# Path match pattern to ignore specific files and directories. -# See https://eslint.org/docs/user-guide/configuring/ignoring-code for more details. +# Path match pattern to ignore (i.e. not lint) certain files and folders. +# References: +# 1. https://eslint.org/docs/latest/use/configure/ignore -build/* -**/node_modules/* -!.eslintrc.js +node_modules/ + +# Explicitly include specific "dotfiles". +# ESLint automatically applies ignore pattern for "dotfiles" by default to prevent accidentally lint over paths like +# `.git` or any other critical paths. +!**/.eslintrc.js !.remarkrc.js diff --git a/.eslintrc.js b/.eslintrc.js index 3937dce..955da88 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,17 +1,31 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Configurations for ESLint. - * - * @see https://eslint.org/docs/user-guide/configuring + * @see https://eslint.org/docs/latest/use/configure + * @see https://eslint.org/docs/latest/use/configure/#using-configuration-files + * @see https://eslint.org/docs/latest/use/configure/#specifying-environments + * @see https://eslint.org/docs/latest/rules */ module.exports = { extends: [ - "./packages/@arcticicestudio/eslint-config-base/index.js", - "./packages/@arcticicestudio/eslint-config/prettier.js", + "./packages/@svengreb/eslint-config-base/index.js", + /* + * Enable support for projects using Prettier. + * Note that this must always be placed after the `@arcticicestudio/eslint-config-base` preset to take precedence, otherwise it won't prevent errors + * due to useless and possibly conflicting rules! + */ + "./packages/@svengreb/eslint-config/prettier.js", + ], + overrides: [ + { + files: ["*.js"], + rules: { + "capitalized-comments": "off", + }, + }, ], }; diff --git a/.gitattributes b/.gitattributes index 48f4b56..314fa3f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,9 +1,7 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Configuration to define attributes per path. -# # References: # 1. https://git-scm.com/docs/gitattributes # 2. https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#Keyword-Expansion @@ -11,9 +9,3 @@ # Automatically perform line feed (LF) normalization for files detected as text and # leave all files detected as binary untouched. * text=auto eol=lf - -# +--------+ -# + Assets + -# +--------+ -*.ai binary -*.png binary diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 4f0f40e..84b72ae 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,15 +1,14 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. -# Configuration for the GitHub feature to automatically request reviews from the code owners when a pull request -# changes any owned files. +# Configuration for the GitHub feature to automatically request reviews from the code owners +# when a pull request changes any owned files. # # References: -# 1. https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners +# 1. https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-file-location # 2. https://github.com/blog/2392-introducing-code-owners -# +--------------------+ -# + Default Code Owner + -# +--------------------+ -* @arcticicestudio @svengreb +# +----------------------+ +# + Core Team Code Owner + +# +----------------------+ +* @svengreb diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 90f5733..0000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,13 +0,0 @@ - - -> **Please read the [contribution guidelines](https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md) before filling out this issue template**. - -## [Please follow one of the issue templates](https://github.com/arcticicestudio/styleguide-javascript/issues/new/choose) - -To keep the backlog clean and actionable, issues should be opened using [one the provided issue templates](https://github.com/arcticicestudio/styleguide-javascript/issues/new/choose) to help maintainers and the community to understand it, find related reports and to resolve tickets faster. - -### Support - -If you got a question or need help with any aspect of the project feel free to ask and ensure to read the [extensive project documentations](https://arcticicestudio.github.io/styleguide-javascript). - -You can also search for already opened and related issue using the search for the [“question“](https://github.com/arcticicestudio/styleguide-javascript/labels/type-question) issue label. diff --git a/.github/ISSUE_TEMPLATE/bugs.md b/.github/ISSUE_TEMPLATE/bugs.md deleted file mode 100644 index bca532a..0000000 --- a/.github/ISSUE_TEMPLATE/bugs.md +++ /dev/null @@ -1,86 +0,0 @@ ---- -name: Bug Report -about: Report a bug that is caused by the code in this repository ---- - - - -> **Please read the [contribution guidelines](https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md) before filling out this issue template**. - -## Prerequisites - -This section and the instructions in the sections below are only part of this issue template. Please ensure to **delete this whole section, all pre-filled instructions of the sections below and sections you have not filled out before submitting** to ensure a clear structure and overview. - -Please do your best to provide as much information as possible and use a clear and descriptive title for your bug report to help maintainers and the community understand and reproduce the behavior, find related reports and to resolve the ticket faster. - -- **Ensure the bug has not already been reported by using the [GitHub Issues search](https://github.com/arcticicestudio/styleguide-javascript/issues)** — check if this enhancement has already been suggested. If it has **and the issue is still open**, add your additions as comment to the existing issue instead of opening a new one. If you find a closed issue that seems to be similar to this one, include a link to the original issue in the [metadata head](#metadata-head) section of this issue. -- **Ensure the bug is reproducible and has not already been fixed** — use the [latest version](https://github.com/arcticicestudio/styleguide-javascript/releases/latest) and [`main`](https://github.com/arcticicestudio/styleguide-javascript/tree/main) branch. - -## Metadata Head - -The metadata head can be added to the top of the issue as [Markdown text quote](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax) containing the the ID of other related issues. - -> Related issues: - -## Description - -Describe the bug as in many relevant details as possible with a clear and concise description. Ensure to fill in the [steps to reproduce](#steps-to-reproduce) it. - -### Steps to Reproduce - -1. Step One -2. Step Two -3. ... - -### Expected Behavior - -What you expect to happen? - -### Actual Behavior - -What actually happens? - -## Example - -Provide a [MCVE - The Minimal, Complete, and Verifiable Example](https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#mcve) - -**This is a optional section, but it can drastically increase the speed at which this issue can be processed since it takes away the time-consuming reconstruction to reproduce the bug.** -The recommended way is to upload it as [Gist](https://gist.github.com) or new repository to GitHub, but of course you can [attach it to this issue](https://docs.github.com/en/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests), use any free file hosting service or paste the code in [Markdown code blocks](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax) into this issue. - -## Environment and Versions - -- What is the version of styleguide-javascript you are using? -- What is the name and the version of your OS? - - Have you tried to reproduce it on different OS environments and if yes is the behavior the same for all? -- If the problem is related to the runtime of the project (e.g. [Node.js](https://nodejs.org) or [Go](https://golang.org)) please provide the version you're running. - - Are you using any additional CLI arguments to run the project? -- What is the version of the build tool (e.g. [npm](https://www.npmjs.com) or [Yarn](https://yarnpkg.com)) you are running? - - Are you using any additional CLI arguments to start the build tool task/script other than defined by the project? - -If you've installed [Node.js](https://nodejs.org) on your system you can run [envinfo](https://www.npmjs.com/package/envinfo) via [npx](https://blog.npmjs.org/post/162869356040/introducing-npx-an-npm-package-runner) which will print environment information that help the the community to better reproduce the bug. - -Run the following command **from within the project root** and paste the output in the code block below: `npx envinfo --system --system --IDEs --languages --binaries --markdown --clipboard` - -```md -Paste output of the command here. -``` - -## Stack Trace and Error Messages - -```raw -Paste the full stack trace, error messages or the logfile here. -``` - -... or [attach them as files](https://help.github.com/articles/file-attachments-on-issues-and-pull-requests) to this issue. - -## Additional Context - -Add any other context, screenshots or screencasts which are relevant for this issue. - -## References - -Add any other references and links which are relevant for this issue. - -## Potential Solution - -Maybe include the lines of code that you have identified as causing the bug or references to other projects where this bug has already been reported. diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md deleted file mode 100644 index a1606a3..0000000 --- a/.github/ISSUE_TEMPLATE/enhancement.md +++ /dev/null @@ -1,58 +0,0 @@ ---- -name: Enhancement Suggestions -about: Submit an enhancement suggestion for new features or minor improvements to existing functionality ---- - - - -> **Please read the [contribution guidelines](https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md) before filling out this issue template**. - -## Prerequisites - -This section and the instructions in the sections below are only part of this issue template. Please ensure to **delete this whole section, all pre-filled instructions of the sections below and sections you have not filled out before submitting** to ensure a clear structure and overview. - -Please do your best to provide as much information as possible and use a clear and descriptive title for your enhancement suggestion to help maintainers and the community understand and reproduce the behavior, find related reports and to resolve the ticket faster. - -- **Ensure the enhancement has not already been reported by using the [GitHub Issues search](https://github.com/arcticicestudio/styleguide-javascript/issues)** — check if this enhancement has already been suggested. If it has **and the issue is still open**, add your additions as comment to the existing issue instead of opening a new one. If you find a closed issue that seems to be similar to this one, include a link to the original issue in the [metadata head](#metadata-head) section of this issue. -- **Check if the enhancement has already been implemented** — use the [latest version](https://github.com/arcticicestudio/styleguide-javascript/releases/latest) and [`main`](https://github.com/arcticicestudio/styleguide-javascript/tree/main) branch to ensure that the feature or improvement has not already been added. - -## Metadata Head - -The metadata head can be added to the top of the issue as [Markdown text quote](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax) containing the ID of other related issues. - -> Related issues: - -## Description - -Describe the enhancement in many relevant details as possible. - -### Benefits - -Add specific use-cases and explain why this feature or improvement would be useful and maybe include references to related known problems or bug reports. - -### Possible Drawbacks - -Describe possible negative impacts regarding e.g. functionality or usability. - -### Alternative Solutions - -If you've considered alternative features or solutions please describe it clearly and concise. - -## Example - -Provide a [MCVE - The Minimal, Complete, and Verifiable Example](https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#mcve) - -**This is a optional section, but it can drastically increase the speed at which this issue can be processed since it takes away the time-consuming reconstruction to reproduce the enhancement.** -The recommended way is to upload it as [Gist](https://gist.github.com) or new repository to GitHub, but of course you can [attach it to this issue](https://docs.github.com/en/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests), use any free file hosting service or paste the code in [Markdown code blocks](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax) into this issue. - -## Additional Context - -Add any other context, screenshots or screencasts which are relevant for this issue. - -## References - -Add any other references and links which are relevant for this issue. - -## Potential Solution - -Maybe include references to other projects where this enhancement already exists. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index e5bb898..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,28 +0,0 @@ - - -> **Please read the [contribution guidelines](https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md) before filling out this pull request template**. - -## Prerequisites - -This section and the instructions in the sections below are only part of this pull request template. Please ensure to **delete this whole section, all pre-filled instructions of the sections below and sections you have not filled out before submitting** to ensure a clear structure and overview. - -Please do your best to provide as much information as possible and use a clear and descriptive title for your enhancement suggestion or bug fix to help maintainers and the community understand and reproduce the behavior, find related pull requests and to merge it faster. - -- **Ensure the pull request has not already been submitted by using the [GitHub Pull Request search](https://github.com/arcticicestudio/styleguide-javascript/pulls)** — check if this enhancement or bug fix has already been suggested. If it has **and the pull request is still open**, add your additions as comment or [suggest a change](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request#applying-a-suggested-change) to the existing pull request instead of opening a new one. If you find a closed pull request that seems to be similar to this one, include a link to the original pull request in the [metadata head](#metadata-head) section of this new pull request. -- **Ensure to adhere to the [pull request contribution guidelines](https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#pull-requests)**, especially the one for tests and documentations. -- **Check if the enhancement has already been implemented or bug already fixed** — use the [latest version](https://github.com/arcticicestudio/styleguide-javascript/releases/latest) and [`main`](https://github.com/arcticicestudio/styleguide-javascript/tree/main) branch to ensure that the enhancement or bug fix has not already been added. - -## Metadata Head - -The metadata head should be added to the top of the pull request as [Markdown text quote](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax) containing the [GitHub issue keyword(s)](https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue) to link to the related enhancements suggestions (`Closes`) or bug reports (`Fixes`). You can add additional details like dependencies to other pull requests and the order it needs to be merged. - -> Closes ISSUE_ID -> Must be merged **after**/**before** ISSUE_ID - -## Description - -Describe the changes as in many relevant details as possible. If this is a enhancement suggestion add specific use-cases and explain why this feature or improvement would be useful. If this is a bug fix ensure to provide a _before/after_ comparison by describing the current behavior and the new behavior. - -## References - -Add any other references and links which are relevant for this pull request. diff --git a/.github/workflows/ci-node.yaml b/.github/workflows/ci-node.yaml index 23d7610..40f55ef 100644 --- a/.github/workflows/ci-node.yaml +++ b/.github/workflows/ci-node.yaml @@ -1,8 +1,10 @@ -# Copyright (c) 2018-present Sven Greb +# Copyright (c) 2016-present Sven Greb # This source code is licensed under the MIT license found in the LICENSE file. # GitHub Action Workflow for continuous integration jobs. -# See https://docs.github.com/en/actions and https://github.com/features/actions for more details. +# References: +# 1. https://docs.github.com/en/actions +# 2. https://github.com/features/actions name: ci-node on: @@ -12,7 +14,6 @@ on: - "**.json" - "**.md" - "**.yaml" - - "**.yml" branches: - main tags: @@ -23,7 +24,6 @@ on: - "**.json" - "**.md" - "**.yaml" - - "**.yml" jobs: lint: diff --git a/.gitignore b/.gitignore index 6483b71..b080a12 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Path match pattern to intentionally ignore untracked files and directories. # See https://git-scm.com/docs/gitignore for more details. @@ -8,9 +7,4 @@ # +---------+ # + Node.js + # +---------+ -**/node_modules/ - -# +-------------------+ -# + Project Structure + -# +-------------------+ -build/ +node_modules/ diff --git a/.husky/.gitignore b/.husky/.gitignore deleted file mode 100644 index 31354ec..0000000 --- a/.husky/.gitignore +++ /dev/null @@ -1 +0,0 @@ -_ diff --git a/.husky/pre-commit b/.husky/pre-commit index f906b87..36b4f73 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,11 +1,9 @@ #!/bin/sh -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Git "pre-commit" hook for husky. -# # References: # 1. https://github.com/typicode/husky # 2. https://git-scm.com/docs/githooks#_pre_commit diff --git a/.mailmap b/.mailmap index 7cd15fb..df88d05 100644 --- a/.mailmap +++ b/.mailmap @@ -1,9 +1,8 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Configuration for the Git mail mapping feature to coalesce together commits by the same person in the shortlog, # where their name and/or email address was spelled differently or has been changed. # See https://git-scm.com/docs/git-shortlog#_mapping_authors for more details. -Arctic Ice Studio Sven Greb +Sven Greb diff --git a/.npmrc b/.npmrc index 5671c7d..a717f65 100644 --- a/.npmrc +++ b/.npmrc @@ -1,20 +1,18 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. -# npm configurations. +# Configurations for npm. # See https://docs.npmjs.com/cli/v7/configuring-npm/npmrc for more details. # Only use a lockfile for single-consumer projects, like applications, but not for multi-consumer projects like # libraries. -# It can helps to pin dependency versions, improves the security through integrity checksums, prevents possible errors +# It helps to pin dependency versions, improves the security through integrity checksums, prevents possible errors # caused by updated transitive dependencies and allows to get deterministic build results, but it can hide problems in # multi-consumer projects when any later versions of a used dependency, or its transitive dependencies, is not # compatible with the own project anymore. -# See https://github.com/svengreb/tmpl/issues/70 for more details. -package-lock=false +package-lock=true -# Resolve to the latest minor and patch updates. -# Enable to automatically pin dependencies to exact versions instead of resolving to latest minor and patch updates. +# Do not resolve to the latest minor and patch updates. +# Automatically pin dependencies to exact versions instead of resolving to latest minor and patch updates. # This prevents possible errors caused by updated transitive dependencies. -save-exact=false +save-exact=true diff --git a/.prettierignore b/.prettierignore index 2e9c571..cdb9786 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,9 +1,8 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Path match pattern to ignore (i.e. not reformat) certain files and folders. # See https://prettier.io/docs/en/ignore for more details. -build/* -**/node_modules/* +.husky/_/ +node_modules/ diff --git a/.remarkignore b/.remarkignore index f0936fe..1dff49d 100644 --- a/.remarkignore +++ b/.remarkignore @@ -1,10 +1,7 @@ -# Copyright (c) 2018-present Arctic Ice Studio -# Copyright (c) 2018-present Sven Greb -# This source code is licensed under the MIT license found in the LICENSE file. +# Copyright (c) 2016-present Sven Greb +# This source code is licensed under the MIT license found in the license file. # Path match pattern to ignore when searching for files. # See https://github.com/unifiedjs/unified-engine/blob/HEAD/doc/ignore.md for more details. -# Important: Directories must have no "asterisk" wildcard character at the path end, -# otherwise the pattern won't match! -**/node_modules/ +node_modules/ diff --git a/.remarkrc.js b/.remarkrc.js index 1bc5665..b50faf0 100644 --- a/.remarkrc.js +++ b/.remarkrc.js @@ -1,18 +1,13 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Configurations for remark-lint. - * * @see https://github.com/remarkjs/remark-lint + * @see https://remark.js.org */ module.exports = { - plugins: [ - "@arcticicestudio/remark-preset-lint", - /* Disabled to suppress warnings about duplicate "Example" headings. */ - ["remark-lint-no-duplicate-headings", false], - ], + plugins: ["@arcticicestudio/remark-preset-lint"], }; diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 43ff270..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,1357 +0,0 @@ -

- -

- -

- -

Changelog for the official Arctic Ice Studio JavaScript code style.

- - - -# 0.11.0 - -![Release Date: 2021-04-14](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2021-04-14&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.11.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/projects/9) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.11.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/milestone/6) - -⇅ [Show all commits][gh-compare-tag-v0.10.0_v0.11.0] - -## Improvements - -
-Allow void operator as a statement for React Hooks — #55 ⇄ #56 (⊶ af9c38b8) - -↠ To run `async` code in a React [`useEffect` Hook][react-docs-hooks-ref] the [official React Hook FAQ section about how to fetch data][react-docs-hooks-faq#fetch_data] recommends and [shows in a demo][csb-jvvkoo8pq3] how to define a scoped fat arrow function and run it immediately. Unfortunately this collided with the [`@typescript/no-floating-promises`][gh-typescript-eslint/typescript-eslint-blob-rules-no-floating-promises] rule because the returned `Promise` of the called function must not be handled anymore. - -```tsx -useEffect(() => { - const init = async () => { - try { - const data = await fetchData(); - setInitialized(isInit); - if (data) initStores(data); - } catch (err) { - handleError(err); - } - }; - // This will trigger the "@typescript/no-floating-promises" rule because the returned "Promise" is not handled. - init(); -}, [fetchData, handleError, initStores, setInitialized]); -``` - -Explicitly disabling the rule for these specific code lines would have been an option, but it is recommended to [use the `void` operator instead][mdn-js-ops-void]. - -```tsx -// ... -// This will trigger the "no-void" rule because the "void" operator is currently not allowed as a statement. -void init(); -// ... -``` - -However, the [`no-void`][eslint-docs-rules-no-void] rule did not allow the `void` operator to be used as statement which resulted in this rule to also throw an error. -To resolve both problems, the [`allowAsStatement` option][eslint-docs-rules-no-void#allowasstatement] of the `no-void` rule has been enabled. - -Also see [typescript-eslint/typescript-eslint#1184][gh-typescript-eslint/typescript-eslint#1184] where this solution is also recommended by one of the `@typescript-eslint` package maintainers. - -
- -# 0.10.0 - -![Release Date: 2021-04-08](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2021-04-08&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.10.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/projects/8) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.10.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/milestone/5) - -⇅ [Show all commits][gh-compare-tag-v0.9.0_v0.10.0] - -## Improvements - -
-@arcticicestudio/remark-preset-lint migration — #47 ⇄ #48 (⊶ 90953d7c) - -↠ The `remark-preset-lint-arcticicestudio` package has been deprecated [during the migration into a monorepo][gh#10] and replaced by the new [`@arcticicestudio/remark-preset-lint` package][gh-tree-pkgs-@ais-remarl-preset-lint]. This package also [introduced support for remark `13.0.0`][gh#28] which comes with some new features and great improvements. -To migrate to the new package the `remark-preset-lint-arcticicestudio` preset has been replaced by the new `@arcticicestudio/remark-preset-lint` preset in the `.remarkrc.js` file. - -
- -## Bug Fixes - -
-Invalid usage of prettier/@typescript-eslint configuration — #49 ⇄ #52 (⊶ c1aca60a) - -↠ As of [`eslint-config-prettier`][gh-prettier/eslint-config-prettier] version [`8.0.0`][gh-prettier/eslint-config-prettier-blob-chl#v8.0.0] all configurations have been merged into the `prettier` configuration that now includes not just ESLint core rules, but also rules from all plugins. -In #32 the `eslint-config-prettier` version was bumped from version [v6.0.0 to v8.1.0][gh-prettier/eslint-config-prettier-comp-v6.0.0_v8.1.0], but the `@arcticicestudio/eslint-config-typescript` package still explicitly extends the `prettier/@typescript-eslint` configuration which results in an error when consuming the package. - -To fix this problem, the `prettier/@typescript-eslint` has been removed entirely from the `extend` field, leaving only the all-in-one `prettier` configuration. - -
- -
-Loop on TypeScript configuration override — #50 ⇄ #53 (⊶ ddc16cc7) - -↠ In #32 the `@arcticicestudio/eslint-config-typescript` package migrated to the latest plugin versions and added [the `override` field][gh-blob-pkgs-@ais-ts-index-ab59f71f#l31-36] to its index to simplify the usage for consumers by removing the need to explicitly define it per project. Unfortunately this resulted in a crash loop when doing so and also blocked users from overriding single rules based on the project needs. - -To fix this problem, the `override` field has been removed again, leaving it up to the user to define and customize the ESLint configuration for TypeScript to fit the project needs. - -
- -
-Invalid usage of prettier/@typescript-eslint configuration — #51 ⇄ #54 (⊶ aba45876) - -↠ TypeScript uses [triple-slash directives][typescript-docs-triple_slash_directives] (single-line comments containing a single XML tag) to define compiler directives. The `@arcticicestudio/eslint-config-base` configures the ESLint core rule [`spaced-comment`][eslint-rule-spaced-comment] and already defines exceptions and comment markers for special use cases, but did not support triple-slash directives. When running `eslint --fix` these comments in `*.d.ts` files were malformed (`///` → `// /`) which resulted in invalid TypeScript syntax. - -To support triple-slash directives, the `/` marker has been added to the `line` field. - -
- -# 0.9.0 - -![Release Date: 2021-04-04](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2021-04-04&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.9.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/projects/7) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.9.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/milestone/4) - -⇅ [Show all commits][gh-compare-tag-v0.8.0_v0.9.0] - -## Features - -
-Update ESLint and plugins — #31 ⇄ #32 (⊶ 486b2d18) - -↠ ESLint and most of the used plugins released new major versions so trying to use later versions of these plugins as well as ESLint itself caused errors when using npm v7 because [peer dependencies are installed automatically][gh-blog-npm_v7#break_change] now, which is a fantastic change, but also breaks and blocks the usage of the configuration packages due to outdated `peerDependencies` like `eslint@^6`. - -### Core - -The latest version 7 comes with great features and improvements. -See the [official v7 migration guide][esl-docs-guides-mig_v7] for all details. - -- **Updated ESLint package version** — updated from [`v6.2.0` to `v7.23.0`][gh-eslint/eslint-comp-v6.2.0_v7.23.0]. -- **Allowed to define additional file extensions in configuration packages** — [files matched by `overrides[].files` are now linted by default][esl-docs-guides-mig_v7#override_file_match] which allows to add extensions like `*.ts` and `*.tsx` to the `@arcticicestudio/eslint-config-typescript` without the need to specify this override over and over again in each project. -- **Removed deprecated rules** — [some rules have been deprecated][esl-docs-guides-mig_v7#depr_rules] and have been removed in favor of the support for `eslint-plugin-node` like documented in #30. - - [`callback-return`][esl-docs-rule-callback-return] → [`node/callback-return`][gh-mysticatea/eslint-plugin-node-blob-docs-rule-callback-return] - - [`global-require`][esl-docs-rule-global-require] → [`node/global-require`][gh-mysticatea/eslint-plugin-node-blob-docs-rule-global-require] - - [`handle-callback-err`][esl-docs-rule-handle-callback-err] → [`node/handle-callback-err`][gh-mysticatea/eslint-plugin-node-blob-docs-rule-handle-callback-err] - - [`no-mixed-requires`][esl-docs-rule-no-mixed-requires] → [`node/no-mixed-requires`][gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-mixed-requires] - - [`no-new-require`][esl-docs-rule-no-new-require] → [`node/no-new-require`][gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-new-require] - - [`no-path-concat`][esl-docs-rule-no-path-concat] → [`node/no-path-concat`][gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-path-concat] - - [`no-process-env`][esl-docs-rule-no-process-env] → [`node/no-process-env`][gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-process-env] - - [`no-process-exit`][esl-docs-rule-no-process-exit] → [`node/no-process-exit`][gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-process-exit] - - [`no-restricted-modules`][esl-docs-rule-no-restricted-modules] → [`node/no-restricted-modules`][gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-restricted-modules] - - [`no-sync`][esl-docs-rule-no-sync] → [`node/no-sync`][gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-sync] -- **Adapted new recommended rules** — some rules have been [added and enabled on the `eslint:recommended` rule set][esl-docs-guides-mig_v7#recomm_rules] and have ben added to `@arcticicestudio/eslint-config-base` with `error` level: - - [`no-dupe-else-if`][esl-docs-rule-no-dupe-else-if] - - [`no-import-assign`][esl-docs-rule-no-import-assign] - - [`no-setter-return`][esl-docs-rule-no-setter-return] - -### Plugins & Dependencies - -#### `@arcticicestudio/eslint-config` - -- [eslint-config-prettier][gh-prettier/eslint-config-prettier] — Bumped version from [`v6.0.0` to `v8.1.0`][gh-prettier/eslint-config-prettier-comp-v6.0.0_v8.1.0]. As of [version `8.0.0` all rule sets have been merged into the main `prettier` set][gh-prettier/eslint-config-prettier-blob-chl#v8.0.0]. Therefore the additional `prettier/react` set has been removed from the `extends` array of the Prettier specific rules. -- [eslint-find-rules][gh-sarbbottam/eslint-find-rules] — Bumped version from [`v3.4.0` to `v3.6.1`][gh-sarbbottam/eslint-find-rules-comp-v3.4.0_v3.6.1]. -- [eslint-plugin-import][gh-esl-p-import] — Bumped minimum version from [`v2.18.2` to `v2.22.1`][gh-benmosher/eslint-plugin-import-comp-v2.18.2_v2.22.1]. -- [eslint-plugin-jsx-a11y][gh-jsx-eslint/eslint-plugin-jsx-a11y] — Bumped minimum version from [`v6.2.3` to `v6.4.1`][gh-jsx-eslint/eslint-plugin-jsx-a11y-comp-v6.2.3_v6.4.1]. -- [eslint-plugin-prettier][gh-prettier/eslint-plugin-prettier] — Bumped minimum version from [`v3.1.0` to `v3.3.1`][gh-prettier/eslint-plugin-prettier-comp-v3.1.0_v3.3.1]. -- [eslint-plugin-react][gh-yannickcr/eslint-plugin-react] — Bumped minimum version from [`v7.14.3` to `v7.23.1`][gh-yannickcr/eslint-plugin-react-comp-v7.14.3_v7.23.1]. This includes new rules and improvements to existing ones: - - Added new [`react/jsx-no-useless-fragment`][gh-yannickcr/eslint-plugin-react-blob-docs-rule-jsx-no-useless-fragment] rule with `error` level (introduced in [`v7.15.0`][gh-yannickcr/eslint-plugin-react-blob-chl#v7.15.0]) that disallows unnecessary fragments. - - Added the new `static-variables` option to the [`react/sort-comp`][gh-yannickcr/eslint-plugin-react-blob-rules-sort-comp] rule (introduced in [`v7.15.0`][gh-yannickcr/eslint-plugin-react-blob-chl#v7.15.0]). - - Added new [`react/jsx-newline`][gh-yannickcr/eslint-plugin-react-blob-docs-rule-jsx-newline] rule (introduced in [`v7.22.0`][gh-yannickcr/eslint-plugin-react-blob-chl#v7.22.0]) and disable by default. - - Added new [`react/jsx-no-constructed-context-values`][gh-yannickcr/eslint-plugin-react-blob-docs-rule-jsx-no-constructed-context-values] rule (introduced in [`v7.22.0`][gh-yannickcr/eslint-plugin-react-blob-chl#v7.22.0]) and enabled it by default to prevent react contexts from taking non-stable values. - > React Context, and all its child nodes and Consumers are rerendered whenever the value prop changes. Because each Javascript object carries its own identity, things like object expressions (`{foo: "bar"}`) or function expressions get a new identity on every run through the component. This makes the context think it has gotten a new object and can cause needless rerenders and unintended consequences. - > This can be a pretty large performance hit because not only will it cause the context providers and consumers to rerender with all the elements in its subtree, the processing for the tree scan react does to render the provider and find consumers is also wasted. - - Added `enforceDynamicLinks` option with value `always` for [`react/jsx-no-target-blank`][gh-yannickcr/eslint-plugin-react-blob-docs-rule-jsx-no-target-blank] rule (introduced in [`v7.9.0`][gh-yannickcr/eslint-plugin-react-blob-chl#v7.9.0]) - - Added [`react/no-unstable-nested-components`][gh-yannickcr/eslint-plugin-react-blob-docs-rule-no-unstable-nested-components] rule and enabled it by default to prevent creating unstable components inside components. - > Creating components inside components without memoization leads to unstable components. The nested component and all its children are recreated during each re-render. Given stateful children of the nested component will lose their state on each re-render. - > React reconcilation performs element type comparison with [reference equality][gh-facebook/react-blob-v16.13.1-recon_childfiber#l407]. The reference to the same element changes on each re-render when defining components inside the render block. This leads to complete recreation of the current node and all its children. As a result the virtual DOM has to do extra unnecessary work and possible bugs are introduced. - - Added `forbidDefaultForRequired` option with value `true` for [`react/require-default-props`][gh-yannickcr/eslint-plugin-react-blob-docs-rule-require-default-props] rule (introduced in [`v7.5.0`][gh-yannickcr/eslint-plugin-react-blob-chl#v7.5.0]) -- [eslint-plugin-react-hooks][gh-t-esl-p-react-hooks] — Bumped minimum version from `v2.0.0` to [`v4.2.0`][gh-facebook/react-blob-pkg-eslint-plugin-react-hooks-chl#v4.2.0]. - -#### `@arcticicestudio/eslint-config-base` - -- [confusing-browser-globals][gh-confusing-browser-globals] — Bumped minimum version from `v1.0.8` to `v1.0.10`. -- [eslint-find-rules][gh-sarbbottam/eslint-find-rules] — Bumped version from [`v3.4.0` to `v3.6.1`][gh-sarbbottam/eslint-find-rules-comp-v3.4.0_v3.6.1]. -- [eslint-plugin-import][gh-esl-p-import] — Bumped minimum version from [`v2.18.2` to `v2.22.1`][gh-benmosher/eslint-plugin-import-comp-v2.18.2_v2.22.1]. - -#### `@arcticicestudio/eslint-config-typescript` - -- [@typescript-eslint/eslint-plugin][gh-typescript-eslint/typescript-eslint-tree-pkg-eslint-plugin] — Bumped minimum version from [`v2.0.0` to `v4.20.0`][gh-typescript-eslint/typescript-eslint-comp-v2.0.0_v4.20.0]. -- [@typescript-eslint/parser][gh-typescript-eslint/typescript-eslint-tree-pkg-parser] — Bumped minimum version from [`v2.0.0` to `v4.20.0`][gh-typescript-eslint/typescript-eslint-comp-v2.0.0_v4.20.0]. -- [typescript][gh-microsoft/typescript] — Bumped minimum version from [`v3.5.3` to `v4.2.3`][gh-microsoft/typescript-comp-v3.5.3_v4.2.3]. - -
- -## Improvements - -
-Migrate to "tmpl" template repository — #35 ⇄ #36 (⊶ e6709a9c) - -

- -↠ Migrated the project setup, structure and development workflow [from version 0.9.0][svengreb/tmpl-rl-v0.9.0] of the [“tmpl“ template repository][svengreb/tmpl]. -Additionally specific assets like the repository hero image have been replaced and documentations like the _README_ and GitHub issue/PR templates have been adjusted. - -
- -
-Move ESLint Prettier support into base package — #37 ⇄ #38 (⊶ a50130e0) - -↠ Before [eslint-plugin-prettier][gh-prettier/eslint-plugin-prettier] and its corresponding [eslint-config-prettier][gh-prettier/eslint-config-prettier] package were supported by the [@arcticicestudio/eslint-config][gh-styleguide-javascript-tree-pkgs-@arcticicestudio/eslint-config] rule preset package. This worked fine for most projects, but also pulled in React specific dependencies like [eslint-plugin-react][gh-yannickcr/eslint-plugin-react] and [eslint-plugin-jsx-a11y][gh-jsx-eslint/eslint-plugin-jsx-a11y]. -To allow to use Prettier without `@arcticicestudio/eslint-config`, the support has been moved into the `@arcticicestudio/eslint-config-base` package, including the optional entry point. - -
- -## Tasks - -
-Node.js package dependency & GitHub action version updates — #24, #23, #33 ⇄ #27, #34 - -↠ Bumped outdated Node.js package dependencies and GitHub actions to their latest versions: - -- #24 (⊶ c0c22532) [`acorn`][gh-acornjs/acorn] from [7.0.0 to 7.1.1][gh-acornjs/acorn-comp-v7.0.0_v7.1.1] -- #23 ⇄ #27 (⊶ e015dc0a) [`eslint-plugin-react-hooks`][gh-t-esl-p-react-hooks] from `1.7.0` to `2.0.0`. -- #33 ⇄ #34 (⊶ e4fd1653) **Updated to ESLint v7** — bumped package version from [`v6.2.0` to `v7.23.0`][gh-eslint/eslint-comp-v6.2.0_v7.23.0]. See #32 and the [official v7 migration guide][esl-docs-guides-mig_v7] for more details. -- #33 ⇄ #34 (⊶ e4fd1653) **Removed `--ext` option for ESLint tasks** — as of ESLint v7, [files matched by `overrides[].files` are now linted by default][esl-docs-guides-mig_v7#override_file_match] which makes it obsolete to explicitly define file extensions like `*.js`. -- #33 ⇄ #34 (⊶ e4fd1653) [del-cli][gh-sindresorhus/del-cli] — bumped minimum version from [`v2.0.0` to `v3.0.1`][gh-sindresorhus/del-cli-comp-v2.0.0_v3.0.1]. -- #33 ⇄ #34 (⊶ e4fd1653) [eslint-config-prettier][gh-prettier/eslint-config-prettier] — bumped version from [`v6.1.0` to `v8.1.0`][gh-prettier/eslint-config-prettier-comp-v6.1.0_v8.1.0]. -- #33 ⇄ #34 (⊶ e4fd1653) [eslint-plugin-prettier][gh-prettier/eslint-plugin-prettier] — bump minimum version from [`v3.1.0` to `v3.3.1`][gh-prettier/eslint-plugin-prettier-comp-v3.1.0_v3.3.1]. -- #33 ⇄ #34 (⊶ e4fd1653) [eslint-plugin-import][gh-esl-p-import] — bumped minimum version from [`v2.18.2` to `v2.22.1`][gh-benmosher/eslint-plugin-import-comp-v2.18.2_v2.22.1]. -- #33 ⇄ #34 (⊶ e4fd1653) [husky][gh-typicode/husky] — bumped minimum version from [`v3.0.4` to `v6.0.0`][gh-typicode/husky-comp-v3.0.4_v6.0.0]. This also includes some breaking changes that require migrations. Run the official migration CLI to automatically migrate from v4 to v6: `npx husky-init && npm exec -- github:typicode/husky-4-to-6 --remove-v4-config` -- #33 ⇄ #34 (⊶ e4fd1653) [lint-staged][gh-okonet/lint-staged] — bumped minimum version from [`v9.2.3` to `v10.5.4`][gh-okonet/lint-staged-comp-v9.2.3_v10.5.4]. -- #33 ⇄ #34 (⊶ e4fd1653) [prettier][gh-prettier/prettier] — bumped minimum version from [`v1.18.2` to `v2.2.1`][gh-prettier/prettier-comp-v1.18.2_v2.2.1]. -- #33 ⇄ #34 (⊶ e4fd1653) [remark-cli][gh-remarkjs/remark] — bumped minimum version from [`v7.0.0` to `v9.0.0`][gh-remarkjs/remark-comp-v7.0.0_v9.0.0]. - -
- -
-GitHub Flow migration — #39 ⇄ #40 (⊶ 70b81fc5) - -
- -> Subtask of arcticicestudio/styleguide-git#9 - -↠ Adapted to [GitHub Flow][gh-guides-intro-flow] like documented in detail in the main task issue arcticicestudio/styleguide-git#9. - -
- -
-From master to main — #45 ⇄ #46 (⊶ 2ba56fb3) - -> Subtask of arcticicestudio/styleguide-git#11 - -
- -↠ Adapted to the [default branch renaming from `master` to `main`][gh-github/renaming] like documented in detail in the main task issue arcticicestudio/styleguide-git#11. - -
- -# 0.8.0 - -![Release Date: 2019-08-22](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2019-08-22&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.8.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/projects/6) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.8.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/milestone/3) - -⇅ [Show all commits][gh-compare-tag-v0.7.0_v0.8.0] - -## Features - -### Packages - -#### `@arcticicestudio/eslint-config` - -

- -**React Hooks support and entry point** — #17 ⇄ #18 (⊶ 833cc51d) -↠ All React based _Arctic Ice Studio_ projects using at least React version [16.8][react-b-rln-16.8.0] that introduced the awesome [Hooks][react-d-hooks]. Since this comes with a [entire new API][react-d-hooks-api] that follows new design/usage pattern, the React team created an official [„Hooks“ ESLint plugin][gh-t-esl-p-react-hooks] to help to adhere to the [„Rules of Hooks“][react-d-hooks-rules]. - -Since the `@arcticicestudio/eslint-config` package already includes support for React and „JSX A11Y“, support for _Hooks_ has also been added through a new shareable configuration entry point that - -- enables the `react-hooks` plugin. -- configures both currently available rules `react-hooks/rules-of-hooks` and `react-hooks/exhaustive-deps` rule to `error` level. - -Because _Hooks_ make more use of arrow functions the [`react/jsx-no-bind`][gh-esl-p-react-jsx_bind] has been adjusted to prevent compatibility problems by allowing setting the `ignoreDOMComponents` and `allowArrowFunctions` options to `true`. -The `react/display-name` rule has also been disabled in order to prevent problems due to missing _display names_ for _functional components_ that make use of _Hooks_ instead of being created through a _class_ component. - -The new entry point is available as `@arcticicestudio/eslint-config/react-hooks` and can be composed with all other [available entry points][gh-b-pkg-esl-readme#entry_points] to inherit their rules. - -This feature adds the `eslint-plugin-react-hooks` package as new peer dependency for `@arcticicestudio/eslint-config`. - -

- -**ESLint TypeScript Configuration Package** — #19 ⇄ #20 (⊶ 484c981d) -↠ To support projects build with [TypeScript][], a new `@arcticicestudio/eslint-config-typescript` package has been implemented using the awesome [@typescript-eslint][gh-tsesl] project. It mainly extends `@typescript-eslint/eslint-plugin`'s [already provided and recommended configurations][gh-tsesl-t-configs] in order to adapt best practices: - -1. `plugin:@typescript-eslint/eslint-recommended` -2. `plugin:@typescript-eslint/recommended` -3. `plugin:@typescript-eslint/recommended-requiring-type-checking` - -The [`@typescript-eslint/parser`][gh-typescript-eslint/typescript-eslint-tree-pkg-parser] is set as ESLint parser. As of [`@typescript-eslint/parser` version `2.0.0`][gh-tsesl-rl-2.0.0] (also see [typescript-eslint/typescript-eslint#890][gh-tsesl#890]), the parser will panic when parsing files that are not included within the provided _tsconfig(s)_. -The documentation of the new package contains instructions and a quick setup and usage guide to inform about the [required `tsconfig` configurations][gh-tsesl-parser#config] and the corresponding `eslintrc` changes. - -Next to the support for TypeScript, the package also modifies some _React_ and _import_ related rules in order to prevent conflicts, like the adaption of the `.ts` and `.tsx` extensions for all JS and JSX files as well as removing `.jsx` to force the usage of `.tsx`. There are other rules that have been disabled like the check for valid React `prop-types` since these and not necessary anymore when working with TypeScript. - -The new package provides two entry points, available as `@arcticicestudio/eslint-config-typescript` and `@arcticicestudio/eslint-config-typescript/prettier` that can both be composed with all other [available entry points][gh-b-pkg-esl-readme#entry_points] to inherit their rules. - -This package mainly depends on the `@typescript-eslint/eslint-plugin@^2.0.0` and `@typescript-eslint/parser@^2.0.0` packages as peer dependencies. - -

- -**From CircleCI to GitHub Actions** — #21 ⇄ #22 (⊶ c7d663eb) -↠ The project migrated from [CircleCI][cci] as CI/CD service to the awesome new [GitHub Actions][gh-feat-actions] that is smoothly integrated into the GitHub platform and page for a „single-source-of-truth“ developer experience: OPS configurations as code right next to the source code in the repository. - -##### Previous Project State - -The previous project setup used [CircleCI][cci] with [API version 2.x][cci-d] as CI/CD service. This worked great, but also comes with the disadvantage of being decoupled from the repository. - -

-

-
-
The GitHub Actions CI/CD UI
-
-

- -During _GitHub Universe 2018_, the awesome new [GitHub Actions][gh-feat-actions] feature was [introduced and launched as closed beta][gh-blog-actions]. Luckily _Arctic Ice Studio_ was given access in order to test all the great possibilities. During the [GitHub Actions stream „Now with built-in CI/CD!“ (live from GitHub HQ)][yt-gh-stream-actions_cicd] the _Actions_ update was announced and previewed showing the expansion to use _GitHub Actions_ as [CI/CD service described as „fast CI/CD for any OS, any language, and any cloud“][gh-blog-actions-cicd]. - -

-

-
-
Live logs showing real-time feedback
-
-

- -**See the [official GitHub Actions documentation][gh-help-actions] for details about setups, features, the configuration API and many more!** - -##### Project Integration - -The switch from _CircleCI_ to _GitHub Actions_ brought many advantages like a „close-to-the-source“ development pipeline. Having the code and automated pipelines/workflows in one place is worth a lot. This also comes along with the perfect and smooth integrations into the GitHub platform and page itself like status reports on PRs and many more possibilities like the [customization and triggering of workflows through webhooks][gh-help-actions-events] for almost every event that can occur in a repository/issue/PR etc. - -To integrate _GitHub Actions_ the previous [_CircleCI_ build configuration][gh-b-ac611f7e-circleci] has been adapted and adjusted. The official [starter-workflows][gh-starter-workflows] were used as inspiration as well as showcase projects like [Yarn _Berry_ (Yarn v2)][gh-yarn-berry-t-gh-wrkf] also presented during the announcement livestream. - -Next to the `starter-workflows` repository the [official _GitHub Actions_ documentation][gh-help-actions] was the main source of information to set up the project workflows. - -

-

-
-
GitHub Actions starter workflows based on the epository languages
-
-

- -Since _GitHub Actions_ are still in closed/limited public beta, there is no support for SVG badges through [shields.io][]. Anyway, there are (currently undocumented) official badges provided by the GitHub API that are used until _Actions_ goes _GA_ and [shields.io][] implements support for it: `https://github.com/{owner}/{repo}/workflows/{workflow_name}/badge.svg` - -# 0.8.0 - -![Release Date: 2019-08-22](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2019-08-22&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.8.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/projects/6) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.8.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/milestone/3) - -## Features - -### Packages - -#### `@arcticicestudio/eslint-config` - -

- -**React Hooks support and entry point** — #17 ⇄ #18 (⊶ 833cc51d) -↠ All React based _Arctic Ice Studio_ projects using at least React version [16.8][react-b-rln-16.8.0] that introduced the awesome [Hooks][react-d-hooks]. Since this comes with a [entire new API][react-d-hooks-api] that follows new design/usage pattern, the React team created an official [„Hooks“ ESLint plugin][gh-t-esl-p-react-hooks] to help to adhere to the [„Rules of Hooks“][react-d-hooks-rules]. - -Since the `@arcticicestudio/eslint-config` package already includes support for React and „JSX A11Y“, support for _Hooks_ has also been added through a new shareable configuration entry point that - -- enables the `react-hooks` plugin. -- configures both currently available rules `react-hooks/rules-of-hooks` and `react-hooks/exhaustive-deps` rule to `error` level. - -Because _Hooks_ make more use of arrow functions the [`react/jsx-no-bind`][gh-esl-p-react-jsx_bind] has been adjusted to prevent compatibility problems by allowing setting the `ignoreDOMComponents` and `allowArrowFunctions` options to `true`. -The `react/display-name` rule has also been disabled in order to prevent problems due to missing _display names_ for _functional components_ that make use of _Hooks_ instead of being created through a _class_ component. - -The new entry point is available as `@arcticicestudio/eslint-config/react-hooks` and can be composed with all other [available entry points][gh-b-pkg-esl-readme#entry_points] to inherit their rules. - -This feature adds the `eslint-plugin-react-hooks` package as new peer dependency for `@arcticicestudio/eslint-config`. - -

- -**ESLint TypeScript Configuration Package** — #19 ⇄ #20 (⊶ 484c981d) -↠ To support projects build with [TypeScript][], a new `@arcticicestudio/eslint-config-typescript` package has been implemented using the awesome [@typescript-eslint][gh-tsesl] project. It mainly extends `@typescript-eslint/eslint-plugin`'s [already provided and recommended configurations][gh-tsesl-t-configs] in order to adapt best practices: - -1. `plugin:@typescript-eslint/eslint-recommended` -2. `plugin:@typescript-eslint/recommended` -3. `plugin:@typescript-eslint/recommended-requiring-type-checking` - -The [`@typescript-eslint/parser`][gh-typescript-eslint/typescript-eslint-tree-pkg-parser] is set as ESLint parser. As of [`@typescript-eslint/parser` version `2.0.0`][gh-tsesl-rl-2.0.0] (also see [typescript-eslint/typescript-eslint#890][gh-tsesl#890]), the parser will panic when parsing files that are not included within the provided _tsconfig(s)_. -The documentation of the new package contains instructions and a quick setup and usage guide to inform about the [required `tsconfig` configurations][gh-tsesl-parser#config] and the corresponding `eslintrc` changes. - -Next to the support for TypeScript, the package also modifies some _React_ and _import_ related rules in order to prevent conflicts, like the adaption of the `.ts` and `.tsx` extensions for all JS and JSX files as well as removing `.jsx` to force the usage of `.tsx`. There are other rules that have been disabled like the check for valid React `prop-types` since these and not necessary anymore when working with TypeScript. - -The new package provides two entry points, available as `@arcticicestudio/eslint-config-typescript` (main) and `@arcticicestudio/eslint-config-typescript/prettier` that can both be composed with all other [available entry points][gh-b-pkg-esl-readme#entry_points] to inherit their rules. - -This package mainly depends on the `@typescript-eslint/eslint-plugin@^2.0.0` and `@typescript-eslint/parser@^2.0.0` packages as peer dependencies. - -

- -**From CircleCI to GitHub Actions** — #21 ⇄ #22 (⊶ c7d663eb) -↠ The project migrated from [CircleCI][cci] as CI/CD service to the awesome new [GitHub Actions][gh-feat-actions] that is smoothly integrated into the GitHub platform and page for a „single-source-of-truth“ developer experience: OPS configurations as code right next to the source code in the repository. - -##### Previous Project State - -The previous project setup used [CircleCI][cci] with [API version 2.x][cci-d] as CI/CD service. This worked great, but also comes with the disadvantage of being decoupled from the repository. - -

-

-
-
The GitHub Actions CI/CD UI
-
-

- -During _GitHub Universe 2018_, the awesome new [GitHub Actions][gh-feat-actions] feature was [introduced and launched as closed beta][gh-blog-actions]. Luckily _Arctic Ice Studio_ was given access in order to test all the great possibilities. During the [GitHub Actions stream „Now with built-in CI/CD!“ (live from GitHub HQ)][yt-gh-stream-actions_cicd] the _Actions_ update was announced and previewed showing the expansion to use _GitHub Actions_ as [CI/CD service described as „fast CI/CD for any OS, any language, and any cloud“][gh-blog-actions-cicd]. - -

-

-
-
Live logs showing real-time feedback
-
-

- -**See the [official GitHub Actions documentation][gh-help-actions] for details about setups, features, the configuration API and many more!** - -##### Project Integration - -The switch from _CircleCI_ to _GitHub Actions_ brought many advantages like a „close-to-the-source“ development pipeline. Having the code and automated pipelines/workflows in one place is worth a lot. This also comes along with the perfect and smooth integrations into the GitHub platform and page itself like status reports on PRs and many more possibilities like the [customization and triggering of workflows through webhooks][gh-help-actions-events] for almost every event that can occur in a repository/issue/PR etc. - -To integrate _GitHub Actions_ the previous [_CircleCI_ build configuration][gh-b-ac611f7e-circleci] has been adapted and adjusted. The official [starter-workflows][gh-starter-workflows] were used as inspiration as well as showcase projects like [Yarn _Berry_ (Yarn v2)][gh-yarn-berry-t-gh-wrkf] also presented during the announcement livestream. - -Next to the `starter-workflows` repository the [official _GitHub Actions_ documentation][gh-help-actions] was the main source of information to set up the project workflows. - -

-

-
-
GitHub Actions starter workflows based on the epository languages
-
-

- -Since _GitHub Actions_ are still in closed/limited public beta, there is no support for SVG badges through [shields.io][]. Anyway, there are (currently undocumented) official badges provided by the GitHub API that are used until _Actions_ goes _GA_ and [shields.io][] implements support for it: `https://github.com/{owner}/{repo}/workflows/{workflow_name}/badge.svg` - -# 0.7.0 - -![Release Date: 2019-08-19](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2019-08-19&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.7.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/projects/3) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.7.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/milestone/2) - -⇅ [Show all commits][gh-compare-tag-v0.6.0_v0.7.0] - -## Epics - -**Monorepo with ESLint packages** — #8 ⇄ #16 (⊶ ac611f7e) -↠ Resolved the epic by converting the repository into a [monorepo][trbdev-monorepo] and migrating the [`@arcticicestudio/eslint-config`][gh-t-pkg-esl] (previously `eslint-config-arcticicestudio`) + [`@arcticicestudio/eslint-config-base`][gh-t-pkg-esl-base] (previously `eslint-config-arcticicestudio-base`) packages! - -#### Previous Project State - -Previously this repository only contained the actual styleguide documentation while specific projects that implement the guidelines for linters and code style analyzer lived in separate repositories. This was the best approach for modularity and a small and clear code base, but it increased the maintenance overhead by 1(n) since changes to the development workflow or toolbox, general project documentations as well as dependency management required changes in every repository with dedicated tickets/issues and PRs. In particular, Node packages require frequent dependency management due to their fast development cycles to keep up-to-date with the latest package changes like (security) bug fixes. - -This styleguide is currently implemented by the [`@arcticicestudio/eslint-config`][gh-t-pkg-esl] (previously `eslint-config-arcticicestudio`) and [`@arcticicestudio/eslint-config-base`][gh-t-pkg-esl-base] (previously `eslint-config-arcticicestudio-base`) Node packages that lived in their own repositories. The development workflow was clean using most of GitHub's awesome features like project boards, _codeowner_ assignments, issue & PR automation and so on, but changes to one of them often required actions for the other package too since they are based on each other and they are using the same development tooling and documentation standards. - -##### Monorepo Comparison - -Actually I'm not a supporter when it comes to [monorepos][trbdev-monorepo] and next to the advantages a monorepo also comes with disadvantages: - -- **No more scoped code** — The developer experience with Git is clearly worse because commits can contains changes to multiple scopes of the code. Since there are only a “transparent separation” of code, that was previously located in a dedicated repository but is not aggregated into a parent (e.g. `packages`) with other modules, commits can now contain changes to multiple code scopes spread over the entire code base. -- **No more assignment of commits to single modules** — Like described in the bullet point above, commit can contain changes to multiple modules, it is harder to detect which commit targeted a specific module. -- **Steeper learning curve for new contributors** — In a dedicated repository that only hosts a specific module it is easier for new developers to contribute to the project, but in a monorepo they might need to change code in multiple places within other modules or the root code/documentation of the entire project. -- **Uniform version number** — In order to keep conform to [SemVer][], the entire project must use a uniform version number. This means that a module that has not been changed since the last version must also be incremented in order to keep compatible with the other modules. - Using different version numbers prefixed/suffixed with an individual version number **is a not go**, **increases the maintenance overhead** and **and drastically reduces the project overview and quality**! This would result in multiple Git tags on the `main` branch as well as “empty” changelogs and release notes with placeholder logs that only refer to changes of other modules. - -#### Project Future - -Even though there are disadvantages (see above), a [monorepo][trbdev-monorepo] makes sense **only for specific project modules thar are slightly coupled** and where using dedicated repositories only increases the maintenance overhead **when changes must be reflected in multiple modules anyway**. - -In order to reduce the maintenance overhead both Node packages, [`@arcticicestudio/eslint-config`][gh-t-pkg-esl] (previously `eslint-config-arcticicestudio`) and [`@arcticicestudio/eslint-config-base`][gh-t-pkg-esl-base] (previously `eslint-config-arcticicestudio-base`), have been migrated into this repository by adapting to [Yarn workspaces][yarn-d-ws] since they are slightly dependent on each other anyway. This simplifies the development tooling setup and allows to use a unified documentation base as well as a smoother development and testing workflow. - -This change also implies that the root of the repository is now the main package for the entire project setup including shared development dependencies, tools and documentations while the packages only contains specific configurations and (dev)dependencies. - -##### Scoped Packages - -The previous `eslint-config-arcticicestudio` and `eslint-config-arcticicestudio-base` packages were no [scoped packages][npm-d-scope] but suffixed with `-arcticicestudio*`. To simplify the naming and improving the usage of user/organization specific packages both packages are now scoped to `@arcticicestudio` resulting in the new names `@arcticicestudio/eslint-config-base` and `@arcticicestudio/eslint-config`. They can be used through [ESLint's support for shared configuration with scoped packages][esl-d-dev-share_conf#scope]. -The previously released public versions [have been deprecated using the `npm deprecate` command][npm-cli-dep] where the provided message points out to migrate to the new scoped packages. - -##### Versioning - -The style guide itself and all packages using a shared/fixed/locked version. This helps all packages to keep in sync and ensure the compatibility with the latest style guide version. - -##### Standard Setup - -In order to keep up-to-date with the latest project setup for all _Arctic Ice Studio_ projects, the tools and documentations have been integrated and updated through the following tickets: - -- #9 (⊶ 8e992407) „Git ignore and attribute pattern“ — completed ✓ -- #10 (⊶ db2a43bc) „Git mail mapping“ — completed ✓ -- #11 (⊶ 10253246) „Prettier“ — completed ✓ -- #12 (⊶ c21a58a9) „lint-staged“ — completed ✓ -- #13 (⊶ b4cac34f) „Husky“ — completed ✓ -- #14 (⊶ be122b12) „General repository and package documentations and metadata“ — completed ✓ -- #15 (⊶ c25d1efe) „GitHub issue and pull request templates“ — completed ✓ - -## Features - -**GitHub issue and pull request templates** — #15 (⊶ c25d1efe) -↠ Integrated GitHub's feature to define [multiple issue templates][gh-blog-multi-issue-templ] while the [initial template file][gh-blog-intro-issue-templ] is used as a fallback/generic template to link to the specific ones. - -

- -

- -Read the [GitHub Help article][gh-help-issue-templ] for more details about issue and pull request templates. Also check out how to manually create [issue templates][gh-help-pr-templ], a [pull request template][gh-help-issue-templ-repo]. and the guide on [how to create the (deprecated) fallback/generic issue template][gh-help-issue-templ-depr]. - -## Improvements - -**General repository and package documentations and metadata** — #14 (⊶ be122b12) -↠ The previous project repository documentations were not designed for a [monorepo][trbdev-monorepo] layout and have been be updated including various badges provided by the great [shields.io][] project. - -Further documentations about the project architecture and technologies as well as guides for contributions to develop, run and maintain the project stayed within the packages itself. -There are also various places that contained outdated documentations and metadata that have been updated too. - -See #14 for more details about what exactly has been updated. - -## Tasks - -

- -**Introducing _remark-lint_** — #5 ⇄ #6 (⊶ fa9af093) -↠ Integrated [remark-lint][gh-remark-lint], a linter built on [remark][], the powerful Markdown processor powered by plugins such as remark-lint. -It is used through [remark-cli][gh-remark-cli] with [remark-preset-lint-arcticicestudio][gh-remark-preset-lint-arcticicestudio], the custom preset that implements the [Arctic ice Studio Markdown Style Guide][styleguide-markdown]. - -To lint all Markdown sources within the project the `lint:md` NPM script has been added that will be picked up by the main `lint` script. - -

- -**Documentation for official ESLint extensible shared configurations** — #7 (⊶ 57b8ce03) -↠ Added information about the official [`@arcticicestudio/eslint-config`][gh-t-pkg-esl] and [`@arcticicestudio/eslint-config-base`][gh-t-pkg-esl-base] extensible shared configurations for [ESLint][] to the documentation. - -

- -**Git ignore and attribute pattern** — #9 (⊶ 8e992407) -↠ Added the [`.gitattributes`][git-d-gitattributes] and [`.gitignore`][git-d-gitignore] configuration files to define the pattern. - -**Git mail mapping** — #10 (⊶ db2a43bc) -↠ Added a Git [mailmap][git-d-mailmap] file to link to in documentations and allow contributors to send mails regarding security issues. This prevents unnecessary overhead of updating all documents when new core team and members and contributors are added and additionally adds the main functionality of the file: Mapping commits when someone uses a different email address. - -

- -**Introducing _Prettier_** — #11 (⊶ 10253246) -↠ Integrated [Prettier][], the opinionated code formatter with support for many languages and integrations with most editors. It ensures that all outputted code conforms to a consistent style and provides the best and recommended style configurations of-out-the-box™. -Read #11 for more details about the configuration and setup as well as included plugins. - -To format all compatible sources within the project the `format:pretty` NPM script has been added that will be picked up by the main `format` script. - -

- -**Introducing _lint-staged_** — #12 (⊶ c21a58a9) -↠ Integrated [lint-staged][gh-okonet/lint-staged] to run linters against staged Git files and prevent adding code that violates any style guide into the code base. - -Read #12 for more details about the configuration and setup. - -

- -**Introducing _Husky_** — #13 (⊶ b4cac34f) -↠ Integrated [Husky][gh-typicode/husky], the tool that make Git hooks easy and can prevent bad Git commits, pushes and more _woof_! - -Read #13 for more details about the configuration and setup. - -# 0.6.0 - -![Release Date: none](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=-&colorA=4c566a&colorB=88c0d0) ![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.6.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0) - -⇅ [Show all commits][gh-compare-tag-v0.5.0_v0.6.0] - -↳ Release date of transferred `eslint-config-base` package: _2019-08-14_ - -## Features - -### Style Guide - -**Suggestion to use `WeakMap` for hidden properties** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1722 (⊶ airbnb/javascript@c5411a42) -↠ Added a suggestion to the examples of the [naming conventions for underscores][docs-r-name_conv#undsc] to make properties hidden by using a `WeakMap` when the environment supports it. This is an alternative to just removing the underscore and making the property public. - -**Prefer control statements over selection operators** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1729 (⊶ airbnb/javascript@c8b11641) -↠ Added a new rule to prefer [control statements instead of selection operators][docs-r-ctrl_statm#selec_op]. - -**Ordering for React instance variables and methods** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1737 (⊶ airbnb/javascript@ff1c1217) -↠ Added a suggestions about instance variables and methods for the [ordering of React component methods and properties][docs-r-react-order#meth_props]. - -**UPPERCASE naming convention for constants** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#255 (⊶ airbnb/javascript@33819d67) -↠ Added a new section about [naming conventions for constants][docs-r-name_conv#const]. - -**Consistent whitespaces inside blocks** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) -↠ Added a new section about [consistent whitespaces inside block][docs-r-ws#in_blocks]. - -**Spacing around commas** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) -↠ Added a new section about [whitespaces around commas][docs-r-ws#commas]. - -**Spacing inside computed properties** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) -↠ Added a new section about [whitespaces inside computed properties][docs-r-ws#in_comp_props]. - -**Spacing around function signatures** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) -↠ Added a new section about [whitespaces around function signatures][docs-r-ws#func_sig]. - -**Spacing inside object literal properties** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) -↠ Added a new section about [whitespaces inside object literal properties][docs-r-ws#in_obj_lit_props]. - -**Trailing spaces at the end of lines** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) -↠ Added a new section about [trailing spaces at the end of lines][docs-r-ws#trail_eof]. - -**Multiple empty lines** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) -↠ Added a new section about [multiple empty lines][docs-r-ws#mult_blk_line]. - -**Unused variables** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1828 (⊶ airbnb/javascript@edf942ee) -↠ Added a new section about [unused variables][docs-r-vars#unused]. - -### Packages - -#### `@arcticicestudio/eslint-config-base` - -**New `function-call-argument-newline` rule** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#32 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#33~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@e25bf80c4~~) -↠ Added and **disabled** the new [`function-call-argument-newline`][esl-r-function-call-argument-newline] core rule introduced in [ESLint version 6.2.0][gh-esl-rl-v6.2.0]. - -## Improvements - -### Style Guide - -**Reference `function-paren-newline` for function signature invocation indentations** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1756 (⊶ airbnb/javascript@a9fc9d8a) -↠ Added a reference for the ESLint core rule [`function-paren-newline`][esl-r-function-paren-newline] to the [function signature invocation indentation][docs-r-func#sig_invoc_indent] section. - -**Index as `key` are anti-pattern** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1899 (⊶ airbnb/javascript@48448a81) -↠ Added additional information [why index as `key` are an anti-pattern][docs-r-react-props#no_idx_key]. - -**`let` or `const` guideline is incompatible with „destructuring“** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1927 (⊶ airbnb/javascript@9af5ee89) -↠ Added a info about assignments to the section about [declaration separation][docs-r-vars#dec_sep] to be compatible with rules about [destructuring][docs-r-destrc#obj]. - -**Reference to `no-prototype-builtins` rule** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1929 (⊶ airbnb/javascript@924dfb26) -↠ Added a reference to the section about [prototype builtins][docs-r-obj#prot_btin] for the corresponding [`no-prototype-builtins`][esl-r-no-prototype-builtins] rule. - -**Reference to `react/jsx-filename-extension` rule** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1930 (⊶ airbnb/javascript@24da5bb5) -↠ Added a reference to the section about [JSX file extension][docs-r-react-name_conv#jsx_fext] for the corresponding [`react/jsx-filename-extension`][gh-esl-p-react/jsx-filename-extension] rule. - -**Reference to `react/no-array-index-key` rule** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1930 (⊶ airbnb/javascript@24da5bb5) -↠ Added a reference to the section about [index as `key` props][docs-r-react-props#no_idx_key] for the corresponding [`react/no-array-index-key`][gh-esl-p-react/no-array-index-key] rule. - -**More best practices for `.bind()` and arrow functions in React** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#2014 (⊶ airbnb/javascript@be07f7a0) -↠ Added more information and best practices in [React about method][docs-r-react-meth] binding (`.bind()`) and arrow functions when used within React classes like properties or in the scope of `render`. - -**Better wording for „acronyms and initialisms“ guideline** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1972 (⊶ airbnb/javascript@5d25a2ee) -↠ Improved the wording in the [acronyms and initialisms][docs-r-name_conv#acrs_inits] section by replacing `capitalized` with `uppercased` to clarify the purpose of guideline. - -### Packages - -#### `@arcticicestudio/eslint-config` - -**Behavior of `react/forbid-prop-types` rule for `array` and `object`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1952 (⊶ airbnb/javascript@95286eb4) -↠ Added additional information about the specific behavior of the [`react/forbid-prop-types`][gh-esl-p-react/forbid-prop-types] rule regarding `array` and `object` type. - -#### `@arcticicestudio/eslint-config-base` - -**ESLint v6.0.0 Support** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#30 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#31 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@dfee6901~~) -↠ [ESLint v6 has been released][esl-b-rl-6.0.0] including the official [v6 migration guide][esl-d-mg-6.0.0]. -To stay up-to-date with the latest security and stability changes as well as new rules, this configuration migrated to v6 while also dropping support for v4 and lower. - -##### Updated (dev,peer)dependencies for ESLint v6.0.0 support - -To stay up-to-date with the latest security and stability changes as well as new rules, all outdated (dev,peer)dependencies have been updated. - -##### Removed deprecated `experimentalobjectrestspread` option - -Since ESLint v5, the `parserOptions.ecmaFeatures.experimentalObjectRestSpread` option was deprecated and [has now been removed in v6][esl-d-mg-6.0.0#dep_obj_sprd]. -To ensure the feature is used the `parserOptions.ecmaVersion` option has been updated to use ECMAScript version `2018` which includes this syntax feature. - -##### Added new rules and adapted to changed default values - -ESLint v6 introduced new rules as well as [updating default values and configurations of existing ones][esl-d-mg-6.0.0#recom]. -The missing rules have been added while the default values have been compared and adjusted to the current configurations of this package. - -##### Removed and replaced deprecated core rules - -The following [rules are deprecated][esl-d-r#dep] and have been removed or replaced: - -- `require-jsdoc` and `valid-jsdoc` - Both rules were not maintained anymore and were disabled anyway due to too noisy output. -- `no-catch-shadow` - Replaced by [`no-shadow`][esl-r-no-shadow] - -**Ignore `__mocks__` for `import/no-extraneous-dependencies`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1772 (⊶ airbnb/javascript@8720f5f9) -↠ Added the `__mocks__` pattern as exception for the [`import/no-extraneous-dependencies`][gh-esl-p-import/no-extraneous-dependencies] rule since it should be considered as testing utils. - -**Underscore naming pattern for `spec` tests** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1732 (⊶ airbnb/javascript@8c83d03a) -↠ Extended the pattern for tests named with the `spec` pattern when using an underscore (`*_spec.js`) instead of an dot (`*.spec.js`) for the [`import/no-extraneous-dependencies`][gh-esl-p-import/no-extraneous-dependencies] rule. - -**No dangling underscore in function names** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1907 (⊶ airbnb/javascript@17e04546) -↠ Dangling underscores and not allowed for functions and are now enforced through the [`no-underscore-dangle`][esl-r-no-underscore-dangle] rule. - -**Allow `staticContext` (_React Router_) for `no-param-reassign`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#2029 (⊶ airbnb/javascript@1310ade9) -↠ Added `staticContext` ([_React Router_][react-router]) as exception for the [`no-param-reassign`][esl-r-no-param-reassign] rule. - -**Switch from `eslint-restricted-globals` to `confusing-browser-globals`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1961 (⊶ airbnb/javascript@21b65e94) -↠ Switched from the superseded [`eslint-restricted-globals`][gh-eslint-restricted-globals] package to the new [`confusing-browser-globals`][gh-confusing-browser-globals] package that is part of the official React repository, used within [CRA][] and maintained by the React core team. - -**Allow `jest.setup.js` file name pattern for `import/no-extraneous-dependencies`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1998 (⊶ airbnb/javascript@96f95fa3) -↠ Added the `jest.setup.js` file name pattern to the exceptions of the [`import/no-extraneous-dependencies`][gh-esl-p-import/no-extraneous-dependencies] rule to support the general naming of [Jest][] setup files. - -**Cleaner example for „array callback return“ handling** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#2004 (⊶ airbnb/javascript@495a62aa) -↠ Removed an unnecessary expression from the examples in the [„callback return“][docs-r-arr#clb_ret] section for arrays. - -**Simplified `no-mixed-operators`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1864 (⊶ airbnb/javascript@f6acb789) -↠ Simplified the groups for the [`no-mixed-operators`][esl-r-no-mixed-operators] rule to adapt to the [corresponding style guide section][docs-r-comp_op_eq#mix_ops] that has been improved and updated. - -## Bug Fixes - -### Style Guide - -**Updated link anchor for MDN page about `let` keyword** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1818 (⊶ airbnb/javascript@c068d7cb) -↠ Fixed an anchor on the [“Hoisting”][docs-r-hoisting] page for a MDN link about [„temporal dead zones“][mdn-js-kw-let#tmp_dead_zone] of the `let` keyword. - -**Invalid link anchor for W3 page about „ARIA Roles“` keyword** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1823 (⊶ airbnb/javascript@8a244801) -↠ Fixed an anchor on the [React Accessibility A11Y][docs-r-react-a11y#aria_roles] page for a W3 link about [“ARIA roles”][w3-aria_roles#intro]. - -**Invalid example for npm `has` package** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#2062 (⊶ airbnb/javascript@030e23b1) -↠ Fixed an error in the usage example of the [`has`][npm-has] package in the [„Object Rest Spread“][docs-r-obj#rest_spr] section. - -### Packages - -#### `@arcticicestudio/eslint-config-base` - -**No additional new line at end of file** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Ported from airbnb/javascript#1794, airbnb/javascript#2017 (⊶ airbnb/javascript@2d977990, airbnb/javascript@60b96d32) -↠ Changed the `maxEOF` option of the [`no-multiple-empty-lines`][esl-r-no-multiple-empty-lines] rule to `0` since ESLint by default [swallows the final newline, as some editors add it automatically][gh-esl-b-7ad86de-r-empty_line:63]. This prevents an additional new line at the end of files next to the default _EOF_ handling. - -# 0.5.0 - -![Release Date: none](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=-&colorA=4c566a&colorB=88c0d0) ![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.5.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0) - -⇅ [Show all commits][gh-compare-tag-v0.4.0_v0.5.0] - -↳ Release date of transferred `eslint-config` package: _2019-08-19_ -↳ Release date of transferred `eslint-config-base` package: _2018-11-17_ - -## Features - -### Packages - -#### `@arcticicestudio/eslint-config` - -**Entry point for Prettier plugin integration** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#12 ⇄ arcticicestudio/eslint-config-arcticicestudio#15~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@8935d75a~~) -↠ All _Arctic Ice Studio_ projects using [Prettier][] for a smooth and uncomplicated developer experience as well as keeping the code style consistent across own and third-party projects. -Almost all projects have added the [eslint-plugin-prettier][gh-prettier/eslint-plugin-prettier] plugin to run Prettier as an ESLint rule and report differences as individual ESLint issues. - -Therefore a new entry point has been added that - -- enables the `prettier` plugin. -- enables the `prettier/prettier` rule to `error` level in order to enable the linting output. -- extends the official Prettier ESLint configuration from the [`eslint-config-prettier` package][gh-prettier/eslint-config-prettier] to ensure the best compatibility with Prettier as well as reducing required maintenance overhead to keep up-to-date with new Prettier releases. It also extends the following shared configurations to include support for other ESLint plugins: - - `eslint-plugin-react` through the shared `prettier/react` configuration - -The new entry point is available as `@arcticicestudio/eslint-config/prettier` and can be composed with the default entry point to inherit the rules and include all existing integrations like for „React“ and „JSX A11Y“. - -## Improvements - -### Packages - -#### `@arcticicestudio/eslint-config` - -**ESLint v6.0.0 Support** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#13 ⇄ arcticicestudio/eslint-config-arcticicestudio#14 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@6948a181~~) -↠ [ESLint v6 has been released][esl-b-rl-6.0.0] including the official [v6 migration guide][esl-d-mg-6.0.0]. -To stay up-to-date with the latest security and stability changes as well as new rules, this configuration migrated to v6 while also dropping support for v4 and lower. - -##### Updated (dev,peer)dependencies for ESLint v6.0.0 support - -To stay up-to-date with the latest security and stability changes as well as new rules, all outdated (dev,peer)dependencies have been updated. - -##### Updated React plugin settings - -The version has been changed to be automatically detected by using the `detect` value and the `pragma` key has been removed since it will be handled by Babel. - -##### Added new React and JSX A11Y plugin rules and adapted new default values - -The `react` and `jsx-a11y` plugins introduced new rules as well as updating default values and configurations of existing ones. -The missing rules have been added while the default values have been compared and adjusted to the current configurations of this package. - -##### Removed deprecated plugin rules - -The following rules have been deprecated and therefore removed or replaced: - -- [`jsx-a11y/label-has-for`][gh-esl-p-jsx-a11y/label-has-for.md] - Replaced by [`label-has-associated-control`][gh-esl-p-jsx-a11y/label-has-associated-control]. - -#### `@arcticicestudio/eslint-config-base` - -**No `quote-props` for numbers and keywords** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#29 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@bbb6d35a~~) -↠ Disabled the [keywords][esl-r-quote-props#keywords] and [numbers][esl-r-quote-props#numbers] options of the `quote-props` rule. Both are not necessary anymore since this preset does not target legacy ES3 environments and disabling prevents unnecessary and noisy warnings. - -# 0.4.0 - -![Release Date: none](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=-&colorA=4c566a&colorB=88c0d0) ![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.4.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0) - -⇅ [Show all commits][gh-compare-tag-v0.3.0_v0.4.0] - -↳ Release date of transferred `eslint-config` package: _2018-11-16_ -↳ Release date of transferred `eslint-config-base` package: _2018-11-15_ - -## Improvements - -### Packages - -#### `@arcticicestudio/eslint-config` - -**Loosen JSX props ordering** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#10 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@cf8a9744~~) -↠ Disabled the [gh-esl-p-react/boolean-prop-naming][] rule because it was actually too noisy and prevented the usage of useful shortcut props like `outlined` or `loaded`. - -**No more consistent naming validation for JSX boolean props** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#11 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@27e75c91~~) -↠ The `callbacksLast` and `shorthandFirst` options of the [gh-esl-p-react/jsx-sort-props][] rule caused multiple warnings when formatted with [Prettier][] and conflicted with the alphabetically ordering and have therefore been **disabled**. - -#### `@arcticicestudio/eslint-config-base` - -**No more JSDoc comment validation** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#28 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@eab37dd2~~) -↠ Disabled the [`valid-jsdoc`][esl-r-valid-jsdoc] core rule because it is actually too noisy and not suitable in most cases when used with JSX/React and some of the latest ES6 (or higher) features/proposals when the return type is not known. When using [TypeScript][] or [Flow][] the return type and parameters are typed. - -# 0.3.0 - -![Release Date: none](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=-&colorA=4c566a&colorB=88c0d0) ![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.3.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0) - -⇅ [Show all commits][gh-compare-tag-v0.2.0_v0.3.0] - -↳ Release date of transferred `eslint-config` package: _2018-05-20_ -↳ Release date of transferred `eslint-config-base` package: _2018-05-20_ - -## Improvements - -### Packages - -#### `@arcticicestudio/eslint-config` - -**Prevent _SemVer Major Zero Caveat_** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#8 ⇄ arcticicestudio/eslint-config-arcticicestudio#9~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@daa1ea3e~~) -↠ Raised the version range for the [base package][gh-t-pkg-esl-base] to `>=0.2.0 <1.0.0` in order to avoid the _SemVer Major Zero Caveat_. - -This prevents that only the exact version specified will match. By allowing all versions `<1.0.0` this package resolves to the latest development version when a new version of the base package is released without the need to manually update to the version. - -#### `@arcticicestudio/eslint-config-base` - -**No more minimum amount of properties for `object-curly-newline`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#26 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#27~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@1c4ee04b~~) -↠ Removed the minimum amount of properties for the [`object-curly-newline`][esl-r-object-curly-newline] rule so the `consistent` option ensures that the style is consistent for every case. - -Previously it was configured to require a line break when there are 4 or more properties within the object curly braces on the same line. This resulted in noisy errors because the names can also be very short and fit perfectly into one line e.g. when used with React prop [destructuring][mdn-js-op-destruct]. - -

- -Because [Prettier][] is used in all project development workflows, the indentation is automatically handled when the length of the properties exceeds the maximum line length or reduces the readability. Therefore the decision to use a line break or not should be handled by Prettier instead of using a hard coded amount value. - -This improvement also added the `ImportDeclaration` and `ExportDeclaration` configurations, introduced in [ESLint version 4.18.0][gh-esl-rl-4.18.0], to avoid different behavior when updating to this version. - -# 0.2.0 - -![Release Date: none](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=-&colorA=4c566a&colorB=88c0d0) ![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.2.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0) - -⇅ [Show all commits][gh-compare-tag-v0.1.0_v0.2.0] - -↳ Release date of transferred `eslint-config` package: _2018-05-14_ -↳ Release date of transferred `eslint-config-base` package: _2018-05-12_ - -## Features - -### Packages - -#### `@arcticicestudio/eslint-config` - -**New React rule `react/jsx-max-depth`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#6 ⇄ arcticicestudio/eslint-config-arcticicestudio#7~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@356292cd~~) -↠ Added new rule [`react/jsx-max-depth`][gh-esl-p-react/jsx-max-depth] to validate the maximum JSX depth. Introduced in [eslint-plugin-react][gh-yannickcr/eslint-plugin-react] version [7.7.0][gh-esl-p-react-clog-7.7.0]. - -#### `@arcticicestudio/eslint-config-base` - -**New import rule `import/no-self-import`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#13 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#22~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@ff353600~~) -↠ Added and **enabled** rule [`import/no-self-import`][gh-esl-p-import/no-self-import] to prevent a module from importing itself. Introduced in [eslint-plugin-import][gh-esl-p-import] version [2.9.0][gh-esl-p-import-clog-2.9.0]. - -

- -**New import rule `import/no-useless-path-segments`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#14 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#23~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@4f0744b7~~) -↠ Added and **enabled** rule [`import/no-useless-path-segments`][gh-esl-p-import/no-useless-path-segments] to prevent unnecessary path segments in import and require statements. Introduced in [eslint-plugin-import][gh-esl-p-import] version [2.9.0][gh-esl-p-import-clog-2.9.0]. - -**New import rule `import/no-default-export`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#15 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#24~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@4b3dcdab~~) -↠ Added and **disabled** rule [`import/no-default-export`][gh-esl-p-import/no-default-export] to forbid default exports. Introduced in [eslint-plugin-import][gh-esl-p-import] version [2.9.0][gh-esl-p-import-clog-2.9.0]. - -**New import rule `import/no-cycle`** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#16 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#25~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@273430b9~~) -↠ Added and **enabled** rule [`import/no-cycle`][gh-esl-p-import/no-cycle] to prevent a module from importing a module with a dependency path back to itself. Introduced in [eslint-plugin-import][gh-esl-p-import] version [2.10.0][gh-esl-p-import-clog-2.10.0]. - -

- -

- -## Improvements - -### Packages - -#### `@arcticicestudio/eslint-config` - -**New and deprecated React 16.3 lifecycle methods** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#4 ⇄ arcticicestudio/eslint-config-arcticicestudio#5~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@0a444a20~~) -↠ Added the new React 16.3 lifecycle method [`getSnapshotBeforeUpdate`][react-d-comp#lc_gsbu] and the now deprecated (“async unsafe“) lifecycle `React.Component` methods, prefixed with `UNSAFE_`, to the except methods of the [`class-methods-use-this`][esl-r-class-methods-use-this] core rule. -Previously this resulted in a warning when no `this` keyword was used within the method. - -

- -**New and deprecated React 16.3 lifecycle methods** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#3 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@9ea7d770~~) -↠ Updated to the latest [base package][gh-t-pkg-esl-base] version [0.2.0][gh-clog#0.2.0] that added support for new ESLint core and plugin rules as well as many other improvements and bug fixes. - -#### `@arcticicestudio/eslint-config-base` - -**Import-related rule refactoring** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#6 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#12~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@8395e07d~~) -↠ Refactored rules related to imports that caused many style based warnings regarding ordering and sorting of `import` statements. - -###### Import Order Conflict - -The [`import/first`][gh-esl-p-import/first] and [`import/order`][gh-esl-p-import/order] rules were conflicting. While `import/first` disallowed - -```js -import "../config"; -import fs from "fs"; // <-- Error: Absolute imports should come before relative imports -import App from "../App"; -``` - -`import/order` on the other hand was fine with this as mentioned in the rule documentation: - -> Unassigned imports are ignored, as the order they are imported in may be important. - -This has been improved by allowing unassigned imports anywhere, **but still above all other non-import statements**. - -Also the import groups have been specified more accurate by splitting them into three main groups: - -1. _builtin_ and _external_ modules -2. _internal_ modules (e.g. if configured via webpack to handle internal paths differently) -3. _parent_, _sibling_ and _index_ modules - -These three groups must be separated by a blank line. - -###### Import Sort Conflict - -The [`sort-imports`][esl-r-sort-imports] rule conflicted with both of the other mentioned rules described above. It is not that important how imports are sorted within groups so this rule has been disabled until there's a way to make it work regarding the compatibility with other rules. - -

- -**Allow line break for arrow function implicit returns** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#7 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#17~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@fa3d6e8c~~) -↠ Line breaks are now allowed for implicit returns of arrow functions. -Previously it was configured to enforce the implicit return statement to be beside the arrow. This prevented longer statements to be placed on the next line to improve the readability and compliance with the maximum line length. These restrictions have now been lifted. - -

- -**No default case for switch block** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#9 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#19~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@1d9ad4ef~~) -↠ _switch-case_ blocks no longer require a `default` case. The [`default-case`][esl-r-default-case] rule has been disabled, because most of the time a `default` case is not necessary and should be handled by the developer depending on the use case and code scope. - -**Use line breaks after operators** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#10 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#20~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@9894f0d8~~) -↠ Line breaks are now placed **after** operators instead **before** them. Previously the [`operator-linebreak`][esl-r-operator-linebreak] core rule was configured to enforce line breaks to be placed before operators which could lead to confusions when indenting lines because of the [maximum line length][esl-r-max-len]. It now enforces line breaks after operators, but exceptions for the [conditional (ternary) operators][mdn-js-op-cond] `?` and `:` are configured to use line breaks before. - -

- -**Gatsby configuration file pattern for `devDependencies` imports** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#11 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#21~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@581fd812~~) -↠ The [`import/no-extraneous-dependencies`][gh-esl-p-import/no-extraneous-dependencies] rule now allows the import of `devDependencies` in [Gatsby][] configuration, currently including the following pattern: - -```raw -gatsby-browser.js -gatsby-config.js -gatsby-node.js -gatsby-ssr.js -``` - -These pattern should match all of the listed files as well as new files that might possibly be added in the future. - -

- -## Bug Fixes - -### Packages - -#### `@arcticicestudio/eslint-config-base` - -**Consistent line break usage within function parentheses** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#8 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#18~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@f4af5ecf~~) -↠ Line breaks within function parentheses are now consistent. -Previously the [`function-paren-newline`][esl-r-function-paren-newline] core rule was configured with `multiline` that only allowed a line break after the opening brace when the parameter also contains a line break, otherwise it disallows any line break within the parentheses. - -This was [not conform with the styleguide][docs-r-func#sig_invoc_indent] and has been changed to the `consistent` option. This requires consistent usage of line breaks for each pair of parentheses. It reports an error if one parenthesis in the pair has a line break inside it and the other parenthesis does not. - -

- -##### Toolbox - -**No peer dependency installation for CI/CD builds** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#3 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#4~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@fe418ec4~~) -↠ The installation of peer dependencies for CI/CD build (Circle CI) has been removed from the build configuration. - -It was set up to run the `npx` command to install the peer dependencies that is only required for users of the package, but not the package itself. The same dependencies are defined in `devDependencies` and therefore installed by default on `npm install`. - -# 0.1.0 - -![Release Date: 2018-01-27](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2018-01-27&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.1.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/projects/2) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.1.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/styleguide-javascript/milestone/1) - -⇅ [Show all commits][gh-compare-tag-init_v0.1.0] - -↳ Release date of transferred `eslint-config` package: _2018-02-05_ -↳ Release date of transferred `eslint-config-base` package: _2018-02-04_ - -> Detailed information can be found in the [project documentation][docs]. - -## Features - -### Style Guide - -**Base Rules** — #1 ⇄ #2 (⊶ dee0441a) -↠ Added the initial style guide with chapters to learn about the [comprehensive base rules][docs-r]. - -**Base Rules** — #3 ⇄ #4 (⊶ cee71142) -↠ Added the initial style guide for [React][docs-r-react] specific rules like [Higher-Order Components][docs-r-react-hoc], the [component methods & properties ordering][docs-r-react-order#meth_props] and [props][docs-r-react-props]. - -### Packages - -#### `@arcticicestudio/eslint-config` - -**Base Rules** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#1 ⇄ arcticicestudio/eslint-config-arcticicestudio#2~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@c46bf556~~) -↠ Added all rules of the [eslint-plugin-react][gh-yannickcr/eslint-plugin-react] and [eslint-plugin-jsx-a11y][gh-esl-p-jsx-a11y] plugins based on the [React][docs-r-react] and [Accessibility A11Y][docs-r-react-a11y] style guidelines as shareable ESLint config. -More details can also be found in the initially published ~~[project documentation][noop]~~. - -#### `@arcticicestudio/eslint-config-base` - -**Base Rules** — #8 ⇄ #16 (⊶ ac611f7e) -↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#1 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#2~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@9ba25a53~~) -↠ Added all [ESLint core rules][esl-r] and [eslint-plugin-import][gh-esl-p-import] plugin rules. -More details can also be found in the initially published ~~[project documentation][noop]~~. - -

- -

Copyright © 2018-present Arctic Ice Studio and Sven Greb

- -

- - - - - - - -[cra]: https://create-react-app.dev -[docs-r-func#sig_invoc_indent]: https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#signature-invocation-indentation -[docs-r-react-order#meth_props]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/ordering.html#component-methods-and-properties -[docs-r-react]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/index.html -[docs-r]: https://arcticicestudio.github.io/styleguide-javascript/rules/index.html -[docs]: https://arcticicestudio.github.io/styleguide-javascript -[esl-b-rl-6.0.0]: https://eslint.org/blog/2019/06/eslint-v6.0.0-released -[esl-d-mg-6.0.0]: https://eslint.org/docs/user-guide/migrating-to-6.0.0 -[esl-r]: https://eslint.org/docs/rules -[eslint]: https://eslint.org -[flow]: https://flow.org -[gatsby]: https://gatsbyjs.org -[gh-b-pkg-esl-readme#entry_points]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/packages/%40arcticicestudio/eslint-config/README.md#entry-points -[gh-esl-p-import]: https://github.com/benmosher/eslint-plugin-import -[gh-esl-p-jsx-a11y]: https://github.com/evcohen/eslint-plugin-jsx-a11y -[gh-okonet/lint-staged]: https://github.com/okonet/lint-staged -[gh-prettier/eslint-config-prettier-blob-chl#v8.0.0]: https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md#version-800-2021-02-21 -[gh-prettier/eslint-config-prettier-comp-v6.0.0_v8.1.0]: https://github.com/prettier/eslint-config-prettier/compare/v6.0.0...v8.1.0 -[gh-prettier/eslint-config-prettier]: https://github.com/prettier/eslint-config-prettier -[gh-prettier/eslint-plugin-prettier]: https://github.com/prettier/eslint-plugin-prettier -[gh-t-pkg-esl-base]: https://github.com/arcticicestudio/styleguide-javascript/tree/main/packages/@arcticicestudio/eslint-config-base -[gh-t-pkg-esl]: https://github.com/arcticicestudio/styleguide-javascript/tree/main/packages/@arcticicestudio/eslint-config -[gh-typescript-eslint/typescript-eslint-tree-pkg-parser]: https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/parser -[gh-typicode/husky]: https://github.com/typicode/husky -[gh-yannickcr/eslint-plugin-react]: https://github.com/yannickcr/eslint-plugin-react -[jest]: https://jestjs.io -[mdn-js-op-cond]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Conditional_Operator -[mdn-js-op-destruct]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment -[noop]: # -[prettier]: https://prettier.io -[remark]: https://remark.js.org -[semver]: https://semver.org -[shields.io]: https://shields.io -[styleguide-markdown]: https://arcticicestudio.github.io/styleguide-markdown -[trbdev-monorepo]: https://trunkbaseddevelopment.com/monorepos -[typescript]: https://www.typescriptlang.org - - - -[docs-r-react-a11y]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/accessibility_a11y.html -[docs-r-react-hoc]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/higher_order_components.html -[docs-r-react-props]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/props.html -[gh-compare-tag-init_v0.1.0]: https://github.com/arcticicestudio/styleguide-javascript/compare/d2d94733...v0.1.0 - - - -[esl-r-class-methods-use-this]: https://eslint.org/docs/rules/class-methods-use-this -[esl-r-function-paren-newline]: https://eslint.org/docs/rules/function-paren-newline -[esl-r-max-len]: https://eslint.org/docs/rules/max-len -[esl-r-operator-linebreak]: https://eslint.org/docs/rules/operator-linebreak -[esl-r-sort-imports]: https://eslint.org/docs/rules/sort-imports -[gh-clog#0.2.0]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CHANGELOG.md#020 -[gh-compare-tag-v0.1.0_v0.2.0]: https://github.com/arcticicestudio/styleguide-javascript/compare/v0.1.0...v0.2.0 -[gh-esl-p-import-clog-2.10.0]: https://github.com/benmosher/eslint-plugin-import/blob/master/CHANGELOG.md#2100---2018-03-29 -[gh-esl-p-import-clog-2.9.0]: https://github.com/benmosher/eslint-plugin-import/blob/master/CHANGELOG.md#290---2018-02-21 -[gh-esl-p-import/first]: https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/first.md -[gh-esl-p-import/no-cycle]: https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-cycle.md -[gh-esl-p-import/no-default-export]: https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-default-export.md -[gh-esl-p-import/no-extraneous-dependencies]: https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-extraneous-dependencies.md -[gh-esl-p-import/no-self-import]: https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-self-import.md -[gh-esl-p-import/no-useless-path-segments]: https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-useless-path-segments.md -[gh-esl-p-import/order]: https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/order.md -[gh-esl-p-react-clog-7.7.0]: https://github.com/yannickcr/eslint-plugin-react/releases/tag/v7.7.0 -[gh-esl-p-react/jsx-max-depth]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-max-depth.md -[react-d-comp#lc_gsbu]: https://reactjs.org/docs/react-component.html#getsnapshotbeforeupdate - - - -[esl-r-default-case]: https://eslint.org/docs/rules/default-case -[esl-r-object-curly-newline]: https://eslint.org/docs/rules/object-curly-newline -[gh-compare-tag-v0.2.0_v0.3.0]: https://github.com/arcticicestudio/styleguide-javascript/compare/v0.2.0...v0.3.0 -[gh-esl-rl-4.18.0]: https://github.com/eslint/eslint/releases/tag/v4.18.0 - - - -[esl-r-valid-jsdoc]: https://eslint.org/docs/rules/valid-jsdoc -[gh-compare-tag-v0.3.0_v0.4.0]: https://github.com/arcticicestudio/styleguide-javascript/compare/v0.3.0...v0.4.0 -[gh-esl-p-react/boolean-prop-naming]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/boolean-prop-naming.md -[gh-esl-p-react/jsx-sort-props]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-sort-props.md - - - -[esl-r-quote-props#keywords]: https://eslint.org/docs/rules/quote-props.html#keywords -[esl-r-quote-props#numbers]: https://eslint.org/docs/rules/quote-props.html#numbers -[gh-compare-tag-v0.4.0_v0.5.0]: https://github.com/arcticicestudio/styleguide-javascript/compare/v0.4.0...v0.5.0 -[gh-esl-p-jsx-a11y/label-has-associated-control]: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/label-has-associated-control.md -[gh-esl-p-jsx-a11y/label-has-for.md]: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/label-has-for.md - - - -[docs-r-arr#clb_ret]: https://arcticicestudio.github.io/styleguide-javascript/rules/arrays.html#callback-return -[docs-r-comp_op_eq#mix_ops]: https://arcticicestudio.github.io/styleguide-javascript/rules/comparison_operators_and_equality.html#no-mixed-operators -[docs-r-ctrl_statm#selec_op]: https://arcticicestudio.github.io/styleguide-javascript/rules/control_statements.html#selection_operators -[docs-r-destrc#obj]: https://arcticicestudio.github.io/styleguide-javascript/rules/destructuring.html#objects -[docs-r-hoisting]: https://arcticicestudio.github.io/styleguide-javascript/rules/hoisting.html -[docs-r-name_conv#acrs_inits]: https://arcticicestudio.github.io/styleguide-javascript/rules/naming_conventions.html#acronyms-and-initialisms -[docs-r-name_conv#const]: https://arcticicestudio.github.io/styleguide-javascript/rules/naming_conventions.html#constants -[docs-r-name_conv#undsc]: https://arcticicestudio.github.io/styleguide-javascript/rules/naming_conventions.html#underscores -[docs-r-obj#prot_btin]: https://arcticicestudio.github.io/styleguide-javascript/rules/objects.html#prototype-builtins -[docs-r-obj#rest_spr]: https://arcticicestudio.github.io/styleguide-javascript/rules/objects.html#rest-spread -[docs-r-react-a11y#aria_roles]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/accessibility_a11y.html#valid-aria-roles -[docs-r-react-meth]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/methods.html -[docs-r-react-name_conv#jsx_fext]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/naming_conventions.html#jsx-file-extension -[docs-r-react-props#no_idx_key]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/props.html#no-index-as-key -[docs-r-vars#dec_sep]: https://arcticicestudio.github.io/styleguide-javascript/rules/variables.html#declaration-separation -[docs-r-vars#unused]: https://arcticicestudio.github.io/styleguide-javascript/rules/variables.html#unused -[docs-r-ws#commas]: https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#around-commas -[docs-r-ws#func_sig]: https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#around-function-signatures -[docs-r-ws#in_blocks]: https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#inside-blocks -[docs-r-ws#in_comp_props]: https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#inside-computed-properties -[docs-r-ws#in_obj_lit_props]: https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#inside-object-literal-properties -[docs-r-ws#mult_blk_line]: https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#multiple-empty-lines -[docs-r-ws#trail_eof]: https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#trailing-spaces-at-the-end-of-lines -[esl-d-mg-6.0.0#dep_obj_sprd]: https://eslint.org/docs/user-guide/migrating-to-6.0.0#-the-depreacted-experimentalobjectrestspread-option-has-been-removed -[esl-d-mg-6.0.0#recom]: https://eslint.org/docs/user-guide/migrating-to-6.0.0#eslint-recommended-changes -[esl-d-r#dep]: https://eslint.org/docs/rules/#deprecated -[esl-r-function-call-argument-newline]: https://eslint.org/docs/rules/function-call-argument-newline -[esl-r-no-mixed-operators]: https://eslint.org/docs/rules/no-mixed-operators -[esl-r-no-multiple-empty-lines]: https://eslint.org/docs/rules/no-multiple-empty-lines -[esl-r-no-param-reassign]: https://eslint.org/docs/rules/no-param-reassign -[esl-r-no-prototype-builtins]: https://eslint.org/docs/rules/no-prototype-builtins -[esl-r-no-shadow]: https://eslint.org/docs/rules/no-shadow -[esl-r-no-underscore-dangle]: https://eslint.org/docs/rules/no-underscore-dangle -[gh-compare-tag-v0.5.0_v0.6.0]: https://github.com/arcticicestudio/styleguide-javascript/compare/v0.5.0...v0.6.0 -[gh-confusing-browser-globals]: https://github.com/facebook/create-react-app/tree/master/packages/confusing-browser-globals -[gh-esl-b-7ad86de-r-empty_line:63]: https://github.com/eslint/eslint/blob/7ad86dea02feceb7631943a7e1423cc8a113fcfe/lib/rules/no-multiple-empty-lines.js#L63 -[gh-esl-p-react/forbid-prop-types]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/forbid-prop-types.md -[gh-esl-p-react/jsx-filename-extension]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-filename-extension.md -[gh-esl-p-react/no-array-index-key]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-array-index-key.md -[gh-esl-rl-v6.2.0]: https://github.com/eslint/eslint/releases/tag/v6.2.0 -[gh-eslint-restricted-globals]: https://github.com/sidoshi/eslint-restricted-globals -[mdn-js-kw-let#tmp_dead_zone]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let#Temporal_dead_zone -[npm-has]: https://www.npmjs.com/package/has -[react-router]: https://reacttraining.com/react-router -[w3-aria_roles#intro]: https://www.w3.org/TR/wai-aria/#usage_intro - - - -[esl-d-dev-share_conf#scope]: https://eslint.org/docs/developer-guide/shareable-configs#npm-scoped-modules -[gh-blog-intro-issue-templ]: https://blog.github.com/2016-02-17-issue-and-pull-request-templates -[gh-blog-multi-issue-templ]: https://blog.github.com/2018-01-25-multiple-issue-and-pull-request-templates -[gh-compare-tag-v0.6.0_v0.7.0]: https://github.com/arcticicestudio/styleguide-javascript/compare/v0.6.0...v0.7.0 -[gh-help-issue-templ-depr]: https://help.github.com/articles/manually-creating-a-single-issue-template-for-your-repository -[gh-help-issue-templ-repo]: https://help.github.com/articles/creating-issue-templates-for-your-repository -[gh-help-issue-templ]: https://help.github.com/articles/about-issue-and-pull-request-templates -[gh-help-pr-templ]: https://help.github.com/articles/creating-a-pull-request-template-for-your-repository -[gh-remark-cli]: https://github.com/remarkjs/remark/tree/main/packages/remark-cli -[gh-remark-lint]: https://github.com/remarkjs/remark-lint -[gh-remark-preset-lint-arcticicestudio]: https://github.com/arcticicestudio/remark-preset-lint-arcticicestudio -[git-d-gitattributes]: https://git-scm.com/docs/gitattributes -[git-d-gitignore]: https://git-scm.com/docs/gitignore -[git-d-mailmap]: https://git-scm.com/docs/git-shortlog#_mapping_authors -[npm-cli-dep]: https://docs.npmjs.com/cli/deprecate -[npm-d-scope]: https://docs.npmjs.com/about-scopes -[yarn-d-ws]: https://yarnpkg.com/en/docs/workspaces - - - -[cci-d]: https://circleci.com/docs -[cci]: https://circleci.com -[gh-b-ac611f7e-circleci]: https://github.com/arcticicestudio/styleguide-javascript/blob/ac611f7e342e8475767b03d95fa174aea65b39e5/.circleci/config.yml -[gh-blog-actions-cicd]: https://github.blog/2019-08-08-github-actions-now-supports-ci-cd -[gh-blog-actions]: https://github.blog/2018-10-17-action-demos -[gh-compare-tag-v0.7.0_v0.8.0]: https://github.com/arcticicestudio/styleguide-javascript/compare/v0.7.0...v0.8.0 -[gh-esl-p-react-jsx_bind]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-bind.md -[gh-feat-actions]: https://github.com/features/actions -[gh-help-actions-events]: https://help.github.com/en/articles/events-that-trigger-workflows#webhook-events -[gh-help-actions]: https://help.github.com/en/categories/automating-your-workflow-with-github-actions -[gh-starter-workflows]: https://github.com/actions/starter-workflows -[gh-t-esl-p-react-hooks]: https://github.com/facebook/react/tree/master/packages/eslint-plugin-react-hooks -[gh-tsesl-parser#config]: https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/parser#configuration -[gh-tsesl-rl-2.0.0]: https://github.com/typescript-eslint/typescript-eslint/releases/tag/v2.0.0 -[gh-tsesl-t-configs]: https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin/src/configs -[gh-tsesl]: https://github.com/typescript-eslint/typescript-eslint -[gh-tsesl#890]: https://github.com/typescript-eslint/typescript-eslint/issues/890 -[gh-yarn-berry-t-gh-wrkf]: https://github.com/yarnpkg/berry/tree/master/.github/workflows -[react-b-rln-16.8.0]: https://reactjs.org/blog/2019/02/06/react-v16.8.0.html -[react-d-hooks-api]: https://reactjs.org/docs/hooks-reference.html -[react-d-hooks-rules]: https://reactjs.org/docs/hooks-rules.html -[react-d-hooks]: https://reactjs.org/docs/hooks-intro.html -[yt-gh-stream-actions_cicd]: https://www.youtube.com/watch?v=E1OunoCyuhY - - - -[esl-docs-guides-mig_v7]: https://eslint.org/docs/user-guide/migrating-to-7.0.0 -[esl-docs-guides-mig_v7#depr_rules]: https://eslint.org/docs/user-guide/migrating-to-7.0.0#nodejscommonjs-rules-have-been-deprecated -[esl-docs-guides-mig_v7#override_file_match]: https://eslint.org/docs/user-guide/migrating-to-7.0.0#lint-files-matched-by-overridesfiles-by-default -[esl-docs-guides-mig_v7#recomm_rules]: https://eslint.org/docs/user-guide/migrating-to-7.0.0#eslintrecommended-has-been-updated -[esl-docs-rule-callback-return]: https://eslint.org/docs/rules/callback-return -[esl-docs-rule-global-require]: https://eslint.org/docs/rules/global-require -[esl-docs-rule-handle-callback-err]: https://eslint.org/docs/rules/handle-callback-err -[esl-docs-rule-no-dupe-else-if]: https://eslint.org/docs/rules/no-dupe-else-if -[esl-docs-rule-no-import-assign]: https://eslint.org/docs/rules/no-import-assign -[esl-docs-rule-no-mixed-requires]: https://eslint.org/docs/rules/no-mixed-requires -[esl-docs-rule-no-new-require]: https://eslint.org/docs/rules/no-new-require -[esl-docs-rule-no-path-concat]: https://eslint.org/docs/rules/no-path-concat -[esl-docs-rule-no-process-env]: https://eslint.org/docs/rules/no-process-env -[esl-docs-rule-no-process-exit]: https://eslint.org/docs/rules/no-process-exit -[esl-docs-rule-no-restricted-modules]: https://eslint.org/docs/rules/no-restricted-modules -[esl-docs-rule-no-setter-return]: https://eslint.org/docs/rules/no-setter-return -[esl-docs-rule-no-sync]: https://eslint.org/docs/rules/no-sync -[gh-acornjs/acorn-comp-v7.0.0_v7.1.1]: https://github.com/acornjs/acorn/compare/7.0.0...7.1.1 -[gh-acornjs/acorn]: https://github.com/acornjs/acorn -[gh-benmosher/eslint-plugin-import-comp-v2.18.2_v2.22.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.18.2...v2.22.1 -[gh-blog-npm_v7#break_change]: https://github.blog/2020-10-13-presenting-v7-0-0-of-the-npm-cli/#user-content-breaking-changes -[gh-compare-tag-v0.8.0_v0.9.0]: https://github.com/arcticicestudio/styleguide-javascript/compare/v0.8.0...v0.9.0 -[gh-eslint/eslint-comp-v6.2.0_v7.23.0]: https://github.com/eslint/eslint/compare/v6.2.0....v7.23.0 -[gh-facebook/react-blob-pkg-eslint-plugin-react-hooks-chl#v4.2.0]: https://github.com/facebook/react/blob/master/packages/eslint-plugin-react-hooks/CHANGELOG.md#420 -[gh-facebook/react-blob-v16.13.1-recon_childfiber#l407]: https://github.com/facebook/react/blob/v16.13.1/packages/react-reconciler/src/ReactChildFiber.js#L407 -[gh-github/renaming]: https://github.com/github/renaming -[gh-guides-intro-flow]: https://guides.github.com/introduction/flow -[gh-jsx-eslint/eslint-plugin-jsx-a11y-comp-v6.2.3_v6.4.1]: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/compare/v6.2.3...v6.4.1 -[gh-jsx-eslint/eslint-plugin-jsx-a11y]: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y -[gh-microsoft/typescript-comp-v3.5.3_v4.2.3]: https://github.com/microsoft/TypeScript/compare/v3.5.3...v4.2.3 -[gh-microsoft/typescript]: https://github.com/microsoft/TypeScript -[gh-mysticatea/eslint-plugin-node-blob-docs-rule-callback-return]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/callback-return.md -[gh-mysticatea/eslint-plugin-node-blob-docs-rule-global-require]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/global-require.md -[gh-mysticatea/eslint-plugin-node-blob-docs-rule-handle-callback-err]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/handle-callback-err.md -[gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-mixed-requires]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-mixed-requires.md -[gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-new-require]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-new-require.md -[gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-path-concat]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-path-concat.md -[gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-process-env]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-process-env.md -[gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-process-exit]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-process-exit.md -[gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-restricted-modules]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-restricted-modules.md -[gh-mysticatea/eslint-plugin-node-blob-docs-rule-no-sync]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-sync.md -[gh-okonet/lint-staged-comp-v9.2.3_v10.5.4]: https://github.com/typicode/husky/compare/v9.2.3...v10.5.4 -[gh-prettier/eslint-config-prettier-comp-v6.1.0_v8.1.0]: https://github.com/prettier/eslint-config-prettier/compare/v6.1.0...v8.1.0 -[gh-prettier/eslint-plugin-prettier-comp-v3.1.0_v3.3.1]: https://github.com/prettier/eslint-plugin-prettier/compare/v3.1.0...v3.3.1 -[gh-prettier/prettier-comp-v1.18.2_v2.2.1]: https://github.com/typicode/husky/compare/v1.18.2...v2.2.1 -[gh-prettier/prettier]: https://github.com/prettier/prettier -[gh-remarkjs/remark-comp-v7.0.0_v9.0.0]: https://github.com/typicode/husky/compare/v7.0.0...v9.0.0 -[gh-remarkjs/remark]: https://github.com/remarkjs/remark/releases -[gh-sarbbottam/eslint-find-rules-comp-v3.4.0_v3.6.1]: https://github.com/sarbbottam/eslint-find-rules/compare/v3.4.0...v3.6.1 -[gh-sarbbottam/eslint-find-rules]: https://github.com/sarbbottam/eslint-find-rules -[gh-sindresorhus/del-cli-comp-v2.0.0_v3.0.1]: https://github.com/sindresorhus/del-cli/compare/v2.0.0...v3.0.1 -[gh-sindresorhus/del-cli]: https://github.com/sindresorhus/del-cli -[gh-styleguide-javascript-tree-pkgs-@arcticicestudio/eslint-config]: https://github.com/arcticicestudio/styleguide-javascript/tree/develop/packages/%40arcticicestudio/eslint-config -[gh-typescript-eslint/typescript-eslint-comp-v2.0.0_v4.20.0]: https://github.com/typescript-eslint/typescript-eslint/compare/v2.0.0...v4.20.0 -[gh-typescript-eslint/typescript-eslint-tree-pkg-eslint-plugin]: https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin -[gh-typicode/husky-comp-v3.0.4_v6.0.0]: https://github.com/typicode/husky/compare/v3.0.4...v6.0.0 -[gh-yannickcr/eslint-plugin-react-blob-chl#v7.15.0]: https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md#7150---2019-09-30 -[gh-yannickcr/eslint-plugin-react-blob-chl#v7.22.0]: https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md#7220---20201229 -[gh-yannickcr/eslint-plugin-react-blob-chl#v7.5.0]: https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md#750---2017-11-18 -[gh-yannickcr/eslint-plugin-react-blob-chl#v7.9.0]: https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md#790---2018-06-03 -[gh-yannickcr/eslint-plugin-react-blob-docs-rule-jsx-newline]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-newline.md -[gh-yannickcr/eslint-plugin-react-blob-docs-rule-jsx-no-constructed-context-values]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-constructed-context-values.md -[gh-yannickcr/eslint-plugin-react-blob-docs-rule-jsx-no-target-blank]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-target-blank.md -[gh-yannickcr/eslint-plugin-react-blob-docs-rule-jsx-no-useless-fragment]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-useless-fragment.md -[gh-yannickcr/eslint-plugin-react-blob-docs-rule-no-unstable-nested-components]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-unstable-nested-components.md -[gh-yannickcr/eslint-plugin-react-blob-docs-rule-require-default-props]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/require-default-props.md -[gh-yannickcr/eslint-plugin-react-blob-rules-sort-comp]: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/sort-comp.md -[gh-yannickcr/eslint-plugin-react-comp-v7.14.3_v7.23.1]: https://github.com/yannickcr/eslint-plugin-react/compare/v7.14....v7.23.1 -[svengreb/tmpl-rl-v0.9.0]: https://github.com/svengreb/tmpl/releases/tag/v0.9.0 -[svengreb/tmpl]: https://github.com/svengreb/tmpl - - - -[eslint-rule-spaced-comment]: https://eslint.org/docs/rules/spaced-comment -[gh-blob-pkgs-@ais-ts-index-ab59f71f#l31-36]: https://github.com/arcticicestudio/styleguide-javascript/blob/ab59f71f/packages/%40arcticicestudio/eslint-config-typescript/index.js#L31-L36 -[gh-compare-tag-v0.9.0_v0.10.0]: https://github.com/arcticicestudio/styleguide-javascript/compare/v0.9.0...v0.10.0 -[gh-tree-pkgs-@ais-remarl-preset-lint]: https://github.com/arcticicestudio/styleguide-markdown/tree/main/packages/%40arcticicestudio/remark-preset-lint -[gh#10]: https://github.com/arcticicestudio/styleguide-markdown/issues/10 -[gh#28]: https://github.com/arcticicestudio/styleguide-markdown/issues/28 -[typescript-docs-triple_slash_directives]: https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html - - - -[csb-jvvkoo8pq3]: https://codesandbox.io/s/jvvkoo8pq3 -[eslint-docs-rules-no-void]: https://eslint.org/docs/rules/no-void -[eslint-docs-rules-no-void#allowasstatement]: https://eslint.org/docs/rules/no-void#allowasstatement -[gh-compare-tag-v0.10.0_v0.11.0]: https://github.com/arcticicestudio/styleguide-javascript/compare/v0.10.0...v0.11.0 -[gh-typescript-eslint/typescript-eslint-blob-rules-no-floating-promises]: https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-floating-promises.md -[gh-typescript-eslint/typescript-eslint#1184]: https://github.com/typescript-eslint/typescript-eslint/issues/1184 -[mdn-js-ops-void]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/void -[react-docs-hooks-faq#fetch_data]: https://reactjs.org/docs/hooks-faq.html#how-can-i-do-data-fetching-with-hooks -[react-docs-hooks-ref]: https://reactjs.org/docs/hooks-reference.html#useeffect diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index 4bdb5ca..0000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,61 +0,0 @@ -# Code of Conduct - -All (core) team members, contributors/committers and volunteers in this project are required to act according to the following Code of Conduct. We ask you to follow these guidelines which help steer our interactions and strive to keep this a positive and growing project and help us provide and ensure a safe environment for everyone. - -If you are being harassed, notice that someone else is being harassed, or have any other concerns, please contact me at support@arcticicestudio.com or directly to one of the core team members via [email][mailmap]. Your reports will be taken seriously and not dismissed or argued with. - -## What we believe in and how we act - -- In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. We welcome people regardless of these or other attributes. -- Our community is based on mutual respect, tolerance, and encouragement. -- We believe that a diverse community where people treat each other with respect is stronger, more vibrant and has more potential contributors and more sources for ideas. We aim for more diversity. -- We are kind, welcoming and courteous to everyone. -- We are focusing on what is best for the community. -- We are respectful of others, their positions, their skills, their commitments and their efforts. -- We are attentive in our communications, whether in person or online, and we are tactful and respectful when approaching differing views and experiences. -- We are aware that language shapes reality. Thus, we use inclusive, gender-neutral language in the documents we provide and when we talk to people. When referring to a group of people, we aim to use gender-neutral terms like “team”, “folks” or “everyone”. [1][ref-gender-neutral-docs] -- We respect that people have differences of opinion and criticize constructively. - -## Unacceptable Behavior - -- Do not be mean or rude. -- Do not discriminate against anyone. -- Sexism and racism of any kind (including sexist and racist "jokes"), demeaning or insulting behavior and harassment are seen as direct violations to this Code of Conduct. Harassment includes offensive verbal comments related to age, body size, culture, ethnicity, gender expression, gender identity, level of experience, nationality, personal ability or disability, physical appearance, physical or mental difference, race, religion, set of skills, sexual orientation, socio-economic status, and subculture. Harassment also includes sexual images in public spaces, deliberate intimidation, stalking, following, harassing photography or recording, inappropriate physical contact, and unwelcome sexual attention. -- Respect that some individuals and cultures consider the casual use of profanity offensive and off-putting. -- Derailing, tone arguments and otherwise playing on people's desires to be nice are not welcome, especially in discussions about violations to this Code of Conduct. -- Please avoid unstructured critique. -- Likewise any spamming, trolling, flaming, baiting or other attention-stealing behavior is not welcome. -- Publishing others' private information, such as a physical or electronic address, without explicit permission -- Other conduct which could reasonably be considered inappropriate in a professional setting - -## Responsibilities - -The members of the core team and project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting us via support@svengreb.de or directly to one of the project core team members or owner via [email][mailmap]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. - -## Consequences for Violations - -If a participant engages in any behavior violating this Code of Conduct, the core team members and project owner of this project may take any action they deem appropriate, including warning the offender or expulsion from the project, exclusion from any interaction and loss of all rights in this project. - -Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. - -Decisions about consequences of violations of this Code of Conduct are made by this projects core team members and project owner as named above and will not be discussed with the person responsible for the violation. - -## Scope - -This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. - ---- - -Thanks for the inspirations and attributions to GitHub's [Open Source Guides][oss-guides], [Hoodie's Code of Conduct][hoodie-coc] and the [Contributor Covenant Version 1.4][contrib-cov-1.4]. - -[contrib-cov-1.4]: https://contributor-covenant.org/version/1/4/code-of-conduct -[hoodie-coc]: http://hood.ie/code-of-conduct -[mailmap]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/.mailmap -[oss-guides]: https://opensource.guide -[ref-gender-neutral-docs]: https://modelviewculture.com/pieces/gendered-language-feature-or-bug-in-software-documentation diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index b2d69ce..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,199 +0,0 @@ -# Contributing to styleguide-javascript - -Thanks for contributing to styleguide-javascript! - -This is a set of guidelines for contributing to styleguide-javascript. Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved. - -Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue, assessing changes, and helping you finalize your pull requests. - -As for everything else in the project, the contributions to styleguide-javascript are governed by our [Code of Conduct][gh-coc]. By participating, you are expected to uphold this code. Please report unacceptable behavior at support@arcticicestudio.com or directly to one of the core team members via [email][gh-mailmap]. - -## Getting Started - -styleguide-javascript is an open source project and we love to receive contributions from the community! There are many ways to contribute, from [writing- and improving documentation and tutorials](#documentations), [reporting bugs](#bug-reports), [submitting enhancement suggestions](#enhancement-suggestions) which can be incorporated into this project by [submitting a pull request](#pull-requests). - -The project development workflow and process uses [GitHub Issues][gh-issues]- and [Pull Requests][gh-pr] management to track issues and pull requests including multiple [issue templates][gh-issues-templates]. - -Before you continue with these contribution guidelines we highly recommend to read the awesome GitHub [Open Source Guides][os-guide] on how to [making open source contributions][os-guide-contrib]. - -### Bug Reports - -A bug is a _demonstrable problem_ that is caused by the code in the repository. This section guides you through submitting a bug report for styleguide-javascript. Following these guidelines helps maintainers and the community understand your report, reproduce the behavior and find related reports. - -**Do NOT report security vulnerabilities in public issues!** Please only contact one of the core team members or project owner in a responsible manner by [email][gh-mailmap] or via support@arcticicestudio.com. We will assess the issue as soon as possible on a best-effort basis and will give you an estimate for when we have a fix and release available for an eventual public disclosure. - -- **Use the [GitHub Issue search][gh-issues]** — check if the issue has already been reported. If it has **and the issue is still open**, add a comment to the existing issue instead of opening a new one. If you find a closed issue that seems like it is the same thing that you are experiencing, open a new issue and include a link to the original issue in the body of your new one. -- **Check if the issue has been fixed** — try to reproduce it using the [latest version][gh-releases-latest] and [`main`][gh-branch-main] branch in the repository. -- **Isolate the problem** — ideally create a [MCVE](#mcve). - -When you are creating a bug report, please provide as much detail and context as possible. Fill out on of [the required templates][gh-issues-template-bug], the information it asks helps maintainers to reproduce the problem and resolve issues faster. - -- **Use a clear and descriptive title** for the issue to identify the problem. -- **Describe the exact steps which reproduce the problem** in as many details as possible. -- **Include screenshots and animated GIFs** if appropriate which show you following the described steps and clearly demonstrate the problem. -- **Provide specific examples to demonstrate the steps**. Include links to files or GitHub projects, or copy/pasteable snippets. If you are providing snippets in the issue, use [Markdown code blocks][ghd-markdown-code-blocks] or [attach files to the issue][ghd-attach-file]. - -If possible please provide more context by answering these questions: - -- **Did the problem start happening recently** e.g. after updating to a new version of styleguide-javascript or was this always a problem? - - If the problem started happening recently, **can you reproduce the problem in an older version of styleguide-javascript?** - - What is the most recent version in which the problem does not happen? -- **Can you reliably reproduce the issue?** If not, please provide details about how often the problem happens and under which conditions it normally happens. - -Please include details about your configuration and environment based on the [issue template][gh-issues-template-bug]. - -### Enhancement Suggestions - -This section guides you through submitting an enhancement suggestion, including completely new features and minor improvements to existing functionality. Following these guidelines helps maintainers and the community understand your suggestion and find related suggestions. - -- **Use the [GitHub Issues search][gh-issues]** — check if this enhancement has already been suggested. If it has **and the issue is still open**, add your additions as comment to the existing issue instead of opening a new one. -- **Check if the enhancement has already been implemented** — use the [latest version][gh-releases-latest] and [`main`][gh-branch-main] branch to ensure that the feature or improvement has not already been added. -- **Provide a reduced show case** — ideally create a [MCVE](#mcve). - -Before creating enhancement suggestions, please check if your idea fits with the scope and provide as much detail and context as possible using a structured layout like the [the issue template][gh-issues-template-enhancement]. - -- **Use a clear and descriptive title** for the issue to identify the suggestion. -- **Provide a step-by-step description of the suggested enhancement** in as many details as possible and provide use-cases. -- **Provide examples to demonstrate the need of an enhancement**. Include copy/paste snippets which you use in those examples, use [Markdown code blocks][ghd-markdown-code-blocks] or [attach files to the issue][ghd-attach-file]. -- **Describe the current behavior** and **explain which behavior you expected to see instead** and why. -- **Explain why this enhancement would be useful** to most styleguide-javascript users. -- **Maybe list some other projects where this enhancement exists.** - -### Pull Requests - -This section guides you through submitting an pull request. Following these guidelines helps maintainers and the community to better understand your code. - -**Please [suggest an enhancement](#enhancement-suggestions) or [report a bug](#bug-reports) first before embarking on any significant pull request** (e.g. implementing features, refactoring code, fixing a bug), otherwise you risk spending a lot of time working on something that the core team members and project owner might not want to merge into the project. - -When you are submitting an pull request, please provide as much detail and context as possible. Fill out [the required template][gh-issues-template-pr] to help maintainers to understand your submitted code. - -- **Use a clear and descriptive title for the pull request** -- **Do not include issue numbers in the pull request title** but fill in the metadata section at the top of the [required pull request template][gh-issues-template-pr] making use of the [GitHub issue keywords][ghd-issue-keywords] to link to specific [enhancement suggestions](#enhancement-suggestions) or [bug reports](#bug-reports). -- **Include screenshots and animated GIFs** if appropriate which show you following the described steps and clearly demonstrate the change. -- **Make sure to follow the [JavaScript](#javascript-style-guide), [Markdown](#markdown-style-guide) and [Git](#git-style-guide) style guides**. -- **Remain focused in scope and avoid to include unrelated commits**. -- **Features and improvements should always be accompanied with tests and documentation**. If the pull request improves the performance consider to include a benchmark test, optimally including a chart. -- **Lint and test before submitting the pull request**. -- **Make sure to create the pull request from a [topic branch][git-docs-branching-workflows]**. - -**All pull requests must be send against the [`main`][gh-branch-main] branch** - Please read the [branch organization](#branch-organization) section below for details about the branching model. - -### Documentations - -styleguide-javascript's documentation consists of guides, which helps users to learn about the project. - -You can help improve the docs and guides by making them more coherent, consistent or readable, adding missing information, correcting factual errors, fixing typos, bringing them up to date when there are differences to the latest version. This can be done by submitting a [enhancement suggestion](#enhancement-suggestions) and then opening a [pull request](#pull-requests) for it. - -## Branch Organization - -styleguide-javascript adheres to the [Arctic Ice Studio Git style guide][gh-styleguide-git] which assumes that you are familiar with the [GitHub Flow][ghg-flow] branching model. The repository consists of the `main` core branch with an infinite development lifecycle. The source code of `HEAD` in this branch contains the latest development state and reflects all tagged release versions. - -**All [pull requests](#pull-requests) for limited development lifecycle _story_/_topic_ branches must be send against the `main` branch**. - - - -## How else can I help? - - - -### Improve Issues - -Some issues are created with missing information, not reproducible, or plain invalid. You can help to make it easier for maintainer to understand and resolve them faster. since handling issues takes a lot of time that could rather spend on writing code. - -### Give Feedback On Issues and Pull Requests - -We're always looking for more opinions on discussions in issues and pull request reviews which is a good opportunity to influence the future direction of styleguide-javascript. - -The [question][gh-issues-label-question] issue label is a good place to find ongoing discussions and questions. - -## Style Guides - -Every major open source project has its own style guide, a set of standards and conventions for the writing and design of code, documentations and Git commit messages. It is much easier to understand a large code base when all the code in it is in a consistent style. - -A style guide establishes and enforces style to improve the intelligibility and communication within the project community. It ensures consistency and enforces best practice in usage and language composition. - -### Markdown Style Guide - -styleguide-javascript adheres to the [Arctic Ice Studio Markdown Style Guide][gh-styleguide-markdown]. - -### Git Commit Messages - -A well-crafted Git commit message is the best way to communicate _context_ about a change to the maintainers. The code will tell what changed, but only the commit message can properly tell why. Re-establishing the context of a piece of code is wasteful. We can't avoid it completely, so our efforts should go to reducing it as much as possible. - -styleguide-javascript adheres to the [Arctic Ice Studio Git Style Guide][gh-styleguide-git]. The style guide assumes that you are familiar with the [GitHub Flow][ghg-flow] branching model. - -## MCVE - -A Minimal, Complete, and Verifiable Example. - -When [reporting a bug](#bug-reports), sometimes even when [suggesting enhancements](#enhancement-suggestions), the issue can be processed faster if you provide code for reproduction. That code should be… - -- …Minimal – Use as little code as possible that still produces the same behavior -- …Complete – Provide all parts needed to reproduce the behavior -- …Verifiable – Test the code you're about to provide to make sure it reproduces the behavior - -A MCVE is a common practice like on [Stack Overflow][stackoverflow-mcve] and sometimes it is also called [SSCCE][], a _Short, Self Contained, Correct (Compilable), Example_. - -The recommended way for GitHub based projects is to create it as [Gist][gh-gist] or new repository, but of course you can [attach it to issues and pull requests as files][ghd-attach-file], use any free code paste- or file hosting service or paste the code in [Markdown code blocks][ghd-markdown-code-blocks] into the issue. - -### Minimal - -The more code there is to go through, the less likely developers can understand your enhancement or find the bug. Streamline your example in one of two ways: - -- **Restart from scratch**. Create new code, adding in only what is needed to demonstrate the behavior and is also useful if you can't post the original code publicly for legal or ethical reasons. -- **Divide and conquer**. When you have a small amount of code, but the source of the bug is entirely unclear, start removing code a bit at a time until the problem disappears – then add the last part back and document this behavior to help developers to trace- and debug faster. - -#### Minimal and readable - -Minimal does not mean terse – don't sacrifice communication to brevity. Use consistent naming and indentation following the [style guides](#style-guides), and include comments if needed to explain portions of the code. - -### Complete - -Make sure all resources and code necessary to reproduce the behavior is included. The problem might not be in the part you suspect it is, but another part entirely. - -### Verifiable - -To entirely understand your enhancement or bug report, developers will need to verify that it _exists_: - -- **Follow the contribution guidelines regarding the description and details**. Without information developers won't be able to understand and reproduce the behavior. -- **Eliminate any issues that aren't relevant**. Ensure that there are no compile-time errors. -- **Make sure that the example actually reproduces the problem**. Sometimes the bug gets fixed inadvertently or unconsciously while composing the example or does not occur when running on fresh machine environment. - -## Versioning - -styleguide-javascript follows the [Semantic Versioning Specification][semver] (SemVer). We release patch versions for bug fixes, minor versions for enhancements like new features and improvements, and major versions for any backwards incompatible changes. Deprecation warnings are introduced for breaking changes in a minor version so that users learn about the upcoming changes and migrate their code in advance. - -Every significant change is documented in the [changelog][gh-changelog]. - -## Credits - -Thanks for the inspirations and attributions to GitHub's [Open Source Guides][os-guide] and various contribution guides of large open source projects like [Atom][gh-atom-contrib], [React][react-contrib] and [Ruby on Rails][ruby-on-rails-contrib]. - -[gh-atom-contrib]: https://github.com/atom/atom/blob/master/CONTRIBUTING.md -[gh-branch-main]: https://github.com/arcticicestudio/styleguide-javascript/tree/main -[gh-changelog]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CHANGELOG.md -[gh-coc]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CODE_OF_CONDUCT.md -[gh-gist]: https://gist.github.com -[gh-issues-label-question]: https://github.com/arcticicestudio/styleguide-javascript/labels/type-question -[gh-issues-template-bug]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/.github/ISSUE_TEMPLATE/bugs.md -[gh-issues-template-enhancement]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/.github/ISSUE_TEMPLATE/enhancement.md -[gh-issues-template-pr]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/.github/PULL_REQUEST_TEMPLATE.md -[gh-issues-templates]: https://github.com/arcticicestudio/styleguide-javascript/issues/new/choose -[gh-issues]: https://github.com/arcticicestudio/styleguide-javascript/issues -[gh-mailmap]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/.mailmap -[gh-pr]: https://github.com/arcticicestudio/styleguide-javascript/pulls -[gh-releases-latest]: https://github.com/arcticicestudio/styleguide-javascript/releases/latest -[gh-styleguide-git]: https://github.com/arcticicestudio/styleguide-git -[gh-styleguide-markdown]: https://github.com/arcticicestudio/styleguide-markdown -[ghd-attach-file]: https://docs.github.com/en/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests -[ghd-issue-keywords]: https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue -[ghd-markdown-code-blocks]: https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax -[ghg-flow]: https://guides.github.com/introduction/flow -[git-docs-branching-workflows]: https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows -[os-guide-contrib]: https://opensource.guide/how-to-contribute -[os-guide]: https://opensource.guide -[react-contrib]: https://facebook.github.io/react/contributing/how-to-contribute.html -[ruby-on-rails-contrib]: http://guides.rubyonrails.org/contributing_to_ruby_on_rails.html -[semver]: https://semver.org -[sscce]: http://sscce.org -[stackoverflow-mcve]: https://stackoverflow.com/help/mcve diff --git a/README.md b/README.md deleted file mode 100644 index 4802350..0000000 --- a/README.md +++ /dev/null @@ -1,61 +0,0 @@ -

- -

The Arctic Ice Studio JavaScript code style based on the Airbnb JavaScript Style Guide.

- -

- -

- -

- -Every major open source project has its own style guide, a set of standards and conventions for the writing and design of code, documentations and assets. It is much easier to understand a large codebase when all the code in it is in a consistent style. - -A style guide establishes and enforces styles to improve the intelligibility and communication within the project community. It ensures consistency and enforces best practice in usage and language composition. - -## Getting Started - -The [project documentation][docs] contains chapters to learn about the [comprehensive base rule set][docs-r] including [ECMAScript +6 (ES 2015+)][docs-r-ecma6] and [React][docs-r-react] specific styles like e.g. [Higher-Order Components][docs-rules-react-hoc], the [component methods & properties ordering][docs-r-react-order#meth_props] and [props][docs-r-react-props]. - -### ESLint Configurations - -To follow these rules in a project use the official extensible code linter configurations [@arcticicestudio/eslint-config-base][gh-t-pkg-esl-conf-base] for [ESLint][]. The advanced [@arcticicestudio/eslint-config][gh-t-pkg-esl-conf] package provides support for specific [React][] and [JSX A11Y][npm-eslint-plugin-jsx-a11y] rules as well as compatibility integrations for other projects like [Prettier][]. - -To lint projects build with [TypeScript][], the [@arcticicestudio/eslint-config-typescript][gh-t-pkg-esl-ts] package can be extended for full compatibility with the TypeScript compiler in combination with the powerful ESLint engine. It also allows to lint mixed projects consisting of both TypeScript and JavaScript sources. - -## Contributing - -Read the [contributing guide][gh-b-contrib] to learn about the development process and how to propose [enhancement suggestions][gh-b-contrib#enhance] and [report bugs][gh-b-contrib#bug], how to [submit pull requests][gh-b-contrib#pr] and the project‘s [style guides][gh-b-contrib#stgs], [branch organization][gh-b-contrib#vcs] and [versioning][gh-b-contrib#ver] model. - -The guide also includes information about [minimal, complete, and verifiable examples][gh-b-contrib#mcve] and other ways to contribute to the project like [improving existing issues][gh-b-contrib#help_issues] and [giving feedback on issues and pull requests][gh-b-contrib#help_fb]. - -

- -

Copyright © 2018-present Arctic Ice Studio and Sven Greb

- -

- -[docs-r-ecma6]: https://arcticicestudio.github.io/styleguide-javascript/rules/ecmascript_6+_styles.html -[docs-r-react-order#meth_props]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/ordering.html#component-methods-and-properties -[docs-r-react-props]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/props.html -[docs-r-react]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/index.html -[docs-r]: https://arcticicestudio.github.io/styleguide-javascript/rules/index.html -[docs-rules-react-hoc]: https://arcticicestudio.github.io/styleguide-javascript/rules/react/higher_order_components.html -[docs]: https://arcticicestudio.github.io/styleguide-javascript -[eslint]: https://eslint.org -[gh-b-contrib]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md -[gh-b-contrib#bug]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#bug-reports -[gh-b-contrib#enhance]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#enhancement-suggestions -[gh-b-contrib#help_fb]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#give-feedback-on-issues-and-pull-requests -[gh-b-contrib#help_issues]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#improve-issues -[gh-b-contrib#mcve]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#mcve -[gh-b-contrib#pr]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#pull-requests -[gh-b-contrib#stgs]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#style-guides -[gh-b-contrib#vcs]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#branch-organization -[gh-b-contrib#ver]: https://github.com/arcticicestudio/styleguide-javascript/blob/main/CONTRIBUTING.md#versioning -[gh-t-pkg-esl-conf-base]: https://github.com/arcticicestudio/styleguide-javascript/tree/main/packages/@arcticicestudio/eslint-config-base -[gh-t-pkg-esl-conf]: https://github.com/arcticicestudio/styleguide-javascript/tree/main/packages/@arcticicestudio/eslint-config -[gh-t-pkg-esl-ts]: https://github.com/arcticicestudio/styleguide-javascript/tree/main/packages/@arcticicestudio/eslint-config-typescript -[npm-eslint-plugin-jsx-a11y]: https://www.npmjs.com/package/eslint-plugin-jsx-a11y -[prettier]: https://prettier.io -[react]: https://reactjs.org -[typescript]: https://www.typescriptlang.org diff --git a/assets/images/badge.ai b/assets/images/badge.ai deleted file mode 100644 index 0b1990a..0000000 --- a/assets/images/badge.ai +++ /dev/null @@ -1,12618 +0,0 @@ -%PDF-1.5 % -1 0 obj <>/OCGs[5 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - badge - - - - - Arctic Ice Studio - - - - - Copyright (C) 2018-present Arctic Ice Studio (https://www.arcticicestudio.com) Copyright (C) 2018-present Sven Greb (https://www.svengreb.de) - - - - - Adobe Illustrator CS6 (Windows) - 2019-08-15T16:24:18+02:00 - 2019-08-15T16:24:18+02:00 - 2019-08-15T16:24:18+02:00 - - - - 256 - 48 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAMAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8Ag2ZrjuxV2KuxV2Kp75Dt re586aHb3MST2817AksMih0dWkAKsrVBB8DglySOb6p/wJ5I/wCpe0z/AKQ7f/mjMXiPe3UHf4E8 kf8AUvaZ/wBIdv8A80Y8R71oO/wJ5I/6l7TP+kO3/wCaMeI960Hf4E8kf9S9pn/SHb/80Y8R71oO /wACeSP+pe0z/pDt/wDmjHiPetB3+BPJH/UvaZ/0h2//ADRjxHvWg7/Ankj/AKl7TP8ApDt/+aMe I960Hf4E8kf9S9pn/SHb/wDNGPEe9aDv8CeSP+pe0z/pDt/+aMeI960Hf4E8kf8AUvaZ/wBIdv8A 80Y8R71oO/wJ5I/6l7TP+kO3/wCaMeI960Hf4E8kf9S9pn/SHb/80Y8R71oO/wACeSP+pe0z/pDt /wDmjHiPetB3+BPJH/UvaZ/0h2//ADRjxHvWg7/Ankj/AKl7TP8ApDt/+aMeI960Hf4E8kf9S9pn /SHb/wDNGPEe9aDv8CeSP+pe0z/pDt/+aMeI960Hf4E8kf8AUvaZ/wBIdv8A80Y8R71oO/wJ5I/6 l7TP+kO3/wCaMeI960Hf4E8kf9S9pn/SHb/80Y8R71oO/wACeSP+pe0z/pDt/wDmjHiPetB3+BPJ H/UvaZ/0h2//ADRjxHvWg7/Ankj/AKl7TP8ApDt/+aMeI960Hf4E8kf9S9pn/SHb/wDNGPEe9aDv 8CeSP+pe0z/pDt/+aMeI960Em85+TPJ1v5O124t9C06GeHTruSKWO0gV0dYHKsrBAQQRUEYYyNjd BAp8pZlNLsVVvqV39UN56L/VQ3p+uQQnM78Q3QnFKjihVntbm3KC4ieEyIskYkUryRxVXFeqnscU p7+Xf/KeeX/+Y+3/AOTgyM+RTHm+wMxG52KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Ku xV2KuxV2KuxV2KuxVI/Pf/KEeYf+2Zef9Q75KPMIPJ8j6dpF1fJNMhSG1tuP1m6mbjHHzqFr1Ylu Joqgk+GZbSixd6Fpw/0OH9JXY/4+rpeMCn/iu3r8fzkNP8jFUvvtSvr+US3kzTOBReX2VH8qKKKo 9gKYqraJZRXV7W4qLK2U3F4w6+lHuVB8XNEX/KIxKpldXs3mDTruaah1CxdrmMDYG0lYepGo/lhc hlA/ZLeGBW/y7/5Tzy//AMx9v/ycGCfIpjzfYGYjckdzOY/ONsHk4wLply7gmijjPB8R7bCuS6I6 pDozXUt+t9fyS/UPOMcyrAzMBCUUtaKg/YaW05F/8pcJ+5ATC0168tPJcssv77WNO5acVb/dt6j/ AFeEn2nco/ybBW6b2SzUrbUYvRtNOuJpf8I2kV1NRjyuro0Jiep+ItbpJWveVT2yQ+9CYa+0F9ea ZfXUFxqHliW2d+FoskqmWQo0Uk0ENZJU9PlxorAHqOhAH2pKBe90/T7PULnytqCKki29oulvyItr u5uEghm9GQ8oh+9+JOIBoPfDXej3J1/gXQ/q1Kz/AKQ4/wDHXMzm85/789Wteu/H7PbjTbI8RTSS NDpD+YrqHzRPHLdw2NiOQeSONpD6wldEUigZgDkumyEPBd2zzXB0W5lk0JNS0qGHlJI6rci5Iukj 9QlxH6Zi+H7NeVO+PvVC+Wp/IUmiq+q3a/pQy3ImpPOJ6ieQLxEbcuXGlOO+E3aBSJm8vwP5S06/ 1CGYanPe6ek0szyrO0M2owxATDkKO9uwD7VqT3wXumtmdabpOn6ZE0VlF6UbtzZeTNU0pX4i3hkC bZMe0PRLHzBYLrWtIb2a/LTW8MrMYreAsfSSOMHgrBKcnpyLV36DJE1sGIFqd1p+oWtxZeWor+Vd Pv55pUlEj/WY7GCJS9us7EvUzOAHryCGgNRXG+qquveXLHSNJutX0OP6jqGnRPdK0bOEnES83inW pEgkVStWBIrUb4g3zSQpaNomk6xe6ze3kLyS/XuMT+rKhRPq0DALwZaULHpiTSAEs1Zvq93HoWoS 3F5p9tqVtJEf3007W1xbXBETmPlLJwliah3NKV6VwjvUsg0Sy8rx36Pp9ldQXKhuMk1vexIARQ/F Oqp0yJJSFnmyBpNQsJL62ubzQEjmF3b2qyS/v2MfpPNBFWSWMKH2AahNSvQhipQ2kaT5Xv7u5i02 4D6WY1F3ovKVDFOGrHKImKvDyXkCOIDbeGEkoCH0jyboN6+uwSxSL6N80NtIk0qvEot4XUoeWxV2 LD3xMioCr+nNauVHlbk0XmMH07y+ReKJZin+nJ+yGlU8UXtJXshxoc+i30TLyjCludYtYy3oWt/6 MCsxYqiWsFBViTgkkJPNDoNx5m139K211cyRzQLCYYbyZVQ2sRpW3VlHxEmh3w70hF67baXB+XXm IabBJb276fesUmSaN+X1dgTxnCv0A7UxHMKeT5SsdQvrCb1rOd4JKUJQ0qD1Vh0YHuDtmU1Jib7R NRH+n2/1C7P/AB92aj0mP/FlvVQPnGRT+U4qhb7Rbu1gF0rR3NizcFvIG5x8iKhWGzoxp9l1BxtU VdEadoMNmNrrU+N1deKwLX0I/wDZGsh9uGKoHStQfT9Qhu0UOIzSSJvsyRsCskbezoSpxVknlPT1 sfzK0KKNi9s99azWsp6vDK6vGx9+J38DUZGXIpHN9R69balPYD9GyBLyGaGdFZ2jSRYpFd4mdQxA kUFeh+RzFDaWPanovmPXJ5ZbiCLToZbcae8Ym9SU288yPdtVVCqTFHwQA9SSaUyQICKROq+Q9F+o M+i2FtZ6tblJ9OnC8As0LB0BK7hWK8W/yScAkeqaXy+W72TzUl9yRdIkMd7dW9TzN9BG0CGlACpj ZDX+aNcb2Wlum+SNKlilu9csbe71e8mkuLuVhzALt8Easf2Y4wqD5YmXctIfTdC8yaE4NgIryxg9 W2g095mj/wBFMhmgMbcGUPF6jRcT9pQp5CmEkFFL7ry5qOv3c91qcKaWDZPZWywyCafm8scyzOwV UHpPApjXfq1etMbpNWimuPPTW31MWdml4V4fpT1mMA7eqLcp6nLv6fKlduffBsu6r5e8uto95OEf 1LT6pZ20LsayM1t6vNn2Aq3qA4k2oCF1Ly3fz67cXkHpC2nk0qY1PFudlcSPMTsakxFAvypiDstJ h5T0q60rQYLG6KmeN52YoarSSd5F3IH7LjBI2VCr5h0641Cwigg4h0vLG4PI0HC2vIp5PHfhGae+ IKlMsCWN2dp5h0JZLKxtItS0v1Hksv3wglhWRi5hcMjKyIWPBga02I2qZbFCg3ljWnUasbiFfMYu vraLVzaqnpeh9UrTl6Zi6vxrz+Kn7OHiHwWlXUYPM+uWraXc2UWmWNyPT1C4Fx68jQnaSOFVRP7w fDzYigNaVwCgrrW38zabfamtnp1rcWt5dfWIJHumg4qYY4+LIIJaUMfauOxVDz+XddT0dT/cXusN qEd7dRc2ghWKO3kgSGJysjUTnWpX4iSdumGwik5sb3zJJdIl5pcFvbGvqTJdmVloCRRPRStTt9rI kBKzVbfW4tSh1LTAl0ixNBc6fLIYgwLBlkiajrzWhFGG4PUU3RSqFlY6veeYIdYv7aKwS1tprWGB JPWmk9d43ZpGCqoVfS+FRXc12wk7UqN0bTrizuNVkl48by8NxDxNfgMMUe/vWM4CVDo9OuF8yT6i eP1eSzht1Ffi5xyyu23hSQY3sqWW8PmfTr/VDa6db3dve3ZuYpWujCwBhjjoU9GTvH44dlU7NPN1 pqOo3Y0q2kGoSRS8PrpXgY4UiK19A8vsVrjsu67zTNqU3kHzG2oWsdpMNPvQscc3rgr9WajcuEe9 a7UxjzCnk+RMy2h2KuqaU7HrirZJJqTU7DfwGwxVrFWRfl4xPnvy9U1pf24HsPUGRnyLKPN9gZiN zsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdiqR+e/wDlCPMP/bMv P+od8lHmEHk+W/8AlXfnz/qX7/8A6R5P6Zk8Y72rhLv+Vd+fP+pfv/8ApHk/pjxjvXhLv+Vd+fP+ pfv/APpHk/pjxjvXhLv+Vd+fP+pfv/8ApHk/pjxjvXhLv+Vd+fP+pfv/APpHk/pjxjvXhKa+TvKH m/TfN2kX13oOpJbWl5DLO4tJ2oiOCx2XfbBKQI5qAbfR/wDi6z/6t+p/9IFz/wA0Zj8Lbbv8XWf/ AFb9T/6QLn/mjHhW3f4us/8Aq36n/wBIFz/zRjwrbv8AF1n/ANW/U/8ApAuf+aMeFbd/i6z/AOrf qf8A0gXP/NGPCtu/xdZ/9W/U/wDpAuf+aMeFbd/i6z/6t+p/9IFz/wA0Y8K27/F1n/1b9T/6QLn/ AJox4Vt3+LrP/q36n/0gXP8AzRjwrbv8XWf/AFb9T/6QLn/mjHhW3f4us/8Aq36n/wBIFz/zRjwr bv8AF1n/ANW/U/8ApAuf+aMeFbd/i6z/AOrfqf8A0gXP/NGPCtu/xdZ/9W/U/wDpAuf+aMeFbd/i 6z/6t+p/9IFz/wA0Y8K27/F1n/1b9T/6QLn/AJox4Vt3+LrP/q36n/0gXP8AzRjwrbv8XWf/AFb9 T/6QLn/mjHhW3f4us/8Aq36n/wBIFz/zRjwrbv8AF1n/ANW/U/8ApAuf+aMeFbd/i6z/AOrfqf8A 0gXP/NGPCtu/xdZ/9W/U/wDpAuf+aMeFbd/i6z/6t+p/9IFz/wA0Y8K27/F1n/1b9T/6QLn/AJox 4Vt3+LrP/q36n/0gXP8AzRjwraV+atfXUPK+sWFrpupPc3djcwQIbG5UGSWFkUVKUG5wxG6CX//Z - - - - - - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - xmp.did:3572D0EA5BBFE911AAC0D706AAED5FEA - uuid:319c7911-fbd2-41f5-952a-ae89ee1f8aad - proof:pdf - - uuid:4978cad7-75c2-834c-a0a4-665e27ce28fa - xmp.did:02801174072068118083917CE3B5B58A - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - proof:pdf - - - - - saved - xmp.iid:3572D0EA5BBFE911AAC0D706AAED5FEA - 2019-08-15T16:24:15+02:00 - Adobe Illustrator CS6 (Windows) - / - - - - - - Basic RGB - Document - - - 1 - False - False - - 600.000000 - 400.000000 - Pixels - - - - Cyan - Magenta - Yellow - Black - - - - - - Standard-Farbfeldgruppe - 0 - - - - Weiß - RGB - PROCESS - 255 - 255 - 255 - - - Schwarz - RGB - PROCESS - 0 - 0 - 0 - - - RGB Rot - RGB - PROCESS - 255 - 0 - 0 - - - RGB Gelb - RGB - PROCESS - 255 - 255 - 0 - - - RGB Grün - RGB - PROCESS - 0 - 255 - 0 - - - RGB Cyan - RGB - PROCESS - 0 - 255 - 255 - - - RGB Blau - RGB - PROCESS - 0 - 0 - 255 - - - RGB Magenta - RGB - PROCESS - 255 - 0 - 255 - - - R=193 G=39 B=45 - RGB - PROCESS - 193 - 39 - 45 - - - R=237 G=28 B=36 - RGB - PROCESS - 237 - 28 - 36 - - - R=241 G=90 B=36 - RGB - PROCESS - 241 - 90 - 36 - - - R=247 G=147 B=30 - RGB - PROCESS - 247 - 147 - 30 - - - R=251 G=176 B=59 - RGB - PROCESS - 251 - 176 - 59 - - - R=252 G=238 B=33 - RGB - PROCESS - 252 - 238 - 33 - - - R=217 G=224 B=33 - RGB - PROCESS - 217 - 224 - 33 - - - R=140 G=198 B=63 - RGB - PROCESS - 140 - 198 - 63 - - - R=57 G=181 B=74 - RGB - PROCESS - 57 - 181 - 74 - - - R=0 G=146 B=69 - RGB - PROCESS - 0 - 146 - 69 - - - R=0 G=104 B=55 - RGB - PROCESS - 0 - 104 - 55 - - - R=34 G=181 B=115 - RGB - PROCESS - 34 - 181 - 115 - - - R=0 G=169 B=157 - RGB - PROCESS - 0 - 169 - 157 - - - R=41 G=171 B=226 - RGB - PROCESS - 41 - 171 - 226 - - - R=0 G=113 B=188 - RGB - PROCESS - 0 - 113 - 188 - - - R=46 G=49 B=146 - RGB - PROCESS - 46 - 49 - 146 - - - R=27 G=20 B=100 - RGB - PROCESS - 27 - 20 - 100 - - - R=102 G=45 B=145 - RGB - PROCESS - 102 - 45 - 145 - - - R=147 G=39 B=143 - RGB - PROCESS - 147 - 39 - 143 - - - R=158 G=0 B=93 - RGB - PROCESS - 158 - 0 - 93 - - - R=212 G=20 B=90 - RGB - PROCESS - 212 - 20 - 90 - - - R=237 G=30 B=121 - RGB - PROCESS - 237 - 30 - 121 - - - R=199 G=178 B=153 - RGB - PROCESS - 199 - 178 - 153 - - - R=153 G=134 B=117 - RGB - PROCESS - 153 - 134 - 117 - - - R=115 G=99 B=87 - RGB - PROCESS - 115 - 99 - 87 - - - R=83 G=71 B=65 - RGB - PROCESS - 83 - 71 - 65 - - - R=198 G=156 B=109 - RGB - PROCESS - 198 - 156 - 109 - - - R=166 G=124 B=82 - RGB - PROCESS - 166 - 124 - 82 - - - R=140 G=98 B=57 - RGB - PROCESS - 140 - 98 - 57 - - - R=117 G=76 B=36 - RGB - PROCESS - 117 - 76 - 36 - - - R=96 G=56 B=19 - RGB - PROCESS - 96 - 56 - 19 - - - R=66 G=33 B=11 - RGB - PROCESS - 66 - 33 - 11 - - - - - - Kalt - 1 - - - - C=56 M=0 Y=20 K=0 - RGB - PROCESS - 101 - 200 - 208 - - - C=51 M=43 Y=0 K=0 - RGB - PROCESS - 131 - 139 - 197 - - - C=26 M=41 Y=0 K=0 - RGB - PROCESS - 186 - 155 - 201 - - - - - - Graustufen - 1 - - - - R=0 G=0 B=0 - RGB - PROCESS - 0 - 0 - 0 - - - R=26 G=26 B=26 - RGB - PROCESS - 26 - 26 - 26 - - - R=51 G=51 B=51 - RGB - PROCESS - 51 - 51 - 51 - - - R=77 G=77 B=77 - RGB - PROCESS - 77 - 77 - 77 - - - R=102 G=102 B=102 - RGB - PROCESS - 102 - 102 - 102 - - - R=128 G=128 B=128 - RGB - PROCESS - 128 - 128 - 128 - - - R=153 G=153 B=153 - RGB - PROCESS - 153 - 153 - 153 - - - R=179 G=179 B=179 - RGB - PROCESS - 179 - 179 - 179 - - - R=204 G=204 B=204 - RGB - PROCESS - 204 - 204 - 204 - - - R=230 G=230 B=230 - RGB - PROCESS - 230 - 230 - 230 - - - R=242 G=242 B=242 - RGB - PROCESS - 242 - 242 - 242 - - - - - - - - - Adobe PDF library 10.01 - - - Arctic Ice Studio - - - True - https://www.arcticicestudio.com - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 7 0 obj <>/Resources<>/Properties<>>>/Thumb 11 0 R/TrimBox[0.0 0.0 600.0 400.0]/Type/Page>> endobj 8 0 obj <>stream -/OC /MC0 BDC -q -0 400 600 -400 re -W n -0.298 0.337 0.416 rg -/GS0 gs -q 1 0 0 1 152.4629 196.4258 cm -0 0 m --0.244 -3.689 0.383 -7.17 5.325 -7.17 c -11.068 -7.17 10.789 -3.098 10.789 0.348 c -10.789 16.949 l -12.321 16.949 l -12.321 -0.175 l -12.321 -3.098 12.426 -8.493 5.499 -8.493 c --1.219 -8.493 -1.531 -3.725 -1.531 0 c -h -f -Q -q 1 0 0 1 182.7773 197.8174 cm -0 0 m --5.326 14.062 l --5.396 14.062 l --10.93 0 l -h --4.561 15.558 m -5.255 -9.293 l -3.619 -9.293 l -0.486 -1.323 l --11.417 -1.323 l --14.584 -9.293 l --16.22 -9.293 l --6.23 15.558 l -h -f -Q -q 1 0 0 1 196.1758 189.8477 cm -0 0 m -0.068 0 l -8.666 23.527 l -10.197 23.527 l -0.904 -1.323 l --0.871 -1.323 l --10.129 23.527 l --8.527 23.527 l -h -f -Q -q 1 0 0 1 220.1895 197.8174 cm -0 0 m --5.325 14.062 l --5.395 14.062 l --10.93 0 l -h --4.56 15.558 m -5.256 -9.293 l -3.619 -9.293 l -0.487 -1.323 l --11.416 -1.323 l --14.584 -9.293 l --16.219 -9.293 l --6.23 15.558 l -h -f -Q -q 1 0 0 1 243.4375 206.2754 cm -0 0 m --0.174 4.246 -3.376 6.369 -7.971 6.369 c --10.789 6.369 -14.793 5.186 -14.793 1.078 c --14.793 -2.924 -10.546 -3.586 -6.334 -4.455 c --2.088 -5.326 2.158 -6.404 2.158 -11.347 c -2.158 -16.498 -2.785 -18.343 -6.578 -18.343 c --12.391 -18.343 -17.125 -15.941 -17.055 -9.537 c --15.523 -9.537 l --15.836 -14.967 -11.486 -17.02 -6.578 -17.02 c --3.585 -17.02 0.627 -15.662 0.627 -11.347 c -0.627 -7.135 -3.619 -6.404 -7.866 -5.534 c --12.078 -4.664 -16.324 -3.654 -16.324 1.078 c --16.324 5.848 -11.903 7.691 -7.971 7.691 c --2.785 7.691 1.287 5.465 1.531 0 c -h -f -Q -q 1 0 0 1 268.4951 205.9619 cm -0 0 m --0.661 4.177 -4.315 6.683 -8.458 6.683 c --14.966 6.683 -18.76 1.357 -18.76 -5.013 c --18.76 -11.382 -14.966 -16.706 -8.458 -16.706 c --3.62 -16.706 0.14 -12.391 0.417 -7.762 c -1.949 -7.762 l -1.392 -13.679 -2.993 -18.029 -8.458 -18.029 c --15.905 -18.029 -20.292 -12.286 -20.292 -5.013 c --20.292 2.263 -15.905 8.005 -8.458 8.005 c -0.349 8.005 1.497 0.349 1.531 0 c -h -f -Q -q 1 0 0 1 284.0166 201.1582 cm -0 0 m -3.62 0 6.335 1.706 6.335 5.709 c -6.335 9.468 3.341 10.895 0 10.895 c --8.841 10.895 l --8.841 0 l -h --10.372 12.217 m -0 12.217 l -4.351 12.217 7.866 10.616 7.866 5.812 c -7.866 2.472 5.847 0 2.54 -0.557 c -2.54 -0.626 l -6.229 -1.043 7.135 -3.375 7.378 -5.951 c -7.622 -8.527 7.204 -11.311 8.214 -12.634 c -6.509 -12.634 l -5.569 -10.928 6.126 -8.074 5.847 -5.673 c -5.534 -3.271 4.351 -1.322 0 -1.322 c --8.841 -1.322 l --8.841 -12.634 l --10.372 -12.634 l -h -f -Q -295.57 213.375 1.531 -24.851 re -f -q 1 0 0 1 303.0176 200.915 cm -0 0 m -8.736 0 l -13.227 0 14.758 2.958 14.758 5.534 c -14.758 7.379 13.922 11.138 8.945 11.138 c -0 11.138 l -h --1.531 12.46 m -9.049 12.46 l -11.869 12.46 16.289 11.451 16.289 5.499 c -16.289 1.148 13.436 -1.323 8.492 -1.323 c -0 -1.323 l -0 -12.391 l --1.531 -12.391 l -h -f -Q -q 1 0 0 1 319.374 212.0527 cm -0 0 m -0 1.322 l -19.038 1.322 l -19.038 0 l -10.268 0 l -10.268 -23.528 l -8.736 -23.528 l -8.736 0 l -h -f -Q -q 1 0 0 1 369.1436 205.9619 cm -0 0 m --0.662 4.177 -4.316 6.683 -8.458 6.683 c --14.967 6.683 -18.761 1.357 -18.761 -5.013 c --18.761 -11.382 -14.967 -16.706 -8.458 -16.706 c --3.62 -16.706 0.139 -12.391 0.417 -7.762 c -1.948 -7.762 l -1.392 -13.679 -2.994 -18.029 -8.458 -18.029 c --15.906 -18.029 -20.292 -12.286 -20.292 -5.013 c --20.292 2.263 -15.906 8.005 -8.458 8.005 c -0.348 8.005 1.496 0.349 1.531 0 c -h -f -Q -q 1 0 0 1 385.0127 189.2559 cm -0 0 m -6.474 0 10.268 5.324 10.268 11.693 c -10.268 18.063 6.474 23.389 0 23.389 c --6.509 23.389 -10.303 18.063 -10.303 11.693 c --10.303 5.324 -6.509 0 0 0 c -0 -1.323 m --7.448 -1.323 -11.834 4.42 -11.834 11.693 c --11.834 18.969 -7.448 24.711 0 24.711 c -7.413 24.711 11.799 18.969 11.799 11.693 c -11.799 4.42 7.413 -1.323 0 -1.323 c -f -Q -q 1 0 0 1 401.6133 189.8477 cm -0 0 m -6.683 0 l -11.312 0 16.566 2.54 16.566 11.137 c -16.566 21.301 10.059 22.205 6.369 22.205 c -0 22.205 l -h --1.532 23.527 m -6.612 23.527 l -15.488 23.527 18.099 17.437 18.099 11.137 c -18.099 4.106 14.514 -1.323 6.543 -1.323 c --1.532 -1.323 l -h -f -Q -q 1 0 0 1 440.1748 189.8477 cm -0 0 m -0 -1.323 l --16.881 -1.323 l --16.881 23.527 l --0.174 23.527 l --0.174 22.205 l --15.349 22.205 l --15.349 12.251 l --1.079 12.251 l --1.079 10.928 l --15.349 10.928 l --15.349 0 l -h -f -Q -q 1 0 0 1 468.6777 206.2754 cm -0 0 m --0.174 4.246 -3.376 6.369 -7.971 6.369 c --10.79 6.369 -14.792 5.186 -14.792 1.078 c --14.792 -2.924 -10.546 -3.586 -6.335 -4.455 c --2.089 -5.326 2.158 -6.404 2.158 -11.347 c -2.158 -16.498 -2.784 -18.343 -6.578 -18.343 c --12.391 -18.343 -17.124 -15.941 -17.055 -9.537 c --15.523 -9.537 l --15.837 -14.967 -11.486 -17.02 -6.578 -17.02 c --3.585 -17.02 0.626 -15.662 0.626 -11.347 c -0.626 -7.135 -3.62 -6.404 -7.866 -5.534 c --12.077 -4.664 -16.324 -3.654 -16.324 1.078 c --16.324 5.848 -11.903 7.691 -7.971 7.691 c --2.784 7.691 1.288 5.465 1.531 0 c -h -f -Q -q 1 0 0 1 471.7041 212.0527 cm -0 0 m -0 1.322 l -19.038 1.322 l -19.038 0 l -10.268 0 l -10.268 -23.528 l -8.736 -23.528 l -8.736 0 l -h -f -Q -q 1 0 0 1 509.2578 213.375 cm -0 0 m -1.705 0 l --8.284 -14.443 l --8.284 -24.851 l --9.815 -24.851 l --9.815 -14.443 l --19.734 0 l --17.994 0 l --9.015 -13.156 l -h -f -Q -q 1 0 0 1 512.4229 213.375 cm -0 0 m -1.532 0 l -1.532 -23.527 l -15.628 -23.527 l -15.628 -24.851 l -0 -24.851 l -h -f -Q -q 1 0 0 1 546.7051 189.8477 cm -0 0 m -0 -1.323 l --16.881 -1.323 l --16.881 23.527 l --0.174 23.527 l --0.174 22.205 l --15.349 22.205 l --15.349 12.251 l --1.079 12.251 l --1.079 10.928 l --15.349 10.928 l --15.349 0 l -h -f -Q -0.298 0.337 0.416 RG -2 w -q 1 0 0 1 126.5264 245.9102 cm -0 0 m -429.474 0 l -429.474 -91.82 l -0 -91.82 l -S -Q -135.82 154.09 -91.82 91.82 re -B -0.847 0.871 0.914 rg -q 1 0 0 1 93.3037 182.3379 cm -0 0 m -16.851 34.376 l -18.476 34.376 l -35.325 0 l -33.904 0 l -17.663 33.158 l -1.421 0 l -h -f -Q -q 1 0 0 1 85.5703 182.3379 cm -0 0 m --34.377 16.85 l --34.377 18.475 l -0 35.324 l -0 33.903 l --33.16 17.662 l -0 1.42 l -h -f -Q -EMC -Q - -endstream endobj 11 0 obj <>stream -8;Z\r;%A4D#Xg>a(Pe]N`%MWWf.!AnR.b<4P;\i^i.fJ`_c))[.#RjARG;%[.=J.S -R'ECS>tn&DW^[GOQpX'qb#^ODLpX%/-%bh1N:sncol-d1Jm+t0SDr03U1b/5o;oLn -`R@uVf<1+k`Fh3O=IiHTE[3*C+uc7Qa#8'\LpM'*PD*lH[=>7BjJsQ.)=7Cn?epR, -rY.due@5&i!-\QXo)~> -endstream endobj 12 0 obj [/Indexed/DeviceRGB 255 13 0 R] endobj 13 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> -endstream endobj 5 0 obj <> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 10 0 obj <> endobj 9 0 obj <> endobj 16 0 obj <> endobj 17 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (Unbenannt-4) -%%CreationDate: 8/15/2019 4:24 PM -%%Canvassize: 16383 -%%BoundingBox: 187 -347 701 -253 -%%HiResBoundingBox: 187 -346.9102 701 -253.0903 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: 144 -500 744 -100 -%AI3_TemplateBox: 444.5 -300.5 444.5 -300.5 -%AI3_TileBox: 23.04 -597.6602 864.96 -2.33984 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -43 -36.334 1.5 1486 903 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:44 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 18 0 obj <>stream -%%BoundingBox: 187 -347 701 -253 -%%HiResBoundingBox: 187 -346.9102 701 -253.0903 -%AI7_Thumbnail: 128 24 8 -%%BeginData: 5155 Hex Bytes -%0000330000660000990000CC0033000033330033660033990033CC0033FF -%0066000066330066660066990066CC0066FF009900009933009966009999 -%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 -%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 -%3333663333993333CC3333FF3366003366333366663366993366CC3366FF -%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 -%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 -%6600666600996600CC6600FF6633006633336633666633996633CC6633FF -%6666006666336666666666996666CC6666FF669900669933669966669999 -%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 -%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF -%9933009933339933669933999933CC9933FF996600996633996666996699 -%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 -%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF -%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 -%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 -%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF -%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC -%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 -%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 -%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 -%000011111111220000002200000022222222440000004400000044444444 -%550000005500000055555555770000007700000077777777880000008800 -%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB -%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF -%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF -%524C45532E522E532E522E532E522E532E522E532E522E532E5259A87DA8 -%7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8 -%7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8 -%7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8 -%7DA87DA87DA87DA87DA85328522852285228522852285228522852285228 -%52285228A8FD67FF845228522E5228522E5228522E5228522E5228522E52 -%285284FD67FF7D2852285228522852285228522852285228522852282E27 -%A8FD67FF7E522E532E522E532E522E532E522E532E522E532E52285284FD -%67FF7D2852285228522852285228522852285228522852285227A8FD67FF -%84522E5228522E522852285228522E522852285228522E2E7EFD67FF7D28 -%5228522852282E287D522E2852282E52532852285227A8FD18FFA8FD05FF -%A8FD0BFFA9FD05FFA8FD05FFA8FD05FFA8FD05FFA8FD05FFA8FD07FFA8FF -%FFFFA8FFA8FD0BFFAFFFA8FFFF7E532E522E532853597E535328532E522E -%A87D5228532E527EFD05FFA8A9FFFF7DFFA8FD04FFA8FFA8A8FFFFA87DA8 -%84FFFFA87EA87EFFA8A87EA8A8FFA8A87DA87DA884A87DA8A8FFFFFF84A8 -%7DA8FFFF84A87EA8FFFF7DA87DA8FFA97DA87EA8FFFFFFA87DA87EFF7EA8 -%7DA87DFFFFFFA8A8A8FFFFFF7DA87EA8A8FF7D2852282E287D7D59285228 -%522852287D527D532E285228A8FD05FFA97EFFA87DA8FF7DFFFFA87DFF53 -%A8FFA87DFFFFA8A8A87DFFFFA87DA8A8FFFF7E84A87DFFFFFF7DFFA87EFD -%04FF7DA8FFFF7EA8A87EFFFFA87EA8A8FFFF7DA8A8A8FD05FFAF7DFFFFA8 -%7EFFA8A8FFA87DFFFF7D7EA8FFFFA8A8FD05FF7E522853537E5353285228 -%522E5228537D522E7E2E52285284FD05FFA8A8FFA8A8A8FF84A9FF7EFF84 -%FF84FFA884A8FFFFFF7DFD05FF7DFFFFFF7DA8A8A8FFFFFF7EFFFF7EFD04 -%FF84FD04FFA8A8FD04FF7EA8A8FFFFFF7DA8A8FFA8FFFFFFA884A8FD05FF -%84FFFFFD04A8FF7EFFFFFF7DFD05FF7D28527D7D2828285228522852282E -%5359282E5359282E27A8FD05FFA87EFF7DFF7DFFA8A8A884FF7DA8A87DFF -%A8A87DA8A8A8FD05FF7E7DA85984A8A87D7E7D7EA8FFA8A8FD04FF7DFD05 -%FF7DFD04FFA87DA8FFFFFFA87D84A8A8A8FFFFFFA8A87D7EA8FFA8A8FFFF -%FF7D7DFFA8A8FFFFA87D7EA87EFFFF7E52287D7D7D52522E522E532E522E -%842E5228537D52285284FFFFFFA8FFA8A9847E847EA8FF7EA9A8FF59A87D -%7EA8FFFFFFA8A87EFD04FFA87EFFFFFF7DAFA8A8A8FD05FF7EFD04FF84FD -%04FF7EA8FD04FF7EA8A8FFFFFF7DA8A9FD05FFA8FFFFFFA8A8FFFFA8FFFF -%FF84FFFFFFA8FFFFFF7EFD05FF7D28522852537D5353282E2852287D5352 -%2852277D522E27A8FFFFA87EFFA87DA8FFFFFF7EFF8453FF7DFFFFFF7D7D -%7DFFFFA87EA87DFFFF7EA8A8A8FFFF7E7DA87DFD05FFA8A8FD04FF7E7EAF -%FF7DA8A87EFFFF7EA8A884FFFF7DA87EA8FFFFA8FFFFA87DFFFFA87DFFA8 -%A8FFFFFFA8A8FFA884A9FFA87EA8FFA8FFFF84522E5228522E7D7D7D5252 -%28537D5228522E522E7E2E2E7EFFFFFF7EA87EA9A8FFFFFFA8FFA8A8FFA8 -%FD04FFA8A87DA87EFFFFA87EA8A8FFA8FFFFFFA8A9A8A9FD06FFA8FD05FF -%A8A87DA8FFFFA8A87EA8FFFF7DA87DA9FFAF7DA87EA8FFFFFFA87DA87EFF -%FFFFA8FFFFFFA8FFFFFF7DA87DA87EA87DA8A8FF7D285228522852282E52 -%7E5228527D28522852282E535327A8FD04FFA8FD13FFA8FD37FFA8FD16FF -%7E532E522E532E5228522E5328532E522E532E52285352527EFD67FF7D28 -%52285228522852285228522852285228522852285228A8FD67FF7E522852 -%2E5228522E5228522E5228522E5228522E52285284FD67FF7D2852285228 -%522852285228522852285228522852282E27A8FD67FF7E522E532E522E53 -%2E522E532E522E532E522E532E52285284FD67FF7D285228522852285228 -%5228522852285228522852285227A8FD67FFA852282E2852282E2852282E -%2852282E2852282E285228287DFFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FF -%A8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AF -%A8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FF -%A8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8FF597DA87D -%A87DA87DA87DA87DA87DA87DA87DA87DA87D847DA87DA87DA87DA87DA87D -%A87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87D -%A87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87D -%A87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87D -%A87DA87DA8 -%%EndData - -endstream endobj 19 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (Unbenannt-4) -%%CreationDate: 8/15/2019 4:24 PM -%%Canvassize: 16383 -%%BoundingBox: 187 -347 701 -253 -%%HiResBoundingBox: 187 -346.9102 701 -253.0903 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%%DocumentFonts: HelveticaNeueLTStd-Th -%%DocumentNeededFonts: HelveticaNeueLTStd-Th -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: 144 -500 744 -100 -%AI3_TemplateBox: 444.5 -300.5 444.5 -300.5 -%AI3_TileBox: 23.04 -597.6602 864.96 -2.33984 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -43 -36.334 1.5 1486 903 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:44 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments -%%BeginProlog -%%EndProlog -%%BeginSetup -[ -39/quotesingle 96/grave 128/Euro 130/quotesinglbase/florin/quotedblbase/ellipsis -/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 145/quoteleft -/quoteright/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark -/scaron/guilsinglright/oe/dotlessi 159/Ydieresis /space 164/currency 166/brokenbar -168/dieresis/copyright/ordfeminine 172/logicalnot/hyphen/registered/macron/ring -/plusminus/twosuperior/threesuperior/acute/mu 183/periodcentered/cedilla -/onesuperior/ordmasculine 188/onequarter/onehalf/threequarters 192/Agrave -/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute -/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde -/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave -/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute -/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex -/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute -/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex -/udieresis/yacute/thorn/ydieresis -TE -%AI55J_Tsume: None -%AI3_BeginEncoding: _HelveticaNeueLTStd-Th HelveticaNeueLTStd-Th -[/_HelveticaNeueLTStd-Th/HelveticaNeueLTStd-Th 0 0 1 TZ %AI3_EndEncoding AdobeType -%AI5_Begin_NonPrinting -Np -%AI8_PluginGroupInfo -(Adobe Vectorized Object) (Nachgezeichnetes Bild) (Vectorize.aip) -%AI8_PluginGroupInfo -(Adobe Flare Plugin) (Flare) (flare.aip) -%AI8_PluginGroupInfo -(Adobe Deform Plugin) (Adobe H\374llen-Zusatzmodul) (Envelope and Warp.aip) -%AI8_PluginGroupInfo -(Adobe Planar Group) (Adobe-Zusatzmodul Interaktiv malen) (Live Paint.aip) -%AI8_PluginGroupInfo -(Adobe Perspective Plugin Group) (Adobe Perspective Plugin Group) (Perspective.aip) -%AI8_PluginGroupInfo -(Adobe Path Blends) (Adobe Angleichungen-Zusatzmodul) (Live Blends.aip) -%AI8_PluginGroupInfo -(Adobe Symbolism) (Adobe Symbolism) (Symbolism.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe Calligraphic Brush Tool) (Adobe Kalligrafiepinsel-Zusatzmodul) (Calligraphic Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Pattern Editor Plugin Group) (Adobe Pattern Editor Plugin Group) (Swatch Libraries.aip) -%AI8_PluginGroupInfo -(Pathfinder Suite) (Adobe Zusammengesetzte Form) (PathFinder Suite.aip) -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -9 Bn -%AI5_BeginGradient: (Blauer Himmel) -(Blauer Himmel) 0 2 Bd -[ -0.591974 -0 -0.148531 -0 -0.239216 -0.870588 -0.929412 -4 %_Br -[ -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 Bs -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Goldstaub) -(Goldstaub) 0 4 Bd -[ -< -21202121222122222323222323242324242524242525252526262626272727272728282929292929 -2A2A2A2A2B2B2B2B2B2B2B2C2C2C2C2D2D2D2D2D2E2E2F2F30303030303131313132313232323232 -333333333434 -> -< -2D2F30313234343637393B3C3D3E4041434345464749494B4C4D4E4F50525354555658595B5C5D5E -5F616164656768696B6B6D6E6F70727374767778797A7B7D7E8081828384858688888A8B8D8E8F91 -919394959698 -> -< -F4F4F4F5F5F5F5F5F6F6F6F7F7F7F7F7F8F8F8F9F9F9FAFAFAFBFBFBFBFBFCFCFCFCFDFDFEFEFEFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF -> -< -030404040404050506060606060707070708080808080808090909090A0A0A0B0B0B0B0C0C0D0D0D -0D0D0E0E0E0E0F0F0F0F0F1010101011111011111211121213131414141515161616161717171717 -181819191A19 -> -< -E5E5E4E4E3E3E2E2E1E1E1E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D8D8D8D7D7D6D6D5D5D4D4D4 -D3D3D2D2D1D1D0D0D0CFCFCECECDCDCCCCCCCBCBCACAC9C9C8C8C7C7C7C6C6C5C5C4C4C3C3C3C2C2 -C1C1C0C0BFBF -> -< -C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E -9D9C9B999897969594939291908F8E8D8C8B8A898887868584838281807F7E7D7C7B7A7978777675 -74737271706F -> -0 -4 %_Br -< -171717181818181818181919191A1A1A1A1B1B1B1B1B1C1C1D1D1D1D1D1D1E1E1E1F1F20202021 -> -< -69686765646261605E5D5B5A5856555352514F4C4B4948464543413F3E3C3A3837353332302F2D -> -< -FAFAFAFAFAFAF9FAFAFAFAF9F9F9F9F9F8F8F8F7F7F6F6F6F6F6F6F6F5F5F5F4F5F5F4F4F4F4F4 -> -< -030303030303030303030303030404040404040404040404040404040404040404040404040403 -> -0.898039 -< -9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5 -> -< -030303030303030202020202020202020202020201010101010101010101010100000000000000 -> -4 %_Br -< -00000000000000000000000000000000000000000000000000000000000000000000000102040406 -060808090A0C0E0E0F0F1111131414151517 -> -< -A5A5A5A4A4A3A3A3A3A2A1A0A09F9E9E9D9B9B9A99989796959594939191908F8E8C8B8B89888685 -848281817F7D7C7A7978767472706F6D6B69 -> -< -F0F0F0F1F1F1F1F1F1F1F2F2F2F3F3F3F4F4F4F4F4F5F5F6F6F6F7F7F7F8F8F9F9FAFAFAFAFAFAFA -FAFBFBFBFBFCFCFCFCFCFCFBFBFBFBFBFAFA -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -000000000000010101010101010102020203 -> -< -FFFFFFFEFEFEFEFDFDFDFCFCFCFBFBFBFAFAF9F9F9F8F8F7F7F6F6F5F5F4F4F3F3F2F2F1F1F0F0EF -EFEEEEEDEDECEBEBEAEAE9E9E8E7E7E6E6E5 -> -< -73737374747575767677777878797A7A7B7C7C7D7E7E7F808181828384848586878889898A8B8C8D -8E8F90909192939495969798999A9B9C9D9E -> -< -00000000000000000000000000000001010101010101010101010101010101010101020202020202 -020202020202020202020303030303030303 -> -4 %_Br -[ -0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 %_BS -%_0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 Bs -0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 %_BS -%_0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 Bs -0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 %_BS -%_0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 Bs -0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 %_BS -%_0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 1) -(Unnamed gradient 1) 0 2 Bd -[ -< -0000010304050608090B0C0D0F10111213141718191A1B1C1E1F21222324252728292A -> -< -00000102030405060708090A0A0B0C0C0D0E1011111213141516171819191A1B1B1C1D -> -< -000001020304050708090A0B0C0D0E0F101112131415161718191A1B1C1C1D1E1F2021 -> -< -0000000000000000000000000000000000000000000000000000000000000000000000 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -4 %_Br -[ -0.81 0 1 6 50 100 %_BS -%_0.81 0 1 6 50 100 Bs -1 0 1 6 50 0 %_BS -%_1 0 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 17) -(Unnamed gradient 17) 1 2 Bd -[ -< -26252423222121201E1D1B1A191716151413131211100F0D0C0B09080605050403010000 -> -< -1F1E1D1D1C1B1A19181716151413131211100F0E0D0C0C0B0A0A09070605040302010000 -> -< -2120201F1E1D1C1C1B1A1817161615141312100F0F0E0D0C0B0A09080605040302010000 -> -< -000000000000000000000000000000000000000000000000000000000000000000000000 -> -< -DFE0E1E2E3E4E4E5E6E7E8E9EAEBECEDEEEFEFF0F1F2F3F4F5F6F7F8F9FAFAFBFCFDFEFF -> -< -DCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -< -DBDCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -4 %_Br -[ -0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 %_BS -%_0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 Bs -0 0 0 0 1 1 1 2 0 6 50 100 %_BS -%_0 0 0 0 1 1 1 2 0 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 2) -(Unnamed gradient 2) 0 2 Bd -[ -< -B7B8B8B9B9BABBBBBCBDBDBEBEBFC0C0C1C1C2C2C3C3C4C4C5C6C6C7C7C7C8C8C9CACACBCBCCCCCD -CDCECECFCFD0D1D1D2D2D3D3D4D4D5D5D6D6D7D7D8D8D9D9DA -> -< -515251535253555455575657575859595A5C5B5C5B5D5E5D5F605F61606163626364636564656766 -6869686A696B6C6B6D6E6D6F6E6F7170727373747475777678 -> -0 -0 -0 -< -9D9C9C9B9B9A999998979796969594949392929191908F8F8E8D8D8C8C8B8A8A8988888787868585 -84838382828180807F7E7E7D7D7C7B7B7A7979787877767675 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDDDCDBDAD9D8D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBE -> -4 %_Br -[ -0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 %_BS -%_0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 Bs -0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 %_BS -%_0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 28) -(Unnamed gradient 28) 1 2 Bd -[ -< -0000010304050608090A0C0D0F10111314151617181A1B1C1D1E1F20212324262728292A2B2D2E30 -31323335363738393A3C3D3E404142434445464748494A4B4C4D4E4F5051525354565758595A -> -< -00000100010203040504060708090908090A0B0C0C0C0D0D0E0F100F101112131413141516171816 -1718191A1B1A1B1C1D1E1F1E1F20212223222324252627262728292A2B2A2B2C2D2E2F2E2F30 -> -< -0000000103040304050707080909090B0C0B0C0D0E0E0F100F10111312131415151717171818191A -1B1B1C1C1C1E1D1E1F20202122232223242425252625262829282829282A2B2C2B2D2E2F2F2F -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000001000101010101010202020202020203030303030404 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1 -> -< -FFFEFDFDFCFBFAF9F8F8F7F6F5F4F3F3F2F1F0EFEEEEEDECEBEAE9E9E8E7E6E5E4E4E3E2E1E0DFDF -DEDDDCDBDADAD9D8D7D6D5D5D4D3D2D1D0D0CFCECDCCCBCBCAC9C8C7C6C6C5C4C3C2C1C1C0BF -> -< -FFFEFEFDFCFBFBFAF9F8F8F7F6F6F5F4F3F3F2F1F0F0EFEEEEEDECEBEBEAE9E8E8E7E6E6E5E4E3E3 -E2E1E0E0DFDEDEDDDCDBDBDAD9D8D8D7D6D6D5D4D3D3D2D1D0D0CFCECECDCCCBCBCAC9C8C8C7 -> -4 %_Br -[ -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 %_BS -%_0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 3) -(Unnamed gradient 3) 0 2 Bd -[ -< -2C2D2E2F303132333435363738393B3C3D3E3F4142434445464748494A4B4C4D4F50505152535454 -5556575858595A5B5C5D5E5F606162636364656667686969 -> -< -00000000000000000000000000000000000000000000000001000000000100000000000000010000 -010002010002010201000201020101030204040305040606 -> -0 -0 -< -DAD9D8D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBB9B8B7B6B5B4B3B2 -B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A -> -< -F1F1F0F0EFEFEFEEEEEDEDEDECECEBEBEBEAEAE9E9E9E8E8E7E7E7E6E6E5E5E5E4E4E4E3E3E2E2E2 -E1E1E0E0E0DFDFDEDEDEDDDDDCDCDCDBDBDADADAD9D9D8D8 -> -1 -4 %_Br -[ -0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 %_BS -%_0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 Bs -0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 %_BS -%_0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 7) -(Unnamed gradient 7) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Weiß, Schwarz) -(Weiß, Schwarz) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI3_BeginPattern: (Jive) -(Jive) 47.5615 109.6396 155.9004 219.2813 -%_0 A -%_0 Xw -%_u -%_0 1 0 0 0 Xy -%_0 J 0 j 1 w 10 M []0 d %_0 XR -%_47.5615 219.2813 m -%_155.9004 219.2813 L -%_155.9004 109.6396 L -%_47.5615 109.6396 L -%_47.5615 219.2813 L -%_n -%_/ArtDictionary : -%_1 /Bool (AIPattern_Editor_Backing_Tile_Rect) , -%_; -%_ -%_u -%_*u -%_1 D -%_0 O -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_135.0352 74.9453 m -%_135.0566 75.0645 135.1602 75.1504 135.2813 75.1523 c -%_148.1875 75.2871 160.0352 78.4199 169.2529 86.667 C -%_161.2227 81.1094 146.3105 79.1563 137.7256 83.0488 c -%_137.6152 83.0986 137.5566 83.2188 137.584 83.3369 c -%_137.6104 83.4551 137.7168 83.5371 137.8379 83.5332 c -%_148.5176 83.2441 157.1172 86.54 163.8223 92.498 C -%_156.9531 92.9199 151.248 97.2383 151.2656 102.3428 c -%_151.2656 102.4619 151.3496 102.5645 151.4668 102.5898 c -%_151.583 102.6152 151.7012 102.5547 151.75 102.4463 c -%_152.8711 99.957 156.498 98.666 160.333 99.5664 c -%_164.5127 100.5469 167.333 103.7559 166.6338 106.7314 c -%_166.1621 108.7461 164.1973 110.1348 161.6816 110.5186 c -%_161.5547 110.5371 161.4619 110.6484 161.4648 110.7764 c -%_161.4688 110.9043 161.5674 111.0098 161.6953 111.0215 c -%_162.7637 111.124 163.875 111.1279 165.0127 111.0195 c -%_171.5029 110.4023 176.5264 106.4238 176.9619 101.8418 C -%_181.6748 102.3887 185.8467 104.998 187.3408 108.6152 c -%_187.3857 108.7236 187.501 108.7871 187.6162 108.7695 c -%_187.7314 108.75 187.8193 108.6553 187.8291 108.5391 c -%_188.2061 103.7871 186.5713 100.7002 182.8584 97.6846 C -%_188.2432 99.7441 194.3027 99.8496 200.1133 97.1465 c -%_200.2188 97.0977 200.2773 96.9824 200.2559 96.8672 c -%_200.2324 96.752 200.1328 96.668 200.0156 96.6641 c -%_195.1367 96.4736 191.5996 94.9082 188.2861 91.5918 C -%_206.5391 96.7256 221.3711 85.3906 216.2383 68.5391 c -%_216.2031 68.4238 216.0918 68.3486 215.9707 68.3613 c -%_215.8496 68.373 215.7539 68.4688 215.7441 68.5898 c -%_214.8262 78.3037 208.041 84.7051 197.8828 85.666 C -%_203.2695 83.6055 208.8828 78.6895 209.4395 70.1318 c -%_209.4473 70.0098 209.3672 69.8984 209.248 69.8691 c -%_209.1289 69.8398 209.0059 69.8984 208.9551 70.0098 c -%_206.1563 76.1641 200.6582 79.2754 194.7949 79.8223 C -%_201.1289 77.2422 205.1914 71.2207 206.3652 63.4023 c -%_206.3848 63.2793 206.3105 63.1602 206.1914 63.123 c -%_206.0742 63.084 205.9453 63.1387 205.8887 63.248 c -%_202.0234 70.8311 193.7324 76.042 183.4424 72.0605 c -%_172.8252 67.9512 168.168 55.6738 167.1387 47.0195 c -%_167.124 46.8984 167.0234 46.8047 166.9004 46.7969 c -%_166.7783 46.7891 166.668 46.8711 166.6396 46.9922 c -%_162.9199 62.6797 170.2227 78.9414 183.2764 85.832 C -%_176.1807 83.8291 169.8369 79.5723 166.249 72.4775 C -%_157.9551 71.459 152.2451 68.6152 149.3916 63.2383 c -%_149.335 63.1309 149.2109 63.0781 149.0957 63.1133 c -%_148.9805 63.1465 148.9043 63.2578 148.9141 63.3789 c -%_149.0967 65.4883 149.8555 69.709 152.9883 71.6494 C -%_146.0234 71.6387 140.4824 72.543 135.1895 74.6621 c -%_135.0781 74.708 135.0127 74.8262 135.0352 74.9453 c -%_f -%_0 D -%_164.5215 21.4746 m -%_164.4229 21.541 164.293 21.5293 164.2061 21.4492 c -%_164.1201 21.3672 164.1016 21.2383 164.1602 21.1367 c -%_165.7803 18.3398 164.3008 14.3223 161.1094 14.3223 c -%_155.3887 14.3223 152.6387 25.0918 153.5137 34.916 C -%_155.6768 29.1602 157.5469 26.8613 160.8613 24.1211 c -%_160.9551 24.043 161.0898 24.043 161.1836 24.1191 c -%_161.2773 24.1973 161.3047 24.3281 161.2471 24.4355 c -%_156.3906 33.5156 155.3496 40.502 155.3496 48.5215 C -%_156.8125 42.5625 158.5449 39.1992 163.4766 34.1406 c -%_163.5625 34.0527 163.6992 34.0391 163.8018 34.1074 c -%_163.9033 34.1777 163.9404 34.3105 163.8887 34.4238 c -%_158.5908 46.0137 158.9951 58.8711 162.9414 68.6875 c -%_162.9805 68.7852 162.9561 68.8965 162.8789 68.9688 c -%_162.8018 69.0391 162.6895 69.0566 162.5938 69.0098 c -%_157.3887 66.459 154.3301 64.7832 149.8418 58.6211 C -%_151.1992 51.2227 150.0703 47.5723 146.6699 41.4258 C -%_150.6074 51.3438 148.5117 65.3203 138.4824 71.0176 c -%_138.373 71.0791 138.2344 71.0518 138.1582 70.9531 c -%_138.0801 70.8535 138.0869 70.7119 138.1738 70.6211 c -%_141.9551 66.666 144.7051 59.9863 142.3301 52.6934 C -%_143.8594 63.082 134.7344 71.8086 124.5508 71.8086 c -%_114.9512 71.8086 108.4004 64.2988 108.9414 56.8672 c -%_109.4785 49.502 114.3848 45.8984 118.6133 44.3691 c -%_118.7246 44.3301 118.8496 44.3711 118.9131 44.4707 c -%_118.9766 44.5723 118.9629 44.7012 118.8799 44.7871 c -%_113.2695 50.4785 112.502 61.2793 122.4629 64.5469 C -%_116.6035 59.4902 118.7734 47.7168 128.1523 46.8223 c -%_128.2695 46.8105 128.3789 46.8809 128.417 46.9922 c -%_128.4551 47.1035 128.4121 47.2266 128.3135 47.2891 c -%_126.3047 48.5664 124.6348 51.0605 124.6348 53.8633 c -%_124.6348 58.5371 128.0566 60.373 130.3105 60.373 c -%_133.7324 60.373 136.5703 57.1172 136.5703 52.1934 c -%_136.5703 46.3496 131.3105 41.5098 124.5508 40.7578 c -%_117.9248 40.0234 111.7686 42.9121 108.8008 47.2168 c -%_108.7314 47.3184 108.5996 47.3555 108.4873 47.3047 c -%_108.375 47.2539 108.3164 47.1289 108.3467 47.0098 c -%_111.3652 35.3066 125.1426 30.1328 135.2344 37.5039 C -%_128.6211 30.002 118.2285 29.8984 109.5127 37.5898 c -%_109.4219 37.6699 109.2871 37.6738 109.1904 37.5996 c -%_109.0938 37.5273 109.0635 37.3945 109.1172 37.2871 c -%_111.7842 31.8789 118.3701 25.4668 127.7227 26.4023 c -%_136.2793 27.2578 141.2441 35.416 142.2461 42.0938 C -%_142.8027 33.5723 140.8525 27.5566 133.4922 21.9473 c -%_133.3955 21.873 133.3652 21.7402 133.4199 21.6309 c -%_133.4746 21.5234 133.5996 21.4688 133.7168 21.502 c -%_140.502 23.4629 145.9473 26.9277 148.7656 34.0469 C -%_148.7656 27.8848 146.627 21.6738 141.2402 17.5352 c -%_141.1426 17.4609 141.1133 17.3301 141.168 17.2207 c -%_141.2227 17.1113 141.3467 17.0566 141.4639 17.0898 c -%_144.917 18.0742 147.6348 19.5781 149.6016 22.2754 C -%_150.9121 11.1758 156.123 4.58398 162.127 4.58398 c -%_166.252 4.58398 169.332 7.61719 169.332 12.4551 c -%_169.332 15.2852 167.8438 19.2578 164.5215 21.4746 c -%_f -%_263.748 113.0938 m -%_260.5859 116.998 254.209 118.4863 247.3164 117.082 C -%_247.8262 121.3828 246.9824 125.873 245.7051 128.5664 c -%_245.6523 128.6758 245.5313 128.7334 245.4141 128.7051 c -%_245.2969 128.6758 245.2168 128.5684 245.2207 128.4473 c -%_245.5957 119.6807 240.5977 112.6035 231.7715 109.5371 C -%_238.6777 114.293 240.6973 123.7305 237.4102 128.6035 c -%_237.3418 128.7021 237.2148 128.7412 237.1035 128.6953 c -%_236.9922 128.6504 236.9277 128.5332 236.9492 128.416 c -%_237.3223 126.3555 236.3438 123.7314 234.2363 121.6895 c -%_231.3301 118.875 227.3867 118.2363 225.4258 120.2598 c -%_223.4648 122.2852 224.2285 126.207 227.1328 129.0215 c -%_228.1934 130.0488 229.3926 130.7832 230.582 131.2061 c -%_230.6953 131.2461 230.7637 131.3594 230.748 131.4775 c -%_230.7344 131.5967 230.6387 131.6885 230.5195 131.6982 c -%_224.1309 132.2529 219.75 128.4463 217.0039 123.8203 c -%_214.209 119.1152 209.4336 115.4102 203.793 116.1504 c -%_203.6738 116.166 203.5605 116.0957 203.5195 115.9824 c -%_203.4805 115.8691 203.5254 115.7422 203.6289 115.6807 c -%_206.4258 113.9961 209.5 113.2969 213.4922 114.6289 C -%_207.6973 109.7197 199.4453 106.8867 191.6523 109.4014 c -%_191.543 109.4375 191.4238 109.3945 191.3613 109.2979 c -%_191.2988 109.2012 191.3105 109.0752 191.3867 108.9902 c -%_197.2949 102.4258 209.0762 102.2949 216.4961 107.6172 C -%_213.459 103.3008 209.4277 100.1328 202.2031 99.1387 c -%_202.0879 99.123 201.998 99.0313 201.9844 98.916 c -%_201.9727 98.7998 202.0391 98.6904 202.1484 98.6504 c -%_210.4395 95.5723 218.748 98.6953 225.5938 106.8652 C -%_222.6016 100.4883 217.6875 95.3809 210.8262 92.8535 c -%_210.7109 92.8115 210.6426 92.6934 210.6641 92.5742 c -%_210.6836 92.4531 210.7871 92.3643 210.9082 92.3613 c -%_214.8516 92.2803 218.3945 93.2188 223.1738 95.9316 C -%_219.666 90.2422 220.4336 80.293 225.543 73.6738 c -%_225.6133 73.582 225.7383 73.5498 225.8457 73.5957 c -%_225.9512 73.6426 226.0137 73.7549 225.9941 73.8691 c -%_224.8145 81.0703 227.293 89.1992 231.6035 93.5117 C -%_229.4512 85.8799 231.5977 78.9355 237.5 73.8672 c -%_237.5703 73.8066 237.6699 73.79 237.7559 73.8232 c -%_237.8438 73.8564 237.9043 73.9355 237.918 74.0273 c -%_239.1523 83.4453 249.6875 93.002 258.5195 93.8027 c -%_258.6445 93.8135 258.7422 93.9141 258.75 94.0381 c -%_258.7578 94.1621 258.6758 94.2754 258.5527 94.3027 c -%_254.2734 95.2715 249.8613 94.793 246.1641 93.2715 C -%_248.8242 96.2051 252.1035 98.3828 255.7188 99.5176 c -%_255.8359 99.5537 255.9082 99.668 255.8945 99.7891 c -%_255.8809 99.9102 255.7813 100.0039 255.6602 100.0127 c -%_251.1504 100.3242 246.7363 99.0068 242.9297 96.4746 C -%_247.291 103.0957 253.9102 108.0195 262.3574 109.9805 c -%_262.4785 110.0088 262.5605 110.1191 262.5547 110.2432 c -%_262.5469 110.3672 262.4512 110.4668 262.3281 110.4805 c -%_250.4102 111.7822 240.582 107.1621 234.1074 98.5625 C -%_235.7559 103.4629 240.4727 108.3184 247.0527 111.1816 c -%_252.8984 113.7266 258.9023 114.1279 263.4746 112.6914 c -%_263.5801 112.6582 263.6973 112.6982 263.7598 112.791 c -%_263.8223 112.8828 263.8184 113.0059 263.748 113.0938 c -%_f -%_210.8438 37.5215 m -%_215.6504 48.0078 215.3086 56.207 211.4375 66.5762 c -%_211.3926 66.6934 211.2715 66.7607 211.1484 66.7363 c -%_211.0254 66.7109 210.9395 66.5996 210.9453 66.4746 c -%_211.5664 53.8535 208.1191 44.8203 200.6465 38.668 C -%_208.8965 48.5195 205 68.2275 191.8242 68.2275 c -%_182.2393 68.2275 174.3086 60.252 172.3691 50.7031 c -%_172.3447 50.582 172.4111 50.459 172.5273 50.416 c -%_172.6426 50.3711 172.7734 50.416 172.8359 50.5215 c -%_175.6787 55.2832 180.2451 58.373 185.2939 58.373 c -%_193.4277 58.373 195.834 51.9063 195.834 47.375 c -%_195.834 41.1875 190.9082 36.0313 187.1279 36.0313 c -%_183.6904 36.0313 182.0869 38.8555 182.0869 40.959 c -%_182.0869 44.8574 185.085 48.125 188.4639 49.123 c -%_188.583 49.1582 188.6611 49.2773 188.6436 49.4023 c -%_188.624 49.5273 188.5186 49.6191 188.3936 49.6211 c -%_184.2861 49.6465 180.8154 47.7656 178.7627 44.0527 C -%_178.4932 46.9277 178.4902 48.7383 179.4033 51.7754 c -%_179.4385 51.8926 179.3848 52.0176 179.2773 52.0742 c -%_179.168 52.1309 179.0352 52.1016 178.9609 52.0059 c -%_171.6045 42.6133 175.125 26.3809 180.9404 19.6484 C -%_175.4082 23.6309 170.5234 32.2813 170.6006 44.041 c -%_170.6016 44.1641 170.5156 44.2676 170.3955 44.291 c -%_170.2754 44.3164 170.1563 44.25 170.1113 44.1367 c -%_166.0029 33.8848 168.1826 14.8887 179.3926 4.28516 C -%_176.5088 3.88867 173.5254 3.93945 170.2676 4.97852 c -%_170.1523 5.01367 170.0273 4.96484 169.9688 4.85938 c -%_169.9102 4.75195 169.9336 4.61914 170.0273 4.54102 c -%_174.1191 1.08594 179.8418 0 185.2939 0 C -%_180.5967 5.5 182.1572 16.5547 189.6494 16.5547 c -%_194.9961 16.5547 197.4238 8.25586 193.2949 3.77344 c -%_193.2168 3.6875 193.207 3.55859 193.2695 3.46289 c -%_193.334 3.36523 193.4551 3.32227 193.5664 3.36133 c -%_198.3457 5.01563 203.5117 9.15039 203.5117 14.377 c -%_203.5117 19.4199 198.6992 23.7715 191.7109 23.4277 C -%_200.5293 25.9336 209.7617 23.1602 214.5918 17.1758 c -%_214.666 17.082 214.7969 17.0547 214.9023 17.1074 c -%_215.0098 17.1621 215.0645 17.2832 215.0352 17.3984 c -%_212.2441 28.1152 203.0684 32.5977 191.5957 31.1055 C -%_200.877 34.8613 214.8457 31.5859 221.0195 23.7949 c -%_221.0918 23.7031 221.2188 23.6738 221.3262 23.7227 c -%_221.4316 23.7734 221.4902 23.8906 221.4668 24.0039 c -%_220.0957 30.6191 216.6035 35.5664 210.8438 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 56.8086 m -%_237.2051 56.6895 237.1016 56.6016 236.9805 56.6016 c -%_224.0742 56.4648 212.2266 53.334 203.0098 45.0859 C -%_211.0391 50.6445 225.9512 52.5957 234.5371 48.7051 c -%_234.6465 48.6543 234.7051 48.5332 234.6777 48.416 c -%_234.6523 48.2988 234.5449 48.2168 234.4238 48.2188 c -%_223.7441 48.5098 215.1445 45.2129 208.4395 39.2559 C -%_215.3086 38.832 221.0137 34.5156 220.9961 29.4102 c -%_220.9961 29.291 220.9121 29.1875 220.7949 29.1621 c -%_220.6797 29.1387 220.5605 29.1973 220.5117 29.3066 c -%_219.3906 31.7949 215.7637 33.0879 211.9297 32.1875 c -%_207.75 31.2051 204.9297 27.998 205.6289 25.0215 c -%_206.0996 23.0078 208.0645 21.6191 210.5801 21.2344 c -%_210.707 21.2148 210.8008 21.1055 210.7969 20.9766 c -%_210.793 20.8496 210.6953 20.7441 210.5664 20.7305 c -%_209.498 20.6289 208.3867 20.625 207.25 20.7344 c -%_200.7598 21.3516 195.7363 25.3281 195.3008 29.9121 C -%_190.5889 29.3652 186.417 26.7539 184.9229 23.1387 c -%_184.8779 23.0293 184.7646 22.9668 184.6475 22.9844 c -%_184.5322 23.002 184.4443 23.0977 184.4346 23.2148 c -%_184.0576 27.9648 185.6924 31.0527 189.4053 34.0684 C -%_184.0205 32.0098 177.959 31.9043 172.1484 34.6055 c -%_172.043 34.6563 171.9844 34.7715 172.0059 34.8867 c -%_172.0293 35.002 172.1289 35.0859 172.2461 35.0898 c -%_177.125 35.2793 180.6631 36.8457 183.9795 40.1621 C -%_165.7227 35.0273 150.8906 46.3633 156.0234 63.2129 c -%_156.0586 63.3301 156.1699 63.4043 156.291 63.3926 c -%_156.4121 63.3809 156.5078 63.2852 156.5176 63.1641 c -%_157.4355 53.4492 164.2207 47.0469 174.3789 46.0879 C -%_168.9922 48.1465 163.3789 53.0625 162.8223 61.6211 c -%_162.8145 61.7441 162.8945 61.8535 163.0137 61.8848 c -%_163.1328 61.9141 163.2559 61.8535 163.3066 61.7422 c -%_166.1055 55.5879 171.6035 52.4785 177.4668 51.9297 C -%_171.1328 54.5117 167.0703 60.5332 165.8965 68.3516 c -%_165.877 68.4746 165.9512 68.5918 166.0703 68.6309 c -%_166.1875 68.668 166.3164 68.6152 166.373 68.5039 c -%_170.2383 60.9219 178.5293 55.7109 188.8213 59.6934 c -%_199.4375 63.8027 204.0938 76.0781 205.123 84.7324 c -%_205.1387 84.8555 205.2383 84.9492 205.3613 84.957 c -%_205.4844 84.9629 205.5938 84.8809 205.623 84.7617 c -%_209.3418 69.0723 202.0391 52.8125 188.9873 45.9219 C -%_196.082 47.9238 202.4258 52.1816 206.0137 59.2754 C -%_214.3066 60.293 220.0176 63.1387 222.8711 68.5156 c -%_222.9277 68.6211 223.0508 68.6738 223.166 68.6406 c -%_223.2813 68.6055 223.3574 68.4941 223.3477 68.375 c -%_223.166 66.2656 222.4063 62.0449 219.2734 60.1035 C -%_226.2383 60.1152 231.7793 59.2109 237.0723 57.0898 c -%_237.1836 57.0449 237.25 56.9277 237.2266 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 110.2773 m -%_207.8398 110.2129 207.9688 110.2227 208.0566 110.3047 c -%_208.1426 110.3848 208.1602 110.5137 208.1016 110.6172 c -%_206.4824 113.4141 207.9609 117.4297 211.1523 117.4297 c -%_216.873 117.4297 219.623 106.6602 218.748 96.8379 C -%_216.5859 102.5918 214.7148 104.8926 211.4004 107.6328 c -%_211.3066 107.709 211.1719 107.7109 211.0781 107.6328 c -%_210.9844 107.5566 210.957 107.4238 211.0156 107.3164 c -%_215.8711 98.2383 216.9121 91.252 216.9121 83.2324 C -%_215.4492 89.1895 213.7168 92.5527 208.7852 97.6133 c -%_208.6992 97.7012 208.5625 97.7148 208.4609 97.6445 c -%_208.3594 97.5742 208.3223 97.4414 208.373 97.3301 c -%_213.6719 85.7383 213.2676 72.8828 209.3203 63.0664 c -%_209.2813 62.9688 209.3066 62.8574 209.3828 62.7852 c -%_209.4609 62.7129 209.5723 62.6973 209.668 62.7422 c -%_214.873 65.293 217.9316 66.9688 222.4199 73.1328 C -%_221.0625 80.5313 222.1914 84.1797 225.5918 90.3262 C -%_221.6543 80.4102 223.75 66.4336 233.7793 60.7363 c -%_233.8887 60.6738 234.0273 60.7012 234.1035 60.8008 c -%_234.1816 60.9004 234.1758 61.041 234.0879 61.1328 c -%_230.3066 65.0879 227.5566 71.7676 229.9316 79.0586 C -%_228.4023 68.6699 237.5273 59.9453 247.7109 59.9453 c -%_257.3105 59.9453 263.8613 67.4531 263.3203 74.8848 c -%_262.7832 82.25 257.877 85.8555 253.6484 87.3828 c -%_253.5371 87.4238 253.4121 87.3809 253.3496 87.2813 c -%_253.2852 87.1816 253.2988 87.0508 253.3828 86.9668 c -%_258.9922 81.2734 259.7598 70.4746 249.7988 67.207 C -%_255.6582 72.2637 253.4883 84.0352 244.1094 84.9316 c -%_243.9922 84.9414 243.8828 84.8711 243.8457 84.7598 c -%_243.8066 84.6504 243.8496 84.5273 243.9492 84.4648 c -%_245.957 83.1855 247.627 80.6934 247.627 77.8906 c -%_247.627 73.2168 244.2051 71.3789 241.9512 71.3789 c -%_238.5293 71.3789 235.6914 74.6348 235.6914 79.5605 c -%_235.6914 85.4023 240.9512 90.2441 247.7109 90.9941 c -%_254.3379 91.7305 260.4941 88.8398 263.4609 84.5352 c -%_263.5313 84.4336 263.6621 84.3984 263.7754 84.4492 c -%_263.8867 84.5 263.9453 84.623 263.916 84.7422 c -%_260.8965 96.4453 247.1191 101.6191 237.0273 94.25 C -%_243.6406 101.75 254.0332 101.8555 262.75 94.1641 c -%_262.8398 94.084 262.9746 94.0781 263.0723 94.1523 c -%_263.168 94.2266 263.1992 94.3574 263.1445 94.4668 c -%_260.4785 99.873 253.8926 106.2852 244.5391 105.3516 c -%_235.9824 104.4961 231.0176 96.3359 230.0156 89.6602 C -%_229.459 98.1816 231.4102 104.1953 238.7695 109.8047 c -%_238.8672 109.8789 238.8965 110.0117 238.8418 110.1211 c -%_238.7871 110.2305 238.6621 110.2852 238.5449 110.25 c -%_231.7598 108.291 226.3145 104.8262 223.4961 97.707 C -%_223.4961 103.8672 225.6348 110.0781 231.0215 114.2168 c -%_231.1191 114.291 231.1484 114.4238 231.0938 114.5332 c -%_231.0391 114.6406 230.916 114.6953 230.7988 114.6621 c -%_227.3457 113.6797 224.627 112.1738 222.6602 109.4785 C -%_221.3496 120.5781 216.1387 127.168 210.1348 127.168 c -%_206.0098 127.168 202.9297 124.1348 202.9297 119.2988 c -%_202.9297 116.4688 204.418 112.4961 207.7402 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 18.6602 m -%_111.6758 14.7559 118.0527 13.2676 124.9453 14.6719 C -%_124.4355 10.3691 125.2793 5.88086 126.5566 3.18555 c -%_126.6094 3.07813 126.7305 3.01953 126.8477 3.04883 c -%_126.9648 3.07813 127.0449 3.18555 127.041 3.30664 c -%_126.666 12.0723 131.6641 19.1484 140.4902 22.2148 C -%_133.584 17.459 131.5645 8.02148 134.8516 3.15039 c -%_134.9199 3.05078 135.0469 3.01172 135.1582 3.05664 c -%_135.2695 3.10156 135.334 3.21875 135.3125 3.33789 c -%_134.9395 5.39844 135.918 8.02148 138.0254 10.0625 c -%_140.9316 12.877 144.875 13.5156 146.8359 11.4922 c -%_148.7969 9.4668 148.0332 5.54492 145.1289 2.73242 c -%_144.0684 1.70508 142.8691 0.96875 141.6797 0.546875 c -%_141.5664 0.505859 141.498 0.392578 141.5137 0.275391 c -%_141.5273 0.15625 141.623 0.064453 141.7422 0.054688 c -%_148.1309 -0.5 152.5117 3.30664 155.2578 7.93164 c -%_158.0527 12.6367 162.8281 16.3438 168.4688 15.6035 c -%_168.5879 15.5879 168.7012 15.6582 168.7422 15.7715 c -%_168.7813 15.8848 168.7363 16.0098 168.6328 16.0723 c -%_165.8359 17.7559 162.7617 18.4551 158.7695 17.125 C -%_164.5645 22.0332 172.8164 24.8652 180.6104 22.3516 c -%_180.7197 22.3164 180.8389 22.3594 180.9014 22.4551 c -%_180.9639 22.5508 180.9541 22.6777 180.876 22.7637 c -%_174.9668 29.3281 163.1855 29.459 155.7656 24.1348 C -%_158.8027 28.4512 162.834 31.6211 170.0586 32.6133 c -%_170.1738 32.6289 170.2637 32.7227 170.2773 32.8379 c -%_170.2891 32.9531 170.2227 33.0625 170.1133 33.1035 c -%_161.8223 36.1797 153.5137 33.0586 146.668 24.8867 C -%_149.6602 31.2656 154.5742 36.373 161.4355 38.9004 c -%_161.5508 38.9414 161.6191 39.0586 161.5977 39.1797 c -%_161.5781 39.3008 161.4746 39.3887 161.3535 39.3906 c -%_157.4102 39.4727 153.8672 38.5332 149.0879 35.8203 C -%_152.5957 41.5117 151.8281 51.459 146.7188 58.0801 c -%_146.6484 58.1719 146.5234 58.2031 146.416 58.1582 c -%_146.3105 58.1113 146.248 57.998 146.2676 57.8828 c -%_147.4473 50.6836 144.9688 42.5547 140.6582 38.2422 C -%_142.8105 45.873 140.6641 52.8184 134.7617 57.8848 c -%_134.6914 57.9453 134.5918 57.9629 134.5059 57.9297 c -%_134.418 57.8965 134.3574 57.8184 134.3438 57.7266 c -%_133.1094 48.3086 122.5742 38.752 113.7422 37.9512 c -%_113.6172 37.9395 113.5195 37.8398 113.5117 37.7148 c -%_113.5039 37.5898 113.5859 37.4785 113.709 37.4512 c -%_117.9883 36.4824 122.4004 36.9609 126.0977 38.4805 C -%_123.4375 35.5488 120.1582 33.3711 116.543 32.2363 c -%_116.4258 32.1992 116.3535 32.0859 116.3672 31.9648 c -%_116.3809 31.8438 116.4805 31.748 116.6016 31.7402 c -%_121.1113 31.4297 125.5254 32.7461 129.332 35.2793 C -%_124.9707 28.6582 118.3516 23.7344 109.9043 21.7715 c -%_109.7832 21.7441 109.7012 21.6328 109.707 21.5098 c -%_109.7148 21.3867 109.8105 21.2871 109.9336 21.2734 c -%_121.8516 19.9707 131.6797 24.5918 138.1543 33.1914 C -%_136.5059 28.2891 131.7891 23.4355 125.209 20.5723 c -%_119.3633 18.0273 113.3594 17.625 108.7871 19.0625 c -%_108.6816 19.0957 108.5645 19.0547 108.502 18.9629 c -%_108.4395 18.8691 108.4434 18.7461 108.5137 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 94.2324 m -%_156.6113 83.7461 156.9531 75.5469 160.8242 65.1777 c -%_160.8691 65.0605 160.9902 64.9922 161.1133 65.0176 c -%_161.2363 65.043 161.3223 65.1543 161.3164 65.2773 c -%_160.6953 77.9004 164.1426 86.9316 171.6152 93.0859 C -%_163.3652 83.2324 167.2617 63.5254 180.4385 63.5254 c -%_190.0244 63.5254 197.9531 71.502 199.8926 81.0508 c -%_199.918 81.1719 199.8516 81.293 199.7344 81.3379 c -%_199.6191 81.3828 199.4883 81.3379 199.4258 81.2305 c -%_196.584 76.4688 192.0176 73.3789 186.9697 73.3789 c -%_178.834 73.3789 176.4277 79.8457 176.4277 84.3789 c -%_176.4277 90.5645 181.3545 95.7207 185.1357 95.7207 c -%_188.5732 95.7207 190.1768 92.8984 190.1768 90.7949 c -%_190.1768 86.8965 187.1787 83.6289 183.8018 82.6309 c -%_183.6807 82.5938 183.6045 82.4766 183.6221 82.3516 c -%_183.6396 82.2266 183.7451 82.1328 183.8721 82.1328 c -%_187.9775 82.1074 191.4473 83.9863 193.5 87.7012 C -%_193.7695 84.8262 193.7715 83.0156 192.8594 79.9766 c -%_192.8242 79.8594 192.877 79.7344 192.9844 79.6777 c -%_193.0938 79.623 193.2266 79.6504 193.3008 79.748 c -%_200.6582 89.1406 197.1367 105.3711 191.3223 112.1055 C -%_196.8535 108.123 201.7383 99.4707 201.6621 87.7109 c -%_201.6602 87.5898 201.7461 87.4844 201.8672 87.4609 c -%_201.9863 87.4375 202.1055 87.502 202.1504 87.6152 c -%_206.2598 97.8691 204.0801 116.8633 192.8691 127.4668 C -%_195.7539 127.8652 198.7363 127.8145 201.9941 126.7754 c -%_202.1094 126.7383 202.2344 126.7891 202.293 126.8945 c -%_202.3516 127 202.3281 127.1328 202.2344 127.2109 c -%_198.1426 130.666 192.4199 131.752 186.9697 131.752 C -%_191.666 126.252 190.1064 115.1992 182.6162 115.1992 c -%_177.2656 115.1992 174.8379 123.498 178.9668 127.9805 c -%_179.0449 128.0664 179.0547 128.1934 178.9922 128.291 c -%_178.9277 128.3887 178.8066 128.4297 178.6953 128.3926 c -%_173.916 126.7363 168.75 122.6035 168.75 117.375 c -%_168.75 112.334 173.5625 107.9805 180.5537 108.3242 C -%_171.7324 105.8203 162.5 108.5918 157.6699 114.5781 c -%_157.5957 114.6699 157.4648 114.6992 157.3594 114.6445 c -%_157.252 114.5918 157.1973 114.4707 157.2266 114.3535 c -%_160.0176 103.6387 169.1934 99.1543 180.667 100.6484 C -%_171.3848 96.8906 157.416 100.166 151.2422 107.957 c -%_151.1699 108.0488 151.043 108.0801 150.9355 108.0293 c -%_150.8301 107.9805 150.7715 107.8633 150.7949 107.748 c -%_152.166 101.1328 155.6582 96.1875 161.418 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 74.9453 m -%_26.7178 75.0645 26.8213 75.1504 26.9424 75.1523 c -%_39.8486 75.2871 51.6963 78.4199 60.9141 86.667 C -%_52.8838 81.1094 37.9717 79.1563 29.3867 83.0488 c -%_29.2764 83.0986 29.2178 83.2188 29.2451 83.3369 c -%_29.2715 83.4551 29.3779 83.5371 29.499 83.5332 c -%_40.1787 83.2441 48.7783 86.54 55.4834 92.498 C -%_48.6143 92.9199 42.9092 97.2383 42.9268 102.3428 c -%_42.9268 102.4619 43.0107 102.5645 43.1279 102.5898 c -%_43.2441 102.6152 43.3623 102.5547 43.4111 102.4463 c -%_44.5322 99.957 48.1592 98.666 51.9941 99.5664 c -%_56.1738 100.5469 58.9941 103.7559 58.2949 106.7314 c -%_57.8232 108.7461 55.8584 110.1348 53.3428 110.5186 c -%_53.2158 110.5371 53.123 110.6484 53.126 110.7764 c -%_53.1299 110.9043 53.2285 111.0098 53.3564 111.0215 c -%_54.4248 111.124 55.5361 111.1279 56.6738 111.0195 c -%_63.1641 110.4023 68.1875 106.4238 68.623 101.8418 C -%_73.3359 102.3887 77.5078 104.998 79.002 108.6152 c -%_79.0469 108.7236 79.1621 108.7871 79.2773 108.7695 c -%_79.3926 108.75 79.4805 108.6553 79.4902 108.5391 c -%_79.8672 103.7871 78.2324 100.7002 74.5195 97.6846 C -%_79.9043 99.7441 85.9648 99.8496 91.7754 97.1465 c -%_91.8809 97.0977 91.9395 96.9824 91.918 96.8672 c -%_91.8945 96.752 91.7949 96.668 91.6777 96.6641 c -%_86.7988 96.4736 83.2617 94.9082 79.9473 91.5918 C -%_98.2012 96.7256 113.0332 85.3906 107.9004 68.5391 c -%_107.8652 68.4238 107.7539 68.3486 107.6328 68.3613 c -%_107.5117 68.373 107.416 68.4688 107.4063 68.5898 c -%_106.4883 78.3037 99.7031 84.7051 89.5449 85.666 C -%_94.9316 83.6055 100.5449 78.6895 101.1016 70.1318 c -%_101.1094 70.0098 101.0293 69.8984 100.9102 69.8691 c -%_100.791 69.8398 100.668 69.8984 100.6172 70.0098 c -%_97.8184 76.1641 92.3203 79.2754 86.457 79.8223 C -%_92.791 77.2422 96.8535 71.2207 98.0273 63.4023 c -%_98.0469 63.2793 97.9727 63.1602 97.8535 63.123 c -%_97.7363 63.084 97.6074 63.1387 97.5508 63.248 c -%_93.6855 70.8311 85.3945 76.042 75.1035 72.0605 c -%_64.4863 67.9512 59.8291 55.6738 58.7998 47.0195 c -%_58.7852 46.8984 58.6846 46.8047 58.5615 46.7969 c -%_58.4395 46.7891 58.3291 46.8711 58.3008 46.9922 c -%_54.5811 62.6797 61.8838 78.9414 74.9375 85.832 C -%_67.8418 83.8291 61.498 79.5723 57.9102 72.4775 C -%_49.6162 71.459 43.9063 68.6152 41.0527 63.2383 c -%_40.9961 63.1309 40.8721 63.0781 40.7568 63.1133 c -%_40.6416 63.1465 40.5654 63.2578 40.5752 63.3789 c -%_40.7578 65.4883 41.5166 69.709 44.6494 71.6494 C -%_37.6846 71.6387 32.1436 72.543 26.8506 74.6621 c -%_26.7393 74.708 26.6738 74.8262 26.6963 74.9453 c -%_f -%_0 D -%_56.1826 21.4746 m -%_56.084 21.541 55.9541 21.5293 55.8672 21.4492 c -%_55.7813 21.3672 55.7627 21.2383 55.8213 21.1367 c -%_57.4414 18.3398 55.9619 14.3223 52.7705 14.3223 c -%_47.0498 14.3223 44.2998 25.0918 45.1748 34.916 C -%_47.3379 29.1602 49.208 26.8613 52.5225 24.1211 c -%_52.6162 24.043 52.751 24.043 52.8447 24.1191 c -%_52.9385 24.1973 52.9658 24.3281 52.9082 24.4355 c -%_48.0518 33.5156 47.0107 40.502 47.0107 48.5215 C -%_48.4736 42.5625 50.2061 39.1992 55.1377 34.1406 c -%_55.2236 34.0527 55.3604 34.0391 55.4629 34.1074 c -%_55.5645 34.1777 55.6016 34.3105 55.5498 34.4238 c -%_50.252 46.0137 50.6563 58.8711 54.6025 68.6875 c -%_54.6416 68.7852 54.6172 68.8965 54.54 68.9688 c -%_54.4629 69.0391 54.3506 69.0566 54.2549 69.0098 c -%_49.0498 66.459 45.9912 64.7832 41.5029 58.6211 C -%_42.8604 51.2227 41.7314 47.5723 38.3311 41.4258 C -%_42.2686 51.3438 40.1729 65.3203 30.1436 71.0176 c -%_30.0342 71.0791 29.8955 71.0518 29.8193 70.9531 c -%_29.7412 70.8535 29.748 70.7119 29.835 70.6211 c -%_33.6162 66.666 36.3662 59.9863 33.9912 52.6934 C -%_35.5205 63.082 26.3955 71.8086 16.2119 71.8086 c -%_6.6123 71.8086 0.061523 64.2988 0.602539 56.8672 c -%_1.13965 49.502 6.0459 45.8984 10.2744 44.3691 c -%_10.3857 44.3301 10.5107 44.3711 10.5742 44.4707 c -%_10.6377 44.5723 10.624 44.7012 10.541 44.7871 c -%_4.93066 50.4785 4.16309 61.2793 14.124 64.5469 C -%_8.26465 59.4902 10.4346 47.7168 19.8135 46.8223 c -%_19.9307 46.8105 20.04 46.8809 20.0781 46.9922 c -%_20.1162 47.1035 20.0732 47.2266 19.9746 47.2891 c -%_17.9658 48.5664 16.2959 51.0605 16.2959 53.8633 c -%_16.2959 58.5371 19.7178 60.373 21.9717 60.373 c -%_25.3936 60.373 28.2314 57.1172 28.2314 52.1934 c -%_28.2314 46.3496 22.9717 41.5098 16.2119 40.7578 c -%_9.58594 40.0234 3.42969 42.9121 0.461914 47.2168 c -%_0.392578 47.3184 0.260742 47.3555 0.148438 47.3047 c -%_0.036133 47.2539 -0.022461 47.1289 0.007813 47.0098 c -%_3.02637 35.3066 16.8037 30.1328 26.8955 37.5039 C -%_20.2822 30.002 9.88965 29.8984 1.17383 37.5898 c -%_1.08301 37.6699 0.948242 37.6738 0.851563 37.5996 c -%_0.754883 37.5273 0.724609 37.3945 0.77832 37.2871 c -%_3.44531 31.8789 10.0313 25.4668 19.3838 26.4023 c -%_27.9404 27.2578 32.9053 35.416 33.9072 42.0938 C -%_34.4639 33.5723 32.5137 27.5566 25.1533 21.9473 c -%_25.0566 21.873 25.0264 21.7402 25.0811 21.6309 c -%_25.1357 21.5234 25.2607 21.4688 25.3779 21.502 c -%_32.1631 23.4629 37.6084 26.9277 40.4268 34.0469 C -%_40.4268 27.8848 38.2881 21.6738 32.9014 17.5352 c -%_32.8037 17.4609 32.7744 17.3301 32.8291 17.2207 c -%_32.8838 17.1113 33.0078 17.0566 33.125 17.0898 c -%_36.5781 18.0742 39.2959 19.5781 41.2627 22.2754 C -%_42.5732 11.1758 47.7842 4.58398 53.7881 4.58398 c -%_57.9131 4.58398 60.9932 7.61719 60.9932 12.4551 c -%_60.9932 15.2852 59.5049 19.2578 56.1826 21.4746 c -%_f -%_155.4102 113.0938 m -%_152.248 116.998 145.8711 118.4863 138.9785 117.082 C -%_139.4883 121.3828 138.6445 125.873 137.3672 128.5664 c -%_137.3145 128.6758 137.1934 128.7334 137.0762 128.7051 c -%_136.959 128.6758 136.8789 128.5684 136.8828 128.4473 c -%_137.2578 119.6807 132.2598 112.6035 123.4336 109.5371 C -%_130.3398 114.293 132.3594 123.7305 129.0723 128.6035 c -%_129.0039 128.7021 128.877 128.7412 128.7656 128.6953 c -%_128.6543 128.6504 128.5898 128.5332 128.6113 128.416 c -%_128.9844 126.3555 128.0059 123.7314 125.8984 121.6895 c -%_122.9922 118.875 119.0488 118.2363 117.0879 120.2598 c -%_115.127 122.2852 115.8906 126.207 118.7949 129.0215 c -%_119.8555 130.0488 121.0547 130.7832 122.2441 131.2061 c -%_122.3574 131.2461 122.4258 131.3594 122.4102 131.4775 c -%_122.3965 131.5967 122.3008 131.6885 122.1816 131.6982 c -%_115.793 132.2529 111.4121 128.4463 108.666 123.8203 c -%_105.8711 119.1152 101.0957 115.4102 95.4551 116.1504 c -%_95.3359 116.166 95.2227 116.0957 95.1816 115.9824 c -%_95.1426 115.8691 95.1875 115.7422 95.291 115.6807 c -%_98.0879 113.9961 101.1621 113.2969 105.1543 114.6289 C -%_99.3594 109.7197 91.1074 106.8867 83.3145 109.4014 c -%_83.2051 109.4375 83.0859 109.3945 83.0234 109.2979 c -%_82.9609 109.2012 82.9727 109.0752 83.0488 108.9902 c -%_88.957 102.4258 100.7383 102.2949 108.1582 107.6172 C -%_105.1211 103.3008 101.0898 100.1328 93.8652 99.1387 c -%_93.75 99.123 93.6602 99.0313 93.6465 98.916 c -%_93.6348 98.7998 93.7012 98.6904 93.8105 98.6504 c -%_102.1016 95.5723 110.4102 98.6953 117.2559 106.8652 C -%_114.2637 100.4883 109.3496 95.3809 102.4883 92.8535 c -%_102.373 92.8115 102.3047 92.6934 102.3262 92.5742 c -%_102.3457 92.4531 102.4492 92.3643 102.5703 92.3613 c -%_106.5137 92.2803 110.0566 93.2188 114.8359 95.9316 C -%_111.3281 90.2422 112.0957 80.293 117.2051 73.6738 c -%_117.2754 73.582 117.4004 73.5498 117.5078 73.5957 c -%_117.6133 73.6426 117.6758 73.7549 117.6563 73.8691 c -%_116.4766 81.0703 118.9551 89.1992 123.2656 93.5117 C -%_121.1133 85.8799 123.2598 78.9355 129.1621 73.8672 c -%_129.2324 73.8066 129.332 73.79 129.418 73.8232 c -%_129.5059 73.8564 129.5664 73.9355 129.5801 74.0273 c -%_130.8145 83.4453 141.3496 93.002 150.1816 93.8027 c -%_150.3066 93.8135 150.4043 93.9141 150.4121 94.0381 c -%_150.4199 94.1621 150.3379 94.2754 150.2148 94.3027 c -%_145.9355 95.2715 141.5234 94.793 137.8262 93.2715 C -%_140.4863 96.2051 143.7656 98.3828 147.3809 99.5176 c -%_147.498 99.5537 147.5703 99.668 147.5566 99.7891 c -%_147.543 99.9102 147.4434 100.0039 147.3223 100.0127 c -%_142.8125 100.3242 138.3984 99.0068 134.5918 96.4746 C -%_138.9531 103.0957 145.5723 108.0195 154.0195 109.9805 c -%_154.1406 110.0088 154.2227 110.1191 154.2168 110.2432 c -%_154.209 110.3672 154.1133 110.4668 153.9902 110.4805 c -%_142.0723 111.7822 132.2441 107.1621 125.7695 98.5625 C -%_127.418 103.4629 132.1348 108.3184 138.7148 111.1816 c -%_144.5605 113.7266 150.5645 114.1279 155.1367 112.6914 c -%_155.2422 112.6582 155.3594 112.6982 155.4219 112.791 c -%_155.4844 112.8828 155.4805 113.0059 155.4102 113.0938 c -%_f -%_102.5059 37.5215 m -%_107.3125 48.0078 106.9707 56.207 103.0996 66.5762 c -%_103.0547 66.6934 102.9336 66.7607 102.8105 66.7363 c -%_102.6875 66.7109 102.6016 66.5996 102.6074 66.4746 c -%_103.2285 53.8535 99.7813 44.8203 92.3086 38.668 C -%_100.5586 48.5195 96.6621 68.2275 83.4863 68.2275 c -%_73.9004 68.2275 65.9697 60.252 64.0303 50.7031 c -%_64.0059 50.582 64.0723 50.459 64.1885 50.416 c -%_64.3037 50.3711 64.4346 50.416 64.4971 50.5215 c -%_67.3398 55.2832 71.9063 58.373 76.9551 58.373 c -%_85.0898 58.373 87.4961 51.9063 87.4961 47.375 c -%_87.4961 41.1875 82.5703 36.0313 78.7891 36.0313 c -%_75.3516 36.0313 73.748 38.8555 73.748 40.959 c -%_73.748 44.8574 76.7461 48.125 80.125 49.123 c -%_80.2441 49.1582 80.3223 49.2773 80.3047 49.4023 c -%_80.2852 49.5273 80.1797 49.6191 80.0547 49.6211 c -%_75.9473 49.6465 72.4766 47.7656 70.4238 44.0527 C -%_70.1543 46.9277 70.1514 48.7383 71.0645 51.7754 c -%_71.0996 51.8926 71.0459 52.0176 70.9385 52.0742 c -%_70.8291 52.1309 70.6963 52.1016 70.6221 52.0059 c -%_63.2656 42.6133 66.7861 26.3809 72.6016 19.6484 C -%_67.0693 23.6309 62.1846 32.2813 62.2617 44.041 c -%_62.2627 44.1641 62.1768 44.2676 62.0566 44.291 c -%_61.9365 44.3164 61.8174 44.25 61.7725 44.1367 c -%_57.6641 33.8848 59.8438 14.8887 71.0537 4.28516 C -%_68.1699 3.88867 65.1865 3.93945 61.9287 4.97852 c -%_61.8135 5.01367 61.6885 4.96484 61.6299 4.85938 c -%_61.5713 4.75195 61.5947 4.61914 61.6885 4.54102 c -%_65.7803 1.08594 71.5029 0 76.9551 0 C -%_72.2578 5.5 73.8184 16.5547 81.3105 16.5547 c -%_86.6582 16.5547 89.0859 8.25586 84.957 3.77344 c -%_84.8789 3.6875 84.8691 3.55859 84.9316 3.46289 c -%_84.9961 3.36523 85.1172 3.32227 85.2285 3.36133 c -%_90.0078 5.01563 95.1738 9.15039 95.1738 14.377 c -%_95.1738 19.4199 90.3613 23.7715 83.373 23.4277 C -%_92.1914 25.9336 101.4238 23.1602 106.2539 17.1758 c -%_106.3281 17.082 106.459 17.0547 106.5645 17.1074 c -%_106.6719 17.1621 106.7266 17.2832 106.6973 17.3984 c -%_103.9063 28.1152 94.7305 32.5977 83.2578 31.1055 C -%_92.5391 34.8613 106.5078 31.5859 112.6816 23.7949 c -%_112.7539 23.7031 112.8809 23.6738 112.9883 23.7227 c -%_113.0938 23.7734 113.1523 23.8906 113.1289 24.0039 c -%_111.7578 30.6191 108.2656 35.5664 102.5059 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 56.8086 m -%_128.8672 56.6895 128.7637 56.6016 128.6426 56.6016 c -%_115.7363 56.4648 103.8887 53.334 94.6719 45.0859 C -%_102.7012 50.6445 117.6133 52.5957 126.1992 48.7051 c -%_126.3086 48.6543 126.3672 48.5332 126.3398 48.416 c -%_126.3145 48.2988 126.207 48.2168 126.0859 48.2188 c -%_115.4063 48.5098 106.8066 45.2129 100.1016 39.2559 C -%_106.9707 38.832 112.6758 34.5156 112.6582 29.4102 c -%_112.6582 29.291 112.5742 29.1875 112.457 29.1621 c -%_112.3418 29.1387 112.2227 29.1973 112.1738 29.3066 c -%_111.0527 31.7949 107.4258 33.0879 103.5918 32.1875 c -%_99.4121 31.2051 96.5918 27.998 97.291 25.0215 c -%_97.7617 23.0078 99.7266 21.6191 102.2422 21.2344 c -%_102.3691 21.2148 102.4629 21.1055 102.459 20.9766 c -%_102.4551 20.8496 102.3574 20.7441 102.2285 20.7305 c -%_101.1602 20.6289 100.0488 20.625 98.9121 20.7344 c -%_92.4219 21.3516 87.3984 25.3281 86.9629 29.9121 C -%_82.25 29.3652 78.0781 26.7539 76.584 23.1387 c -%_76.5391 23.0293 76.4258 22.9668 76.3086 22.9844 c -%_76.1934 23.002 76.1055 23.0977 76.0957 23.2148 c -%_75.7188 27.9648 77.3535 31.0527 81.0664 34.0684 C -%_75.6816 32.0098 69.6201 31.9043 63.8096 34.6055 c -%_63.7041 34.6563 63.6455 34.7715 63.667 34.8867 c -%_63.6904 35.002 63.79 35.0859 63.9072 35.0898 c -%_68.7861 35.2793 72.3242 36.8457 75.6406 40.1621 C -%_57.3838 35.0273 42.5518 46.3633 47.6846 63.2129 c -%_47.7197 63.3301 47.8311 63.4043 47.9521 63.3926 c -%_48.0732 63.3809 48.1689 63.2852 48.1787 63.1641 c -%_49.0967 53.4492 55.8818 47.0469 66.04 46.0879 C -%_60.6533 48.1465 55.04 53.0625 54.4834 61.6211 c -%_54.4756 61.7441 54.5557 61.8535 54.6748 61.8848 c -%_54.7939 61.9141 54.917 61.8535 54.9678 61.7422 c -%_57.7666 55.5879 63.2646 52.4785 69.1279 51.9297 C -%_62.7939 54.5117 58.7314 60.5332 57.5576 68.3516 c -%_57.5381 68.4746 57.6123 68.5918 57.7314 68.6309 c -%_57.8486 68.668 57.9775 68.6152 58.0342 68.5039 c -%_61.8994 60.9219 70.1904 55.7109 80.4824 59.6934 c -%_91.0996 63.8027 95.7559 76.0781 96.7852 84.7324 c -%_96.8008 84.8555 96.9004 84.9492 97.0234 84.957 c -%_97.1465 84.9629 97.2559 84.8809 97.2852 84.7617 c -%_101.0039 69.0723 93.7012 52.8125 80.6484 45.9219 C -%_87.7441 47.9238 94.0879 52.1816 97.6758 59.2754 C -%_105.9688 60.293 111.6797 63.1387 114.5332 68.5156 c -%_114.5898 68.6211 114.7129 68.6738 114.8281 68.6406 c -%_114.9434 68.6055 115.0195 68.4941 115.0098 68.375 c -%_114.8281 66.2656 114.0684 62.0449 110.9355 60.1035 C -%_117.9004 60.1152 123.4414 59.2109 128.7344 57.0898 c -%_128.8457 57.0449 128.9121 56.9277 128.8887 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 110.2773 m -%_99.502 110.2129 99.6309 110.2227 99.7188 110.3047 c -%_99.8047 110.3848 99.8223 110.5137 99.7637 110.6172 c -%_98.1445 113.4141 99.623 117.4297 102.8145 117.4297 c -%_108.5352 117.4297 111.2852 106.6602 110.4102 96.8379 C -%_108.248 102.5918 106.377 104.8926 103.0625 107.6328 c -%_102.9688 107.709 102.834 107.7109 102.7402 107.6328 c -%_102.6465 107.5566 102.6191 107.4238 102.6777 107.3164 c -%_107.5332 98.2383 108.5742 91.252 108.5742 83.2324 C -%_107.1113 89.1895 105.3789 92.5527 100.4473 97.6133 c -%_100.3613 97.7012 100.2246 97.7148 100.123 97.6445 c -%_100.0215 97.5742 99.9844 97.4414 100.0352 97.3301 c -%_105.334 85.7383 104.9297 72.8828 100.9824 63.0664 c -%_100.9434 62.9688 100.9688 62.8574 101.0449 62.7852 c -%_101.123 62.7129 101.2344 62.6973 101.3301 62.7422 c -%_106.5352 65.293 109.5938 66.9688 114.082 73.1328 C -%_112.7246 80.5313 113.8535 84.1797 117.2539 90.3262 C -%_113.3164 80.4102 115.4121 66.4336 125.4414 60.7363 c -%_125.5508 60.6738 125.6895 60.7012 125.7656 60.8008 c -%_125.8438 60.9004 125.8379 61.041 125.75 61.1328 c -%_121.9688 65.0879 119.2188 71.7676 121.5938 79.0586 C -%_120.0645 68.6699 129.1895 59.9453 139.373 59.9453 c -%_148.9727 59.9453 155.5234 67.4531 154.9824 74.8848 c -%_154.4453 82.25 149.5391 85.8555 145.3105 87.3828 c -%_145.1992 87.4238 145.0742 87.3809 145.0117 87.2813 c -%_144.9473 87.1816 144.9609 87.0508 145.0449 86.9668 c -%_150.6543 81.2734 151.4219 70.4746 141.4609 67.207 C -%_147.3203 72.2637 145.1504 84.0352 135.7715 84.9316 c -%_135.6543 84.9414 135.5449 84.8711 135.5078 84.7598 c -%_135.4688 84.6504 135.5117 84.5273 135.6113 84.4648 c -%_137.6191 83.1855 139.2891 80.6934 139.2891 77.8906 c -%_139.2891 73.2168 135.8672 71.3789 133.6133 71.3789 c -%_130.1914 71.3789 127.3535 74.6348 127.3535 79.5605 c -%_127.3535 85.4023 132.6133 90.2441 139.373 90.9941 c -%_146 91.7305 152.1563 88.8398 155.123 84.5352 c -%_155.1934 84.4336 155.3242 84.3984 155.4375 84.4492 c -%_155.5488 84.5 155.6074 84.623 155.5781 84.7422 c -%_152.5586 96.4453 138.7813 101.6191 128.6895 94.25 C -%_135.3027 101.75 145.6953 101.8555 154.4121 94.1641 c -%_154.502 94.084 154.6367 94.0781 154.7344 94.1523 c -%_154.8301 94.2266 154.8613 94.3574 154.8066 94.4668 c -%_152.1406 99.873 145.5547 106.2852 136.2012 105.3516 c -%_127.6445 104.4961 122.6797 96.3359 121.6777 89.6602 C -%_121.1211 98.1816 123.0723 104.1953 130.4316 109.8047 c -%_130.5293 109.8789 130.5586 110.0117 130.5039 110.1211 c -%_130.4492 110.2305 130.3242 110.2852 130.207 110.25 c -%_123.4219 108.291 117.9766 104.8262 115.1582 97.707 C -%_115.1582 103.8672 117.2969 110.0781 122.6836 114.2168 c -%_122.7813 114.291 122.8105 114.4238 122.7559 114.5332 c -%_122.7012 114.6406 122.5781 114.6953 122.4609 114.6621 c -%_119.0078 113.6797 116.2891 112.1738 114.3223 109.4785 C -%_113.0117 120.5781 107.8008 127.168 101.7969 127.168 c -%_97.6719 127.168 94.5918 124.1348 94.5918 119.2988 c -%_94.5918 116.4688 96.0801 112.4961 99.4023 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 18.6602 m -%_3.33691 14.7559 9.71387 13.2676 16.6064 14.6719 C -%_16.0967 10.3691 16.9404 5.88086 18.2178 3.18555 c -%_18.2705 3.07813 18.3916 3.01953 18.5088 3.04883 c -%_18.626 3.07813 18.7061 3.18555 18.7021 3.30664 c -%_18.3271 12.0723 23.3252 19.1484 32.1514 22.2148 C -%_25.2451 17.459 23.2256 8.02148 26.5127 3.15039 c -%_26.5811 3.05078 26.708 3.01172 26.8193 3.05664 c -%_26.9307 3.10156 26.9951 3.21875 26.9736 3.33789 c -%_26.6006 5.39844 27.5791 8.02148 29.6865 10.0625 c -%_32.5928 12.877 36.5361 13.5156 38.4971 11.4922 c -%_40.458 9.4668 39.6943 5.54492 36.79 2.73242 c -%_35.7295 1.70508 34.5303 0.96875 33.3408 0.546875 c -%_33.2275 0.505859 33.1592 0.392578 33.1748 0.275391 c -%_33.1885 0.15625 33.2842 0.064453 33.4033 0.054688 c -%_39.792 -0.5 44.1729 3.30664 46.9189 7.93164 c -%_49.7139 12.6367 54.4893 16.3438 60.1299 15.6035 c -%_60.249 15.5879 60.3623 15.6582 60.4033 15.7715 c -%_60.4424 15.8848 60.3975 16.0098 60.2939 16.0723 c -%_57.4971 17.7559 54.4229 18.4551 50.4307 17.125 C -%_56.2256 22.0332 64.4775 24.8652 72.2715 22.3516 c -%_72.3809 22.3164 72.5 22.3594 72.5625 22.4551 c -%_72.625 22.5508 72.6152 22.6777 72.5371 22.7637 c -%_66.6279 29.3281 54.8467 29.459 47.4268 24.1348 C -%_50.4639 28.4512 54.4951 31.6211 61.7197 32.6133 c -%_61.835 32.6289 61.9248 32.7227 61.9385 32.8379 c -%_61.9502 32.9531 61.8838 33.0625 61.7744 33.1035 c -%_53.4834 36.1797 45.1748 33.0586 38.3291 24.8867 C -%_41.3213 31.2656 46.2354 36.373 53.0967 38.9004 c -%_53.2119 38.9414 53.2803 39.0586 53.2588 39.1797 c -%_53.2393 39.3008 53.1357 39.3887 53.0146 39.3906 c -%_49.0713 39.4727 45.5283 38.5332 40.749 35.8203 C -%_44.2568 41.5117 43.4893 51.459 38.3799 58.0801 c -%_38.3096 58.1719 38.1846 58.2031 38.0771 58.1582 c -%_37.9717 58.1113 37.9092 57.998 37.9287 57.8828 c -%_39.1084 50.6836 36.6299 42.5547 32.3193 38.2422 C -%_34.4717 45.873 32.3252 52.8184 26.4229 57.8848 c -%_26.3525 57.9453 26.2529 57.9629 26.167 57.9297 c -%_26.0791 57.8965 26.0186 57.8184 26.0049 57.7266 c -%_24.7705 48.3086 14.2354 38.752 5.40332 37.9512 c -%_5.27832 37.9395 5.18066 37.8398 5.17285 37.7148 c -%_5.16504 37.5898 5.24707 37.4785 5.37012 37.4512 c -%_9.64941 36.4824 14.0615 36.9609 17.7588 38.4805 C -%_15.0986 35.5488 11.8193 33.3711 8.2041 32.2363 c -%_8.08691 32.1992 8.01465 32.0859 8.02832 31.9648 c -%_8.04199 31.8438 8.1416 31.748 8.2627 31.7402 c -%_12.7725 31.4297 17.1865 32.7461 20.9932 35.2793 C -%_16.6318 28.6582 10.0127 23.7344 1.56543 21.7715 c -%_1.44434 21.7441 1.3623 21.6328 1.36816 21.5098 c -%_1.37598 21.3867 1.47168 21.2871 1.59473 21.2734 c -%_13.5127 19.9707 23.3408 24.5918 29.8154 33.1914 C -%_28.167 28.2891 23.4502 23.4355 16.8701 20.5723 c -%_11.0244 18.0273 5.02051 17.625 0.448242 19.0625 c -%_0.342773 19.0957 0.225586 19.0547 0.163086 18.9629 c -%_0.100586 18.8691 0.104492 18.7461 0.174805 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 94.2324 m -%_48.2725 83.7461 48.6143 75.5469 52.4854 65.1777 c -%_52.5303 65.0605 52.6514 64.9922 52.7744 65.0176 c -%_52.8975 65.043 52.9834 65.1543 52.9775 65.2773 c -%_52.3564 77.9004 55.8037 86.9316 63.2764 93.0859 C -%_55.0264 83.2324 58.9229 63.5254 72.0996 63.5254 c -%_81.6855 63.5254 89.6152 71.502 91.5547 81.0508 c -%_91.5801 81.1719 91.5137 81.293 91.3965 81.3379 c -%_91.2813 81.3828 91.1504 81.3379 91.0879 81.2305 c -%_88.2461 76.4688 83.6797 73.3789 78.6309 73.3789 c -%_70.4951 73.3789 68.0889 79.8457 68.0889 84.3789 c -%_68.0889 90.5645 73.0156 95.7207 76.7969 95.7207 c -%_80.2344 95.7207 81.8379 92.8984 81.8379 90.7949 c -%_81.8379 86.8965 78.8398 83.6289 75.4629 82.6309 c -%_75.3418 82.5938 75.2656 82.4766 75.2832 82.3516 c -%_75.3008 82.2266 75.4063 82.1328 75.5332 82.1328 c -%_79.6387 82.1074 83.1094 83.9863 85.1621 87.7012 C -%_85.4316 84.8262 85.4336 83.0156 84.5215 79.9766 c -%_84.4863 79.8594 84.5391 79.7344 84.6465 79.6777 c -%_84.7559 79.623 84.8887 79.6504 84.9629 79.748 c -%_92.3203 89.1406 88.7988 105.3711 82.9844 112.1055 C -%_88.5156 108.123 93.4004 99.4707 93.3242 87.7109 c -%_93.3223 87.5898 93.4082 87.4844 93.5293 87.4609 c -%_93.6484 87.4375 93.7676 87.502 93.8125 87.6152 c -%_97.9219 97.8691 95.7422 116.8633 84.5313 127.4668 C -%_87.416 127.8652 90.3984 127.8145 93.6563 126.7754 c -%_93.7715 126.7383 93.8965 126.7891 93.9551 126.8945 c -%_94.0137 127 93.9902 127.1328 93.8965 127.2109 c -%_89.8047 130.666 84.082 131.752 78.6309 131.752 C -%_83.3281 126.252 81.7676 115.1992 74.2773 115.1992 c -%_68.9268 115.1992 66.499 123.498 70.6279 127.9805 c -%_70.7061 128.0664 70.7158 128.1934 70.6533 128.291 c -%_70.5889 128.3887 70.4678 128.4297 70.3564 128.3926 c -%_65.5771 126.7363 60.4111 122.6035 60.4111 117.375 c -%_60.4111 112.334 65.2236 107.9805 72.2148 108.3242 C -%_63.3936 105.8203 54.1611 108.5918 49.3311 114.5781 c -%_49.2568 114.6699 49.126 114.6992 49.0205 114.6445 c -%_48.9131 114.5918 48.8584 114.4707 48.8877 114.3535 c -%_51.6787 103.6387 60.8545 99.1543 72.3281 100.6484 C -%_63.0459 96.8906 49.0771 100.166 42.9033 107.957 c -%_42.8311 108.0488 42.7041 108.0801 42.5967 108.0293 c -%_42.4912 107.9805 42.4326 107.8633 42.4561 107.748 c -%_43.8271 1 -endstream endobj 20 0 obj <>stream -01.1328 47.3193 96.1875 53.0791 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_135.0352 184.5869 m -%_135.0566 184.7061 135.1602 184.792 135.2813 184.7939 c -%_148.1875 184.9287 160.0352 188.0615 169.2529 196.3086 C -%_161.2227 190.751 146.3105 188.7979 137.7256 192.6904 c -%_137.6152 192.7402 137.5566 192.8604 137.584 192.9785 c -%_137.6104 193.0967 137.7168 193.1787 137.8379 193.1748 c -%_148.5176 192.8857 157.1172 196.1816 163.8223 202.1396 C -%_156.9531 202.5615 151.248 206.8799 151.2656 211.9844 c -%_151.2656 212.1035 151.3496 212.2061 151.4668 212.2314 c -%_151.583 212.2568 151.7012 212.1963 151.75 212.0879 c -%_152.8711 209.5986 156.498 208.3076 160.333 209.208 c -%_164.5127 210.1885 167.333 213.3975 166.6338 216.373 c -%_166.1621 218.3877 164.1973 219.7764 161.6816 220.1602 c -%_161.5547 220.1787 161.4619 220.29 161.4648 220.418 c -%_161.4688 220.5459 161.5674 220.6514 161.6953 220.6631 c -%_162.7637 220.7656 163.875 220.7695 165.0127 220.6611 c -%_171.5029 220.0439 176.5264 216.0654 176.9619 211.4834 C -%_181.6748 212.0303 185.8467 214.6396 187.3408 218.2568 c -%_187.3857 218.3652 187.501 218.4287 187.6162 218.4111 c -%_187.7314 218.3916 187.8193 218.2969 187.8291 218.1807 c -%_188.2061 213.4287 186.5713 210.3418 182.8584 207.3262 C -%_188.2432 209.3857 194.3027 209.4912 200.1133 206.7881 c -%_200.2188 206.7393 200.2773 206.624 200.2559 206.5088 c -%_200.2324 206.3936 200.1328 206.3096 200.0156 206.3057 c -%_195.1367 206.1152 191.5996 204.5498 188.2861 201.2334 C -%_206.5391 206.3672 221.3711 195.0322 216.2383 178.1807 c -%_216.2031 178.0654 216.0918 177.9902 215.9707 178.0029 c -%_215.8496 178.0146 215.7539 178.1104 215.7441 178.2314 c -%_214.8262 187.9453 208.041 194.3467 197.8828 195.3076 C -%_203.2695 193.2471 208.8828 188.3311 209.4395 179.7734 c -%_209.4473 179.6514 209.3672 179.54 209.248 179.5107 c -%_209.1289 179.4814 209.0059 179.54 208.9551 179.6514 c -%_206.1563 185.8057 200.6582 188.917 194.7949 189.4639 C -%_201.1289 186.8838 205.1914 180.8623 206.3652 173.0439 c -%_206.3848 172.9209 206.3105 172.8018 206.1914 172.7646 c -%_206.0742 172.7256 205.9453 172.7803 205.8887 172.8896 c -%_202.0234 180.4727 193.7324 185.6836 183.4424 181.7021 c -%_172.8252 177.5928 168.168 165.3154 167.1387 156.6611 c -%_167.124 156.54 167.0234 156.4463 166.9004 156.4385 c -%_166.7783 156.4307 166.668 156.5127 166.6396 156.6338 c -%_162.9199 172.3213 170.2227 188.583 183.2764 195.4736 C -%_176.1807 193.4707 169.8369 189.2139 166.249 182.1191 C -%_157.9551 181.1006 152.2451 178.2568 149.3916 172.8799 c -%_149.335 172.7725 149.2109 172.7197 149.0957 172.7549 c -%_148.9805 172.7881 148.9043 172.8994 148.9141 173.0205 c -%_149.0967 175.1299 149.8555 179.3506 152.9883 181.291 C -%_146.0234 181.2803 140.4824 182.1846 135.1895 184.3037 c -%_135.0781 184.3496 135.0127 184.4678 135.0352 184.5869 c -%_f -%_0 D -%_164.5215 131.1162 m -%_164.4229 131.1826 164.293 131.1709 164.2061 131.0908 c -%_164.1201 131.0088 164.1016 130.8799 164.1602 130.7783 c -%_165.7803 127.9814 164.3008 123.9639 161.1094 123.9639 c -%_155.3887 123.9639 152.6387 134.7334 153.5137 144.5576 C -%_155.6768 138.8018 157.5469 136.5029 160.8613 133.7627 c -%_160.9551 133.6846 161.0898 133.6846 161.1836 133.7607 c -%_161.2773 133.8389 161.3047 133.9697 161.2471 134.0771 c -%_156.3906 143.1572 155.3496 150.1436 155.3496 158.1631 C -%_156.8125 152.2041 158.5449 148.8408 163.4766 143.7822 c -%_163.5625 143.6943 163.6992 143.6807 163.8018 143.749 c -%_163.9033 143.8193 163.9404 143.9521 163.8887 144.0654 c -%_158.5908 155.6553 158.9951 168.5127 162.9414 178.3291 c -%_162.9805 178.4268 162.9561 178.5381 162.8789 178.6104 c -%_162.8018 178.6807 162.6895 178.6982 162.5938 178.6514 c -%_157.3887 176.1006 154.3301 174.4248 149.8418 168.2627 C -%_151.1992 160.8643 150.0703 157.2139 146.6699 151.0674 C -%_150.6074 160.9854 148.5117 174.9619 138.4824 180.6592 c -%_138.373 180.7207 138.2344 180.6934 138.1582 180.5947 c -%_138.0801 180.4951 138.0869 180.3535 138.1738 180.2627 c -%_141.9551 176.3076 144.7051 169.6279 142.3301 162.335 C -%_143.8594 172.7236 134.7344 181.4502 124.5508 181.4502 c -%_114.9512 181.4502 108.4004 173.9404 108.9414 166.5088 c -%_109.4785 159.1436 114.3848 155.54 118.6133 154.0107 c -%_118.7246 153.9717 118.8496 154.0127 118.9131 154.1123 c -%_118.9766 154.2139 118.9629 154.3428 118.8799 154.4287 c -%_113.2695 160.1201 112.502 170.9209 122.4629 174.1885 C -%_116.6035 169.1318 118.7734 157.3584 128.1523 156.4639 c -%_128.2695 156.4521 128.3789 156.5225 128.417 156.6338 c -%_128.4551 156.7451 128.4121 156.8682 128.3135 156.9307 c -%_126.3047 158.208 124.6348 160.7021 124.6348 163.5049 c -%_124.6348 168.1787 128.0566 170.0146 130.3105 170.0146 c -%_133.7324 170.0146 136.5703 166.7588 136.5703 161.835 c -%_136.5703 155.9912 131.3105 151.1514 124.5508 150.3994 c -%_117.9248 149.665 111.7686 152.5537 108.8008 156.8584 c -%_108.7314 156.96 108.5996 156.9971 108.4873 156.9463 c -%_108.375 156.8955 108.3164 156.7705 108.3467 156.6514 c -%_111.3652 144.9482 125.1426 139.7744 135.2344 147.1455 C -%_128.6211 139.6436 118.2285 139.54 109.5127 147.2314 c -%_109.4219 147.3115 109.2871 147.3154 109.1904 147.2412 c -%_109.0938 147.1689 109.0635 147.0361 109.1172 146.9287 c -%_111.7842 141.5205 118.3701 135.1084 127.7227 136.0439 c -%_136.2793 136.8994 141.2441 145.0576 142.2461 151.7354 C -%_142.8027 143.2139 140.8525 137.1982 133.4922 131.5889 c -%_133.3955 131.5146 133.3652 131.3818 133.4199 131.2725 c -%_133.4746 131.165 133.5996 131.1104 133.7168 131.1436 c -%_140.502 133.1045 145.9473 136.5693 148.7656 143.6885 C -%_148.7656 137.5264 146.627 131.3154 141.2402 127.1768 c -%_141.1426 127.1025 141.1133 126.9717 141.168 126.8623 c -%_141.2227 126.7529 141.3467 126.6982 141.4639 126.7314 c -%_144.917 127.7158 147.6348 129.2197 149.6016 131.917 C -%_150.9121 120.8174 156.123 114.2256 162.127 114.2256 c -%_166.252 114.2256 169.332 117.2588 169.332 122.0967 c -%_169.332 124.9268 167.8438 128.8994 164.5215 131.1162 c -%_f -%_263.748 222.7354 m -%_260.5859 226.6396 254.209 228.1279 247.3164 226.7236 C -%_247.8262 231.0244 246.9824 235.5146 245.7051 238.208 c -%_245.6523 238.3174 245.5313 238.375 245.4141 238.3467 c -%_245.2969 238.3174 245.2168 238.21 245.2207 238.0889 c -%_245.5957 229.3223 240.5977 222.2451 231.7715 219.1787 C -%_238.6777 223.9346 240.6973 233.3721 237.4102 238.2451 c -%_237.3418 238.3438 237.2148 238.3828 237.1035 238.3369 c -%_236.9922 238.292 236.9277 238.1748 236.9492 238.0576 c -%_237.3223 235.9971 236.3438 233.373 234.2363 231.3311 c -%_231.3301 228.5166 227.3867 227.8779 225.4258 229.9014 c -%_223.4648 231.9268 224.2285 235.8486 227.1328 238.6631 c -%_228.1934 239.6904 229.3926 240.4248 230.582 240.8477 c -%_230.6953 240.8877 230.7637 241.001 230.748 241.1191 c -%_230.7344 241.2383 230.6387 241.3301 230.5195 241.3398 c -%_224.1309 241.8945 219.75 238.0879 217.0039 233.4619 c -%_214.209 228.7568 209.4336 225.0518 203.793 225.792 c -%_203.6738 225.8076 203.5605 225.7373 203.5195 225.624 c -%_203.4805 225.5107 203.5254 225.3838 203.6289 225.3223 c -%_206.4258 223.6377 209.5 222.9385 213.4922 224.2705 C -%_207.6973 219.3613 199.4453 216.5283 191.6523 219.043 c -%_191.543 219.0791 191.4238 219.0361 191.3613 218.9395 c -%_191.2988 218.8428 191.3105 218.7168 191.3867 218.6318 c -%_197.2949 212.0674 209.0762 211.9365 216.4961 217.2588 C -%_213.459 212.9424 209.4277 209.7744 202.2031 208.7803 c -%_202.0879 208.7646 201.998 208.6729 201.9844 208.5576 c -%_201.9727 208.4414 202.0391 208.332 202.1484 208.292 c -%_210.4395 205.2139 218.748 208.3369 225.5938 216.5068 C -%_222.6016 210.1299 217.6875 205.0225 210.8262 202.4951 c -%_210.7109 202.4531 210.6426 202.335 210.6641 202.2158 c -%_210.6836 202.0947 210.7871 202.0059 210.9082 202.0029 c -%_214.8516 201.9219 218.3945 202.8604 223.1738 205.5732 C -%_219.666 199.8838 220.4336 189.9346 225.543 183.3154 c -%_225.6133 183.2236 225.7383 183.1914 225.8457 183.2373 c -%_225.9512 183.2842 226.0137 183.3965 225.9941 183.5107 c -%_224.8145 190.7119 227.293 198.8408 231.6035 203.1533 C -%_229.4512 195.5215 231.5977 188.5771 237.5 183.5088 c -%_237.5703 183.4482 237.6699 183.4316 237.7559 183.4648 c -%_237.8438 183.498 237.9043 183.5771 237.918 183.6689 c -%_239.1523 193.0869 249.6875 202.6436 258.5195 203.4443 c -%_258.6445 203.4551 258.7422 203.5557 258.75 203.6797 c -%_258.7578 203.8037 258.6758 203.917 258.5527 203.9443 c -%_254.2734 204.9131 249.8613 204.4346 246.1641 202.9131 C -%_248.8242 205.8467 252.1035 208.0244 255.7188 209.1592 c -%_255.8359 209.1953 255.9082 209.3096 255.8945 209.4307 c -%_255.8809 209.5518 255.7813 209.6455 255.6602 209.6543 c -%_251.1504 209.9658 246.7363 208.6484 242.9297 206.1162 C -%_247.291 212.7373 253.9102 217.6611 262.3574 219.6221 c -%_262.4785 219.6504 262.5605 219.7607 262.5547 219.8848 c -%_262.5469 220.0088 262.4512 220.1084 262.3281 220.1221 c -%_250.4102 221.4238 240.582 216.8037 234.1074 208.2041 C -%_235.7559 213.1045 240.4727 217.96 247.0527 220.8232 c -%_252.8984 223.3682 258.9023 223.7695 263.4746 222.333 c -%_263.5801 222.2998 263.6973 222.3398 263.7598 222.4326 c -%_263.8223 222.5244 263.8184 222.6475 263.748 222.7354 c -%_f -%_210.8438 147.1631 m -%_215.6504 157.6494 215.3086 165.8486 211.4375 176.2178 c -%_211.3926 176.335 211.2715 176.4023 211.1484 176.3779 c -%_211.0254 176.3525 210.9395 176.2412 210.9453 176.1162 c -%_211.5664 163.4951 208.1191 154.4619 200.6465 148.3096 C -%_208.8965 158.1611 205 177.8691 191.8242 177.8691 c -%_182.2393 177.8691 174.3086 169.8936 172.3691 160.3447 c -%_172.3447 160.2236 172.4111 160.1006 172.5273 160.0576 c -%_172.6426 160.0127 172.7734 160.0576 172.8359 160.1631 c -%_175.6787 164.9248 180.2451 168.0146 185.2939 168.0146 c -%_193.4277 168.0146 195.834 161.5479 195.834 157.0166 c -%_195.834 150.8291 190.9082 145.6729 187.1279 145.6729 c -%_183.6904 145.6729 182.0869 148.4971 182.0869 150.6006 c -%_182.0869 154.499 185.085 157.7666 188.4639 158.7646 c -%_188.583 158.7998 188.6611 158.9189 188.6436 159.0439 c -%_188.624 159.1689 188.5186 159.2607 188.3936 159.2627 c -%_184.2861 159.2881 180.8154 157.4072 178.7627 153.6943 C -%_178.4932 156.5693 178.4902 158.3799 179.4033 161.417 c -%_179.4385 161.5342 179.3848 161.6592 179.2773 161.7158 c -%_179.168 161.7725 179.0352 161.7432 178.9609 161.6475 c -%_171.6045 152.2549 175.125 136.0225 180.9404 129.29 C -%_175.4082 133.2725 170.5234 141.9229 170.6006 153.6826 c -%_170.6016 153.8057 170.5156 153.9092 170.3955 153.9326 c -%_170.2754 153.958 170.1563 153.8916 170.1113 153.7783 c -%_166.0029 143.5264 168.1826 124.5303 179.3926 113.9268 C -%_176.5088 113.5303 173.5254 113.5811 170.2676 114.6201 c -%_170.1523 114.6553 170.0273 114.6064 169.9688 114.501 c -%_169.9102 114.3936 169.9336 114.2607 170.0273 114.1826 c -%_174.1191 110.7275 179.8418 109.6416 185.2939 109.6416 C -%_180.5967 115.1416 182.1572 126.1963 189.6494 126.1963 c -%_194.9961 126.1963 197.4238 117.8975 193.2949 113.415 c -%_193.2168 113.3291 193.207 113.2002 193.2695 113.1045 c -%_193.334 113.0068 193.4551 112.9639 193.5664 113.0029 c -%_198.3457 114.6572 203.5117 118.792 203.5117 124.0186 c -%_203.5117 129.0615 198.6992 133.4131 191.7109 133.0693 C -%_200.5293 135.5752 209.7617 132.8018 214.5918 126.8174 c -%_214.666 126.7236 214.7969 126.6963 214.9023 126.749 c -%_215.0098 126.8037 215.0645 126.9248 215.0352 127.04 c -%_212.2441 137.7568 203.0684 142.2393 191.5957 140.7471 C -%_200.877 144.5029 214.8457 141.2275 221.0195 133.4365 c -%_221.0918 133.3447 221.2188 133.3154 221.3262 133.3643 c -%_221.4316 133.415 221.4902 133.5322 221.4668 133.6455 c -%_220.0957 140.2607 216.6035 145.208 210.8438 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 166.4502 m -%_237.2051 166.3311 237.1016 166.2432 236.9805 166.2432 c -%_224.0742 166.1064 212.2266 162.9756 203.0098 154.7275 C -%_211.0391 160.2861 225.9512 162.2373 234.5371 158.3467 c -%_234.6465 158.2959 234.7051 158.1748 234.6777 158.0576 c -%_234.6523 157.9404 234.5449 157.8584 234.4238 157.8604 c -%_223.7441 158.1514 215.1445 154.8545 208.4395 148.8975 C -%_215.3086 148.4736 221.0137 144.1572 220.9961 139.0518 c -%_220.9961 138.9326 220.9121 138.8291 220.7949 138.8037 c -%_220.6797 138.7803 220.5605 138.8389 220.5117 138.9482 c -%_219.3906 141.4365 215.7637 142.7295 211.9297 141.8291 c -%_207.75 140.8467 204.9297 137.6396 205.6289 134.6631 c -%_206.0996 132.6494 208.0645 131.2607 210.5801 130.876 c -%_210.707 130.8564 210.8008 130.7471 210.7969 130.6182 c -%_210.793 130.4912 210.6953 130.3857 210.5664 130.3721 c -%_209.498 130.2705 208.3867 130.2666 207.25 130.376 c -%_200.7598 130.9932 195.7363 134.9697 195.3008 139.5537 C -%_190.5889 139.0068 186.417 136.3955 184.9229 132.7803 c -%_184.8779 132.6709 184.7646 132.6084 184.6475 132.626 c -%_184.5322 132.6436 184.4443 132.7393 184.4346 132.8564 c -%_184.0576 137.6064 185.6924 140.6943 189.4053 143.71 C -%_184.0205 141.6514 177.959 141.5459 172.1484 144.2471 c -%_172.043 144.2979 171.9844 144.4131 172.0059 144.5283 c -%_172.0293 144.6436 172.1289 144.7275 172.2461 144.7314 c -%_177.125 144.9209 180.6631 146.4873 183.9795 149.8037 C -%_165.7227 144.6689 150.8906 156.0049 156.0234 172.8545 c -%_156.0586 172.9717 156.1699 173.0459 156.291 173.0342 c -%_156.4121 173.0225 156.5078 172.9268 156.5176 172.8057 c -%_157.4355 163.0908 164.2207 156.6885 174.3789 155.7295 C -%_168.9922 157.7881 163.3789 162.7041 162.8223 171.2627 c -%_162.8145 171.3857 162.8945 171.4951 163.0137 171.5264 c -%_163.1328 171.5557 163.2559 171.4951 163.3066 171.3838 c -%_166.1055 165.2295 171.6035 162.1201 177.4668 161.5713 C -%_171.1328 164.1533 167.0703 170.1748 165.8965 177.9932 c -%_165.877 178.1162 165.9512 178.2334 166.0703 178.2725 c -%_166.1875 178.3096 166.3164 178.2568 166.373 178.1455 c -%_170.2383 170.5635 178.5293 165.3525 188.8213 169.335 c -%_199.4375 173.4443 204.0938 185.7197 205.123 194.374 c -%_205.1387 194.4971 205.2383 194.5908 205.3613 194.5986 c -%_205.4844 194.6045 205.5938 194.5225 205.623 194.4033 c -%_209.3418 178.7139 202.0391 162.4541 188.9873 155.5635 C -%_196.082 157.5654 202.4258 161.8232 206.0137 168.917 C -%_214.3066 169.9346 220.0176 172.7803 222.8711 178.1572 c -%_222.9277 178.2627 223.0508 178.3154 223.166 178.2822 c -%_223.2813 178.2471 223.3574 178.1357 223.3477 178.0166 c -%_223.166 175.9072 222.4063 171.6865 219.2734 169.7451 C -%_226.2383 169.7568 231.7793 168.8525 237.0723 166.7314 c -%_237.1836 166.6865 237.25 166.5693 237.2266 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 219.9189 m -%_207.8398 219.8545 207.9688 219.8643 208.0566 219.9463 c -%_208.1426 220.0264 208.1602 220.1553 208.1016 220.2588 c -%_206.4824 223.0557 207.9609 227.0713 211.1523 227.0713 c -%_216.873 227.0713 219.623 216.3018 218.748 206.4795 C -%_216.5859 212.2334 214.7148 214.5342 211.4004 217.2744 c -%_211.3066 217.3506 211.1719 217.3525 211.0781 217.2744 c -%_210.9844 217.1982 210.957 217.0654 211.0156 216.958 c -%_215.8711 207.8799 216.9121 200.8936 216.9121 192.874 C -%_215.4492 198.8311 213.7168 202.1943 208.7852 207.2549 c -%_208.6992 207.3428 208.5625 207.3564 208.4609 207.2861 c -%_208.3594 207.2158 208.3223 207.083 208.373 206.9717 c -%_213.6719 195.3799 213.2676 182.5244 209.3203 172.708 c -%_209.2813 172.6104 209.3066 172.499 209.3828 172.4268 c -%_209.4609 172.3545 209.5723 172.3389 209.668 172.3838 c -%_214.873 174.9346 217.9316 176.6104 222.4199 182.7744 C -%_221.0625 190.1729 222.1914 193.8213 225.5918 199.9678 C -%_221.6543 190.0518 223.75 176.0752 233.7793 170.3779 c -%_233.8887 170.3154 234.0273 170.3428 234.1035 170.4424 c -%_234.1816 170.542 234.1758 170.6826 234.0879 170.7744 c -%_230.3066 174.7295 227.5566 181.4092 229.9316 188.7002 C -%_228.4023 178.3115 237.5273 169.5869 247.7109 169.5869 c -%_257.3105 169.5869 263.8613 177.0947 263.3203 184.5264 c -%_262.7832 191.8916 257.877 195.4971 253.6484 197.0244 c -%_253.5371 197.0654 253.4121 197.0225 253.3496 196.9229 c -%_253.2852 196.8232 253.2988 196.6924 253.3828 196.6084 c -%_258.9922 190.915 259.7598 180.1162 249.7988 176.8486 C -%_255.6582 181.9053 253.4883 193.6768 244.1094 194.5732 c -%_243.9922 194.583 243.8828 194.5127 243.8457 194.4014 c -%_243.8066 194.292 243.8496 194.1689 243.9492 194.1064 c -%_245.957 192.8271 247.627 190.335 247.627 187.5322 c -%_247.627 182.8584 244.2051 181.0205 241.9512 181.0205 c -%_238.5293 181.0205 235.6914 184.2764 235.6914 189.2021 c -%_235.6914 195.0439 240.9512 199.8857 247.7109 200.6357 c -%_254.3379 201.3721 260.4941 198.4814 263.4609 194.1768 c -%_263.5313 194.0752 263.6621 194.04 263.7754 194.0908 c -%_263.8867 194.1416 263.9453 194.2646 263.916 194.3838 c -%_260.8965 206.0869 247.1191 211.2607 237.0273 203.8916 C -%_243.6406 211.3916 254.0332 211.4971 262.75 203.8057 c -%_262.8398 203.7256 262.9746 203.7197 263.0723 203.7939 c -%_263.168 203.8682 263.1992 203.999 263.1445 204.1084 c -%_260.4785 209.5146 253.8926 215.9268 244.5391 214.9932 c -%_235.9824 214.1377 231.0176 205.9775 230.0156 199.3018 C -%_229.459 207.8232 231.4102 213.8369 238.7695 219.4463 c -%_238.8672 219.5205 238.8965 219.6533 238.8418 219.7627 c -%_238.7871 219.8721 238.6621 219.9268 238.5449 219.8916 c -%_231.7598 217.9326 226.3145 214.4678 223.4961 207.3486 C -%_223.4961 213.5088 225.6348 219.7197 231.0215 223.8584 c -%_231.1191 223.9326 231.1484 224.0654 231.0938 224.1748 c -%_231.0391 224.2822 230.916 224.3369 230.7988 224.3037 c -%_227.3457 223.3213 224.627 221.8154 222.6602 219.1201 C -%_221.3496 230.2197 216.1387 236.8096 210.1348 236.8096 c -%_206.0098 236.8096 202.9297 233.7764 202.9297 228.9404 c -%_202.9297 226.1104 204.418 222.1377 207.7402 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 128.3018 m -%_111.6758 124.3975 118.0527 122.9092 124.9453 124.3135 C -%_124.4355 120.0107 125.2793 115.5225 126.5566 112.8271 c -%_126.6094 112.7197 126.7305 112.6611 126.8477 112.6904 c -%_126.9648 112.7197 127.0449 112.8271 127.041 112.9482 c -%_126.666 121.7139 131.6641 128.79 140.4902 131.8564 C -%_133.584 127.1006 131.5645 117.6631 134.8516 112.792 c -%_134.9199 112.6924 135.0469 112.6533 135.1582 112.6982 c -%_135.2695 112.7432 135.334 112.8604 135.3125 112.9795 c -%_134.9395 115.04 135.918 117.6631 138.0254 119.7041 c -%_140.9316 122.5186 144.875 123.1572 146.8359 121.1338 c -%_148.7969 119.1084 148.0332 115.1865 145.1289 112.374 c -%_144.0684 111.3467 142.8691 110.6104 141.6797 110.1885 c -%_141.5664 110.1475 141.498 110.0342 141.5137 109.917 c -%_141.5273 109.7979 141.623 109.7061 141.7422 109.6963 c -%_148.1309 109.1416 152.5117 112.9482 155.2578 117.5732 c -%_158.0527 122.2783 162.8281 125.9854 168.4688 125.2451 c -%_168.5879 125.2295 168.7012 125.2998 168.7422 125.4131 c -%_168.7813 125.5264 168.7363 125.6514 168.6328 125.7139 c -%_165.8359 127.3975 162.7617 128.0967 158.7695 126.7666 C -%_164.5645 131.6748 172.8164 134.5068 180.6104 131.9932 c -%_180.7197 131.958 180.8389 132.001 180.9014 132.0967 c -%_180.9639 132.1924 180.9541 132.3193 180.876 132.4053 c -%_174.9668 138.9697 163.1855 139.1006 155.7656 133.7764 C -%_158.8027 138.0928 162.834 141.2627 170.0586 142.2549 c -%_170.1738 142.2705 170.2637 142.3643 170.2773 142.4795 c -%_170.2891 142.5947 170.2227 142.7041 170.1133 142.7451 c -%_161.8223 145.8213 153.5137 142.7002 146.668 134.5283 C -%_149.6602 140.9072 154.5742 146.0146 161.4355 148.542 c -%_161.5508 148.583 161.6191 148.7002 161.5977 148.8213 c -%_161.5781 148.9424 161.4746 149.0303 161.3535 149.0322 c -%_157.4102 149.1143 153.8672 148.1748 149.0879 145.4619 C -%_152.5957 151.1533 151.8281 161.1006 146.7188 167.7217 c -%_146.6484 167.8135 146.5234 167.8447 146.416 167.7998 c -%_146.3105 167.7529 146.248 167.6396 146.2676 167.5244 c -%_147.4473 160.3252 144.9688 152.1963 140.6582 147.8838 C -%_142.8105 155.5146 140.6641 162.46 134.7617 167.5264 c -%_134.6914 167.5869 134.5918 167.6045 134.5059 167.5713 c -%_134.418 167.5381 134.3574 167.46 134.3438 167.3682 c -%_133.1094 157.9502 122.5742 148.3936 113.7422 147.5928 c -%_113.6172 147.5811 113.5195 147.4814 113.5117 147.3564 c -%_113.5039 147.2314 113.5859 147.1201 113.709 147.0928 c -%_117.9883 146.124 122.4004 146.6025 126.0977 148.1221 C -%_123.4375 145.1904 120.1582 143.0127 116.543 141.8779 c -%_116.4258 141.8408 116.3535 141.7275 116.3672 141.6064 c -%_116.3809 141.4854 116.4805 141.3896 116.6016 141.3818 c -%_121.1113 141.0713 125.5254 142.3877 129.332 144.9209 C -%_124.9707 138.2998 118.3516 133.376 109.9043 131.4131 c -%_109.7832 131.3857 109.7012 131.2744 109.707 131.1514 c -%_109.7148 131.0283 109.8105 130.9287 109.9336 130.915 c -%_121.8516 129.6123 131.6797 134.2334 138.1543 142.833 C -%_136.5059 137.9307 131.7891 133.0771 125.209 130.2139 c -%_119.3633 127.6689 113.3594 127.2666 108.7871 128.7041 c -%_108.6816 128.7373 108.5645 128.6963 108.502 128.6045 c -%_108.4395 128.5107 108.4434 128.3877 108.5137 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 203.874 m -%_156.6113 193.3877 156.9531 185.1885 160.8242 174.8193 c -%_160.8691 174.7021 160.9902 174.6338 161.1133 174.6592 c -%_161.2363 174.6846 161.3223 174.7959 161.3164 174.9189 c -%_160.6953 187.542 164.1426 196.5732 171.6152 202.7275 C -%_163.3652 192.874 167.2617 173.167 180.4385 173.167 c -%_190.0244 173.167 197.9531 181.1436 199.8926 190.6924 c -%_199.918 190.8135 199.8516 190.9346 199.7344 190.9795 c -%_199.6191 191.0244 199.4883 190.9795 199.4258 190.8721 c -%_196.584 186.1104 192.0176 183.0205 186.9697 183.0205 c -%_178.834 183.0205 176.4277 189.4873 176.4277 194.0205 c -%_176.4277 200.2061 181.3545 205.3623 185.1357 205.3623 c -%_188.5732 205.3623 190.1768 202.54 190.1768 200.4365 c -%_190.1768 196.5381 187.1787 193.2705 183.8018 192.2725 c -%_183.6807 192.2354 183.6045 192.1182 183.6221 191.9932 c -%_183.6396 191.8682 183.7451 191.7744 183.8721 191.7744 c -%_187.9775 191.749 191.4473 193.6279 193.5 197.3428 C -%_193.7695 194.4678 193.7715 192.6572 192.8594 189.6182 c -%_192.8242 189.501 192.877 189.376 192.9844 189.3193 c -%_193.0938 189.2646 193.2266 189.292 193.3008 189.3896 c -%_200.6582 198.7822 197.1367 215.0127 191.3223 221.7471 C -%_196.8535 217.7646 201.7383 209.1123 201.6621 197.3525 c -%_201.6602 197.2314 201.7461 197.126 201.8672 197.1025 c -%_201.9863 197.0791 202.1055 197.1436 202.1504 197.2568 c -%_206.2598 207.5107 204.0801 226.5049 192.8691 237.1084 C -%_195.7539 237.5068 198.7363 237.4561 201.9941 236.417 c -%_202.1094 236.3799 202.2344 236.4307 202.293 236.5361 c -%_202.3516 236.6416 202.3281 236.7744 202.2344 236.8525 c -%_198.1426 240.3076 192.4199 241.3936 186.9697 241.3936 C -%_191.666 235.8936 190.1064 224.8408 182.6162 224.8408 c -%_177.2656 224.8408 174.8379 233.1396 178.9668 237.6221 c -%_179.0449 237.708 179.0547 237.835 178.9922 237.9326 c -%_178.9277 238.0303 178.8066 238.0713 178.6953 238.0342 c -%_173.916 236.3779 168.75 232.2451 168.75 227.0166 c -%_168.75 221.9756 173.5625 217.6221 180.5537 217.9658 C -%_171.7324 215.4619 162.5 218.2334 157.6699 224.2197 c -%_157.5957 224.3115 157.4648 224.3408 157.3594 224.2861 c -%_157.252 224.2334 157.1973 224.1123 157.2266 223.9951 c -%_160.0176 213.2803 169.1934 208.7959 180.667 210.29 C -%_171.3848 206.5322 157.416 209.8076 151.2422 217.5986 c -%_151.1699 217.6904 151.043 217.7217 150.9355 217.6709 c -%_150.8301 217.6221 150.7715 217.5049 150.7949 217.3896 c -%_152.166 210.7744 155.6582 205.8291 161.418 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 184.5869 m -%_26.7178 184.7061 26.8213 184.792 26.9424 184.7939 c -%_39.8486 184.9287 51.6963 188.0615 60.9141 196.3086 C -%_52.8838 190.751 37.9717 188.7979 29.3867 192.6904 c -%_29.2764 192.7402 29.2178 192.8604 29.2451 192.9785 c -%_29.2715 193.0967 29.3779 193.1787 29.499 193.1748 c -%_40.1787 192.8857 48.7783 196.1816 55.4834 202.1396 C -%_48.6143 202.5615 42.9092 206.8799 42.9268 211.9844 c -%_42.9268 212.1035 43.0107 212.2061 43.1279 212.2314 c -%_43.2441 212.2568 43.3623 212.1963 43.4111 212.0879 c -%_44.5322 209.5986 48.1592 208.3076 51.9941 209.208 c -%_56.1738 210.1885 58.9941 213.3975 58.2949 216.373 c -%_57.8232 218.3877 55.8584 219.7764 53.3428 220.1602 c -%_53.2158 220.1787 53.123 220.29 53.126 220.418 c -%_53.1299 220.5459 53.2285 220.6514 53.3564 220.6631 c -%_54.4248 220.7656 55.5361 220.7695 56.6738 220.6611 c -%_63.1641 220.0439 68.1875 216.0654 68.623 211.4834 C -%_73.3359 212.0303 77.5078 214.6396 79.002 218.2568 c -%_79.0469 218.3652 79.1621 218.4287 79.2773 218.4111 c -%_79.3926 218.3916 79.4805 218.2969 79.4902 218.1807 c -%_79.8672 213.4287 78.2324 210.3418 74.5195 207.3262 C -%_79.9043 209.3857 85.9648 209.4912 91.7754 206.7881 c -%_91.8809 206.7393 91.9395 206.624 91.918 206.5088 c -%_91.8945 206.3936 91.7949 206.3096 91.6777 206.3057 c -%_86.7988 206.1152 83.2617 204.5498 79.9473 201.2334 C -%_98.2012 206.3672 113.0332 195.0322 107.9004 178.1807 c -%_107.8652 178.0654 107.7539 177.9902 107.6328 178.0029 c -%_107.5117 178.0146 107.416 178.1104 107.4063 178.2314 c -%_106.4883 187.9453 99.7031 194.3467 89.5449 195.3076 C -%_94.9316 193.2471 100.5449 188.3311 101.1016 179.7734 c -%_101.1094 179.6514 101.0293 179.54 100.9102 179.5107 c -%_100.791 179.4814 100.668 179.54 100.6172 179.6514 c -%_97.8184 185.8057 92.3203 188.917 86.457 189.4639 C -%_92.791 186.8838 96.8535 180.8623 98.0273 173.0439 c -%_98.0469 172.9209 97.9727 172.8018 97.8535 172.7646 c -%_97.7363 172.7256 97.6074 172.7803 97.5508 172.8896 c -%_93.6855 180.4727 85.3945 185.6836 75.1035 181.7021 c -%_64.4863 177.5928 59.8291 165.3154 58.7998 156.6611 c -%_58.7852 156.54 58.6846 156.4463 58.5615 156.4385 c -%_58.4395 156.4307 58.3291 156.5127 58.3008 156.6338 c -%_54.5811 172.3213 61.8838 188.583 74.9375 195.4736 C -%_67.8418 193.4707 61.498 189.2139 57.9102 182.1191 C -%_49.6162 181.1006 43.9063 178.2568 41.0527 172.8799 c -%_40.9961 172.7725 40.8721 172.7197 40.7568 172.7549 c -%_40.6416 172.7881 40.5654 172.8994 40.5752 173.0205 c -%_40.7578 175.1299 41.5166 179.3506 44.6494 181.291 C -%_37.6846 181.2803 32.1436 182.1846 26.8506 184.3037 c -%_26.7393 184.3496 26.6738 184.4678 26.6963 184.5869 c -%_f -%_0 D -%_56.1826 131.1162 m -%_56.084 131.1826 55.9541 131.1709 55.8672 131.0908 c -%_55.7813 131.0088 55.7627 130.8799 55.8213 130.7783 c -%_57.4414 127.9814 55.9619 123.9639 52.7705 123.9639 c -%_47.0498 123.9639 44.2998 134.7334 45.1748 144.5576 C -%_47.3379 138.8018 49.208 136.5029 52.5225 133.7627 c -%_52.6162 133.6846 52.751 133.6846 52.8447 133.7607 c -%_52.9385 133.8389 52.9658 133.9697 52.9082 134.0771 c -%_48.0518 143.1572 47.0107 150.1436 47.0107 158.1631 C -%_48.4736 152.2041 50.2061 148.8408 55.1377 143.7822 c -%_55.2236 143.6943 55.3604 143.6807 55.4629 143.749 c -%_55.5645 143.8193 55.6016 143.9521 55.5498 144.0654 c -%_50.252 155.6553 50.6563 168.5127 54.6025 178.3291 c -%_54.6416 178.4268 54.6172 178.5381 54.54 178.6104 c -%_54.4629 178.6807 54.3506 178.6982 54.2549 178.6514 c -%_49.0498 176.1006 45.9912 174.4248 41.5029 168.2627 C -%_42.8604 160.8643 41.7314 157.2139 38.3311 151.0674 C -%_42.2686 160.9854 40.1729 174.9619 30.1436 180.6592 c -%_30.0342 180.7207 29.8955 180.6934 29.8193 180.5947 c -%_29.7412 180.4951 29.748 180.3535 29.835 180.2627 c -%_33.6162 176.3076 36.3662 169.6279 33.9912 162.335 C -%_35.5205 172.7236 26.3955 181.4502 16.2119 181.4502 c -%_6.6123 181.4502 0.061523 173.9404 0.602539 166.5088 c -%_1.13965 159.1436 6.0459 155.54 10.2744 154.0107 c -%_10.3857 153.9717 10.5107 154.0127 10.5742 154.1123 c -%_10.6377 154.2139 10.624 154.3428 10.541 154.4287 c -%_4.93066 160.1201 4.16309 170.9209 14.124 174.1885 C -%_8.26465 169.1318 10.4346 157.3584 19.8135 156.4639 c -%_19.9307 156.4521 20.04 156.5225 20.0781 156.6338 c -%_20.1162 156.7451 20.0732 156.8682 19.9746 156.9307 c -%_17.9658 158.208 16.2959 160.7021 16.2959 163.5049 c -%_16.2959 168.1787 19.7178 170.0146 21.9717 170.0146 c -%_25.3936 170.0146 28.2314 166.7588 28.2314 161.835 c -%_28.2314 155.9912 22.9717 151.1514 16.2119 150.3994 c -%_9.58594 149.665 3.42969 152.5537 0.461914 156.8584 c -%_0.392578 156.96 0.260742 156.9971 0.148438 156.9463 c -%_0.036133 156.8955 -0.022461 156.7705 0.007813 156.6514 c -%_3.02637 144.9482 16.8037 139.7744 26.8955 147.1455 C -%_20.2822 139.6436 9.88965 139.54 1.17383 147.2314 c -%_1.08301 147.3115 0.948242 147.3154 0.851563 147.2412 c -%_0.754883 147.1689 0.724609 147.0361 0.77832 146.9287 c -%_3.44531 141.5205 10.0313 135.1084 19.3838 136.0439 c -%_27.9404 136.8994 32.9053 145.0576 33.9072 151.7354 C -%_34.4639 143.2139 32.5137 137.1982 25.1533 131.5889 c -%_25.0566 131.5146 25.0264 131.3818 25.0811 131.2725 c -%_25.1357 131.165 25.2607 131.1104 25.3779 131.1436 c -%_32.1631 133.1045 37.6084 136.5693 40.4268 143.6885 C -%_40.4268 137.5264 38.2881 131.3154 32.9014 127.1768 c -%_32.8037 127.1025 32.7744 126.9717 32.8291 126.8623 c -%_32.8838 126.7529 33.0078 126.6982 33.125 126.7314 c -%_36.5781 127.7158 39.2959 129.2197 41.2627 131.917 C -%_42.5732 120.8174 47.7842 114.2256 53.7881 114.2256 c -%_57.9131 114.2256 60.9932 117.2588 60.9932 122.0967 c -%_60.9932 124.9268 59.5049 128.8994 56.1826 131.1162 c -%_f -%_155.4102 222.7354 m -%_152.248 226.6396 145.8711 228.1279 138.9785 226.7236 C -%_139.4883 231.0244 138.6445 235.5146 137.3672 238.208 c -%_137.3145 238.3174 137.1934 238.375 137.0762 238.3467 c -%_136.959 238.3174 136.8789 238.21 136.8828 238.0889 c -%_137.2578 229.3223 132.2598 222.2451 123.4336 219.1787 C -%_130.3398 223.9346 132.3594 233.3721 129.0723 238.2451 c -%_129.0039 238.3438 128.877 238.3828 128.7656 238.3369 c -%_128.6543 238.292 128.5898 238.1748 128.6113 238.0576 c -%_128.9844 235.9971 128.0059 233.373 125.8984 231.3311 c -%_122.9922 228.5166 119.0488 227.8779 117.0879 229.9014 c -%_115.127 231.9268 115.8906 235.8486 118.7949 238.6631 c -%_119.8555 239.6904 121.0547 240.4248 122.2441 240.8477 c -%_122.3574 240.8877 122.4258 241.001 122.4102 241.1191 c -%_122.3965 241.2383 122.3008 241.3301 122.1816 241.3398 c -%_115.793 241.8945 111.4121 238.0879 108.666 233.4619 c -%_105.8711 228.7568 101.0957 225.0518 95.4551 225.792 c -%_95.3359 225.8076 95.2227 225.7373 95.1816 225.624 c -%_95.1426 225.5107 95.1875 225.3838 95.291 225.3223 c -%_98.0879 223.6377 101.1621 222.9385 105.1543 224.2705 C -%_99.3594 219.3613 91.1074 216.5283 83.3145 219.043 c -%_83.2051 219.0791 83.0859 219.0361 83.0234 218.9395 c -%_82.9609 218.8428 82.9727 218.7168 83.0488 218.6318 c -%_88.957 212.0674 100.7383 211.9365 108.1582 217.2588 C -%_105.1211 212.9424 101.0898 209.7744 93.8652 208.7803 c -%_93.75 208.7646 93.6602 208.6729 93.6465 208.5576 c -%_93.6348 208.4414 93.7012 208.332 93.8105 208.292 c -%_102.1016 205.2139 110.4102 208.3369 117.2559 216.5068 C -%_114.2637 210.1299 109.3496 205.0225 102.4883 202.4951 c -%_102.373 202.4531 102.3047 202.335 102.3262 202.2158 c -%_102.3457 202.0947 102.4492 202.0059 102.5703 202.0029 c -%_106.5137 201.9219 110.0566 202.8604 114.8359 205.5732 C -%_111.3281 199.8838 112.0957 189.9346 117.2051 183.3154 c -%_117.2754 183.2236 117.4004 183.1914 117.5078 183.2373 c -%_117.6133 183.2842 117.6758 183.3965 117.6563 183.5107 c -%_116.4766 190.7119 118.9551 198.8408 123.2656 203.1533 C -%_121.1133 195.5215 123.2598 188.5771 129.1621 183.5088 c -%_129.2324 183.4482 129.332 183.4316 129.418 183.4648 c -%_129.5059 183.498 129.5664 183.5771 129.5801 183.6689 c -%_130.8145 193.0869 141.3496 202.6436 150.1816 203.4443 c -%_150.3066 203.4551 150.4043 203.5557 150.4121 203.6797 c -%_150.4199 203.8037 150.3379 203.917 150.2148 203.9443 c -%_145.9355 204.9131 141.5234 204.4346 137.8262 202.9131 C -%_140.4863 205.8467 143.7656 208.0244 147.3809 209.1592 c -%_147.498 209.1953 147.5703 209.3096 147.5566 209.4307 c -%_147.543 209.5518 147.4434 209.6455 147.3223 209.6543 c -%_142.8125 209.9658 138.3984 208.6484 134.5918 206.1162 C -%_138.9531 212.7373 145.5723 217.6611 154.0195 219.6221 c -%_154.1406 219.6504 154.2227 219.7607 154.2168 219.8848 c -%_154.209 220.0088 154.1133 220.1084 153.9902 220.1221 c -%_142.0723 221.4238 132.2441 216.8037 125.7695 208.2041 C -%_127.418 213.1045 132.1348 217.96 138.7148 220.8232 c -%_144.5605 223.3682 150.5645 223.7695 155.1367 222.333 c -%_155.2422 222.2998 155.3594 222.3398 155.4219 222.4326 c -%_155.4844 222.5244 155.4805 222.6475 155.4102 222.7354 c -%_f -%_102.5059 147.1631 m -%_107.3125 157.6494 106.9707 165.8486 103.0996 176.2178 c -%_103.0547 176.335 102.9336 176.4023 102.8105 176.3779 c -%_102.6875 176.3525 102.6016 176.2412 102.6074 176.1162 c -%_103.2285 163.4951 99.7813 154.4619 92.3086 148.3096 C -%_100.5586 158.1611 96.6621 177.8691 83.4863 177.8691 c -%_73.9004 177.8691 65.9697 169.8936 64.0303 160.3447 c -%_64.0059 160.2236 64.0723 160.1006 64.1885 160.0576 c -%_64.3037 160.0127 64.4346 160.0576 64.4971 160.1631 c -%_67.3398 164.9248 71.9063 168.0146 76.9551 168.0146 c -%_85.0898 168.0146 87.4961 161.5479 87.4961 157.0166 c -%_87.4961 150.8291 82.5703 145.6729 78.7891 145.6729 c -%_75.3516 145.6729 73.748 148.4971 73.748 150.6006 c -%_73.748 154.499 76.7461 157.7666 80.125 158.7646 c -%_80.2441 158.7998 80.3223 158.9189 80.3047 159.0439 c -%_80.2852 159.1689 80.1797 159.2607 80.0547 159.2627 c -%_75.9473 159.2881 72.4766 157.4072 70.4238 153.6943 C -%_70.1543 156.5693 70.1514 158.3799 71.0645 161.417 c -%_71.0996 161.5342 71.0459 161.6592 70.9385 161.7158 c -%_70.8291 161.7725 70.6963 161.7432 70.6221 161.6475 c -%_63.2656 152.2549 66.7861 136.0225 72.6016 129.29 C -%_67.0693 133.2725 62.1846 141.9229 62.2617 153.6826 c -%_62.2627 153.8057 62.1768 153.9092 62.0566 153.9326 c -%_61.9365 153.958 61.8174 153.8916 61.7725 153.7783 c -%_57.6641 143.5264 59.8438 124.5303 71.0537 113.9268 C -%_68.1699 113.5303 65.1865 113.5811 61.9287 114.6201 c -%_61.8135 114.6553 61.6885 114.6064 61.6299 114.501 c -%_61.5713 114.3936 61.5947 114.2607 61.6885 114.1826 c -%_65.7803 110.7275 71.5029 109.6416 76.9551 109.6416 C -%_72.2578 115.1416 73.8184 126.1963 81.3105 126.1963 c -%_86.6582 126.1963 89.0859 117.8975 84.957 113.415 c -%_84.8789 113.3291 84.8691 113.2002 84.9316 113.1045 c -%_84.9961 113.0068 85.1172 112.9639 85.2285 113.0029 c -%_90.0078 114.6572 95.1738 118.792 95.1738 124.0186 c -%_95.1738 129.0615 90.3613 133.4131 83.373 133.0693 C -%_92.1914 135.5752 101.4238 132.8018 106.2539 126.8174 c -%_106.3281 126.7236 106.459 126.6963 106.5645 126.749 c -%_106.6719 126.8037 106.7266 126.9248 106.6973 127.04 c -%_103.9063 137.7568 94.7305 142.2393 83.2578 140.7471 C -%_92.5391 144.5029 106.5078 141.2275 112.6816 133.4365 c -%_112.7539 133.3447 112.8809 133.3154 112.9883 133.3643 c -%_113.0938 133.415 113.1523 133.5322 113.1289 133.6455 c -%_111.7578 140.2607 108.2656 145.208 102.5059 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 166.4502 m -%_128.8672 166.3311 128.7637 166.2432 128.6426 166.2432 c -%_115.7363 166.1064 103.8887 162.9756 94.6719 154.7275 C -%_102.7012 160.2861 117.6133 162.2373 126.1992 158.3467 c -%_126.3086 158.2959 126.3672 158.1748 126.3398 158.0576 c -%_126.3145 157.9404 126.207 157.8584 126.0859 157.8604 c -%_115.4063 158.1514 106.8066 154.8545 100.1016 148.8975 C -%_106.9707 148.4736 112.6758 144.1572 112.6582 139.0518 c -%_112.6582 138.9326 112.5742 138.8291 112.457 138.8037 c -%_112.3418 138.7803 112.2227 138.8389 112.1738 138.9482 c -%_111.0527 141.4365 107.4258 142.7295 103.5918 141.8291 c -%_99.4121 140.8467 96.5918 137.6396 97.291 134.6631 c -%_97.7617 132.6494 99.7266 131.2607 102.2422 130.876 c -%_102.3691 130.8564 102.4629 130.7471 102.459 130.6182 c -%_102.4551 130.4912 102.3574 130.3857 102.2285 130.3721 c -%_101.1602 130.2705 100.0488 130.2666 98.9121 130.376 c -%_92.4219 130.9932 87.3984 134.9697 86.9629 139.5537 C -%_82.25 139.0068 78.0781 136.3955 76.584 132.7803 c -%_76.5391 132.6709 76.4258 132.6084 76.3086 132.626 c -%_76.1934 132.6436 76.1055 132.7393 76.0957 132.8564 c -%_75.7188 137.6064 77.3535 140.6943 81.0664 143.71 C -%_75.6816 141.6514 69.6201 141.5459 63.8096 144.2471 c -%_63.7041 144.2979 63.6455 144.4131 63.667 144.5283 c -%_63.6904 144.6436 63.79 144.7275 63.9072 144.7314 c -%_68.7861 144.9209 72.3242 146.4873 75.6406 149.8037 C -%_57.3838 144.6689 42.5518 156.0049 47.6846 172.8545 c -%_47.7197 172.9717 47.8311 173.0459 47.9521 173.0342 c -%_48.0732 173.0225 48.1689 172.9268 48.1787 172.8057 c -%_49.0967 163.0908 55.8818 156.6885 66.04 155.7295 C -%_60.6533 157.7881 55.04 162.7041 54.4834 171.2627 c -%_54.4756 171.3857 54.5557 171.4951 54.6748 171.5264 c -%_54.7939 171.5557 54.917 171.4951 54.9678 171.3838 c -%_57.7666 165.2295 63.2646 162.1201 69.1279 161.5713 C -%_62.7939 164.1533 58.7314 170.1748 57.5576 177.9932 c -%_57.5381 178.1162 57.6123 178.2334 57.7314 178.2725 c -%_57.8486 178.3096 57.9775 178.2568 58.0342 178.1455 c -%_61.8994 170.5635 70.1904 165.3525 80.4824 169.335 c -%_91.0996 173.4443 95.7559 185.7197 96.7852 194.374 c -%_96.8008 194.4971 96.9004 194.5908 97.0234 194.5986 c -%_97.1465 194.6045 97.2559 194.5225 97.2852 194.4033 c -%_101.0039 178.7139 93.7012 162.4541 80.6484 155.5635 C -%_87.7441 157.5654 94.0879 161.8232 97.6758 168.917 C -%_105.9688 169.9346 111.6797 172.7803 114.5332 178.1572 c -%_114.5898 178.2627 114.7129 178.3154 114.8281 178.2822 c -%_114.9434 178.2471 115.0195 178.1357 115.0098 178.0166 c -%_114.8281 175.9072 114.0684 171.6865 110.9355 169.7451 C -%_117.9004 169.7568 123.4414 168.8525 128.7344 166.7314 c -%_128.8457 166.6865 128.9121 166.5693 128.8887 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 219.9189 m -%_99.502 219.8545 99.6309 219.8643 99.7188 219.9463 c -%_99.8047 220.0264 99.8223 220.1553 99.7637 220.2588 c -%_98.1445 223.0557 99.623 227.0713 102.8145 227.0713 c -%_108.5352 227.0713 111.2852 216.3018 110.4102 206.4795 C -%_108.248 212.2334 106.377 214.5342 103.0625 217.2744 c -%_102.9688 217.3506 102.834 217.3525 102.7402 217.2744 c -%_102.6465 217.1982 102.6191 217.0654 102.6777 216.958 c -%_107.5332 207.8799 108.5742 200.8936 108.5742 192.874 C -%_107.1113 198.8311 105.3789 202.1943 100.4473 207.2549 c -%_100.3613 207.3428 100.2246 207.3564 100.123 207.2861 c -%_100.0215 207.2158 99.9844 207.083 100.0352 206.9717 c -%_105.334 195.3799 104.9297 182.5244 100.9824 172.708 c -%_100.9434 172.6104 100.9688 172.499 101.0449 172.4268 c -%_101.123 172.3545 101.2344 172.3389 101.3301 172.3838 c -%_106.5352 174.9346 109.5938 176.6104 114.082 182.7744 C -%_112.7246 190.1729 113.8535 193.8213 117.2539 199.9678 C -%_113.3164 190.0518 115.4121 176.0752 125.4414 170.3779 c -%_125.5508 170.3154 125.6895 170.3428 125.7656 170.4424 c -%_125.8438 170.542 125.8379 170.6826 125.75 170.7744 c -%_121.9688 174.7295 119.2188 181.4092 121.5938 188.7002 C -%_120.0645 178.3115 129.1895 169.5869 139.373 169.5869 c -%_148.9727 169.5869 155.5234 177.0947 154.9824 184.5264 c -%_154.4453 191.8916 149.5391 195.4971 145.3105 197.0244 c -%_145.1992 197.0654 145.0742 197.0225 145.0117 196.9229 c -%_144.9473 196.8232 144.9609 196.6924 145.0449 196.6084 c -%_150.6543 190.915 151.4219 180.1162 141.4609 176.8486 C -%_147.3203 181.9053 145.1504 193.6768 135.7715 194.5732 c -%_135.6543 194.583 135.5449 194.5127 135.5078 194.4014 c -%_135.4688 194.292 135.5117 194.1689 135.6113 194.1064 c -%_137.6191 192.8271 139.2891 190.335 139.2891 187.5322 c -%_139.2891 182.8584 135.8672 181.0205 133.6133 181.0205 c -%_130.1914 181.0205 127.3535 184.2764 127.3535 189.2021 c -%_127.3535 195.0439 132.6133 199.8857 139.373 200.6357 c -%_146 201.3721 152.1563 198.4814 155.123 194.1768 c -%_155.1934 194.0752 155.3242 194.04 155.4375 194.0908 c -%_155.5488 194.1416 155.6074 194.2646 155.5781 194.3838 c -%_152.5586 206.0869 138.7813 211.2607 128.6895 203.8916 C -%_135.3027 211.3916 145.6953 211.4971 154.4121 203.8057 c -%_154.502 203.7256 154.6367 203.7197 154.7344 203.7939 c -%_154.8301 203.8682 154.8613 203.999 154.8066 204.1084 c -%_152.1406 209.5146 145.5547 215.9268 136.2012 214.9932 c -%_127.6445 214.1377 122.6797 205.9775 121.6777 199.3018 C -%_121.1211 207.8232 123.0723 213.8369 130.4316 219.4463 c -%_130.5293 219.5205 130.5586 219.6533 130.5039 219.7627 c -%_130.4492 219.8721 130.3242 219.9268 130.207 219.8916 c -%_123.4219 217.9326 117.9766 214.4678 115.1582 207.3486 C -%_115.1582 213.5088 117.2969 219.7197 122.6836 223.8584 c -%_122.7813 223.9326 122.8105 224.0654 122.7559 224.1748 c -%_122.7012 224.2822 122.5781 224.3369 122.4609 224.3037 c -%_119.0078 223.3213 116.2891 221.8154 114.3223 219.1201 C -%_113.0117 230.2197 107.8008 236.8096 101.7969 236.8096 c -%_97.6719 236.8096 94.5918 233.7764 94.5918 228.9404 c -%_94.5918 226.1104 96.0801 222.1377 99.4023 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 128.3018 m -%_3.33691 124.3975 9.71387 122.9092 16.6064 124.3135 C -%_16.0967 120.0107 16.9404 115.5225 18.2178 112.8271 c -%_18.2705 112.7197 18.3916 112.6611 18.5088 112.6904 c -%_18.626 112.7197 18.7061 112.8271 18.7021 112.9482 c -%_18.3271 121.7139 23.3252 128.79 32.1514 131.8564 C -%_25.2451 127.1006 23.2256 117.6631 26.5127 112.792 c -%_26.5811 112.6924 26.708 112.6533 26.8193 112.6982 c -%_26.9307 112.7432 26.9951 112.8604 26.9736 112.9795 c -%_26.6006 115.04 27.5791 117.6631 29.6865 119.7041 c -%_32.5928 122.5186 36.5361 123.1572 38.4971 121.1338 c -%_40.458 119.1084 39.6943 115.1865 36.79 112.374 c -%_35.7295 111.3467 34.5303 110.6104 33.3408 110.1885 c -%_33.2275 110.1475 33.1592 110.0342 33.1748 109.917 c -%_33.1885 109.7979 33.2842 109.7061 33.4033 109.6963 c -%_39.792 109.1416 44.1729 112.9482 46.9189 117.5732 c -%_49.7139 122.2783 54.4893 125.9854 60.1299 125.2451 c -%_60.249 125.2295 60.3623 125.2998 60.4033 125.4131 c -%_60.4424 125.5264 60.3975 125.6514 60.2939 125.7139 c -%_57.4971 127.3975 54.4229 128.0967 50.4307 126.7666 C -%_56.2256 131.6748 64.4775 134.5068 72.2715 131.9932 c -%_72.3809 131.958 72.5 132.001 72.5625 132.0967 c -%_72.625 132.1924 72.6152 132.3193 72.5371 132.4053 c -%_66.6279 138.9697 54.8467 139.1006 47.4268 133.7764 C -%_50.4639 138.0928 54.4951 141.2627 61.7197 142.2549 c -%_61.835 142.2705 61.9248 142.3643 61.9385 142.4795 c -%_61.9502 142.5947 61.8838 142.7041 61.7744 142.7451 c -%_53.4834 145.8213 45.1748 142.7002 38.3291 134.5283 C -%_41.3213 140.9072 46.2354 146.0146 53.0967 148.542 c -%_53.2119 148.583 53.2803 148.7002 53.2588 148.8213 c -%_53.2393 148.9424 53.1357 149.0303 53.0146 149.0322 c -%_49.0713 149.1143 45.5283 148.1748 40.749 145.4619 C -%_44.2568 151.1533 43.4893 161.1006 38.3799 167.7217 c -%_38.3096 167.8135 38.1846 167.8447 38.0771 167.7998 c -%_37.9717 167.7529 37.9092 167.6396 37.9287 167.5244 c -%_39.1084 160.3252 36.6299 152.1963 32.3193 147.8838 C -%_34.4717 155.5146 32.3252 162.46 26.4229 167.5264 c -%_26.3525 167.5869 26.2529 167.6045 26.167 167.5713 c -%_26.0791 167.5381 26.0186 167.46 26.0049 167.3682 c -%_24.7705 157.9502 14.2354 148.3936 5.40332 147.5928 c -%_5.27832 147.5811 5.18066 147.4814 5.17285 147.3564 c -%_5.16504 147.2314 5.24707 147.1201 5.37012 147.0928 c -%_9.64941 146.124 14.0615 146.6025 17.7588 148.1221 C -%_15.0986 145.1904 11.8193 143.0127 8.2041 141.8779 c -%_8.08691 141.8408 8.01465 141.7275 8.02832 141.6064 c -%_8.04199 141.4854 8.1416 141.3896 8.2627 141.3818 c -%_12.7725 141.0713 17.1865 142.3877 20.9932 144.9209 C -%_16.6318 138.2998 10.0127 133.376 1.56543 131.4131 c -%_1.44434 131.3857 1.3623 131.2744 1.36816 131.1514 c -%_1.37598 131.0283 1.47168 130.9287 1.59473 130.915 c -%_13.5127 129.6123 23.3408 134.2334 29.8154 142.833 C -%_28.167 137.9307 23.4502 133.0771 16.8701 130.2139 c -%_11.0244 127.6689 5.02051 127.2666 0.448242 128.7041 c -%_0.342773 128.7373 0.225586 128.6963 0.163086 128.6045 c -%_0.100586 128.5107 0.104492 128.3877 0.174805 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 203.874 m -%_48.2725 193.3877 48.6143 185.1885 52.4854 174.8193 c -%_52.5303 174.7021 52.6514 174.6338 52.7744 174.6592 c -%_52.8975 174.6846 52.9834 174.7959 52.9775 174.9189 c -%_52.3564 187.542 55.8037 196.5732 63.2764 202.7275 C -%_55.0264 192.874 58.9229 173.167 72.0996 173.167 c -%_81.6855 173.167 89.6152 181.1436 91.5547 190.6924 c -%_91.5801 190.8135 91.5137 190.9346 91.3965 190.9795 c -%_91.2813 191.0244 91.1504 190.9795 91.0879 190.8721 c -%_88.2461 186.1104 83.6797 183.0205 78.6309 183.0205 c -%_70.4951 183.0205 68.0889 189.4873 68.0889 194.0205 c -%_68.0889 200.2061 73.0156 205.3623 76.7969 205.3623 c -%_80.2344 205.3623 81.8379 202.54 81.8379 200.4365 c -%_81.8379 196.5381 78.8398 193.2705 75.4629 192.2725 c -%_75.3418 192.2354 75.2656 192.1182 75.2832 191.9932 c -%_75.3008 191.8682 75.4063 191.7744 75.5332 191.7744 c -%_79.6387 191.749 83.1094 193.6279 85.1621 197.3428 C -%_85.4316 194.4678 85.4336 192.6572 84.5215 189.6182 c -%_84.4863 189.501 84.5391 189.376 84.6465 189.3193 c -%_84.7559 189.2646 84.8887 189.292 84.9629 189.3896 c -%_92.3203 198.7822 88.7988 215.0127 82.9844 221.7471 C -%_88.5156 217.7646 93.4004 209.1123 93.3242 197.3525 c -%_93.3223 197.2314 93.4082 197.126 93.5293 197.1025 c -%_93.6484 197.0791 93.7676 197.1436 93.8125 197.2568 c -%_97.9219 207.5107 95.7422 226.5049 84.5313 237.1084 C -%_87.416 237.5068 90.3984 237.4561 93.6563 236.417 c -%_93.7715 236.3799 93.8965 236.4307 93.9551 236.5361 c -%_94.0137 236.6416 93.9902 236.7744 93.8965 236.8525 c -%_89.8047 240.3076 84.082 241.3936 78.6309 241.3936 C -%_83.3281 235.8936 81.7676 224.8408 74.2773 224.8408 c -%_68.9268 224.8408 66.499 233.1396 70.6279 237.6221 c -%_70.7061 237.708 70.7158 237.835 70.6533 237.9326 c -%_70.5889 238.0303 70.4678 238.0713 70.3564 238.0342 c -%_65.5771 236.3779 60.4111 232.2451 60.4111 227.0166 c -%_60.4111 221.9756 65.2236 217.6221 72.2148 217.9658 C -%_63.3936 215.4619 54.1611 218.2334 49.3311 224.2197 c -%_49.2568 224.3115 49.126 224.3408 49.0205 224.2861 c -%_48.9131 224.2334 48.8584 224.1123 48.8877 223.9951 c -%_51.6787 213.2803 60.8545 208.7959 72.3281 210.29 C -%_63.0459 206.5322 49.0771 209.8076 42.9033 217.5986 c -%_42.8311 217.6904 42.7041 217.7217 42.5967 217.6709 c -%_42.4912 217.6221 42.4326 217.5049 42.4561 217.3896 c -%_43.8271 210.7744 47.3193 205.8291 53.0791 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_; -%_ -%_9 () XW -%_U -%_/ArtDictionary : -%_5 /Int (AIPattern_Editor_Preview_Rows) , -%_109.6416 /Real (AIPattern_Editor_Tile_Height) , -%_1 /Bool (AIPattern_Editor_Top_in_Front) , -%_1 /Bool (AIPattern_Editor_Left_in_Front) , -%_1 /Bool (AIPattern_Editor_Dim_Copies_Key) , -%_5 /Int (AIPattern_Editor_Preview_Cols) , -%_108.3384 /Real (AIPattern_Editor_Tile_Width) , -%_4 /Int (AIPattern_Editor_Editable_Copy_Loc_Key) , -%_50 /Real (AIPattern_Editor_Dim_Percent_Key) , -%_; -%_ -%_9 () XW -E -%AI3_EndPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginBrushPattern -(Unnamed 6) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --3874.5 4018.5 m --3773.1816 4018.5 L --3773.1816 4010.7832 L --3874.5 4010.7832 L --3874.5 4018.5 L -n -u -0 O -0.720851 0.673426 0.586358 0.790768 0.137255 0.121569 0.12549 Xa --3773.3 4012.2073 m --3773.1504 4012.2439 -3773.2041 4011.8247 -3773.1816 4011.7495 C --3773.4319 4011.8423 -3773.2937 4012.3159 -3773.3 4012.2073 C -f --3775.7693 4013.1582 m --3775.7256 4012.9871 L --3776.0896 4013.4063 L --3775.7693 4013.1582 L -f --3778.0784 4013.1504 m --3777.8601 4013.8643 -3777.2417 4013.0352 -3776.8303 4013.2888 C --3776.7625 4013.4524 L --3776.5769 4012.8772 L --3777.0769 4012.9683 -3777.7263 4013.3499 -3778.0784 4013.1504 C -f --3779.3096 4011.6072 m --3779.2336 4011.8843 -3779.5759 4011.8455 -3779.0225 4011.6936 C --3779.0503 4011.6631 -3779.0583 4011.6455 -3779.0745 4011.6233 C --3779.1243 4011.6272 -3779.1929 4011.6262 -3779.3096 4011.6072 C -f --3779.0745 4011.6233 m --3778.8313 4011.6033 -3779.2336 4011.3904 -3779.0745 4011.6233 C --3779.0745 4011.6233 L -f --3780.1975 4011.7822 m --3779.8772 4011.5342 L --3779.9441 4011.3704 -3780.2292 4011.3333 -3780.1233 4011.2134 C --3780.4519 4011.3496 -3780.3843 4011.5127 -3780.1975 4011.7822 C -f --3780.5012 4012.3032 m --3780.3352 4012.1982 L --3780.3643 4012.1294 -3780.4082 4012.1052 -3780.5012 4012.3032 C -f --3779.9832 4011.9768 m --3780.3352 4012.1982 L --3780.2888 4012.3132 -3780.2839 4012.5447 -3780.1736 4012.1184 C --3780.2024 4012.3296 -3780.1328 4012.1262 -3779.9832 4011.9768 C -f --3779.7839 4012.0852 m --3779.6042 4012.24 -3779.3721 4012.3384 -3779.6936 4012.5852 C --3779.0808 4012.4871 -3779.1711 4011.9856 -3779.7839 4012.0852 C -f --3778.1963 4013.8887 m --3777.9561 4014.0984 L --3777.7483 4013.8584 L --3777.8521 4013.9771 -3778.2112 4013.6653 -3778.1963 4013.8887 C -f --3782.1929 4011.4126 m --3782.2129 4011.5647 -3782.0852 4011.8174 -3782.0613 4012.0122 C --3781.8247 4011.8374 L --3781.9463 4011.7334 -3782.1768 4011.6375 -3782.1929 4011.4126 C -f --3782.0613 4012.0122 m --3782.4153 4012.2727 L --3782.0991 4012.3032 -3782.0413 4012.1792 -3782.0613 4012.0122 C -f --3780.5583 4013.0955 m --3779.9768 4012.5479 L --3780.6704 4013.1033 L --3780.5583 4013.0955 L -f --3783.5449 4011.3936 m --3783.3442 4011.0422 L --3783.7017 4011.5735 L --3783.5449 4011.3936 L -f --3784.4417 4011.4551 m --3784.2932 4011.1638 -3784.6453 4010.9624 -3784.4883 4010.7832 C --3784.7319 4010.8352 -3784.9399 4011.0852 -3785.1272 4011.3103 C --3784.9282 4011.1848 -3784.7161 4011.2168 -3784.4417 4011.4551 C -f --3785.4417 4011.6375 m --3785.3423 4011.5679 -3785.2393 4011.4431 -3785.1272 4011.3103 C --3785.2329 4011.3772 -3785.3369 4011.4744 -3785.4417 4011.6375 C -f --3783.0183 4012.1975 m --3783.0457 4012.1055 -3783.0984 4011.8655 -3783.2969 4011.7639 C --3783.1577 4012.1912 L --3783.1152 4012.1936 -3783.0671 4012.1951 -3783.0183 4012.1975 C -f --3783.1528 4012.2046 m --3783.1577 4012.1912 L --3783.3088 4012.1814 -3783.4136 4012.1719 -3783.4585 4012.1672 c --3783.4199 4012.1707 -3783.3279 4012.1824 -3783.1528 4012.2046 C -f --3782.9832 4012.1992 m --3782.9961 4012.1982 -3783.0056 4012.1975 -3783.0183 4012.1975 C --3783.0049 4012.24 -3782.9968 4012.2534 -3782.9832 4012.1992 C -f --3781.4863 4012.7092 m --3781.6943 4012.9482 -3782.1279 4013.2039 -3781.7083 4013.5686 C --3781.5591 4013.2759 -3781.7993 4013.0686 -3781.4863 4012.7092 c -f --3782.8103 4012.7334 m --3782.4343 4012.8311 L --3782.4417 4012.7183 -3782.5095 4012.5535 -3782.4065 4012.4351 C --3782.8103 4012.7334 L -f --3782.9944 4012.8694 m --3782.8103 4012.7334 L --3782.9497 4012.6975 L --3782.9944 4012.8694 L -f --3784.7976 4012.0376 m --3784.96 4012.2239 -3785.1377 4012.2393 -3785.3384 4012.2693 C --3785.1233 4012.3533 -3784.9009 4012.3992 -3784.6897 4012.3972 C --3784.6599 4012.2632 -3784.5671 4012.0222 -3784.7976 4012.0376 C -f --3783.9983 4012.1563 m --3784.0095 4012.1663 -3784.0239 4012.1707 -3784.0344 4012.1807 C --3784.0122 4012.2173 -3783.9944 4012.2283 -3783.9983 4012.1563 C -f --3787.3142 4012.2664 m --3787.3032 4012.2896 -3787.2937 4012.3196 -3787.2825 4012.3442 C --3787.28 4012.3196 -3787.2783 4012.2952 -3787.2751 4012.27 C --3787.3142 4012.2664 L -f --3784.6536 4012.4771 m --3784.4919 4012.5598 -3784.3953 4012.4551 -3784.3032 4012.3242 C --3784.4241 4012.3662 -3784.5522 4012.3943 -3784.6897 4012.3972 C --3784.7031 4012.4583 -3784.7056 4012.4983 -3784.6536 4012.4771 C -f --3785.9929 4011.8374 m --3785.9087 4011.927 -3785.8132 4012.0032 -3785.7129 4012.0723 C --3785.7952 4011.9373 -3785.9631 4011.7263 -3785.9929 4011.8374 C -f --3784.0889 4012.0623 m --3784.0808 4012.0559 -3784.0735 4012.0479 -3784.0647 4012.0432 C --3784.1177 4011.9524 -3784.1111 4011.9966 -3784.0889 4012.0623 C -f --3784.0889 4012.0623 m --3784.1721 4012.1243 -3784.2375 4012.2295 -3784.3032 4012.3242 C --3784.2048 4012.2896 -3784.1135 4012.2439 -3784.0344 4012.1807 C --3784.0544 4012.1504 -3784.0745 4012.1042 -3784.0889 4012.0623 C -f --3787.9128 4015.0093 m --3787.8843 4014.6133 -3787.4592 4014.2471 -3787.0923 4014.6719 C --3786.7312 4014.3752 -3786.9673 4013.0723 -3787.2825 4012.3442 C --3787.2937 4012.5166 -3787.2937 4012.6763 -3787.6653 4012.9104 C --3787.5352 4013.1262 -3786.8408 4013.4163 -3787.1543 4013.7747 C --3787.6465 4013.9783 -3787.5576 4013.6343 -3787.7969 4013.4253 C --3787.5935 4013.9182 -3788.4231 4014.1431 -3788.3159 4014.8687 C --3787.8843 4014.6133 L --3787.8762 4014.7263 -3788.0327 4014.9063 -3787.9128 4015.0093 C -f --3786.5745 4012.3843 m --3786.4216 4012.3352 L --3786.5959 4012.2664 -3786.7207 4012.1079 -3786.9504 4011.7976 C --3787.2048 4011.9915 -3787.2576 4012.1382 -3787.2751 4012.27 C --3786.5222 4012.3252 L --3786.5745 4012.3843 L -f --3785.7351 4012.3335 m --3785.8545 4012.7644 -3786.2217 4012.9482 -3785.9968 4013.4143 C --3785.5481 4013.3843 -3785.6824 4013.0542 -3785.4143 4012.8672 C --3786.1384 4012.9744 -3785.2063 4012.6272 -3785.7295 4012.3831 C --3785.5872 4012.3096 -3785.4592 4012.2871 -3785.3384 4012.2693 C --3785.4688 4012.2173 -3785.5945 4012.1519 -3785.7129 4012.0723 C --3785.7063 4012.0823 -3785.7017 4012.0896 -3785.6963 4012.0984 C --3785.6929 4012.0984 L --3785.6929 4012.1006 -3785.6936 4012.1016 -3785.6936 4012.1042 C --3785.6624 4012.1582 -3785.6521 4012.1912 -3785.6873 4012.1604 C --3785.6897 4012.1653 -3785.6985 4012.1672 -3785.7024 4012.1692 C --3785.7073 4012.2283 -3785.7207 4012.2808 -3785.7351 4012.3311 C --3785.9448 4012.2422 -3785.7681 4012.22 -3785.7024 4012.1692 C --3785.7 4012.1472 -3785.6943 4012.1272 -3785.6936 4012.1042 C --3785.6943 4012.1023 -3785.6953 4012.1006 -3785.6963 4012.0984 C --3786.4216 4012.3352 L --3786.2681 4012.3953 -3786.0759 4012.3831 -3785.7351 4012.3335 C -f --3782.0952 4014.4951 m --3782.1177 4014.4573 -3782.1167 4014.4263 -3782.1184 4014.3953 C --3782.1653 4014.4482 -3782.1831 4014.4839 -3782.0952 4014.4951 C -f --3782.3936 4014.2351 m --3782.3408 4014.1753 -3782.2969 4014.0032 -3782.1255 4014.0471 C --3781.9768 4014.1763 -3782.1262 4014.2534 -3782.1184 4014.3953 C --3782.0151 4014.2808 -3781.7568 4014.0862 -3782.0808 4013.876 C --3782.1321 4013.9351 L --3782.4241 4013.7871 -3782.7993 4013.2495 -3782.7483 4013.1902 C --3782.6631 4013.5784 -3782.5879 4013.8542 -3782.3936 4014.2351 C -f --3784.0852 4013.3943 m --3784.6892 4013.6055 L --3784.3816 4013.9783 L --3784.3972 4013.7544 L --3784.0537 4013.8423 -3784.1279 4013.5667 -3784.0852 4013.3943 C -f --3787.3833 4012.0522 m --3787.3032 4011.5967 L --3787.6521 4012.24 L --3787.3833 4012.0522 L -f --3788.1682 4012.1062 m --3788.1392 4011.7112 L --3788.3464 4011.9495 L --3788.1682 4012.1062 L -f --3832.4617 4017.0166 m --3832.6392 4017.1287 L --3832.5552 4017.0942 -3832.5012 4017.0564 -3832.4617 4017.0166 C -f --3831.1768 4017.0435 m --3831.1453 4016.8484 L --3831.2048 4016.9558 -3831.2292 4017.0352 -3831.1768 4017.0435 C -f --3807.4456 4012.1504 m --3807.7041 4011.7815 -3807.9929 4011.2083 -3807.9617 4011.6536 C --3807.8823 4012.0872 L --3807.7017 4012.0093 -3807.5632 4012.0576 -3807.4456 4012.1504 C -f --3820.6479 4014.7415 m --3820.6233 4014.7832 -3820.5977 4014.8286 -3820.5723 4014.8728 C --3820.5095 4014.7246 -3820.4504 4014.5872 -3820.3977 4014.4583 C --3820.4729 4014.5471 -3820.5583 4014.6416 -3820.6479 4014.7415 C -f --3820.8303 4016.5364 m --3821.1711 4016.2566 L --3821.0945 4016.3542 -3820.9849 4016.4482 -3820.8303 4016.5364 C -f --3839.4792 4017.4768 m --3839.6863 4017.9182 L --3839.3623 4017.9163 -3839.5049 4017.6936 -3839.4792 4017.4768 C -f --3796.2073 4012.2664 m --3796.4304 4012.0967 -3796.6079 4012.0254 -3796.7639 4012.0044 C --3796.4951 4012.2534 -3796.2783 4012.6272 -3796.2073 4012.2664 C -f --3831.9561 4012.4126 m --3832.0647 4012.4912 -3832.1111 4012.5796 -3832.1079 4012.6763 C --3831.9961 4012.6023 -3831.9329 4012.5193 -3831.9561 4012.4126 C -f --3797.4082 4012.0059 m --3797.3689 4012.0496 -3797.3303 4012.0713 -3797.2903 4012.1079 C --3797.1272 4012.0352 -3796.9631 4011.9768 -3796.7639 4012.0044 C --3796.9624 4011.8196 -3797.1897 4011.7046 -3797.4082 4012.0059 C -f --3864.9297 4017.1172 m --3864.9482 4017.0984 -3864.9705 4017.0884 -3864.9873 4017.0652 C --3864.9929 4017.1243 -3864.9673 4017.1272 -3864.9297 4017.1172 C -f --3872.3442 4012.74 m --3872.2712 4012.7124 -3872.1521 4012.7119 -3872.0398 4012.7063 C --3872.0945 4012.6763 -3872.1863 4012.6792 -3872.3442 4012.74 c -f --3791.3264 4011.9172 m --3791.1599 4011.8887 -3791.3 4011.8694 -3791.3264 4011.9172 C --3791.3264 4011.9172 L -f --3790.5168 4013.6331 m --3790.5522 4013.6814 -3790.5791 4013.7439 -3790.5833 4013.8442 C --3790.5696 4013.74 -3790.5464 4013.6736 -3790.5168 4013.6331 c -f --3799.0664 4014.7063 m --3799.0713 4014.7063 -3799.0752 4014.7046 -3799.0808 4014.7046 C --3799.0313 4014.7896 -3799.0398 4014.7732 -3799.0664 4014.7063 C -f --3791.0759 4012.1143 m --3791.1384 4012.0613 -3791.2104 4012.0166 -3791.2888 4011.9856 C --3791.2544 4012.0193 -3791.1897 4012.0613 -3791.0759 4012.1143 C -f --3791.1096 4011.9092 m --3791.0522 4011.9287 -3791.0071 4011.9395 -3790.9641 4011.9512 C --3790.9431 4011.8792 -3790.9617 4011.8335 -3791.1096 4011.9092 C -f --3791.5583 4011.9407 m --3791.4631 4011.9336 -3791.3743 4011.9539 -3791.2888 4011.9856 C --3791.3215 4011.9558 -3791.3352 4011.9319 -3791.3264 4011.9172 C --3791.3752 4011.9236 -3791.4441 4011.9326 -3791.5583 4011.9407 c -f --3851.2932 4015.9558 m --3851.3042 4015.9424 -3851.3169 4015.9336 -3851.3289 4015.9153 C --3851.4968 4016.0952 -3851.4231 4016.0667 -3851.2932 4015.9558 C -f --3811.7783 4016.6563 m --3811.7705 4016.6519 -3811.7664 4016.6404 -3811.7593 4016.6362 C --3811.7671 4016.6311 -3811.7769 4016.6252 -3811.7839 4016.6199 C --3811.7783 4016.6563 L -f --3812.3762 4016.9792 m --3812.1216 4016.4392 -3811.9768 4016.5056 -3811.7839 4016.6199 C --3811.9817 4015.3694 L --3812.3762 4016.9792 L -f -*u --3835.5383 4017.1416 m --3835.1184 4017.5322 L --3835.6252 4018.1736 -3835.9919 4017.9524 -3835.5977 4018.5 C --3835.5383 4017.1416 -3833.9656 4018.3616 -3833.9072 4017.0039 C --3833.6304 4017.2896 L --3833.7097 4017.2766 -3833.7224 4017.3562 -3833.8008 4017.3433 C --3833.2625 4017.9934 -3833.4009 4016.3616 -3832.7073 4016.5542 C --3832.4656 4016.6582 -3832.2969 4016.8552 -3832.4617 4017.0166 C --3831.9231 4016.6807 L --3831.7664 4016.7073 -3831.8047 4016.9431 -3831.9607 4016.9172 C --3831.1392 4016.8086 L --3831.1453 4016.8484 L --3831.0281 4016.6362 -3830.7625 4016.3064 -3830.6328 4016.1663 C --3830.4241 4016.3616 -3830.7375 4016.3103 -3830.6841 4016.4792 C --3830.2292 4016.1504 L --3830.0439 4016.5032 -3830.4209 4016.8442 -3830.7351 4016.7935 C --3830.3103 4018.1494 -3830.3577 4016.4524 -3829.4409 4017.2444 C --3829.8704 4017.4163 L --3829.5935 4018.1863 -3829.2583 4017.907 -3828.7727 4018.3875 C --3828.8879 4018.1367 -3829.7449 4017.1775 -3829.2512 4016.8391 C --3829.1121 4016.9414 -3828.9287 4016.99 -3828.6624 4016.7168 C --3828.6599 4017.2 -3828.3999 4017.0811 -3828.0745 4017.0535 C --3828.0967 4017.6936 L --3827.7449 4017.5088 -3827.7727 4017.1831 -3827.5657 4016.8953 C --3827.1736 4016.9583 -3827.0923 4017.4536 -3827 4017.8711 C --3826.3721 4017.9727 -3827.4336 4017.0767 -3826.6904 4016.9558 C --3826.1682 4017.2007 -3825.8015 4016.9392 -3825.1768 4016.5564 C --3824.8113 4016.7776 -3825.2407 4016.9482 -3825.1096 4017.1311 C --3824.7856 4016.6206 L --3824.7063 4016.6331 -3824.7319 4016.7896 -3824.7449 4016.8687 C --3824.4719 4016.6707 -3824.7224 4016.2292 -3824.2932 4016.0559 C --3824.1775 4015.3511 -3823.4121 4017.0852 -3822.8809 4016.2854 C --3822.75 4016.4673 -3822.9441 4016.6775 -3822.9041 4016.9253 C --3822.1753 4016.3999 -3822.2793 4016.5435 -3821.6809 4015.8367 C --3821.1711 4016.2566 L --3821.5457 4015.7766 -3821.0671 4015.2083 -3820.6479 4014.7415 C --3820.7808 4014.5093 -3820.8943 4014.3064 -3820.9705 4014.2095 C --3820.3015 4013.8662 L --3820.2207 4013.9712 -3820.2881 4014.1912 -3820.3977 4014.4583 C --3820.3521 4014.4055 -3820.3088 4014.3533 -3820.2751 4014.3047 C --3820.0359 4014.5413 -3820.1599 4014.9104 -3820.3313 4015.2676 C --3820.4128 4015.1416 -3820.4937 4015.0071 -3820.5723 4014.8728 C --3820.7375 4015.2615 -3820.8921 4015.6919 -3820.8577 4016.0667 C --3820.8142 4015.9927 -3820.7305 4015.9292 -3820.6384 4015.8936 C --3820.6816 4015.9993 -3820.7092 4016.0935 -3820.6892 4016.1575 c --3820.6665 4016.2246 -3820.5967 4016.0833 -3820.4873 4015.9192 C --3820.3352 4016.6331 L --3820.2983 4016.3499 L --3819.4231 4016.7959 L --3818.7969 4016.0784 -3818.2522 4015.0212 -3817.2583 4014.7271 C --3817.5049 4015.25 -3817.3113 4015.5811 -3817.3247 4016.2007 C --3817.5959 4015.5447 -3818.0945 4016.4792 -3818.6096 4016.3462 c --3818.3408 4016.4153 -3818.3999 4016.7112 -3818.4683 4016.8132 C --3817.5496 4016.2168 L --3817.5703 4016.7239 -3817.3545 4016.5967 -3817.1145 4016.8064 C --3817.2959 4015.8047 -3816.4297 4016.1392 -3816.0559 4015.8323 C --3816.0327 4016.1682 -3816.1223 4016.5122 -3816.5784 4016.4304 C --3816.0752 4017.1848 -3815.9282 4015.2544 -3815.4343 4015.8953 C --3815.5457 4015.9031 -3815.6057 4015.8518 -3815.6497 4016.0232 C --3815.3896 4015.7239 -3814.7537 4015.9612 -3814.9033 4016.2534 C --3815.0144 4016.2603 L --3814.2751 4016.3792 -3812.7639 4016.2676 -3812.6536 4015.4172 C --3812.6462 4015.5276 -3812.7505 4016.4424 -3812.7952 4016.6143 C --3811.4761 4013.7527 L --3811.5923 4014.4832 -3811.1462 4016.2224 -3811.7593 4016.6362 C --3811.5833 4016.74 -3811.3655 4016.8616 -3810.9944 4016.6033 C --3811.1145 4016.4993 -3811.2937 4015.5471 -3811.1296 4015.48 C --3810.6792 4016.2932 -3810.8169 4015.9153 -3810.2617 4016.6084 C --3810.4417 4016.4524 -3810.2417 4015.3064 -3809.9573 4015.3433 C --3810.0017 4015.5144 -3809.9336 4016.4734 -3810.0376 4016.5928 C --3809.3296 4015.4683 L --3809.5063 4015.6707 -3809.3608 4016.4214 -3809.2024 4016.74 C --3809.2759 4016.5193 -3808.5903 4016.76 -3808.4016 4016.6487 C --3808.7017 4016.3875 L --3807.9023 4016.5579 -3807.9121 4014.8064 -3807.1191 4014.8655 C --3807.2151 4015.0974 -3807.3562 4016.2952 -3806.9529 4016.4363 C --3806.7681 4015.8606 -3806.1345 4013.6663 -3805.4329 4013.2227 C --3805.2983 4013.5522 L --3804.76 4013.1768 L --3805.0952 4014.0435 -3806.0359 4015.8672 -3806.5496 4016.5767 C --3806.2505 4016.8374 -3806.4663 4016.9656 -3806.0183 4016.9351 C --3805.8601 4017.2439 -3806.2625 4017.4031 -3806.3943 4017.4214 C --3805.3513 4017.6206 L --3805.3977 4016.9482 -3804.5537 4016.9463 -3804.5935 4016.3862 C --3805.7263 4017.0833 L --3805.7722 4016.4119 -3805.0713 4015.1753 -3804.3323 4015.2932 C --3804.1443 4015.5613 -3804.4729 4016.49 -3804.4575 4016.7144 C --3804.3616 4016.4832 -3803.7561 4016.2722 -3803.6882 4016.4363 C --3804.0017 4016.7959 L --3803.5903 4017.0486 -3803.3303 4015.9048 -3802.8359 4016.5464 C --3802.6653 4016.5896 -3802.3264 4017.4119 -3802.2969 4017.0144 C --3802.5752 4016.2471 -3802.6296 4013.8743 -3802.4441 4013.2979 C --3802.3843 4013.3499 -3801.5481 4014.0313 -3801.3533 4014.4104 C --3801.0723 4015.0122 -3801.7751 4015.8442 -3801.5359 4016.3606 C --3801.5256 4016.1768 -3801.3704 4015.9502 -3801.3057 4015.8772 C --3801.1265 4016.0342 -3801.3799 4016.4463 -3800.9905 4016.3633 C --3800.9255 4015.6824 -3800.1985 4016.4207 -3800.8064 4015.7871 C --3800.4255 4015.5923 -3800.4016 4015.928 -3799.9543 4015.8975 C --3800.0967 4015.4573 -3799.5527 4014.3992 -3799.1711 4014.2039 C --3799.1936 4014.3772 -3799.1079 4014.6033 -3799.0664 4014.7063 C --3798.2856 4014.7676 -3797.8665 4015.0774 -3797.1384 4015.0833 C --3797.0713 4015.2483 -3796.72 4015.4482 -3796.8696 4015.7415 C --3796.7649 4015.6206 -3796.6687 4015.3894 -3796.4441 4015.3733 C --3796.0095 4015.9624 -3796.9448 4015.4646 -3796.6135 4016.1736 C --3796.5852 4015.7776 -3796.0327 4015.6262 -3795.7129 4015.3792 C --3795.8113 4014.7671 -3796.4519 4015.2615 -3796.7722 4015.5088 C --3796.7737 4014.6653 -3796.2161 4013.7815 -3795.4551 4013.3911 C --3794.8503 4013.1814 -3795.1929 4013.9363 -3795.0879 4013.8167 C --3793.9519 4013.9639 -3794.1201 4012.3433 -3793.1768 4012.9524 C --3792.8025 4013.4895 -3793.1599 4014.0212 -3793.0769 4014.4092 C --3793.5696 4014.6128 -3793.8333 4014.0679 -3794.1672 4014.0896 C --3793.7561 4014.3442 L --3793.9128 4014.5232 -3794.2417 4014.6582 -3794.4209 4014.5032 C --3794.1072 4014.9856 -3792.5017 4014.5952 -3791.6252 4015.0413 C --3791.4695 4014.8616 -3791.2007 4014.6743 -3791.3279 4014.4583 C --3791.6052 4014.5332 L --3791.8601 4014.0999 -3791.0833 4013.9336 -3791.4343 4013.7312 C --3791.0623 4013.4263 -3790.6453 4012.9473 -3790.1216 4013.1924 C --3790.0232 4013.8054 L --3790.0344 4013.6262 -3790.3655 4013.4407 -3790.5127 4013.6272 c --3790.2944 4013.3552 -3789.7097 4014.4573 -3789.4705 4013.6543 C --3789.8376 4013.2295 L --3789.4641 4012.9214 -3789.0024 4012.2703 -3788.5383 4012.4639 C --3788.7495 4011.8584 -3788.6453 4012.5332 -3788.9751 4011.8247 C --3788.6892 4012.7063 -3790.1624 4011.7876 -3789.7031 4012.7134 C --3790.0415 4011.8916 -3790.2888 4012.3655 -3790.7312 4011.6638 C --3790.7 -endstream endobj 21 0 obj <>stream -175 4011.8662 -3790.5745 4012.0513 -3790.9641 4011.9512 C --3790.9817 4012.0103 -3791.0232 4012.0852 -3791.0496 4012.1294 C --3791.0615 4012.1243 -3791.0657 4012.1206 -3791.0759 4012.1143 C --3791.0681 4012.1223 -3791.0623 4012.1311 -3791.0544 4012.1382 C --3791.0713 4012.1687 -3791.0728 4012.1753 -3791.0464 4012.1462 C --3790.9536 4012.2356 -3790.8784 4012.3416 -3790.8479 4012.4539 C --3791.0413 4012.9182 -3791.6609 4012.9038 -3791.8704 4013.1443 C --3792.1016 4013.0479 -3791.7737 4012.9119 -3791.8999 4012.6963 C --3792.2129 4013.0559 L --3792.2439 4012.6072 -3792.8271 4012.3096 -3792.2825 4012.0464 C --3792.7727 4012.0264 L --3793.0613 4011.7747 -3793.4583 4011.6743 -3793.7031 4011.8633 C --3793.9343 4011.7664 -3794.2871 4012.3606 -3794.0857 4012.0088 C --3794.8545 4012.2871 L --3794.8616 4012.1753 L --3795.6201 4012.1184 -3796.4231 4012.9192 -3797.2903 4012.1079 C --3797.5457 4012.2212 -3797.8096 4012.3599 -3798.2368 4012.2327 C --3798.3201 4011.8442 L --3798.6479 4011.9792 -3799.3047 4011.4551 -3799.4456 4011.8599 C --3799.7993 4010.8142 -3801.0369 4011.6316 -3801.6135 4011.4463 C --3801.6353 4011.9536 L --3802.0322 4011.9253 -3802.4128 4012.0696 -3802.9055 4012.2727 C --3802.8752 4012.7207 L --3803.3 4013.0884 -3803.9673 4012.4019 -3804.6392 4012.4482 C --3804.5935 4012.2766 -3804.4231 4012.3213 -3804.3025 4012.4253 C --3805.1052 4011.4119 -3805.9961 4013.1614 -3806.7241 4012.4236 C --3806.9055 4012.5872 -3807.0369 4012.5313 -3807.1641 4012.4192 C --3807.1472 4012.4175 -3807.1321 4012.4092 -3807.1191 4012.3953 C --3807.1377 4012.3904 -3807.1653 4012.3887 -3807.1936 4012.3894 C --3807.2737 4012.3123 -3807.3562 4012.2227 -3807.4456 4012.1504 C --3807.3696 4012.26 -3807.2969 4012.3496 -3807.2336 4012.3911 C --3807.3735 4012.4004 -3807.5857 4012.4558 -3807.7937 4012.5686 C --3807.8823 4012.0872 L --3807.8992 4012.0935 -3807.9128 4012.0923 -3807.9304 4012.1006 C --3808.1345 4011.9231 -3808.0945 4012.3286 -3807.9856 4012.6912 C --3808.0903 4012.77 -3808.1863 4012.8655 -3808.2607 4012.9812 C --3808.4265 4012.2039 -3808.8064 4013.2432 -3809.0327 4012.4143 C --3809.1729 4012.8184 -3810.0784 4012.7183 -3810.1892 4013.5696 C --3810.1963 4013.4583 -3810.2576 4013.4055 -3810.1453 4013.3982 C --3810.3772 4013.3015 -3810.6089 4013.2046 -3810.8169 4013.4446 C --3810.9153 4012.8323 L --3811.4216 4013.6553 L --3811.7292 4013.2822 -3811.8567 4013.0652 -3811.5513 4012.5942 C --3812.2888 4013.3196 -3812.1497 4012.8672 -3812.7769 4013.5852 C --3812.7463 4013.1895 L --3812.9705 4013.2046 -3813.3289 4013.7356 -3813.4641 4013.4082 C --3813.9656 4012.6553 -3815.9456 4013.3042 -3817.2329 4012.6042 C --3816.9832 4013.77 -3817.8313 4012.0823 -3817.8823 4012.9856 C --3817.9573 4012.7102 -3818.1367 4012.5542 -3817.9282 4012.3152 C --3818.5852 4012.5852 -3818.9153 4011.8772 -3819.3689 4012.6392 C --3819.4441 4012.3623 -3819.2283 4012.2356 -3819.2952 4012.0713 C --3819.3479 4012.1311 -3819.5039 4012.3113 -3819.5723 4012.1462 c --3819.6392 4011.9822 -3819.4761 4011.9153 -3819.3721 4011.7952 C --3820.0432 4011.8416 -3820.1111 4012.6912 -3820.1599 4013.4883 C --3820.5 4013.1111 -3820.6697 4013.1638 -3820.9153 4013.6873 C --3821.0337 4013.4263 -3821.2312 4013.1536 -3820.8142 4013.0598 C --3821.0488 4013.0215 -3822.2473 4012.6775 -3822.2712 4013.3167 C --3822.3447 4013.1543 -3822.5991 4013.2693 -3822.6609 4013.3433 C --3823.1873 4013.3047 -3823.2336 4013.2471 -3823.7505 4013.3079 C --3823.6072 4013.4119 L --3823.8113 4014.1831 -3824.0369 4013.5842 -3824.4536 4013.6768 C --3824.4417 4013.5984 L --3825.3972 4013.0415 -3824.8542 4013.8643 -3825.7969 4013.2292 C --3825.7456 4013.7092 L --3825.8335 4014.74 -3826.5808 4013.1006 -3827.1279 4013.4951 C --3826.9304 4013.7693 L --3827.2292 4014.1223 -3827.7656 4012.3662 -3828.0657 4012.2371 C --3828.1311 4012.1472 -3827.9624 4012.0935 -3827.8711 4012.0276 C --3828.6567 4011.4182 -3827.9729 4012.6553 -3828.5583 4012.8015 C --3828.6663 4012.4624 -3828.4192 4011.9392 -3828.8132 4011.8762 C --3829.0095 4011.6023 -3829.9561 4012.9768 -3830.4937 4012.3267 C --3830.3752 4012.5879 -3830.2576 4012.8484 -3830.5295 4013.0447 C --3830.9463 4013.1382 -3831.6563 4012.0579 -3832.0327 4012.8816 C --3832.0857 4012.8096 -3832.1057 4012.7415 -3832.1079 4012.6763 C --3832.4265 4012.8887 -3833.1433 4013.0291 -3833.3352 4013.4756 C --3833.6296 4011.8191 -3835.3159 4014.2815 -3835.3088 4012.7534 C --3836.2888 4012.8352 L --3836.2632 4012.6792 L --3836.8896 4012.5784 -3837.1111 4012.9446 -3837.3313 4013.3113 C --3837.4761 4013.2073 -3837.3704 4013.0642 -3837.3584 4012.9846 C --3838.2737 4012.6763 -3838.3647 4012.7415 -3839.1321 4013.5032 C --3839.2119 4013.0071 L --3839.4199 4013.2952 -3840.5352 4012.2295 -3841.4329 4012.8079 C --3841.4241 4012.7512 -3841.4055 4012.6553 -3841.3342 4012.5852 C --3842.3442 4013.1672 -3843.7522 4011.2112 -3844.1223 4013.0159 C --3844.7888 4013.4607 L --3843.9265 4013.6006 -3844.9172 4014.2444 -3844.5625 4014.5435 C --3844.9016 4014.6494 -3845.4392 4013.9993 -3845.0225 4013.9063 C --3844.9573 4013.9966 L --3844.8042 4013.0559 -3846.0288 4013.6631 -3846.0056 4013.0222 C --3847.7024 4013.0696 -3849.3562 4012.5479 -3850.9456 4012.5078 C --3850.7625 4013.2393 L --3851.3169 4013.1975 L --3851.4624 4013.0276 -3851.5122 4012.6252 -3851.1167 4012.6553 C --3851.3247 4012.24 -3851.78 4013.0032 -3851.7913 4013.1614 C --3852.5657 4012.8655 -3851.4888 4012.3086 -3851.7263 4012.2913 C --3852.0488 4012.3455 L --3851.9761 4012.4312 L --3852.2375 4012.73 -3852.2607 4013.0471 -3852.7361 4013.011 C --3853.0369 4012.8643 -3852.8904 4012.5598 -3853.0088 4012.5322 C --3853.0081 4012.4792 -3853.0481 4012.4551 -3853.1904 4012.5103 C --3853.8889 4012.4482 L --3853.6096 4013.0254 L --3853.9192 4013.3103 -3854.2664 4012.9951 -3853.9441 4013.6494 c --3854.4172 4012.6404 -3856.5496 4013.2871 -3856.8401 4012.9744 C --3857.2737 4013.3953 -3857.7017 4013.3875 -3858.2319 4013.3367 C --3858.1001 4013.4573 -3858.0212 4014.1062 -3858.4785 4014.0271 C --3858.3113 4012.6873 -3859.3159 4013.4456 -3859.6855 4012.4812 C --3859.3552 4013.1206 -3860.9856 4012.6392 -3860.4673 4013.5471 C --3860.8489 4013.4382 -3860.4905 4013.0454 -3860.78 4012.73 C --3861.6882 4013.2493 -3862.7815 4012.3926 -3863.9041 4012.5679 C --3863.9216 4012.7444 -3863.7336 4013.0127 -3863.9744 4013.2747 C --3864.5671 4012.3953 L --3864.7888 4012.4812 -3864.7712 4013.4104 -3865.1763 4012.8 C --3865.1191 4012.9482 -3865.0337 4013.1707 -3865.1824 4013.2271 C --3867.3816 4012.3704 -3869.6763 4013.9292 -3871.9097 4012.3191 C --3871.6072 4012.6604 -3871.8088 4012.6936 -3872.0398 4012.7063 C --3871.8896 4012.7876 -3872.0432 4013.1404 -3872.0137 4013.3792 C --3872.9487 4012.7168 L --3873.1191 4013.3784 -3873.9512 4012.7615 -3874.0488 4013.3943 C --3873.7527 4013.28 L --3874.1465 4014.0271 -3873.2017 4014.9395 -3873.2593 4015.8975 C --3872.8184 4015.0486 -3872.0967 4017.1543 -3871.3733 4015.9395 C --3871.2136 4016.1353 -3871.5095 4016.2483 -3871.4241 4016.4702 C --3871.2407 4016.0598 -3871.0193 4015.9744 -3870.6089 4016.1582 C --3870.6553 4016.26 L --3869.5024 4016.1599 -3869.0081 4016.5647 -3867.7129 4016.8342 C --3867.8088 4016.3606 L --3867.5305 4016.4236 -3867.4719 4016.5723 -3867.3416 4016.6912 C --3867.0222 4015.9727 -3868.1233 4016.6504 -3867.8323 4015.8584 C --3867.4631 4016.8223 -3865.8696 4015.8728 -3865.6201 4016.9683 C --3865.1919 4016.9744 -3865.7456 4016.4192 -3865.3176 4016.4263 C --3865.2041 4016.7227 L --3865.0959 4016.3408 L --3864.8152 4016.4038 -3864.6736 4016.7747 -3864.6631 4017.0254 C --3864.7312 4016.9956 -3864.8567 4017.0955 -3864.9297 4017.1172 C --3864.5657 4017.4663 -3863.9033 4016.9983 -3863.7783 4017.1118 C --3864.1897 4016.9292 L --3863.0212 4016.6519 -3861.5945 4017.0413 -3860.4656 4016.4382 C --3860.5513 4016.2151 L --3859.6892 4015.8015 -3859.8608 4016.4607 -3858.9143 4016.2693 C --3858.9487 4016.3223 L --3858.7593 4016.0999 -3858.5063 4015.9871 -3858.2473 4016.0127 C --3858.4863 4016.2747 -3857.7976 4016.5212 -3858.1111 4016.8113 C --3857.1763 4016.3672 -3857.6487 4016.4624 -3857.0313 4015.6316 C --3856.8889 4016.0032 L --3856.6785 4015.6672 -3856.6609 4015.49 -3856.1882 4015.3943 C --3856.5759 4015.7124 -3855.8865 4015.9592 -3856.3208 4016.3799 C --3855.3289 4017.1912 -3854.8479 4015.5613 -3854.3928 4016.7471 C --3853.9373 4015.7207 -3855.2512 4016.1775 -3854.9961 4015.9575 C --3855.2097 4015.6223 -3854.6201 4015.1902 -3854.3088 4015.2932 C --3853.9919 4015.3167 -3853.77 4016.6072 -3852.9729 4016.5872 C --3853.0522 4016.5823 -3853.0576 4016.6604 -3853.1367 4016.6553 C --3852.8384 4016.9172 -3852.5522 4016.3008 -3852.1863 4016.7263 C --3851.9812 4016.1052 -3851.7112 4016.7615 -3851.6521 4015.9702 C --3852.3833 4016.1536 L --3851.9688 4015.9463 -3851.5801 4015.02 -3850.8972 4015.4695 C --3850.9504 4015.6287 -3851.1536 4015.8391 -3851.2932 4015.9558 C --3851.0935 4016.1895 -3850.9087 4015.8015 -3850.7017 4016.0413 C --3850.7607 4016.8335 -3851.5903 4016.2134 -3852.0344 4016.8174 C --3851.8201 4017.1519 -3851.1943 4016.2439 -3851.4175 4017.1016 c --3851.0967 4016.011 -3850.6321 4017.24 -3850.0923 4016.4063 C --3850.1279 4016.8806 L --3850.0425 4016.8064 -3849.8655 4016.5823 -3849.7083 4016.5942 C --3849.9929 4017.2095 L --3849.5559 4016.6848 -3849.1504 4017.6692 -3848.7312 4017.3831 C --3849.6089 4017.3975 -3848.9282 4016.8113 -3849.2993 4016.4646 C --3848.2168 4015.8296 -3848.6768 4017.7063 -3847.4648 4017.4783 C --3847.6289 4017.5454 -3848.0808 4017.1936 -3847.8242 4016.9734 C --3847.5935 4017.0713 -3847.2888 4017.2534 -3847.1472 4017.5032 C --3846.3442 4017.4038 -3847.2705 4017.0144 -3846.9287 4016.7224 C --3846.6553 4017.3008 -3846.5344 4016.4871 -3846.1824 4016.3022 C --3846.1799 4016.7847 L --3845.2649 4017.0942 -3845.9373 4015.7791 -3845.1135 4016.1536 C --3845.4617 4016.8223 L --3845.0322 4016.6494 L --3845.1208 4017.1982 L --3844.6536 4016.7913 -3844.5081 4016.8962 -3844.0503 4017.0503 C --3844.1567 4016.7112 -3843.9905 4016.1753 -3843.5852 4016.1599 C --3843.3088 4016.4463 -3843.74 4016.6184 -3843.1655 4016.5496 C --3843.2952 4016.8511 -3843.4373 4017.23 -3843.6873 4016.7864 C --3843.7129 4016.9436 -3843.8152 4017.0884 -3843.8416 4017.2444 C --3843.5439 4017.5735 -3843.0935 4017.3191 -3842.8855 4017.3142 C --3842.9656 4017.2964 -3843.0613 4017.2703 -3843.1104 4017.2024 C --3842.2776 4016.5332 L --3842.1465 4016.7144 -3842.2505 4016.8599 -3842.3535 4017.0032 C --3842.1848 4016.9502 -3842.0681 4016.7283 -3841.8201 4016.6873 C --3841.8843 4017.0791 -3841.8689 4017.4839 -3842.22 4017.6687 C --3841.4265 4017.2334 L --3841.3735 4017.4038 -3841.0193 4017.7024 -3841.1223 4017.8462 C --3840.6824 4018.0767 -3840.0432 4017.0852 -3839.46 4017.3894 C --3839.4297 4017.3135 -3839.3689 4017.24 -3839.2449 4017.1848 C --3838.6968 4017.2732 -3838.2112 4017.7544 -3837.5615 4017.2173 C --3837.1929 4017.9192 L --3836.6841 4017.7603 -3837.6919 4017.0342 -3836.8447 4016.7693 C --3836.2449 4016.5447 -3836.6208 4017.3687 -3836.4104 4017.5642 C --3836.1121 4017.2102 -3835.5935 4016.4888 -3835.0425 4017.0613 C --3835.2249 4017.1936 -3835.3679 4017.0896 -3835.5383 4017.1416 C -f -1 D --3829.2632 4016.8296 m --3829.3848 4016.9312 -3829.6272 4017.2439 -3829.7161 4016.9592 C --3829.5776 4016.4063 -3829.4705 4016.6707 -3829.2632 4016.8296 C -f --3819.7241 4015.6692 m --3819.8145 4015.8279 -3819.9543 4015.7493 -3820.1121 4015.5667 C --3819.9976 4015.5271 -3819.8679 4015.5447 -3819.7241 4015.6692 C -f --3793.1511 4012.3096 m --3793.1563 4012.3174 -3793.1599 4012.323 -3793.1641 4012.3333 C --3793.4353 4012.1453 -3793.3391 4012.22 -3793.1511 4012.3096 C -f -0 D --3792.5879 4012.5193 m --3792.5313 4012.4524 -3792.5352 4012.3848 -3792.5591 4012.3174 C --3792.5984 4012.4392 -3792.7249 4012.4482 -3792.8689 4012.4136 C --3792.8289 4012.5398 -3792.7561 4012.6272 -3792.5879 4012.5193 C -f -1 D --3853.0713 4012.7092 m --3852.9617 4012.8352 L --3853.2092 4012.9744 -3853.1399 4012.8484 -3853.0713 4012.7092 C -f -*U -0 D --3820.8057 4016.3286 m --3820.8401 4016.2471 -3820.8496 4016.1575 -3820.8577 4016.0667 C --3820.9055 4016.1475 -3820.9065 4016.2415 -3820.8057 4016.3286 C -f --3839.4409 4017.3953 m --3839.4473 4017.3911 -3839.4536 4017.3926 -3839.46 4017.3894 C --3839.4705 4017.4182 -3839.4761 4017.4482 -3839.4792 4017.4768 C --3839.4409 4017.3953 L -f --3801.3123 4016.6096 m --3801.4282 4016.5398 -3801.4929 4016.4524 -3801.5359 4016.3606 C --3801.5422 4016.4783 -3801.4895 4016.5784 -3801.3123 4016.6096 C -f --3789.6033 4011.6992 m --3789.9641 4011.8247 L --3789.7896 4011.8008 -3789.7273 4011.9063 -3789.6392 4011.9832 C --3789.6472 4011.8704 -3789.7161 4011.7073 -3789.6033 4011.6992 C -f --3786.4719 4014.6848 m --3786.4192 4014.6255 -3786.3601 4014.6782 -3786.3081 4014.6184 C --3786.3225 4014.3943 L --3786.5471 4014.4087 -3786.7041 4014.5896 -3786.4719 4014.6848 C -f --3789.2693 4013.3022 m --3789.2407 4013.7083 -3789.0144 4013.5703 -3788.7617 4013.4951 C --3788.7769 4013.4966 -3788.7913 4013.5 -3788.8064 4013.4951 C --3788.7319 4012.928 -3789.0012 4013.115 -3789.2693 4013.3022 C -f --3788.7031 4013.4812 m --3788.6252 4013.4624 -3788.5457 4013.4524 -3788.4695 4013.4712 C --3788.4399 4013.2439 -3788.5642 4013.4236 -3788.7031 4013.4812 C -f --3791.8735 4012.25 m --3791.7537 4012.3542 -3791.7983 4011.7312 -3791.7305 4011.8962 C --3791.5967 4011.3799 -3792.5295 4012.5212 -3791.8735 4012.25 C -f --3789.0647 4014.6392 m --3789.1553 4014.1382 L --3789.2969 4014.5422 L --3789.0647 4014.6392 L -f --3791.0601 4014.2712 m --3790.6563 4014.4104 L --3790.6624 4014.3264 -3790.6111 4014.2776 -3790.5481 4014.24 C --3790.7969 4014.2224 -3791.0696 4014.1233 -3791.0601 4014.2712 C -f --3790.5481 4014.24 m --3790.4185 4014.2493 -3790.2952 4014.2383 -3790.2231 4014.1563 C --3790.2932 4014.1614 -3790.4441 4014.1782 -3790.5481 4014.24 C -f --3789.6167 4014.7896 m --3789.7361 4014.6851 L --3790.0212 4014.6487 L --3789.6167 4014.7896 L -f --3795.4009 4014.1753 m --3795.8416 4014.3184 L --3795.8865 4014.49 -3795.7664 4014.5952 -3795.6023 4014.5271 C --3795.4968 4014.407 -3795.3333 4014.3408 -3795.4009 4014.1753 C -f --3794.0681 4015.5471 m --3794.1873 4015.4431 -3794.1953 4015.3311 -3794.2625 4015.1663 C --3794.2759 4015.7871 L --3794.0681 4015.5471 L -f --3795.3533 4015.6919 m --3795.3972 4015.8643 -3795.9929 4016.1863 -3795.4343 4016.1475 C --3795.3896 4015.9768 -3794.9482 4015.8335 -3795.3533 4015.6919 C -f --3801.9937 4014.9063 m --3801.8816 4014.8982 L --3801.8977 4013.8799 L --3801.9937 4014.9063 L -f --3807.8464 4017.3433 m --3807.3242 4017.5872 -3807.7224 4016.7144 -3807.2505 4017.0193 C --3807.1279 4016.7783 -3807.6362 4016.7703 -3807.5105 4016.5623 C --3807.8257 4016.8167 -3807.9912 4016.6736 -3807.8464 4017.3433 C -f --3807.5105 4016.5623 m --3807.46 4016.5222 -3807.4065 4016.4734 -3807.3496 4016.4082 C --3807.4409 4016.4712 -3807.4839 4016.52 -3807.5105 4016.5623 C -f --3873.5745 4012.1924 m --3873.9104 4011.98 L --3873.6936 4012.3223 L --3873.5745 4012.1924 L -f --3874.2192 4012.9482 m --3874.2983 4012.2991 L --3874.5 4012.8862 L --3874.4241 4012.8572 -3874.2769 4012.8015 -3874.2192 4012.9482 C -f --3828.3303 4018.1375 m --3828.3047 4017.9812 L --3828.3567 4017.8123 -3828.4353 4017.8 -3828.5928 4017.7732 C --3828.3303 4018.1375 L -f --3832.8848 4017.6519 m --3832.8064 4017.6653 L --3832.9529 4017.0784 L --3832.8848 4017.6519 L -f --3836.7073 4018.4004 m --3836.5513 4018.4253 -3836.3679 4018.2942 -3836.2112 4018.3196 C --3836.5513 4018.4253 -3836.7495 4017.6692 -3836.7073 4018.4004 C -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 45) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7746 7859.3877 L --7721.1748 7859.3877 L --7721.1748 7890 L --7746 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7746 7881.4985 m --7721.1738 7881.4985 L --7721.1738 7880.5142 L --7746 7880.5142 L --7746 7881.4985 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7746 7880.5176 m --7721.1738 7880.5176 L --7721.1738 7873.7935 L --7746 7873.7935 L --7746 7880.5176 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7746 7873.7959 m --7721.1738 7873.7959 L --7721.1738 7872.6367 L --7746 7872.6367 L --7746 7873.7959 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7721.1738 7872.6367 m --7721.1738 7860.5278 L --7746 7860.5278 L --7746 7872.6367 L --7721.1738 7872.6367 L -f -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 47) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7746 7859.3877 L --7715.3848 7859.3877 L --7715.3848 7890 L --7746 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7715.3848 7880.5142 m --7724.8672 7880.5142 L --7724.8711 7889.9985 L --7723.8896 7889.9985 L --7723.8896 7881.4951 L --7715.3848 7881.4951 L --7715.3848 7880.5142 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7715.3848 7873.7935 m --7731.5928 7873.7915 L --7731.5928 7890 L --7724.8672 7890 L --7724.8672 7880.5132 L --7715.3848 7880.5132 L --7715.3848 7873.7935 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7715.3848 7872.6357 m --7732.7485 7872.6357 L --7732.7485 7889.9995 L --7731.5957 7889.9995 L --7731.5957 7873.7915 L --7715.3848 7873.7915 L --7715.3848 7872.6357 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7715.3848 7860.5244 m --7744.8594 7860.5244 L --7744.8594 7889.9985 L --7732.7495 7890 L --7732.7495 7872.6357 L --7715.3848 7872.6357 L --7715.3848 7860.5244 L -f -0 0 0 0 1 1 1 Xa --7731.5918 7874.1533 m --7732.7207 7872.6733 l --7731.5918 7873.7959 l --7731.5918 7874.1533 l -f --7723.8896 7881.8096 m --7724.8232 7880.5615 l --7723.8896 7881.4951 l --7723.8896 7881.8096 l -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 49) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7715.3335 7890 L --7715.3335 7859.3345 L --7746 7859.3345 L --7746 7890 L -n -u -u -u -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7737.4219 7889.9688 m --7736.5039 7889.9688 L --7736.5039 7868.8013 L --7715.3389 7868.8013 L --7715.3389 7867.8853 L --7737.4219 7867.8853 L --7737.4219 7889.9688 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa -0 XR --7736.5039 7889.9688 m --7729.7539 7889.9688 L --7729.7539 7875.5527 L --7715.3389 7875.5527 L --7715.3389 7876.7173 L --7715.3389 7876.7173 L --7715.3389 7868.8013 L --7736.5039 7868.8013 L --7736.5039 7889.9688 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7715.3389 7876.7173 m --7715.3389 7875.5527 L --7729.7539 7875.5527 L --7729.7539 7889.9688 L --7728.5889 7889.9688 L --7728.5889 7876.7173 L --7715.3389 7876.7173 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa -0 XR --7728.5889 7876.7173 m --7728.5889 7889.9688 L --7716.5039 7889.9688 L --7716.5352 7888.8135 L --7715.3389 7888.8135 L --7715.3389 7876.7173 L --7728.5889 7876.7173 L -f -U -9 () XW -1 Ap -1 XR --7746 7890 m --7746 7859.3345 L --7715.3335 7859.3345 L --7715.3335 7890 L --7746 7890 L -n -U -9 () XW -0 Ap -0 O -0 0 0 0 1 1 1 Xa -0 XR --7728.5986 7877.0796 m --7729.7285 7875.6016 l --7728.5986 7876.7212 L --7728.5986 7877.0796 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ --7736.5 7869.1255 m --7737.3848 7867.9287 l --7736.5 7868.8101 L --7736.5 7869.1255 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ -U -9 () XW -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSVGFilter -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_AbgeflachteKanteMitSchatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color:white) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20000) /UnicodeString (xmlnode-nodevalue) , -(z) /UnicodeString (xmlnode-nodename) , -; (z) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5000) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10000) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(fePointLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.1) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_7) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Holzmaserung) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offset) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(flood-color:black; flood-opacity:0.4) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFlood) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(shadowColor) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) -endstream endobj 22 0 obj <>stream -, -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.5) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncR) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.7 0 ) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncG) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.1 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncB) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComponentTransfer) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(MergeAll) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(110%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_KühleBrise) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-40%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.2) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(freeze) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(stdDeviation) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(spline) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 1;20 15;200 200; 15 20;1 1 ) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50;20 20;50 50) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow;green;blue;indigo;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(red) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indigo;green;yellow;blue;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(130%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 -endstream endobj 23 0 obj <>stream - /Int (xmlnode-nodetype) , -(AI_Statisch) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(baseFrequency) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.7) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_5) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.4) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -%AI10_EndSVGFilter -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI14_BeginSymbol -(Kombinationsfeld) 0 A -0 Xw -u -u -0 O -9 0.7 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -6.5 -10 m -6.5 -10 L --10.5 -10 L --10.5 10 L -6.5 10 L -6.5 10 L -8.15625 10 9.5 8.6582 9.5 7 C -9.5 -7 L -9.5 -8.65625 8.15625 -10 6.5 -10 C -Bb -1 (Unnamed gradient 1) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -24 0.000001 -7735.5 7901 Xm --0.000001 -23.5 -24 0.000001 -7735.5 7924.5 Bc --0.000001 -20 -24 0.000001 -7735.5 7901 Bm --0.000001 -23.5 -24 0.000001 -7735.5 7881 Bc -f -0 BB -0 1 0 0 0 Xy -6.5 -11 m -6.5 -11 L --10.5 -11 L --10.5 -10 L -6.5 -10 L -6.5 -10 L -8.15625 -10 9.5 -8.65625 9.5 -7 C -9.5 7 L -9.5 8.6582 8.15625 10 6.5 10 C -6.5 10 L --9.5 10 L --10.5 10 L --10.5 11 L -6.5 11 L -6.5 11 L -8.70898 11 10.5 9.20898 10.5 7 C -10.5 -7 L -10.5 -9.20898 8.70898 -11 6.5 -11 C -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -25 0.000001 -7734.5 7902 Xm --0.000001 -25 -25 0.000001 -7734.5 7927 Bc --0.000001 -22 -25 0.000001 -7734.5 7902 Bm --0.000001 -25 -25 0.000001 -7734.5 7880 Bc -f -0 BB -U -9 () XW -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa --3.5 -2 m -2.5 -2 L --0.5 2 l --3.5 -2 L -f -U -%_/ArtDictionary : -%_0 17 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Schaltfläche) 0 A -0 Xw -u -*u -1 D -0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -0 g -28.0005 -11 m -28 -11 L --28 -11 L --30.21 -11 -32 -9.20898 -32 -7 C --32 7 L --32 9.20801 -30.21 10.999 -28 11 C -28 11 L -28.0005 11 L -30.2085 11 32 9.20898 32 7 C -32 -7 L -32 -9.20898 30.2085 -11 28.0005 -11 C -f -0 D -31 7 m -31 8.6582 29.6563 10 28.0005 10 C -28 10 L --28 10 L --29.6572 9.99902 -31 8.65625 -31 7 C --31 -7 L --31 -8.65527 -29.6572 -10 -28 -10 C -28 -10 L -28.0005 -10 L -29.6563 -10 31 -8.65625 31 -7 C -31 7 L -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -68 0.000003 -7713 7902 Xm --0.000001 -25 -68 0.000003 -7713 7927 Bc --0.000001 -22 -68 0.000003 -7713 7902 Bm --0.000001 -25 -68 0.000003 -7713 7880 Bc -f -0 BB -*U -9 0.85 0 0 0 Xy -28.0005 -10 m -28 -10 L -28 -10 L --28 -10 L --28 -10 L --29.6572 -10 -31 -8.65527 -31 -7 C --31 7 L --31 8.65625 -29.6572 9.99902 -28 10 C --28 10 L -28 10 L -28 10 L -28.0005 10 l -29.6563 10 31 8.6582 31 7 C -31 -7 L -31 -8.65625 29.6563 -10 28.0005 -10 c -Bb -1 (Unnamed gradient 3) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -66 0.000003 -7714 7901 Xm --0.000001 -23 -66 0.000003 -7714 7924 Bc --0.000001 -20 -66 0.000003 -7714 7901 Bm --0.000001 -23 -66 0.000003 -7714 7881 Bc -f -0 BB -U -%_/ArtDictionary : -%_4 60 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Suchen) 0 A -0 Xw -u -1 Ap -0 O -1 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -31 21.5322 m -31 24.0166 17.1211 26.0303 0 26.0303 c --17.1191 26.0303 -31 24.0166 -31 21.5322 c --31 19.0459 -17.1191 17.0303 0 17.0303 c -17.1211 17.0303 31 19.0459 31 21.5322 c -Bb -0 0 0 0 Bh -1 (Unnamed gradient 17) 0 0 0 1 1.4762 0 0 0.2143 -3789.1475 6144.7451 1 Bg -30.9986 0 0 -4.50006 -7747 7869.4692 Bm -f -0 BB -%_/ArtDictionary : -%_/Dictionary : /NotRecorded , -%_1.4762 0 0 0.2143 -3789.1475 6144.7451 /RealMatrix -%_ (CAIGradientTformMatrix) , -%_; (Adobe_AI9_ArtStyle_Dictionary) , -%_; -%_ -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 17) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -6 () XW -u -0 Ap -0 1 0 0 0 Xy -10 M -18.4502 21.9706 m --18.7514 21.9706 -19.0387 21.8438 -19.2384 21.6228 C --23.965 16.396 L --24.1564 16.1854 -24.2537 15.9123 -24.2398 15.6264 c --24.2259 15.3403 -24.1025 15.0776 -23.8923 14.8867 C --10.655 2.8613 L --10.4594 2.68388 -10.205 2.58601 -9.93892 2.58601 c --9.63749 2.58601 -9.35004 2.7128 -9.15027 2.93386 C --4.42351 8.15868 L --4.23263 8.36885 -4.13573 8.64198 -4.15001 8.92848 c --4.16429 9.21497 -4.28761 9.47757 -4.49724 9.66792 C --17.7366 21.6953 L --17.9317 21.873 -18.1849 21.9706 -18.4502 21.9706 C -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -18.1731 0 0 -18.1731 -7764.2183 7866.1729 Bm -f -0 BB -u -*u -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 Xa --9.93896 3.08594 m --9.84473 3.08594 -9.66504 3.10986 -9.521 3.26953 C --4.79297 8.49561 L --4.65771 8.64453 -4.64502 8.81494 -4.64941 8.90381 C --4.65723 9.05713 -4.72217 9.19678 -4.8335 9.29785 C --18.0737 21.3262 L --18.1763 21.4194 -18.3096 21.4707 -18.4502 21.4707 C --18.5444 21.4707 -18.7236 21.4468 -18.8677 21.2871 C --23.5957 16.0591 L --23.8022 15.8315 -23.7842 15.4639 -23.5562 15.2568 C --10.3193 3.23193 L --10.2158 3.1377 -10.0806 3.08594 -9.93896 3.08594 C -F -1 D --9.93896 2.08594 m --10.3145 2.08594 -10.6919 2.21973 -10.9912 2.49121 C --24.2285 14.5166 L --24.8672 15.0967 -24.916 16.0928 -24.3359 16.7314 C --19.6094 21.958 L --19.3022 22.2979 -18.877 22.4707 -18.4502 22.4707 C --18.0747 22.4707 -17.6982 22.3369 -17.4004 22.0654 C --4.16113 10.0381 L --3.52441 9.45996 -3.47266 8.46191 -4.05273 7.82324 C --8.7793 2.59863 L --9.08643 2.25879 -9.51172 2.08594 -9.93896 2.08594 C --9.93896 2.08594 L -f -*U -U -0 0 Xd -6 () XW -U -0 0 Xd -6 () XW -%_0 D -%_-24.3359 16.7314 m -%_-24.916 16.0928 -24.8672 15.0967 -24.2285 14.5166 c -%_-10.9912 2.49121 l -%_-10.3516 1.91113 -9.35645 1.95996 -8.7793 2.59863 c -%_-4.05273 7.82324 l -%_-3.47266 8.46191 -3.52441 9.45996 -4.16113 10.0381 c -%_-17.4004 22.0654 l -%_-18.0371 22.6455 -19.0322 22.5967 -19.6094 21.958 c -%_-24.3359 16.7314 l -%_n -1 (Anon) XW -*u -0 O -0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -4 M 0 g -7.40234 -25.5303 m -9.28125 -25.5303 11.1943 -25.2197 13.0703 -24.5713 C -22.1172 -21.4404 26.9102 -11.5713 23.7832 -2.52441 C -21.3018 4.64551 14.5879 9.14551 7.40234 9.14551 C -5.52344 9.14551 3.61328 8.83496 1.73438 8.18652 C --7.3125 5.05762 -12.1084 -4.81348 -8.97852 -13.8584 C --6.49707 -21.0283 0.219727 -25.5303 7.40234 -25.5303 C -B -1 D -7.40234 -20.374 m -2.21582 -20.374 -2.40918 -17.0791 -4.1084 -12.1729 C --5.1709 -9.09863 -4.97363 -5.7959 -3.55176 -2.86816 C --2.12988 0.055664 0.34668 2.25293 3.42188 3.31738 C -4.71191 3.76465 6.05176 3.99121 7.40234 3.99121 C -12.5889 3.99121 17.2139 0.696289 18.9131 -4.20801 C -19.9756 -7.28223 19.7783 -10.5869 18.3564 -13.5127 C -16.9346 -16.4404 14.458 -18.6377 11.3857 -19.7002 C -11.3857 -19.7002 L -10.0898 -20.1475 8.75 -20.374 7.40234 -20.374 C -7.40234 -20.374 L -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) 0.007548 0.433959 0 1.40083 1 0 0 1 0 0 1 Bg -17.0658 0 0 -17.0658 -7739.3364 7884.1445 Bm -b -2 BB -*U -u -0 D -10 M -8.90137 7.71973 m --8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C --9.96973 4.26465 L --22.5664 15.708 L --20.3691 18.1377 L --8.90137 7.71973 L -Bb -1 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -17.6244 -20.6243 -16.0703 -13.7328 -7766.499 7901.1626 Xm -33.9039 -39.6748 -16.0703 -13.7328 -7800.4028 7940.8374 Bc -17.6244 -20.6243 -16.0703 -13.7328 -7766.499 7901.1626 Bm -33.9039 -39.6748 -16.0703 -13.7328 -7748.8745 7880.5381 Bc -f -0 BB -U -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-8.90137 7.71973 m -%_-8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-20.3691 18.1377 L -%_-8.90137 7.71973 L -%_n -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -1 (Anon 437) XW -0 O -4 M 12.5801 -23.1553 m -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.3125 -8.30762 -8.32813 -2.95605 -5.40723 1.08691 C --5.00293 -0.069336 -4.43066 -1.18066 -3.72559 -2.23926 C --3.80273 -2.38379 -3.88965 -2.52051 -3.96191 -2.66895 c --5.43652 -5.70605 -5.6416 -9.13379 -4.53906 -12.3232 c --2.77637 -17.4111 2.02148 -20.8291 7.40234 -20.8291 c -8.80078 -20.8291 10.1904 -20.5947 11.5352 -20.1299 c -14.7217 -19.0283 17.291 -16.749 18.7666 -13.7119 c -19.0146 -13.2021 19.2129 -12.6787 19.3887 -12.1494 C -19.7041 -12.1279 20.0215 -12.1143 20.3359 -12.0811 c -21.1885 -11.9932 22.0146 -11.8623 22.8184 -11.7021 C -21.6367 -16.8506 17.9277 -21.3037 12.5801 -23.1553 c -Bb -1 (Unnamed gradient 7) -0.837511 0 -63.554 2.1927 1 0 0 1 0 0 1 Bg -19.0977 -38.3947 -33.1435 -16.4857 -7737.2896 7936.3179 Xm -20.434 -41.0812 -33.1435 -16.4857 -7757.7231 7977.3994 Bc -19.0977 -38.3947 -33.1435 -16.4857 -7737.2896 7936.3179 Bm -20.434 -41.0812 -33.1435 -16.4857 -7718.1919 7897.9233 Bc -f -0 BB --6.4707 -11.915 m --4.26367 -18.292 1.75 -22.5752 8.49316 -22.5752 c -10.251 -22.5752 11.9922 -22.2822 13.6709 -21.7021 c -16.4521 -20.7393 18.7813 -19.0635 20.5557 -16.9619 C -18.7041 -19.7471 15.9766 -21.9795 12.5801 -23.1553 c -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.45313 -7.90137 -8.14941 -2.10254 -4.66309 2.02637 C --7.30762 -1.9502 -8.14941 -7.06348 -6.4707 -11.915 c -Bb -1 (Unnamed gradient 7) -0.284451 0 -62.8867 1.31311 1 0 0 1 0 0 1 Bg -11.6282 -22.7105 -32.3312 -16.5542 -7733.5737 7926.2744 Xm -13.8263 -27.0035 -32.3312 -16.5542 -7747.3999 7953.2778 Bc -11.6282 -22.7105 -32.3312 -16.5542 -7733.5737 7926.2744 Bm -13.8263 -27.0035 -32.3312 -16.5542 -7721.9453 7903.564 Bc -f -0 BB -u -0 1 0 0 0 Xy -10 M -9.12402 5.19824 m --9.96973 4.26465 L --22.5664 15.708 L --21.7207 16.6436 L --9.12402 5.19824 L -Bb -1 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -3.53784 -7.91375 -18.7709 -8.3915 -7755.1191 7888.4551 Xm -11.3559 -25.4018 -18.7709 -8.3915 -7766.4751 7913.8569 Bc -3.53784 -7.91375 -18.7709 -8.3915 -7755.1191 7888.4551 Bm -11.3559 -25.4018 -18.7709 -8.3915 -7751.5815 7880.541 Bc -f -0 BB -U -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-9.12402 5.19824 m -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-21.7207 16.6436 L -%_-9.12402 5.19824 L -%_n -1 (Anon 438) XW -U -%_/ArtDictionary : -%_15.5 46.5 39.0454 13.0151 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_0 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Textbereich) 0 A -0 Xw -u -1 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 0.991358 w 4 M []0 d 0 XR -77.5 45.5 m --77.5 45.5 L --77.5 -45.5 L -77.5 -45.5 L -77.5 45.5 L -s -0 0.6 0 0 0 Xy -1.00864 w 78.5 46.5 m --78.5 46.5 L --78.5 -46.5 L -78.5 -46.5 L -78.5 46.5 L -s -U -%_/ArtDictionary : -%_2.0811 156.0811 91.4609 2.4609 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Texteingabe) 0 A -0 Xw -u -0 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -77.5 11.5 m --77.5 11.5 L --77.5 -11.5 L -77.5 -11.5 L -77.5 11.5 L -s -0 0.6 0 0 0 Xy -78.5 12.5 m --78.5 12.5 L --78.5 -12.5 L -78.5 -12.5 L -78.5 12.5 L -s -U -%_/ArtDictionary : -%_1.7002 155.7002 24 2 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Brush Manager Order) -(Adobe Brush Manager Order) -( Adobe Calligraphic Brush Tool/ Rund - 3 Pt./ Adobe Calligraph) - -(ic Brush Tool/ Rund - 10 Pt./ Adobe Calligraphic Brush Tool/ O) - -(val - 3 Pt./ Adobe ArtOnPath Brush Tool/ Kohle - Feder/ Adobe ) - -(dBrush Brush Tool/ Stupfpinsel/ Adobe PatternOnPath Brush Tool) - -(/ Silber/) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe dBrush Brush Tool) -(Stupfpinsel) -(0 4 0.75 0.75 0.33 0.75 1 3 AI_BristleBrushLibary_CS5 02_Round) - -(_Blunt) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Oval - 3 Pt.) -(1 3 3 26 74 15 15 0 1 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 10 Pt.) -(1 10 10 100 100 0 0 1 0 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 3 Pt.) -(1 3 3 100 100 0 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe ArtOnPath Brush Tool) -(Kohle - Feder) -(2 / Unnamed 6/ / / / / 0 1 / 1 1 1 0 1 0 0 0 1 1 0 0 0 0 1) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe PatternOnPath Brush Tool) -(Silber) -(2 / Unnamed Brush Pattern 45/ Unnamed Brush Pattern 49/ Unname) - -(d Brush Pattern 47/ / / 5 0.623529 0.67451 0.737255 / 1 0 1 0) - -( 1 0 0 0 1 1 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyles -/KnownStyle : -(Anon) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -1 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 437) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 438) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 72) /Name , -/SimpleStyle : -0 O -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Paint ; - /Def ; -/KnownStyle : -(Jive_GS) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -(Jive) 0 0 1 1 0 0 0 0 0 [0 1.47 -1.47 0 3549.7441 19033.0313] p -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0.389013 0.068635 0.08426 0 0.65098 0.815686 0.894118 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schein nach außen - 5 Pt.) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Outer Glow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schein nach au\337en) /Title , -/Dictionary : /NotRecorded , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -2 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schlagschatten) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Drop Shadow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schlagschatten) /Title , -/Dictionary : /NotRecorded , -1 /Bool (pair) , -7 /Real (vert) , -50 /Real (dark) , -7 /Real (horz) , -1 /Int (csrc) , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -1 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -([Standard]) /Name , -/SimpleStyle : -0 O -0 0 0 0 1 1 1 Xa -0 R -0.912474 0.787625 0.619837 0.97467 0 0 0 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -1 1 Xd -/Paint ; - /Def ; -%AI9_EndArtStyles -%AI5_End_NonPrinting-- -%AI5_BeginPalette -0 0 Pb -0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz -([Passermarken]) -Pc -0 0 0 0 1 1 1 Xa -(Weiß) -Pc -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(Schwarz) -Pc -0 0.94641 0.916289 0 1 0 0 Xa -(RGB Rot) -Pc -0.096254 0 0.951965 0 1 1 0 Xa -(RGB Gelb) -Pc -0.647547 0 1 0 0 1 0 Xa -(RGB Grün) -Pc -0.570733 0 0.153567 0 0 1 1 Xa -(RGB Cyan) -Pc -0.934081 0.745846 0 0 0 0 1 Xa -(RGB Blau) -Pc -0.409979 0.77676 0 0 1 0 1 Xa -(RGB Magenta) -Pc -0.168978 0.950286 0.823636 0.068666 0.756863 0.152941 0.176471 Xa -(R=193 G=39 B=45) -Pc -0 0.946624 0.85211 0 0.929412 0.109804 0.141176 Xa -(R=237 G=28 B=36) -Pc -0 0.752956 0.887388 0 0.945098 0.352941 0.141176 Xa -(R=241 G=90 B=36) -Pc -0 0.501823 0.907988 0 0.968627 0.576471 0.117647 Xa -(R=247 G=147 B=30) -Pc -0 0.365637 0.819852 0 0.984314 0.690196 0.231373 Xa -(R=251 G=176 B=59) -Pc -0.065736 0 0.852628 0 0.988235 0.933333 0.129412 Xa -(R=252 G=238 B=33) -Pc -0.231907 0 0.892332 0 0.85098 0.878431 0.129412 Xa -(R=217 G=224 B=33) -Pc -0.524254 0 0.880919 0 0.54902 0.776471 0.247059 Xa -(R=140 G=198 B=63) -Pc -0.718288 0 0.876951 0 0.223529 0.709804 0.290196 Xa -(R=57 G=181 B=74) -Pc -0.842954 0.14374 0.926757 0.021576 0 0.572549 0.270588 Xa -(R=0 G=146 B=69) -Pc -0.899077 0.322972 0.925994 0.247654 0 0.407843 0.215686 Xa -(R=0 G=104 B=55) -Pc -0.735958 0 0.689784 0 0.133333 0.709804 0.45098 Xa -(R=34 G=181 B=115) -Pc -0.766171 0.045533 0.450782 0 0 0.662745 0.615686 Xa -(R=0 G=169 B=157) -Pc -0.709987 0.132143 0.001953 0 0.160784 0.670588 0.886275 Xa -(R=41 G=171 B=226) -Pc -0.866178 0.492958 0 0 0 0.443137 0.737255 Xa -(R=0 G=113 B=188) -Pc -0.975586 0.89572 0 0.000824 0.180392 0.192157 0.572549 Xa -(R=46 G=49 B=146) -Pc -1 0.970001 0.322484 0.218753 0.105882 0.078431 0.392157 Xa -(R=27 G=20 B=100) -Pc -0.755703 0.923125 0 0.000031 0.4 0.176471 0.568627 Xa -(R=102 G=45 B=145) -Pc -0.5393 0.930297 0 0 0.576471 0.152941 0.560784 Xa -(R=147 G=39 B=143) -Pc -0.323583 1 0.236301 0.1673 0.619608 0 0.364706 Xa -(R=158 G=0 B=93) -Pc -0.097993 0.983551 0.407263 0.020691 0.831373 0.078431 0.352941 Xa -(R=212 G=20 B=90) -Pc -0 0.935058 0.142763 0 0.929412 0.117647 0.47451 Xa -(R=237 G=30 B=121) -Pc -0.220859 0.272648 0.389227 0.061189 0.780392 0.698039 0.6 Xa -(R=199 G=178 B=153) -Pc -0.354864 0.386694 0.466072 0.211734 0.6 0.52549 0.458824 Xa -(R=153 G=134 B=117) -Pc -0.446387 0.47068 0.52636 0.380346 0.45098 0.388235 0.341176 Xa -(R=115 G=99 B=87) -Pc -0.535302 0.542443 0.552728 0.542199 0.32549 0.278431 0.254902 Xa -(R=83 G=71 B=65) -Pc -0.204685 0.376715 0.593042 0.084871 0.776471 0.611765 0.427451 Xa -(R=198 G=156 B=109) -Pc -0.280308 0.462287 0.671046 0.207126 0.65098 0.486275 0.321569 Xa -(R=166 G=124 B=82) -Pc -0.324376 0.536675 0.760494 0.329229 0.54902 0.384314 0.223529 Xa -(R=140 G=98 B=57) -Pc -0.359228 0.605188 0.857359 0.451545 0.458824 0.298039 0.141176 Xa -(R=117 G=76 B=36) -Pc -0.391424 0.683131 0.943023 0.57116 0.376471 0.219608 0.07451 Xa -(R=96 G=56 B=19) -Pc -0.474617 0.7467 0.825315 0.730831 0.258824 0.129412 0.043137 Xa -(R=66 G=33 B=11) -Pc -Bb -2 (Weiß, Schwarz) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Weiß, Schwarz) -Pc -Bb -2 (Goldstaub) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Goldstaub) -Pc -Bb -2 (Blauer Himmel) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Blauer Himmel) -Pc -(Jive) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p -(Jive) -Pc -1 (Kalt) 1 Pg -0.584497 0 0.222965 0 0.396078 0.784314 0.815686 Xa -(C=56 M=0 Y=20 K=0) -Pc -0.55404 0.445533 0 0 0.513726 0.545098 0.772549 Xa -(C=51 M=43 Y=0 K=0) -Pc -0.313512 0.439063 0.001465 0 0.729412 0.607843 0.788235 Xa -(C=26 M=41 Y=0 K=0) -Pc -1 (Graustufen) 1 Pg -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(R=0 G=0 B=0) -Pc -0.762295 0.667414 0.60705 0.828763 0.101961 0.101961 0.101961 Xa -(R=26 G=26 B=26) -Pc -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa -(R=51 G=51 B=51) -Pc -0.620386 0.5234 0.503532 0.47776 0.301961 0.301961 0.301961 Xa -(R=77 G=77 B=77) -Pc -0.559442 0.453803 0.448554 0.326848 0.4 0.4 0.4 Xa -(R=102 G=102 B=102) -Pc -0.492378 0.386633 0.38529 0.202182 0.501961 0.501961 0.501961 Xa -(R=128 G=128 B=128) -Pc -0.410864 0.319738 0.323857 0.110109 0.6 0.6 0.6 Xa -(R=153 G=153 B=153) -Pc -0.32575 0.244968 0.255344 0.043549 0.701961 0.701961 0.701961 Xa -(R=179 G=179 B=179) -Pc -0.231479 0.170962 0.180972 0.008301 0.8 0.8 0.8 Xa -(R=204 G=204 B=204) -Pc -0.11664 0.082246 0.092653 0 0.901961 0.901961 0.901961 Xa -(R=230 G=230 B=230) -Pc -0.062196 0.043153 0.05127 0 0.94902 0.94902 0.94902 Xa -(R=242 G=242 B=242) -Pc -PB -%AI5_EndPalette -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyleList -([Standard]) -(Schlagschatten) -(Schein nach außen - 5 Pt.) -(Jive_GS) -%AI9_EndArtStyleList -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSymbolList -(Textbereich) -(Schaltfläche) -(Kombinationsfeld) -(Texteingabe) -(Suchen) -%AI10_EndSymbolList -%AI5_End_NonPrinting-- -%AI9_BeginDocumentData -%_/Document : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(binding1) /String (xmlnode-nodevalue) , -%_(varSetName) /String (xmlnode-nodename) , -%_; (varSetName) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(none) /String (xmlnode-nodevalue) , -%_(locked) /String (xmlnode-nodename) , -%_; (locked) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variables) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns:v) /String (xmlnode-nodename) , -%_; (xmlns:v) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_custom;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(v:sampleDataSets) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSet) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSets) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_sfw;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(slices) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_514 /Real (xmlnode-nodevalue) , -%_(width) /String (xmlnode-nodename) , -%_; (width) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_93.8203 /Real (xmlnode-nodevalue) , -%_(height) /String (xmlnode-nodename) , -%_; (height) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_187 /Real (xmlnode-nodevalue) , -%_(x) /String (xmlnode-nodename) , -%_; (x) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_-346.9106 /Real (xmlnode-nodevalue) , -%_(y) /String (xmlnode-nodename) , -%_; (y) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_1 /Bool (xmlnode-nodevalue) , -%_(bottomLeftOrigin) /String (xmlnode-nodename) , -%_; (bottomLeftOrigin) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sliceSourceBounds) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sfw) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(metadata) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_9 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(#document) /String (xmlnode-nodename) , -%_; (#document) , -%_0 /Real (BleedLeftValue) , -%_0 /Int (CropAreaActive) , -%_/Array : -%_/Dictionary : -%_7891 7991 /RealPoint -%_ (RulerOrigin) , -%_0 /Int (DisplayMark) , -%_(Zeichenfläche 1) /UnicodeString (Name) , -%_1 /Real (PAR) , -%_744 -500 /RealPointRelToROrigin -%_ (PositionPoint2) , -%_144 -100 /RealPointRelToROrigin -%_ (PositionPoint1) , -%_1 /Bool (IsArtboardDefaultName) , -%_; , -%_; (ArtboardArray) , -%_0 /Bool (AI11 document knockout group) , -%_0 /Bool (AI11 document isolate blending) , -%_0 /Bool (AI9 paper simulation) , -%_2 /Int (AI9 transparency grid size) , -%_1 /Int (AI9 artboard color) , -%_52428 /Int (AI9 artboard color 2 blue) , -%_52428 /Int (AI9 artboard color 2 green) , -%_52428 /Int (AI9 artboard color 2 red) , -%_65535 /Int (AI9 artboard color 1 blue) , -%_65535 /Int (AI9 artboard color 1 green) , -%_65535 /Int (AI9 artboard color 1 red) , -%_16383 /Int (AIDocumentCanvasSize) , -%_1 /Bool (AI11 Preserve Text Editability) , -%_([Mittlere Auflösung]) /UnicodeString (AI11 Document Setup Flattener Preset Name) , -%_150 /Real (AI9 Mesh Rasterization Resolution) , -%_300 /Real (AI9 Output Rasterization Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_/Dictionary : -%_36 /Real (padd) , -%_0 /Bool (mask) , -%_1 /Bool (spot) , -%_0 /Bool (alis) , -%_72 /Int (dpi.) , -%_4 /Int (colr) , -%_; (AI Auto Rasterize) , -%_5 /Real (GlobalRepulsion) , -%_0 /Real (BleedRightValue) , -%_0 /Real (BleedTopValue) , -%_0 /Int (PerspectiveGrid_RightBlue) , -%_65535 /Int (PerspectiveGrid_RightRed) , -%_50 /Real (PerspectiveGrid_RightOpacity) , -%_45 /Real (PerspectiveGrid_RightFaceAngle) , -%_45 /Real (PerspectiveGrid_LeftFaceAngle) , -%_480 /Real (PerspectiveGrid_ViewingDistance) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_StationPoint) , -%_26214 /Int (PerspectiveGrid_LeftGreen) , -%_58981 /Int (PerspectiveGrid_LeftBlue) , -%_6553 /Int (PerspectiveGrid_LeftRed) , -%_50 /Real (PerspectiveGrid_LeftOpacity) , -%_0 /Real (PerspectiveGrid_FloorOffset) , -%_0 /Bool (AI16 flattener anti alias) , -%_1 /Bool (AI10 flattener outline strokes) , -%_1 1 /RealPoint -%_ (PerspectiveGrid_Scale) , -%_0 /Bool (AI10 flattener outline text) , -%_0 /Int (PerspectiveGrid_Unit) , -%_15 /Real (PerspectiveGrid_CellCount) , -%_4 /Int (AI9 Flattening Quality Level) , -%_1 /Int (AI12_SpotColorMode) , -%_580 /Real (PerspectiveGrid_RightExtent) , -%_30 /Real (PerspectiveGrid_CellSize) , -%_250 /Real (PerspectiveGrid_HorizonHeight) , -%_580 /Real (PerspectiveGrid_LeftExtent) , -%_45874 /Int (PerspectiveGrid_FloorGreen) , -%_2 /Int (PerspectiveGrid_Type) , -%_32767 /Int (PerspectiveGrid_FloorBlue) , -%_32767 /Int (PerspectiveGrid_FloorRed) , -%_50 /Real (PerspectiveGrid_FloorOpacity) , -%_(14.0.0) /String (kAIFullDocumentVersionStr) , -%_32767 /Int (PerspectiveGrid_RightGreen) , -%_0 /Real (BleedBottomValue) , -%_/Dictionary : -%_/Array : -%_; (SelHatDocInterIDsArray) , -%_/Array : -%_; (SelHatDocLocalNamesArray) , -%_; (SelHatDocTableDict) , -%_2 /Int (kAIParametersWhichProfileKey) , -%_0 /Bool (kAIParametersCompression) , -%_0 /Int (kAIParametersEmbedProfileKey) , -%_1 /Bool (kAIParametersPDFCompatibility) , -%_0 -500 /RealPoint -%_ (PerspectiveGrid_RelativeFloorVanishingPoint) , -%_8431 8316 /RealPoint -%_ (PerspectiveGrid_RightPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RightPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_RightPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_RightPlaneBottomPoint) , -%_8671 8191 /RealPoint -%_ (PerspectiveGrid_RightVanishingPoint) , -%_7951 8316 /RealPoint -%_ (PerspectiveGrid_LeftPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexSecond) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexFirst) , -%_0 /Int (PerspectiveGrid_FloorPlaneVisibilityState) , -%_0 /Int (PerspectiveGrid_LeftPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_LeftPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_LeftPlaneBottomPoint) , -%_7711 8191 /RealPoint -%_ (PerspectiveGrid_LeftVanishingPoint) , -%_1 /Bool (AI10 flattener preserve overprints) , -%_1 /Bool (AI10 flattener clip complex regions) , -%_75 /Int (AI10 flattener raster-vector balance) , -%_100 /Real (kAIParametersSubsetFontsRatioKey) , -%_; /Recorded , -%_/Dictionary : /NotRecorded , -%_1 /Int (LastArtboardID) , -%_1 /Bool (AI12 AI Outline Strokes) , -%_1 /Int (AI11 EPS Overprints) , -%_1 /Bool (AI11 EPS Clip Complex Regions) , -%_1 /Bool (AI12 AI Clip Complex Regions) , -%_([Medium Resolution]) /String (AI11 EPS Flattener Preset Name) , -%_1 /Bool (AI11 EPS Outline Strokes) , -%_1 /Int (AI12 AI Overprints) , -%_/Dictionary : /NotRecorded , -%_ /String (/attributes/job.pagerange) , -%_1 /Int (/attributes/job.printall) , -%_1 /Int (/attributes/job.skipblank) , -%_0 /Int (/attributes/job.reverseorder) , -%_0 /Int (/attributes/job.collate) , -%_() /UnicodeString (/attributes/job.artboardrange) , -%_1 /Int (/attributes/job.printallartboards) , -%_; (AI11 Print JobInfo Dict) , -%_0 /Bool (AI12 AI Outline Text) , -%_0 /Bool (AI11 EPS Outline Text) , -%_75 /Int (AI12 AI Raster/Vector Balance) , -%_0 /Bool (AI16 EPS Anti Aliasing) , -%_75 /Int (AI11 EPS Raster/Vector Balance) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/job.bitmapresolution) , -%_0 /Real (/attributes/pgmk.bleedoff.bottom) , -%_6 /Real (/attributes/pgmk.marksoff.bottom) , -%_1 /Int (/attributes/pgmk.bleedoff.useDocBleeds) , -%_([Standard]) /UnicodeString (/attributes/collectionName) , -%_1 /Int (/attributes/stl.defaultprinter) , -%_() /UnicodeString (/attributes/stl.printername) , -%_() /UnicodeString (/attributes/stl.ppdmodelname) , -%_1 /Int (/attributes/stl.defaultppd) , -%_() /UnicodeString (/attributes/stl.customppd) , -%_0 /Int (/attributes/ppr.custom) , -%_1 /Int (/attributes/ppr.default) , -%_595.32 /Real (/attributes/ppr.width) , -%_841.92 /Real (/attributes/ppr.height) , -%_0 /Real (/attributes/ppr.image.left) , -%_0 /Real (/attributes/ppr.image.top) , -%_595.32 /Real (/attributes/ppr.image.right) , -%_841.92 /Real (/attributes/ppr.image.bottom) , -%_(Durch Treiber definiert) /UnicodeString (/attributes/ppr.name) , -%_0 /Real (/attributes/cppr.width) , -%_0 /Real (/attributes/cppr.height) , -%_0 /Real (/attributes/cppr.woffset) , -%_0 /Real (/attributes/cppr.hoffset) , -%_0 /Int (/attributes/cppr.trans) , -%_0 /Int (/attributes/job.designation) , -%_2 /Int (/attributes/job.printbounds) , -%_0 /Int (/attributes/job.printofile) , -%_0 /Int (/attributes/job.printasbitmap) , -%_() /UnicodeString (/attributes/job.name) , -%_0 /Int (/attributes/clr.mode) , -%_0 /Int (/attributes/clr.convertspots) , -%_0 /Int (/attributes/clr.overprintblack) , -%_720 /Int (/attributes/crd.orientation) , -%_0 /Int (/attributes/crd.fliphorz) , -%_5 /Int (/attributes/crd.position) , -%_0 /Real (/attributes/crd.org.h) , -%_0 /Real (/attributes/crd.org.v) , -%_100 /Real (/attributes/crd.scale.h) , -%_100 /Real (/attributes/crd.scale.v) , -%_0 /Int (/attributes/crd.scplcy) , -%_1 /Int (/attributes/crd.sccnst) , -%_0 /Int (/attributes/crd.tiling) , -%_0 /Real (/attributes/crd.overlap.h) , -%_0 /Real (/attributes/crd.overlap.v) , -%_0 /Int (/attributes/pgmk.enabled) , -%_0 /Int (/attributes/pgmk.style) , -%_() /UnicodeString (/attributes/pgmk.customfile) , -%_() /UnicodeString (/attributes/pgmk.jobtitle) , -%_0.25 /Real (/attributes/pgmk.deflinewidth) , -%_0 /Int (/attributes/pgmk.bleed) , -%_0 /Int (/attributes/pgmk.crop) , -%_0 /Int (/attributes/pgmk.pageinfo) , -%_0 /Int (/attributes/pgmk.registration) , -%_0 /Int (/attributes/pgmk.colorbars) , -%_0 /Real (/attributes/pgmk.bleedoff.left) , -%_0 /Real (/attributes/pgmk.bleedoff.top) , -%_0 /Real (/attributes/pgmk.bleedoff.right) , -%_6 /Real (/attributes/pgmk.marksoff.left) , -%_6 /Real (/attributes/pgmk.marksoff.top) , -%_6 /Real (/attributes/pgmk.marksoff.right) , -%_1 /Int (/attributes/fnt.dlmode) , -%_0 /Int (/attributes/fnt.dlprfonts) , -%_0 /Int (/attributes/fnt.subst) , -%_3 /Int (/attributes/ps.level) , -%_1 /Int (/attributes/ps.binary) , -%_0 /Int (/attributes/ps.negative) , -%_0 /Int (/attributes/ps.compression) , -%_0 /Int (/attributes/ps.contone) , -%_0 /Int (/attributes/ps.l1compat) , -%_300 /Real (/attributes/ps.shaderes) , -%_0 /Int (/attributes/ps.setflatness) , -%_1 /Real (/attributes/ps.flatness) , -%_75 /Int (/attributes/xp.balance) , -%_300 /Int (/attributes/xp.rresolution) , -%_150 /Int (/attributes/xp.gresolution) , -%_0 /Int (/attributes/xp.converttext) , -%_1 /Int (/attributes/xp.convertstroke) , -%_1 /Int (/attributes/xp.clip) , -%_0 /Int (/attributes/xp.antialiasing) , -%_0 /Int (/attributes/xp.opco) , -%_0 /Int (/attributes/xp.opse) , -%_0 /Int (/attributes/xp.opdu) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/xp.name) , -%_0 /Int (/attributes/rdrs.enabled) , -%_0 /Int (/attributes/rdrs.func) , -%_1 /Real (/attributes/rdrs.flatteness) , -%_() /UnicodeString (/attributes/rdrs.annot) , -%_ /String (/attributes/rdrs.custom) , -%_1 /Int (/attributes/cm.mode) , -%_(Coated FOGRA39 \(ISO 12647-2:2004\)) /UnicodeString (/attributes/cm.profile) , -%_2 /Int (/attributes/cm.inteint) , -%_1 /Int (/attributes/cm.preservecmyk) , -%_0 /Int (/attributes/cm.preserveother) , -%_; (AI11 Print Attribute Dict) , -%_0 /Bool (AI15 Document PixelPerfect) , -%_150 /Real (AI12 AI Gradient and Mesh Resolution) , -%_300 /Real (AI12 AI Line Art and Text Resolution) , -%_150 /Real (AI11 EPS Gradient and Mesh Resolution) , -%_300 /Real (AI11 EPS Line Art and Text Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_1 /Bool (AI9 no overprint in composite) , -%_([Medium Resolution]) /String (AI12 AI Flattener Preset Name) , -%_0 /Bool (AI16 AI Anti Aliasing) , -%_1 /Bool (PerspectiveGrid_Snap) , -%_0 /Bool (PerspectiveGrid_ShowHide) , -%_/Dictionary : /NotRecorded , -%_([Illustrator-Standard]) /UnicodeString (/attributes/collectionName) , -%_0 /Int (/attributes/AI11PDF_PageInfo) , -%_0 /Real (/attributes/AI11PDF_BleedTop) , -%_0 /Real (/attributes/AI11PDF_BleedBottom) , -%_0 /Int (/attributes/AI11PDF_RegMarks) , -%_1 /Int (/attributes/AI11PDF_CompressArt) , -%_0 /Real (/attributes/AI11PDF_BleedRight) , -%_(Dies sind die Standardeinstellungen beim Speichern einer Illustrator-Datei als PDF-Dokument. Verwenden Sie diese Einstellungen, wenn Sie die Datei später in Illustrator oder in einem Layoutprogramm wie z. B. InDesign bearbeiten möchten oder der endgültige Verwendungszweck der Datei unbekannt ist.) /UnicodeString (/attributes/AI12PDF_Description) , -%_0 /Int (/attributes/AI11PDF_FastWebView) , -%_1 /Int (/attributes/AI11PDF_BleedLink) , -%_1 /Int (/attributes/AI11PDF_Overprint) , -%_0 /Int (/attributes/AI11PDF_ColorBars) , -%_0 /Int (/attributes/AI12PDF_Trapped) , -%_1 /Int (/attributes/AI14PDF_DocBleed) , -%_0 /Real (/attributes/AI11PDF_BleedLeft) , -%_1 /Int (/attributes/AI12PDF_Standard) , -%_0 /Int (/attributes/AI11PDF_TrimMarks) , -%_300 /Int (/attributes/AI11PDF_MonochromeDownsampleResolution) , -%_1 /Int (/attributes/AI11PDF_PreserveIllustratorEditingCapabilities) , -%_1 /Int (/attributes/AI12PDF_OutputIntentProfileNamePolicy) , -%_75 /Int (/attributes/AI10 flattener raster-vector balance) , -%_1 /Int (/attributes/AI11PDF_ColorDownsampleKind) , -%_0.25 /Real (/attributes/AI11PDF_TrimMarkWeight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputCondition) , -%_1 /Int (/attributes/AI12PDF_DestinationPolicy) , -%_() /UnicodeString (/attributes/AI12PDF_DestinationName) , -%_() /UnicodeString (/attributes/AI12PDF_RegistryName) , -%_0 /Int (/attributes/AI11PDF_PrinterMarkType) , -%_0 /Int (/attributes/AI16 flattener anti alias) , -%_6 /Int (/attributes/AI11PDF_GrayCompressionKind) , -%_1 /Int (/attributes/AI11PDF_GenerateThumbnails) , -%_0 /Int (/attributes/AI11PDF_FlattenTransparency) , -%_0 /Int (/attributes/AI12PDF_UsePrintTiling) , -%_256 /Int (/attributes/AI11PDF_GrayTileSize) , -%_100 /Int (/attributes/AI11PDF_SubsetFontRatio) , -%_1 /Int (/attributes/AI11PDF_GrayDownsampleKind) , -%_3 /Int (/attributes/AI11PDF_Compatibility) , -%_0 /Int (/attributes/AI10 flattener outline text) , -%_256 /Int (/attributes/AI11PDF_ColorTileSize) , -%_() /UnicodeString (/attributes/AI12PDF_OutputIntentProfileName) , -%_225 /Int (/attributes/AI11PDF_ColorDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkTop) , -%_1 /Int (/attributes/AI11PDF_PreserveAcrobatLayers) , -%_4 /Int (/attributes/AI11PDF_MonochromeCompressionKind) , -%_225 /Int (/attributes/AI11PDF_GrayDownsampleImageAbove) , -%_1 /Int (/attributes/AI11PDF_ColorCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkRight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputConditionIdentifier) , -%_1 /Int (/attributes/AI10 flattener clip complex regions) , -%_150 /Int (/attributes/AI11PDF_GrayDownsampleResolution) , -%_6 /Int (/attributes/AI11PDF_ColorCompressionKind) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/AI11PDF_FlatteningPresetName) , -%_150 /Real (/attributes/AI9 Mesh Rasterization Resolution) , -%_450 /Int (/attributes/AI11PDF_MonoDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkLeft) , -%_1 /Int (/attributes/AI12PDF_ColorConversionPolicy) , -%_1 /Int (/attributes/AI11PDF_MonochromeDownsampleKind) , -%_150 /Int (/attributes/AI11PDF_ColorDownsampleResolution) , -%_300 /Real (/attributes/AI9 Output Rasterization Resolution) , -%_1 /Int (/attributes/AI11PDF_GrayCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkBottom) , -%_1 /Int (/attributes/AI10 flattener outline strokes) , -%_1 /Int (/attributes/AI12PDF_ProfileInclusionPolicy) , -%_; (PDFPresetCollection) , -%_1 /Int (AI9 Document Setup panel) , -%_0 /Bool (AISaveMultipleArtboards) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/inklst.count) , -%_; (AI11 Ink List Dict) , -%_(Adobe PDF Preset.joboptions) /String (AI12 Job Options Name) , -%_7775 /Int (AI12 Job Options Size) , -%_/Binary : /ASCII85Decode , -%4?O&[+M4?:L\'M@ruc7FE2M8%144#00sDjDg,0$@;^.*@<,ps@sK2/ -%@;L!r%144#00sJtBgHQL@<4eSCi=>cD..'gF!,('Cia.s$6UHE6#LdY6#:7DF%:7ZGtDj]B4Z-,AmoLsAISth+>6#uFD4$WBjl'W -%Df0JbD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC.VCi=>cD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC:]@6#sC^g^o+>6&qDIdI!B-8j$AS-#n$6UHE6Xadu -%9j(+cEc5Q(Ch4_;VJ#h;ccak>VJ#i+EfLh%144#010/a7ri$`:i^JdBl%?'-r+\uALS&q+7Co^+n%,`+>6*#Ci=>[6W6Qn@:s.>Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+6>`77Rdo+6*#Ci=>cD..'g -%6tp.Q+?Vaq$6UH6+>68a@;Tt"ATJtu%144#+F<4+6S]@:OCt -%EZd%g2`OB5+n%,`+?hsu$6UHE -%6Z6dZE_1+VB4XJLGA_J1D/a<&<+p;`F(fK.A06*#Ci=>cD..'g6uR9eF(&p)Ch6RkE+L.F:2b#]%144#010Yo -%DfSEd@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+6*#Ci=>cD..'g9keKC -%ATMd+F`_>9DBLYk0F\@3+>6*#Ci=>cD..'g9keKCATMd+F`_>9DGY7fBk)E202G4M$6UHE6Z6dZE_1+VB4XtPF)Pl;FD5Z2+>G`- -%%144#010YoDfScfFED57B6-OVCh4_;.1HV,+>6*#D/`p*BjtdmBlnVoAThX$+>GK+%144#010YpE,oN2F&-7[ARfh'+>6]&B6+Lh -%+6*#DK]T3F@g=XB4Z-`Db4hWAU%cs+EVXHAISth+>6*&ART[l8jl-6*&ART[l8oJ06/Y0K1a@0K(dB0JY=90K1gB0K(mE -%0K(dB0JY=90K(aA0K(dB0K(gC0K(X>0K1jC0K)9P0K1gB0JY=90K1dA0K(dB0K1gB0K1gB0K(pF0K)?R0K(jD0K1dA0JY=90K1pE -%0K(mE0K(dB0K)?R0JY=90K1dA0K(X>0K1mD0K(pF0K)?R0K(jD0JY=90K(X>0K)?R0JY=90JkdD0K)9P0K)9P0K1jC0K1dA0K1gB -%0K1a@0K(X>0K1gB0K)BS0K1a@0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(X>0K1dA0JY=90K(X>0K)?R0JY=90JkL<0K(aA0K)BS -%0K([?0K(dB0JY=90JtO<0JkU?0Jk[A0JY=90K(aA0K)BS0K(^@0K1jC0K)0K)9P0K(X>0K)?R0JY=90K)BS0K)?R0JY=90K(dB0K(aA0K(pF0K1gB0K(pF0K)?R0K(jD -%0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(X>0K(jD0K(X>0K(pF0K)?R0JY=90K(pF0K)?R0JY=90JkdD -%0K)9P0K)9P0K1jC0K1dA0K1gB0K1a@0K(X>0K1gB0K)BS0K1a@0JZ!L0JY=90K)BS0K1a@0JY=90K1pE0K(mE0K(dB0K)?R0JY=9 -%0K2!G0K)BS0K1jC0JY=90K)?R0K(dB0K(dB0K(aA0JY=90K1gB0K)BS0JY=90K1[>0K)9P0K(X>0K(^@0K(dB0JY=90K(pF0K1gB -%0JY=90K(pF0K)?R0JY=90K(X>0JY=90K)9P0K(X>0K2!G0K)BS0K1jC0K1gB0JY=90K(X>0K1[>0K1[>0K)9P0K(pF0K(^@0K(X> -%0K1gB0K(pF0K)BS0K)?R0JY=90K1dA0K1jC0K(^@0K(mE0JY=90K(X>0K1dA0JY=90JkdD0K)?R0JkU?0K(dB0K1dA0K(pF0K(jD -%0K)?R0JZ!L0JY=90K)BS0K1a@0JY=90K1pE0K(mE0K(dB0K)?R0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)?R0K(X>0K)9P -%0JY=90K1jC0K1dA0K(dB0JY=90K)BS0K(gC0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(pF0K1dA0JY=9 -%0K1jC0K)?R0K)6O0K)?R0K)BS0K1pE0K)?R0JZ'\%144#5!BD_+6-$<+pDk@W#UgCi^_@Eckq&$6UHE6uR9eF(&p)Ch5tPCi=>cD..'gF!,('Cia.s$6UHE6uR9eF(&p)Ch6+W@60#@V'(9ChuRZDKKqBFE2M8%144#01B_eARnDO@S^rb -%Bl@m1+D,%uF(Gdf+60$@rGmh9lFof8SqmKATJu9Eckq&$6UHE7;cX4@:s-o/MR\A+Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+68a@;Tt"ATJtu%144#+F<4+6S]@:OCt -%EZd%g2`OB5+n%,`+?hsu$6UHE -%7ri$`8SqmKAOLH\DKB6'E,9)bBQ@[*BQ%]t+>GK+0JG17%144#01U%kGtDj]B4XJLGA_J1D/a<&<-`Fo+>6K.DIj7a+66*@G`-%144#01U%kGtDj]B4XeODGk%eDesQ66*@9DBLYk0F\@3+>6<' -%@:s.GASl@+Gp"gq1cR?O2@U!9+>6>`77T*e0JGk4Ci=>[6W6Qn@:s.>Bk)6-4?O&[+G__$6UH6+>6].Ch6.K -%BkM+$+>Pf4%144#+Pf4%144#5!BD_+6].Ch6[^A9;K-1,Us!$6UHT4q.iA -%+>6E,@r"JHF*),4Ch7W`@<,dnF!,RFF_)!h+6H-DJr*` -%@:s.>Bk)6-4?O&[+0b"I4+?hsu$6UHE9lFof8SqmKAOLH\DKB6'E,9)bBQ@[*BQ%]t+>GK+0JG17%144#026A&Db4eS -%B4XJLGA_J1D/a<&<-`Fo+>6K.DIj7a+9DGY7fBk)E202G4M$6UHE9lFof8SqmKAQ!)\DesQ..1HV,+C,E`+7Co^+6$%;Is9IATC^gEb/ZiF!,('Cia.s -endstream endobj 24 0 obj <>stream -$6UH6+6f)Ec+0\A4(9QFD5W8AISth+63#@6#sCi=MhD..'g6?6XGCNCV?Eckq&$6UH6+r![Ch5qRART@q+EVXHAISth+60.E+*Wp -%:gn!J+D,%uF(Gdf+Io+D,%uF(Gdf+6<(@r-9uAOpB@A7]dNDf9`/EZet&Cia.s$6UH6+=63+6H#FCA]gFC@gRH$=1IA9/kA.1HV,+6H#FCA]gFCA*j@VTIaF6H#FE2)*:gn!J;e^Ph+Bo9^+n%,`+6H#FE2)*7GH -%@qZ;Y+6JuD.Rd-@:Njk>7Co^+5AmoLsAISth+6Q"B4XkZ -%Bk;1(@6]7ART[JDes?4F$Xji025khDG>%eBln966Z6dZEcVZs+p#FE2M8%144#+U4EA5-KQCNCV1@;L!r%144#+63#@63&Ec"6]ASl!rFE8RHEckq&$6UH6+MFCfK$@ruF.AKYSnCia.s$6UH6+sZ9+qmATMg! -%@q?ce%144#+6W2D..6E"@n%,`+>6PZ7T_un -%AS#C=Dg56"<,u\i6>q*EAnH*qF=63+6PZ7T`W1@;p0sA0=63+6Q"EcYe[;aWoj -%D/Ej%FE9oiE^XhU8T&-Y+EVXHAISth+>6Q"EcYe`6UO[jDe<^"ATLF\6Z6gYASuU2+EVXHAISth+>6Q"F)t;oEc6)5BM))i7nIQ+ -%B4Z-,AmoLsAISth+>6Q3ATMF'G%F$ZE-Y8gB4W3-Eckq&$6UHE:i^,gATDs*6qKa?=\De(Cis<1+EVXHAISth+>6Q3ATMF'G%F*= -%;b:k=D]iY#Cia.s$6UHE:i^,gATDs*7VlLTDImm1+EVXHAISth+>6Q3ATMF'G%F3QCh@d-DIlCWAoAf(@;L!r%144#02Q\#F(KB8 -%APZ,o6Z6gYASuU2+D,%uF(Gdf+6Z8@<-Hd@:s-o0b"I4+>6Z9@WQ+& -%7W30dF!,RFF_)!h+6_^;IOHR6:XUbAoAeF;Is]`G%D*i+H-@;U&p$9UE[$9gWr -%F(KH4@:s.^AThctAISt~> -%_; (AI12 Job Options Data) , -%_; /NotRecorded , -%_; -%AI9_EndDocumentData -%AI11_BeginTextDocument -/AI11TextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24k&!+c.Q!+c.(!)rqs!-A3O!%e1M!,*f(0/=Y(+?ht35!C)Q4s2sM+>5Dk4?O`>3B8386Z6mZ<-`Fo7W30d+>5Dk -%4?O`>0H_eCrr>anGlVjbB`MQAA,oF+EWC"X/HAZKAH6?CFT?4X@/t5Jm0H`PC+?ht35!C)O4kJ.3L9!+>=p%4s3$Q+?ht34?O`>0H`J?+>5`8 -%+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H5lbEqDZF5HAH5:%D?+h[B`N2S7K@?,D?+c-+>5Jm0H`PC+?ht35!C)p+>5Gl>9H$j -%+>5Dk0d&YD+C-*R4s2L6+?Vb/0/+MQ+?Vb/0/+M24 -%0H_eCs8FtV2^ok&0d&1n5!C)O4G!&4s2sM+>5Dk./s8G48q;j+>5Gl0d&YD+?Vb/0/+Lsrr;s\r]M\Q -%0/4S(+?ht34?O`>0H_eCs8G7^5:I^.0d&1n5!C)O4G!&4s2sM+>5Dk./s8G6iKG%+>5Gl0d&YD+?Vb/ -%0/+Lsrr0H_eCs8P1\4"2:*0d&1n5!C)O4G!&4s2sM+>5Dk./s5h(a'YE -%+>5Gl0d&YD+?Vb/0/+Lsrr4)\+<2gQ0/4S(+?ht34?O`>0H_eCs"F^4#UplL0d&1n5!C)O4G!&4s2sM -%+>5Dk./s6#$nr)=+>5Gl0d&YD+?Vb/0/+Lsrr4Y^0FfNS0/4S(+?ht34?O`>0H_eCs"G!<&1J_T0d&1n5!C)O4G!&4s2sM+>5Dk./s8G2Z>T`+>5Gl1*AbE+?Vb/0/+Lsrr;sWr\u>L0/4S)+?ht34?O`>0H_eCs8G(Y3[l1)0d&4o5!C)O -%4P''4s2sM+>5Dk./s8G55m_p+>5Gl1*AbE+?Vb/0/+Lsrr;s_r]hnT0/4S)+?ht34?O`>0H_eCs8G@a -%67F$10d&4o5!C)O4P''4s2sM+>5Dk./s8H$3(;\+>5Gl1*AbE+?Vb/0/+Lsrr0H_eCs8QC)>q$mL0d&4o5!C)O4.3L8u+>P''4s2sM+>5Dk./s5h*?Z@O+>5Gl1*AbE+?Vb/0/+Lsrr4YY -%0F90N0/4S)+?ht34?O`>0H_eCs"Fg7$Rm2O0d&4o5!C)O4P''4s2sM+>5Dk./s6#%knMC+>5Gl1*AbE -%+?Vb/0/+Lsrr4Ya0G,`V0/4S)+?ht34?O`>0H_eCs"G0A'e(7Y0d&4o5!C)O4Y-(4s2sM+>5Dk./s8H -%?N4=\+>5Gl1E\kF+?Vb/0/+Lsrr4Z<0L7-10/4S*+?ht34?O`>0H_eCs"Heo6Ra-20d&7p5!C)O4Y-( -%4s2sM+>5Dk./s6#7kdF^+>5Gl1E\kF+?Vb/0/+Lsrr4ZD0M*]90/4S*+?ht34?O`>0H_eCs"Iq:@jrNR0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#KeS30+>5Gl1E\kF+?Vb/0/+Lsrr4[-0S_)"0/4S*+?ht34?O`>0H_eCs"KHeN[Z)(0d&7p -%5!C)O4Y-(4s2sM+>5Dk./s6#ShQ`b+>5Gl1E\kF+?Vb/0/+Lsrr4[G0VKp<0/4S*+?ht34?O`>0H_eC -%s"L3%UF@<=0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#V_G"t+>5Gl1E\kF+?Vb/0/+Lsrr4[O0W?KD0/4S* -%+?ht34?O`>0H_eCs"M>E_^Q]]0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#jY5dF+>5Gl1E\kF+?Vb/0/+Ls -%rr4\80]sl-0/4S*+?ht34?O`>0H_eCs"NjpmO9830d&7p5!C)O4Y-(4s2sM+>5Dk./s6#r%S+!+>5Gl -%1E\kF+?Vb/0/+Lsrr4YU0EimJ0/4S*+?ht34?O`>0H_eCs8N-"!@]-E0d&:q5!C)O4b3)4s2sM+>5Dk -%./s8H)ZLa*+>5Gl2'>(H+?Vb/0/+Lsrr4\L0`*:A0/4S,+?ht34?O`>0H_eCru_jq&1J_T0d&=r5!C)O4t?+4s2sM+>5Dk./s6#!\a[)+>5Gl2BY1I+?Vb/0/+Lsrr!0/4S.+?ht34?O`>0H_eCs"FI-!@]-E0d&Ct5!C)O45Dk./s5h,p4N`+>5Gl3$:CK+?Vb/0/+Lsrr0H_eCrrAeoUF@<= -%0d&J!5!C)O45Dk./s8H"oe`T+>5Gl0ea_64s2sM+>5Dk./s5HU&^o:+>5Gl0ea_64s2sM -%+>5Dk./s5HYQ1mV+>5Gl0ea_64s2sM+>5Dk./s5h0H`%u+>5Gl0ea_64s2sM+>5Dk./s5h1*AD&+>5Gl0ea_64s2sM+>5Dk./s6# -%!&+C%+>5Gl0eje74s2sM+>5Dk./s6#681_T+>5Gl0esk84s2sM+>5Dk./s6#6nh"X+>5Gl0esk84s2sM+>5Dk./s6#7PI:\+>5Gl -%0esk84s2sM+>5Dk./s6#82*R`+>5Gl0esk84s2sM+>5Dk./s6#8ha^'+>5Gl0esk84s2sM+>5Dk./s6#A2&Zc+>5Gl0esk84s2sM -%+>5Dk./s6#L+n?2+>5Gl0esk84s2sM+>5Dk./s6#LbOf;+>5Gl0esk84s2sM+>5Dk./s6#O"cbH+>5Gl0esk84s2sM+>5Dk./s8H -%&H5Gl0f'q94s2sM+>5Dk./s6#U+i;j+>5Gl0f1":4s2sM+>5Dk./s6#UbJSn+>5Gl0f1":4s2sM+>5Dk./s6#VD+kr+>5Gl -%0f1":4s2sM+>5Dk./s6#W%b/!+>5Gl0f1":4s2sM+>5Dk./s6#W\D:=+>5Gl0f1":4s2sM+>5Dk./s6#`%^7$+>5Gl0f1":4s2sM -%+>5Dk./s6#jtPpH+>5Gl0f1":4s2sM+>5Dk./s6#kV2BQ+>5Gl0f1":4s2sM+>5Dk./s6#mkF>^+>5Gl0f1":4s2sM+>5Dk./s6% -%+>Q;5+>5Gl0f1":4s2sM+>5Dk./s6%J24>X+>5Gl0f1":4s2sM+>5Dk./s6%cnbSL+>5Gl0f1":4s2sM+>5Dk./s6&!&I\*+>5Gl -%0f1":4s2sM+>5Dk./s6&EAMbe+>5Gl0f1":4s2sM+>5Dk./s6&J2?"1+>5Gl0f1":4s2sM+>5Dk./s6A!2$):+>5Gl0f1":4s2sM -%+>5Dk./s5H0E=*^+>5Gl0f:(;4s2sM+>5Dk./s5H+TQs?+>5Gl0fC.<4s2sM+>5Dk./s5HT`G*A+>5Gl0fC.<4s4,R5!C)Q4s3$Q -%+C-*C0d'[C4?O`>0H`%l5!C)p+?ht30/F_54kC!-J9Y!,hjT!,hj.!+>kF!,DRC!,DRW -%.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB4?O`>0H_r"2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n' -%0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`.-+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[ -%4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3' -%+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n'0/=Xurr4Yd.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR -%5!C)O4#3'+>5Jm./s8H>q$m[4s2sM+>5Gl/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&&# -%2'=P-+=R6h0F90N5!C)O4#3'+>5Jm./s6#$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4 -%+?ht34?O`>0d&'=P-+=R6h0G,`V5!C)O4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6hrsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9 -%+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM -%+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h&1J_c4s4,R5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C -%0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/ -%0/+MQ+>P&r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G[D2]uBK0/4S34>E%+>>E%+>>E%+C-*C -%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>P'!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*AS">p(dT+?Vb/0/+M245Dk>9G[D0ea_U+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o0d'aE0/4S34>E%+>>E%+>>E%+C-*C0d&7p -%5!C)Q4s3$Q+?Vb/0/+MQ+>P&o1*BjF0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;- -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Dk>9G[D0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q -%4s3$Q+?Vb/0/+MQ+>P&o2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht3>p)5Gl -%>9H$j+>5Dk>9G^E0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1E\Ir>p(dT+?Vb/ -%0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1E\D1+C-*C0d&S@ -%+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GaF0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1a"Xu>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk -%>9GaF0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S3 -%4p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GdG0d'aE0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8s+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB2'=[t>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2'?0I0/4S34>E%+>,Mo/i=bW+>5Gl0d&YD+?ht35!C)O4t?J+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG2]uBK0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9$+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=n%>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GPm>p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O4GSn>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GVo>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GYp>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O4G_r>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Gbs>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)p+?ht34?O`>0H`7r0/4SR+?Vb/0/+MQ+>t>s+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u* -%+C-*R4s3$Q+?ht34?O`>0HaRB2BXh!>p(dT+?Vb/0/+M24t?"+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`> -%0HaRB2BY"&>p(dT+?Vb/0/+M24t>s0HaXD0/4S34>E%+>>E%+>,Mo>p)GSn>p(dT+?Vb/0/+M24t>s1*BjF0/4S34>E%+>>E%+>,Mo>p)GYp>p(dT+?Vb/0/+M24t>s1a$'H0/4S34>E%+>>E%+>,Mo>p)G_r>p(dT+?Vb/0/+M245Dk>9GgH0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk2]sb.+BosN4G!E+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(E!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl -%1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(E# -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q -%4s3$Q+?Vb/0/+MQ+?(E'+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1*AbE+?ht35!C)O4GPm>p(dT -%+?Vb/0/+M245Dk>9GjI0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&% -%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt1E]sG0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]sh3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/ -%0/+M245Dk>9GjI0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u* -%+C-*C0d&4o5!C)Q4s3$Q+C-*R4s2sM+>5Dk3$9k/+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+?1K"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)k9I -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GmJ2]uBK0/4S34>E% -%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?1K'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GmJ0f1"Y+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2'?0I0/4S34>E%+>>E%+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB3$9q6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`> -%0H`@u0/4SR+?Vb/0/+MQ+?:Q!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3?U7'>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q)+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GpK0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

G_r>p(dT+?Vb/0/4S345Dk>9GpK0fC.[ -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0ea_'0d'[C4?O`>0HaRB0ea_)+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GXS+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXS+?1KL+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1*BjF -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0ea_)2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_)2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl -%1*AbE+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB -%0eje*2BZ9J0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0esk)0d'[C4?O`>0HaRB -%0esk++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GXU+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0esk+1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0esk+2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f'q.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S3 -%45Dk>9GXV+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0eskW+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp -%0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0fC.[+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f1"+0d'[C4?O`>0HaRB0f1"-+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXW+?(EK+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXW+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0f1"-0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0f1"-1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1, -%2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4G_r0/4SR+?Vb/0/+MQ+>G_r0d'aE0/4S34>E%+>>E%+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G_r1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>k9I+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G_r3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM -%+>5Dk0fC.-0d'[C4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`> -%0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht3 -%5!C)Q4s2sM+>5Dk>9GXY+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Mn0d&YD+?ht35!C)O4kC!-J9Y!,hjT!,hj.!+>kF!,DRC!,DRW.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB -%4?O`>0H_r"2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n'0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b) -%1*A"Eru`.-+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf< -%+?Vb/0/+M#/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3'+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n' -%0/=Xurr4Yd.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR5!C)O4#3'+>5Jm./s8H>q$m[ -%4s2sM+>5Gl/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&'=P-+=R6h0F90N5!C)O4#3' -%+>5Jm./s6#$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4+?ht34?O`>0d&'=P-+=R6h0G,`V -%5!C)O4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&&# -%2'=P-+=R6hrsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9 -%+>5Gl/M8e9+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h -%&1J_c4s4,R5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S34>E%+>,Mo/i=bW -%+>5Gl1E\kF+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk -%>9G[D1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD -%+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G[D3$;KL -%0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;*+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9G[D0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0eskW+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*A;/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0fC.[+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G^E0d'aE0/4S34>E% -%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>Y,t+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S3 -%45Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD -%5!C)Q4s3$Q+?Vb/0/+MQ+>Y-#+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT -%+?Vb/0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/ -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht3 -%5!C)p+?ht34?O`>0H`1p0/4SR+?Vb/0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9GaF2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>b3"+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1a"M1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E, -%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2BZ9J0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s4,R -%5!C)O4k8p0d'[C4?O`>0HaRB2'=Ur>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB2'=b!>p(dT+?Vb/0/+M24k9" -%+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=h#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG3?VTM0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0HaXD -%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0d'aE0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1*BjF0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>k8r1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1a$'H -%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2'?0I0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2BZ9J0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk2BXY-+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB2BXdu>p(dT+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S3 -%4>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM0/4S34>E%+>,Mo/i=bW+?ht3 -%5!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GSn>p(dT+?Vb/ -%0/+M240HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q -%4s3$Q+?Vb/0/+MQ+>t>s1E]sG0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G_r>p(dT+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`:s -%0/4SR+?Vb/0/+MQ+?(Dt+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1E]sG0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0eskW -%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+?1K$+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3$:.&>p(dT -%+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1K(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GmJ0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB3$9q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GmJ0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q -%5!C)Q4s3$Q+C-*R4s2sM+>5Dk3?Tt0+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%% -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3?U:(>p(dT+?Vb/0/4S345Dk>9GpK -%3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk -%>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht3 -%5!C)O4Gbs>p(dT+?Vb/0/4S34GPm0/4SR -%+?Vb/0/+MQ+>GPm0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/ -%0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I -%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXS+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk -%>9GXS+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0ea_)1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_) -%2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3) -%4s3$Q+?ht34?O`>0HaRB0eje*2BZ9J0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk -%0esk)0d'[C4?O`>0HaRB0esk++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXU+>Y-G -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E%+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q -%+?Vb/0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`> -%0HaRB0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C4?O`> -%0HaRB0f'q,+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXV+>Y-G+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GYp -%3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`),+>5Gl>9H$j+>5Dk>9GXW+>G!E+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S3 -%45Dk>9GXW+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q -%0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q -%5!C)Q4s3$Q+?Vb/0/+MQ+>G_r1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX -%+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q -%5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(. -%0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+= -%+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk0fC.-0d'[C4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q -%4s2sM+>5Dk>9GXY+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT -%+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB0fC.6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT -%+?Vb/0/4S345Dk>9GXY+>GPm>p(dT+?Vb/0/4S34Gbs0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM -%+>5Dk>9GXY+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht3>p)5Dk4?O`>0H_eCrr>OhGlVa_D#duEF9$@^FT>PE@/t'CFT?7YDZFYTDZEr@AH6TJCB.cCCB/K++>5Sp4?O`>0H`%l -%0/4S34#3'+>5Jm./s8H#Upl[4s2sM+>5Dk/M8n'0/=Xurr0H_r"2'=P-+=R6h+;cOM5!C)O4#3'+>5Jm./s5h*%5Dk/M8n'0/=Xurr4YX.3Lf<+?Vb/0/+M#/i=b) -%1*A"Es"Fd/+?ht34?O`>0H_r"2'=P-+=R6h0FTBQ5!C)O4#3'+>5Jm./s6#%OiMa4s2sM+>5Dk/M8n'0/=Xurr4Y`.3Lf< -%+?Vb/0/+M#/i=b)1*A"Es"G-9+?ht34?O`>0d&'=P-+=R6hrs:+s5!C)O4#3'+>5Jm./s8H4XhL;4s2sM+>5Gl/M8n' -%0/=Xurr<"(.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`1.+?ht34?O`>0d&'=P-+=R6h+<;mR5!C)O4#3'+>5Jm./s6##q6u\ -%4s2sM+>5Gl/M8n'0/=Xurr4Y[.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fm2+?ht34?O`>0d&'=P-+=R6h0FoTT5!C)O4#3' -%+>5Jm./s6#&Lehd4s2sM+>5Gl/M8n'0/=Xurr4Ye.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NQX+?ht34?O`>0d&'=P-+=R6h0EN[G -%5!C)O4#3'+>5Jm./s8H$n3;_4s2sM+>5Gl/M8n'0/=Xurr4YQ.3Lf<+?Vb/0/+M#/i#:,0/4S$/i#:,0/=XurrFul0d'[C4?O`>0HaRB0d&=r>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)p+?ht34?O`>0H`+n0/4SR+?Vb/0/+MQ+>P&o+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1*BjF0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q -%4s3$Q+?Vb/0/+MQ+>P&q+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1a$'H0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M, -%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G[D2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/ -%0/+MQ+>P'!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D3?VTM0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GPm>p(dT+?Vb/0/+M24P&o0d'aE0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o -%1*BjF0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GYp>p(dT+?Vb/0/+M24P&o1a$'H0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4G_r>p(dT+?Vb/0/+M24P&o2BZ9J0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Get>p(dT+?Vb/0/+M24p)5Gl>9H$j+>5Dk>9G^E0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF -%+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,t+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>Y-#+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>Y,p1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG -%+?ht35!C)O4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`1p -%0/4SR+?Vb/0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GaF2'?0I0/4S3 -%4>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>b3"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1a"M1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q -%+?Vb/0/+MQ+>b2q2BZ9J0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4k8p0d'[C -%4?O`>0HaRB2'=Ur>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4P'F+>5Gl4?O`> -%0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1E]sG0/4S34>E%+>,E,+>,E, -%+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB2'=b!>p(dT+?Vb/0/+M24k9"+C-*C0d&S@+>5Dk4?O`> -%0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=h#>p(dT+?Vb/0/+M245Gl -%0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG -%3?VTM0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0HaXD0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0d'aE0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1*BjF0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r -%1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2BZ9J0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk -%2BXY-+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT -%+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E% -%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH -%0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GSn>p(dT+?Vb/0/+M240HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s -%1E]sG0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p)G_r>p(dT+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1a"tG+?ht35!C)O4Get>p(dT+?Vb/0/+M24p)5Gl>9H$j+>5Dk>9GjI0d'aE0/4S34>E%+>,Mo -%/i=bW+>5Gl1*AbE+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`> -%0HaRB2]sq">p(dT+?Vb/0/+M245Dk4?O`> -%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl -%1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]t+' -%>p(dT+?Vb/0/+M24>E% -%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4G\q>p(dT+?Vb/ -%0/+M24>E%+>,Mo/i=bW -%+>5Gl1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O40HaRB3$9pu>p(dT -%+?Vb/0/4S345Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk -%>9GmJ2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?1K'+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+?1Ju0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q2+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GmJ0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2'?0I0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3$9q6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`@u0/4SR+?Vb/0/+MQ+?:Q!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9GpK1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U1% -%>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GpK3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U=)>p(dT+?Vb/0/4S345Dk>9GpK0ea_U+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB3?U%4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/ -%0/4S345Dk>9GpK0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34GPm -%1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0ea_/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB0ea_0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/ -%0/4S345Dk>9GXS+>GPm>p(dT+?Vb/0/4S345Dk>9GXS+>GVo>p(dT+?Vb/0/4S345Dk>9GXS+>GYp -%>p(dT+?Vb/0/4S345Dk>9GXS+>G\q>p(dT+?Vb/0/4S345Dk>9GXS+>G_r>p(dT+?Vb/0/4S345Dk>9GXS+>Gbs>p(dT+?Vb/0/4S34GSn0/4SR+?Vb/ -%0/+MQ+>GSn2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GSn2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S++?ht35!C)Q4s2sM+>5Dk>9GXT+>Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p -%+?ht34?O`>0H`)*+>5Gl>9H$j+>5Dk>9GXU+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`> -%0HaRB0esk-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl -%1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+?:QM -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>GVo0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f1"Y+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht3 -%5!C)Q4s2sM+>5Dk>9GXU+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)+ -%+>5Gl>9H$j+>5Dk>9GXV+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f'q.+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%4p(dT+?Vb/0/4S345Dk>9GXV+?:QM+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f'qX+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>GYp0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f1"+0d'[C4?O`>0HaRB -%0f1"-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXW+>Y-G+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>G\q2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3$;KL -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f1"-2BZ9J0/4S3 -%4,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f:(,0d'[C4?O`>0HaRB0f:(.+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXX+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1, -%1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB0f:(2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f:(4+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f:(5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXX+>GPm>p(dT+?Vb/0/4S34G_r0eskW+>5Gl4?O`>0d&S@ -%+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`).+>5Gl>9H$j+>5Dk>9GXY+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB0fC.1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>k9I+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXY+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD -%0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXY+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC./0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3) -%4s3$Q+?ht34?O`>0HaRB0fC./1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s4,R5!C)Q -%4s2L7+>b3)4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H=TDk1CB/JWD#eJSD?+ST=o`+6D?+GP@/t'CFX\Fd2'>"D+>5Dk0H`#'+?Vb/ -%0/+MQ+?Vb/0/+M#/i=b)1*A"Es8N?R+?ht34?O`>0H_r"2'=P-+=R6hs#VYP5!C)O4#3'+>5Jm./s8H>:C[Y4s2sM+>5Dk -%/M8n'0/=Xurr4)X.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`:1+?ht34?O`>0H_r"2'=P-+=R6h0F0*M5!C)O4#3'+>5Jm./s6# -%$7R)]4s2sM+>5Dk/M8n'0/=Xurr4Y\.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fp3+?ht34?O`>0H_r"2'=P-+=R6h0G#ZU5!C)O4#3'+>5Jm./s6#'Ib.g4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6h -%s'7&r5!C)O4#3'+>5Jm./s5h)(?[l4s2sM+>5Gl/M8n'0/=Xurr4)].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fa.+?ht34?O`> -%0d&'=P-+=R6h0FK#3'+>5Jm./s6#%4ND`4s2sM+>5Gl/M8n'0/=Xurr4Y_.3Lf<+?Vb/0/4S$/i=b)1*A"E -%s"G$6+?ht34?O`>0d&'=P-+=R6h0GQ#Z5!C)O4#3'+>5Jm./s8H%OiMa4s2sM+>5Gl/M8n'0/=Xurr4YR.3Lf<+?Vb/ -%0/4S$/i=b)1*A"Es8NKV+?ht34?O`>0d&'=P-+=R6h0EEUF5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru*=/5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru3C05!C)O4#3$2'=P,+>#3$2'=P-+=R6h0`*:A5!C)O4#3$2'=P,+>#3$2'=P- -%+=R6h+:otE5!C)p+?ht30/=Y445Gl>9H$j+>5Dk>9GXC2'?0I0/4S34,E, -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk1*A5)+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O -%4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*ACr>p(dT+?Vb/0/+M2 -%4P&s+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB1*ALu>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AS">p(dT+?Vb/0/+M24P&o0HaXD0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4GSn>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4GVo>p(dT -%+?Vb/0/+M24P&o1E]sG0/4S34>E%+>,Mo -%/i=bW+>5Gl1E\kF+?ht35!C)O4G\q>p(dT+?Vb/0/+M24P&o2'?0I0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Gbs>p(dT+?Vb/0/+M2 -%4P&o2]uBK0/4S34,Mo/i=b(2'?0I5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk1E\>*+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB1E\Ir>p(dT+?Vb/0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E -%0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB1E\D1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j -%+>5Dk>9GaF0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C -%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk -%>9GaF0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ -%+>k8r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S( -%+?ht35!C)Q4s2sM+>5Dk>9GdG1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9! -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E, -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB2'=k$>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0fL4\+>5Gl -%4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I5!C)Q4s3$Q+C-*R4s2sM+>5Dk2BXY-+BosN4G!E+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M2 -%45Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD -%0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM -%0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p)GSn>p(dT+?Vb/0/+M240HaRB2BX_0+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1E]sG0/4S34>E%+>,Mo/i=bW -%+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G_r>p(dT -%+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo -%/i=bW+>5Gl1a"tG+?ht35!C)O4Get>p(dT+?Vb/0/+M24,Mo>p) -%0H`:s0/4SR+?Vb/0/+MQ+?(Dt+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1E]sG -%0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O -%45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI -%0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh6+C-*C0d&S@+>5Dk4?O`>0HaRB/i=b(2'=M/ -%+C-*R4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF -%+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1K$+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3$:.&>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+?1K(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GmJ0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+?1Ju1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q4+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GmJ0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk3?Tt0 -%+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/ -%0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%3?U:(>p(dT+?Vb/0/4S345Dk>9GpK3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U%6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/ -%0/4S34GPm0/4SR+?Vb/0/+MQ+>GPm0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXS -%+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXS+?1KL+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)2'?0I -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_)2BZ9J0/4S34>E% -%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht3 -%5!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0eje*2BZ9J -%0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0esk)0d'[C4?O`>0HaRB0esk++C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXU+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C4?O`>0HaRB0f'q,+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXV+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2]uBK -%0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GYp3$;KL0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`),+>5Gl>9H$j+>5Dk>9GXW+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q -%0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ -%1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG -%+?ht35!C)p+?ht34?O`>0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r1a$'H -%0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht3 -%5!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3?VTM -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.0HaXD0/4S34>E% -%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0fC.-0d'[C -%4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXY+>Y-G+>5Gl4?O`> -%0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3 -%4?O`>0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0fC.6+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXY+>GPm> -endstream endobj 25 0 obj <>stream -p(dT+?Vb/0/4S34Gbs0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>G\q>p(dT+?Vb/0/4S3 -%45Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)/+>5Gl>9H$j+>5Dk>9GXZ+>G!E+>5Gl4?O`>0d&S@ -%+>5Dk>9GOU+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O4Ghu0/4SR+?Vb/0/+MQ+>Ghu0d'aE0/4S34,Mo -%/i=b(2'?0I5!C)Q4s3$Q+C-*R4s4,R5!C)Q4s2L7+>P''4s3$Q+?ht3>p(dT+BosN4=p%4s2sM+>5Dk0d&YD+?Vb/0/+M( -%+?ht34?O`>0H`.o5!C)p+?ht30/Oe64kJ!+[N$0/Xk74I.0(n!/c[p4 -%3rhJF>l]9QU*(-m)'BqB0HgNA#quB6!\ad3#qu`@%58;H&MOqR5qkY[75.4c8MFX.K.r!5LG4`BRkU?dSM6WhTeN5qV(ef$WA)4D -%j"TRKk:l5Gl./s5H>UTSV!.+^@!2gqV+<3'@0FBKB0FfcJ0G6&Rrr`9( -%rs8WIs#^6bs5b[P0/=Xurr4)T+=/-W.3L9"+=R6h0EEj/rs\o;.3L9#+>G!&4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H;ZL_9AcQp% -%+>5Sp4?O`>0H_eCru`1%*A@LJ!\ad3#qu`@%58;H&MOqRSM6Whq_7t&rr3$!$3(G6%f[II)uh#[4o\e:+>5Gl./s5h(a'eP#VZT> -%$nr/F&24gu#ld!d>:C[J1*A"Eru`!u,p4N`+>5Mn./s6#!AFTT%0$ed+>5Po1*AbE+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+?Vb/ -%0/+M'+?ht3>p)5Sp4?O`>0HaRB4?O`>0H`J?+>5Dk./s5H>6%CuDZFeXD#duEC]J#HEr[<_=o`+6B`MWCBE2TDD?+8KDZFeX -%D#duEF9#Sq+>5Vq4?O`>0H`+n0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr0eP.&0/t(. -%+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0+D,%uF(HII -%1,'hmEckq90/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C-AmoLsAKWW]2BZU?Cia/10/>I/FE2M8+>5K0 -%+D,%uF(HII1-$Ih@;L!r+>5N)+>=ok1GL"a@;L!r+>5N++D,%uF(HII1G^.c@;L!r+>5N-+D,%uF(HII1Gp:0+>5N/+>>E%+>5N0 -%+>P&m1H6L61*A5+3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b84s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#* -%3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ -%0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD -%5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%uF(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9 -%Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q -%0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)f -%Ch6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p -%+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kL!*q#r0/Xk74=ok0d&/&0H`#(+>>E%+>5Mn0J5%%0/Oe*/heD$2'=S*0H`#,+>Ful2]sh-1*A50+>=ok -%3?WEaF_)[K0ea_.+>5H(+>P&m0esk,+>5H*+>=ok0f1"/2D-[+0/5=,FE2M8+>5H-+>,Mo0/5C.>9GOX+>GK&+>GK)1E]sG0/5F/ -%>9GUP0H`&%0H`&%0HaXD0/5I0>9GXQ0H`)&0H`)&0HaXD0/>4(2BXY.0d((:Cia/10/>:*0H`#(1E^:@,0H`#(2'=Rq -%0/>I/05bK?+>5K.+D,%uF(HII1,pC0DJO1AmoLsAKWW^0H`J?+?ht30/G=*1H$j>+>5N++?Vb/5!C)B1G^.-+>5N-+>=ok -%1Gp:/+>5N/+>7VHC`kAe2]sds0/GR1AmoLsAKWW^3?U!u0/P@*1*AbE+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L<+?Vb/ -%0/+MQ+?Vb/0/+M245Jm>9GXQ -%0H`&%0H`&%0H`)&0H`2,/i>RJ0d&5-/hf%8+C-*C2]sh7/heD$3$9q8/heD34s3$Q+?ht3>p)Y,n0d'[C4?O`>0H_eCrr=/j+>5Gl./s5H0e"5/4s2sM+>5Dk./s5H%4NDQ0d%nDrr=r++?ht34?O`>0H_eCrr5Gl -%./s5H0I\,.4s2sM+>5Dk./s5h>U_*E0/4Rtrr2sU.3Lf<+?Vb/0/+Lsrr2s#.3L8u+=R6h!&Z2J5!C)O45Jm0H`#)+>,N21E\>-+>,H+1E\>.+>,N21E\>/+>,H+ -%1E\>0+>,Sq0/t(rEckq900(.Z+?Vb/0/+M&+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`(m -%0/4Rtrr4)].3L9!+=R6h+<;mR0/F_!rr4)Y.3L9#+=R6h+;lUN5!C)O4P&m0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk1E\>*+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M*+>5Gl./s5h -%*[r3b1*A"Eru`:1+>5Mn./s5h)CZd^1a"4Gru`.-+?ht34?O`>0H`4q0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h -%+;cOM5!C)O4t>q0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk2]sb.+=R6h+<2gQ0/=Xu -%rr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M.+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht3 -%4?O`>0H`@u0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4GVo0/4Rtrr4)\.3L9!+=R6h+<;mR -%0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4GYp0/4Rtrr4)].3L9!+=R6h+<;mR0/F_!rr4)Y.3L9#+=R6h+;lUN5!C)O4G\q0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4G_r0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_! -%rr4)X.3L9#+=R6h+;lUN5!C)O4Gbs0/4Rtrr4)].3L9!+=R6h+<;mR0/F_!rr4)Y.3L9#+=R6h+;lUN5!C)O4Ghu -%0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4P\p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z -%.3L9#+=R6h+;cOM5!C)O4P_q0/4Rtrr4)^.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Pes0/4Rt -%rr2u!.3L9!+=R6h!4s[&0/F_!rr4*$.3L9#+=R6h+?Cqo5!C)O4Po!0/4Rtrr4)^.3L9!+=R6h+<;mR0/F_!rr4)Y.3L9# -%+=R6h+;lUN5!C)O4Pr"0/4Rtrr4Ym.3L9!+=R6h0HMYc5!C)O4Y\o0/4Rtrr4Y\.3L9!+=R6h0F]HR5!C)O4GPm0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4GSn0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_! -%rr4)X.3L9#+=R6h+;lUN5!C)O4Get0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Gl! -%0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4PVn0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z -%.3L9#+=R6h+;cOM5!C)O4PYo0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4Pbr0/4Rt -%rr4)^.3L9!+=R6h+<;mR0/F_!rr4)Z.3L9#+=R6h+;lUN5!C)O4Pht0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9# -%+=R6h+;lUN5!C)O4Pku0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Y_p0/4Rtrr4)^ -%.3L9!+=R6h+<2gQ0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ybq0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h -%+;lUN5!C)O4Yer0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4Yhs0/4Rtrr2u!.3L9! -%+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ykt0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN -%5!C)O4Ynu0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4Yr!0/4Rtrr2u!.3L9!+=R6h -%!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Yu"0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O -%4Z##0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr2s\.3L9#+=R6h!'VhS5!C)O4bbp0/4Rtrr4)^.3L9!+=R6h+<2gQ -%0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4beq0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr2s\.3L9#+=R6h!'VhS5!C)O4bhr0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4bks0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_! -%rr4)X.3L9#+=R6h+;lUN5!C)O4bnt0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4*$.3L9#+=R6h+?Cqo5!C)O4bqu -%0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4bu!5!C)O4c#"5!C)O4c!C)p -%+>5H(+>t>q0f:(945H-+D,%uF(HIX4s2L5+BosN4>E%+>5Po0J5%%0/Xk+/heD$1GBq645N*+>Gf-1b^X?1*A5+1E\@o0/GI.0H`PC+>5Vq0H`PC -%+?ht30/4S)1*AbE+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M245Vq4?O`>0H`%l0/4S*1bLaA1,^s3 -%0/aq-/heD$3?U".0H`#+1E\eB+>5`8+>6)J8Q98GFAQC[DKI!S2'==Hrr>=bD?+STD?(dZ2ZPT^+>5Dk4?O`>0H`(m0/4SR+>GK& -%+>,B.0Jb^3/i#+:3AM^01,UaG3$;KL5!C)Q4s2L92B[*^F_)[K2DcO20J5%%0/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)Q4s3$Q+?ht30/4S) -%1*AbE+C-*R4s2L50H`J?+>5Dk1a"G,+EVXHAKX0#+?ht30/4S34=p%4s4,R0/=YS+?Vb/00)$802P"Y0/Xk+ -%+>5Vq>9H$j+>5`8+>62,0/5.'0H`#&+?Vb/0/+MQ+?);@3A*3I2DR-43&*9I/iGCA1c6C]+?ht30/4SR+>>E%+>>E%+>Z#:/i5=B -%2_uR32D-pF2D@-6>p(dX+>P&m2BZ3H4?O`>3B838;BRVI+BosB/heD%/heD(3B&QI1,h-J+>Pi-2`*EH3?VTM0/aqW+?Vb/00)$8 -%02`oG0d'[C0J5%%0J5%%1H@BH1bq!K1E\G2/iPUF0KC7]+>5Sp1*A5.+BosN45H'+>Pc+3&ETR0d&,(1a"A*3%d0M -%2DR-40/5=,2_HpD2`WW90/+M24p)5Gl>9GUP0H_r&3%d0M2DR-41H@BH1bq!K1E\V/1c.-O -%1*BjF0/aqW+?Vb/00)$802iuH0f:(94P\p0/=Y(+>5SpAmoLsAKX0#+>5Vq>9H$j+>5`8+>65-0/4SR+>>E%+>#?./iYgK -%1,U113ArKL3&NWO+?(o01cIEM+C-*C2'?*G1c$711a"Y5+>Yhs2)6:12BXk3+>bhr1cZ[91E\Cp1H$@43$:"9+>Yu"0d&>/+>kqt -%2)l^82'=\7+>G!E+>5\s>9Gjb3B8]M2)[3I+?2)50J54@3&ic<3&I?3B83A0fV'D3A<3J1E]sG00(.Z+?);@3A*3I2DR-4 -%3&*9E/i>OH3&Mg<1bg[:1c[HJ3?U:93&WBL0JYUD+C-*C0ejemEckq90/54)/M]:<3&ifO2'=P,1E\V/1c.-O1*A5*0H`%l5!C)p -%+?ht3>p)p)5Dk1*A5)+>GW(0H`#(+D,%uF(HII1E^:=ok3?U".0H`#'0H`&%0H`#'0d&1n0/54)0H`#'1E\@o0/5:+0H`#'2'=Rq0/5@- -%0H`#'2]se,0H`#'3$<<`F_)[K0f^@g@;L!r+>5K(+EVXHAKWW]0d((:Cia/10/>:*AmoLsAKWW]1E^:@,AmoLsAKWW] -%2'?L>Cia/10/>F.AmoLsAKWW]2^!3_F_)[K1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII1GU(b@;L!r+>5N,+D,%u -%F(HII1Gg4d@;L!r+>5N.+>Ful1H$@0/heD$1H-F3+>5N1+>bhr0/GU20H`#*0Hat9Cia/10/PC+1*A5,1*A7n0/PI-4?O`>0H_u* -%+?ht30/PL.1*A5,2'=Xs0/PR02]sb12]sds0/PX20H`#*3?Tn./heD$2)$.)0eP.&0/YI,0H`#+1*C1;Cia/10/YO.4?O`>3B838 -%;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0J5%%0J5%%0J5%%>p)3B838;e^)fCh6FOBl8#80/+M2 -%4Ful0d'[C0eP.&0J5%%0J5%%0J5%%>p)3B8386U=:CAU&;`Ch7KpATAnW4s2L92B[*^F_)[K2)cXi -%@;L!r+>5T3+EVXHAKWW`3?VpBCia/10/bL,AmoLsAKWWa0d&.m0/bR.0H`#,1E\D)0H`#,1a"V-0H`#,2'=S*0H`#,2BZ3H>p(dY -%2]up(dY3$9mt0/bg50H`#-0H`%l0/kU.1a"G11*A8'0H`#-1E\A(0H`#-1a$C=Cia/10/ka2AmoLsAKWWb2BZU?Cia/10/kg4 -%FE2M8+>5Z5+EVXHAKWWb3?UFH+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`)&0H`)&0H`&%0HaXD5!C)Q4s2L< -%0Hat9Cia/10/t[/0H`#.1*AA*0H`#.1E\J+0H`#.1a$C=Cia/10/tg30H`#.2BY+E+>5`8+>6Z-D/a<&6ZmHlDf%sT@5]5+>GQ(/heD$3&i%&Eckq95!C)B1E\eB+>5Dk0H`#'+>>E%+>5Jm0J5%%0/F_)/heD$1a"J)0H`#++>>E%+>5Vq0d&,.+>GK( -%+>5\s0H`#/+EVXHAKWW\0H`7r0/51(1*A5)1*A=p0/57*0H`#'1a"S4/heD$0f:(qEckq90/5@-/i=b)0fL4Z+>,Vr0eP.&0eP7< -%+C-*C0fU:[+>>E%+>>E%+>>E%+C-*C0f^@\+>GK&+>GK&+>GK&+C-*C1,'h/+>5K)+D,%uF(HII1,9t++>5K++D,%uF(HII1,L+- -%+>5K-+>=ok1,g=/DJF.AmoLsAKWW]3$9klBl"nF1-$Ih@;L!r+>5N)+?Vb/5!C)B1GL".2D-[+0/G@+4?O`M4s2L71E\@o -%0/GF-0H`#)2'=Rq0/GL/05bK?+>5N0+>=ok1H6Lh@;L!r+>5N2+>=ok1b^%-+?ht35!A~> -7747 7891 /RulerOrigin , -; -/AI11UndoFreeTextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H9`TG= -%EWBeR@/sg5Jm0H`PC+?ht35!C)p+?ht30/Xk74kD -%!$D8/!,)@@!-/'J!+Q"N!+c.N!$D8?!-A3d!,MXH!*q#r0/aq84Ful0d&2+/heD$1*C1;Cia/10/F__@;L!r+>5PoFE2M8 -%+>5Sp1,gg>+>5Vq0eP.&0/k"./heD$3$9mt00(.//heD$0ea_(/heD$0eje*+>5H)+>=ok0f'q++>5H++>=ok0f:(-+>5H-+>=ok -%0fL4//heD$0fU:tEckq90/5I0AmoLsAKWW]0Hat9Cia/10/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C- -%AmoLsAKWW]2BZU?Cia/10/>I/AmoLsAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l0/G=*AmoLsAKWW^1*C1;Cia/10/GC,AmoLs -%AKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR10H`#)3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b8 -%4s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#*3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z- -%D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%u -%F(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3 -%>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_ -%F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B -%3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kH!,)?T!)il>!-nQ\!+c.9.3L9$+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#* -%+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K -%0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLs -%AKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L7 -%0d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ0H`%l5!C)p+?ht35!C)B0d&S@+>5Dk4?O`>0H`J?+>5Dk0H`#'+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R -%5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\ -%.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h -%)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"E -%rrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O -%4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9" -%+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t -%0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nD -%ru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2 -%+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm -%./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l18 -%4s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6# -%*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1 -%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm -%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+,0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l -%4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h -%*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nDru`@3+>5Jm./s5h*%5Po./s5h)(?[l4s2sM -%+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L1 -%0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1 -%+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nD -%rrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K -%+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9# -%+?ht30/5@-AmoLsAKX0#+>5Jm4?O`>0H`(m0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr -%0eP.&0/t(.+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0 -%+D,%uF(HII1,'h_@;L!r+>5K)+D,%uF(HII1,9ta@;L!r+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/ -%+D,%uF(HII1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful -%1H$@0/heD$1H-F3+>5N1+>=ok1H?R3+>5Q*+D,%uF(HII1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8 -%+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4-+>5T-+D,%uF(HII2)?@;45Dk -%0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF<45Dk0d&,(+BosC/heD%/heD% -%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%u -%F(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z- -%+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/ -%00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW( -%+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$802lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z -%4s2L7+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q -%0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%% -%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLsAKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e -%@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L70d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ -; -%AI11_EndTextDocument -%%EndSetup -%AI5_BeginLayer -1 1 0 1 0 0 1 0 79 128 255 0 50 0 Lb -(badge) Ln -%_/ArtDictionary : -%_/XMLUID : (badge) ; (AI10_ArtUID) , -%_; -%_ -1 A -0 Xw -0 A -u -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -0 /StoryIndex , -/Art : -X= -0 A -0 Xw -1 Ap -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -691.6631 -313.373 m -294.2363 -313.373 L -294.2363 -286.627 L -691.6631 -286.627 L -691.6631 -313.373 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (characters-src) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -296.4629 -303.5742 m -296.2188 -307.2637 296.8457 -310.7441 301.7881 -310.7441 c -307.5313 -310.7441 307.252 -306.6719 307.252 -303.2266 c -307.252 -286.625 L -308.7842 -286.625 L -308.7842 -303.749 L -308.7842 -306.6719 308.8887 -312.0674 301.9619 -312.0674 c -295.2441 -312.0674 294.9316 -307.2988 294.9316 -303.5742 C -296.4629 -303.5742 l -f -*U -*u -322.2168 -286.625 m -332.0322 -311.4756 L -330.3965 -311.4756 L -327.2637 -303.5059 L -315.3604 -303.5059 L -312.1934 -311.4756 L -310.5576 -311.4756 L -320.5469 -286.625 L -322.2168 -286.625 l -f -1 D -326.7773 -302.1826 m -321.4512 -288.1211 L -321.3818 -288.1211 L -315.8477 -302.1826 L -326.7773 -302.1826 l -f -*U -*u -0 D -340.1758 -310.1523 m -340.2441 -310.1523 L -348.8418 -286.625 L -350.373 -286.625 L -341.0801 -311.4756 L -339.3047 -311.4756 L -330.0469 -286.625 L -331.6484 -286.625 L -340.1758 -310.1523 l -f -*U -*u -359.6299 -286.625 m -369.4453 -311.4756 L -367.8086 -311.4756 L -364.6768 -303.5059 L -352.7734 -303.5059 L -349.6055 -311.4756 L -347.9707 -311.4756 L -357.959 -286.625 L -359.6299 -286.625 l -f -1 D -364.1895 -302.1826 m -358.8643 -288.1211 L -358.7949 -288.1211 L -353.2598 -302.1826 L -364.1895 -302.1826 l -f -*U -*u -0 D -387.4375 -293.7246 m -387.2637 -289.4785 384.0615 -287.3555 379.4668 -287.3555 c -376.6484 -287.3555 372.6445 -288.5391 372.6445 -292.6465 c -372.6445 -296.6484 376.8916 -297.3105 381.1035 -298.1797 c -385.3496 -299.0508 389.5957 -300.1289 389.5957 -305.0713 c -389.5957 -310.2227 384.6523 -312.0674 380.8594 -312.0674 c -375.0469 -312.0674 370.3125 -309.666 370.3828 -303.2617 c -371.9141 -303.2617 L -371.6016 -308.6914 375.9512 -310.7441 380.8594 -310.7441 c -383.8525 -310.7441 388.0645 -309.3867 388.0645 -305.0713 c -388.0645 -300.8594 383.8184 -300.1289 379.5713 -299.2588 c -375.3594 -298.3887 371.1133 -297.3789 371.1133 -292.6465 c -371.1133 -287.877 375.5342 -286.0332 379.4668 -286.0332 c -384.6523 -286.0332 388.7246 -288.2598 388.9688 -293.7246 C -387.4375 -293.7246 l -f -*U -*u -412.4951 -294.0381 m -411.834 -289.8613 408.1797 -287.3555 404.0371 -287.3555 c -397.5293 -287.3555 393.7354 -292.6807 393.7354 -299.0508 c -393.7354 -305.4199 397.5293 -310.7441 404.0371 -310.7441 c -408.875 -310.7441 412.6348 -306.4287 412.9121 -301.7998 c -414.4443 -301.7998 L -413.8867 -307.7168 409.502 -312.0674 404.0371 -312.0674 c -396.5898 -312.0674 392.2031 -306.3242 392.2031 -299.0508 c -392.2031 -291.7754 396.5898 -286.0332 404.0371 -286.0332 c -412.8438 -286.0332 413.9922 -293.6895 414.0264 -294.0381 C -412.4951 -294.0381 l -f -*U -*u -417.6445 -286.625 m -428.0166 -286.625 L -432.3672 -286.625 435.8828 -288.2256 435.8828 -293.0293 c -435.8828 -296.3701 433.8633 -298.8418 430.5566 -299.3984 c -430.5566 -299.4678 L -434.2461 -299.8848 435.1514 -302.2168 435.3945 -304.793 c -435.6387 -307.3691 435.2207 -310.1523 436.2305 -311.4756 c -434.5254 -311.4756 L -433.5859 -309.7695 434.1426 -306.916 433.8633 -304.5146 c -433.5508 -302.1133 432.3672 -300.1641 428.0166 -300.1641 c -419.1758 -300.1641 L -419.1758 -311.4756 L -417.6445 -311.4756 L -417.6445 -286.625 l -f -1 D -428.0166 -298.8418 m -431.6367 -298.8418 434.3516 -297.1357 434.3516 -293.1328 c -434.3516 -289.374 431.3574 -287.9473 428.0166 -287.9473 c -419.1758 -287.9473 L -419.1758 -298.8418 L -428.0166 -298.8418 l -f -*U -*u -0 D -439.5703 -286.625 m -441.1016 -286.625 L -441.1016 -311.4756 L -439.5703 -311.4756 L -439.5703 -286.625 l -f -*U -*u -445.4863 -286.625 m -456.0664 -286.625 L -458.8867 -286.625 463.3066 -287.6338 463.3066 -293.5859 c -463.3066 -297.9365 460.4531 -300.4082 455.5098 -300.4082 c -447.0176 -300.4082 L -447.0176 -311.4756 L -445.4863 -311.4756 L -445.4863 -286.625 l -f -1 D -447.0176 -299.085 m -455.7539 -299.085 L -460.2441 -299.085 461.7754 -296.127 461.7754 -293.5508 c -461.7754 -291.7061 460.9395 -287.9473 455.9629 -287.9473 c -447.0176 -287.9473 L -447.0176 -299.085 l -f -*U -*u -0 D -463.374 -287.9473 m -463.374 -286.625 L -482.4121 -286.625 L -482.4121 -287.9473 L -473.6416 -287.9473 L -473.6416 -311.4756 L -472.1104 -311.4756 L -472.1104 -287.9473 L -463.374 -287.9473 l -f -*U -*u -513.1436 -294.0381 m -512.4814 -289.8613 508.8271 -287.3555 504.6855 -287.3555 c -498.1768 -287.3555 494.3828 -292.6807 494.3828 -299.0508 c -494.3828 -305.4199 498.1768 -310.7441 504.6855 -310.7441 c -509.5234 -310.7441 513.2822 -306.4287 513.5605 -301.7998 c -515.0918 -301.7998 L -514.5352 -307.7168 510.1494 -312.0674 504.6855 -312.0674 c -497.2373 -312.0674 492.8516 -306.3242 492.8516 -299.0508 c -492.8516 -291.7754 497.2373 -286.0332 504.6855 -286.0332 c -513.4912 -286.0332 514.6396 -293.6895 514.6748 -294.0381 C -513.1436 -294.0381 l -f -*U -*u -529.0127 -312.0674 m -521.5645 -312.0674 517.1787 -306.3242 517.1787 -299.0508 c -517.1787 -291.7754 521.5645 -286.0332 529.0127 -286.0332 c -536.4258 -286.0332 540.8115 -291.7754 540.8115 -299.0508 c -540.8115 -306.3242 536.4258 -312.0674 529.0127 -312.0674 c -f -1 D -529.0127 -310.7441 m -535.4863 -310.7441 539.2803 -305.4199 539.2803 -299.0508 c -539.2803 -292.6807 535.4863 -287.3555 529.0127 -287.3555 c -522.5039 -287.3555 518.71 -292.6807 518.71 -299.0508 c -518.71 -305.4199 522.5039 -310.7441 529.0127 -310.7441 c -f -*U -*u -0 D -544.0811 -286.625 m -552.2256 -286.625 L -561.1016 -286.625 563.7119 -292.7148 563.7119 -299.0156 c -563.7119 -306.0459 560.127 -311.4756 552.1563 -311.4756 c -544.0811 -311.4756 L -544.0811 -286.625 l -f -1 D -545.6133 -310.1523 m -552.2959 -310.1523 L -556.9248 -310.1523 562.1797 -307.6123 562.1797 -299.0156 c -562.1797 -288.8516 555.6719 -287.9473 551.9824 -287.9473 c -545.6133 -287.9473 L -545.6133 -310.1523 l -f -*U -*u -0 D -584.1748 -310.1523 m -584.1748 -311.4756 L -567.2939 -311.4756 L -567.2939 -286.625 L -584.001 -286.625 L -584.001 -287.9473 L -568.8262 -287.9473 L -568.8262 -297.9014 L -583.0957 -297.9014 L -583.0957 -299.2246 L -568.8262 -299.2246 L -568.8262 -310.1523 L -584.1748 -310.1523 l -f -*U -*u -612.6777 -293.7246 m -612.5039 -289.4785 609.3018 -287.3555 604.707 -287.3555 c -601.8877 -287.3555 597.8857 -288.5391 597.8857 -292.6465 c -597.8857 -296.6484 602.1318 -297.3105 606.3428 -298.1797 c -610.5889 -299.0508 614.8359 -300.1289 614.8359 -305.0713 c -614.8359 -310.2227 609.8936 -312.0674 606.0996 -312.0674 c -600.2871 -312.0674 595.5537 -309.666 595.623 -303.2617 c -597.1543 -303.2617 L -596.8408 -308.6914 601.1914 -310.7441 606.0996 -310.7441 c -609.0928 -310.7441 613.3037 -309.3867 613.3037 -305.0713 c -613.3037 -300.8594 609.0576 -300.1289 604.8115 -299.2588 c -600.6006 -298.3887 596.3535 -297.3789 596.3535 -292.6465 c -596.3535 -287.877 600.7744 -286.0332 604.707 -286.0332 c -609.8936 -286.0332 613.9658 -288.2598 614.209 -293.7246 C -612.6777 -293.7246 l -f -*U -*u -615.7041 -287.9473 m -615.7041 -286.625 L -634.7422 -286.625 L -634.7422 -287.9473 L -625.9717 -287.9473 L -625.9717 -311.4756 L -624.4404 -311.4756 L -624.4404 -287.9473 L -615.7041 -287.9473 l -f -*U -*u -653.2578 -286.625 m -654.9629 -286.625 L -644.9736 -301.0684 L -644.9736 -311.4756 L -643.4424 -311.4756 L -643.4424 -301.0684 L -633.5234 -286.625 L -635.2637 -286.625 L -644.2432 -299.7813 L -653.2578 -286.625 l -f -*U -*u -656.4229 -286.625 m -657.9551 -286.625 L -657.9551 -310.1523 L -672.0508 -310.1523 L -672.0508 -311.4756 L -656.4229 -311.4756 L -656.4229 -286.625 l -f -*U -*u -690.7051 -310.1523 m -690.7051 -311.4756 L -673.8242 -311.4756 L -673.8242 -286.625 L -690.5313 -286.625 L -690.5313 -287.9473 L -675.3564 -287.9473 L -675.3564 -297.9014 L -689.626 -297.9014 L -689.626 -299.2246 L -675.3564 -299.2246 L -675.3564 -310.1523 L -690.7051 -310.1523 l -f -*U -U -%_/ArtDictionary : -%_/XMLUID : (characters) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -1 Ap -0 R -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 XA -2 w 270.5264 -254.0898 m -700 -254.0898 L -700 -345.9102 L -270.5264 -345.9102 L -S -%_/ArtDictionary : -%_/XMLUID : (frame_2_) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (title_1_) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -u -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -279.8203 -345.9102 m -188 -345.9102 L -188 -254.0898 L -279.8203 -254.0898 L -279.8203 -345.9102 L -b -%_/ArtDictionary : -%_/XMLUID : (frame_1_) ; (AI10_ArtUID) , -%_; -%_ -*u -0 Ap -0.179263 0.104372 0.058747 0 0.847059 0.870588 0.913725 Xa -1 w 237.3037 -317.6621 m -254.1543 -283.2861 L -255.7793 -283.2861 L -272.6289 -317.6621 L -271.208 -317.6621 L -254.9668 -284.5039 L -238.7246 -317.6621 L -237.3037 -317.6621 l -f -%_/ArtDictionary : -%_(-1.570796) /String (BBAccumRotation) , -%_; -%_ -*U -%_/ArtDictionary : -%_/XMLUID : (character_1_) ; (AI10_ArtUID) , -%_; -%_ -*u -229.5703 -317.6621 m -195.1934 -300.8125 L -195.1934 -299.1875 L -229.5703 -282.3379 L -229.5703 -283.7588 L -196.4102 -300 L -229.5703 -316.2422 L -229.5703 -317.6621 l -f -*U -%_/ArtDictionary : -%_/XMLUID : (code_1_) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (box_1_) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -LB -%AI5_EndLayer-- -%%PageTrailer -gsave annotatepage grestore showpage -%%Trailer -%%EOF - -endstream endobj 6 0 obj [5 0 R] endobj 26 0 obj <> endobj xref -0 27 -0000000000 65535 f -0000000016 00000 n -0000000144 00000 n -0000038541 00000 n -0000000000 00000 f -0000045616 00000 n -0000473923 00000 n -0000038592 00000 n -0000038919 00000 n -0000045913 00000 n -0000045800 00000 n -0000044695 00000 n -0000045054 00000 n -0000045102 00000 n -0000045684 00000 n -0000045715 00000 n -0000045986 00000 n -0000046270 00000 n -0000047323 00000 n -0000052679 00000 n -0000118268 00000 n -0000183857 00000 n -0000249446 00000 n -0000315035 00000 n -0000380624 00000 n -0000446213 00000 n -0000473946 00000 n -trailer -<<1BC5A9D80F2E084FA75CC3E50BD890F5>]>> -startxref -474154 -%%EOF diff --git a/assets/images/badge.svg b/assets/images/badge.svg deleted file mode 100644 index 0287915..0000000 --- a/assets/images/badge.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.ai b/assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.ai deleted file mode 100644 index c70ecb0..0000000 --- a/assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.ai +++ /dev/null @@ -1,13025 +0,0 @@ -%PDF-1.5 % -1 0 obj <>/OCGs[5 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - repository-hero - - - - - Arctic Ice Studio - - - - - Copyright (C) 2018-present Arctic Ice Studio (https://www.arcticicestudio.com) Copyright (C) 2018-present Sven Greb (https://www.svengreb.de) - - - - - Adobe Illustrator CS6 (Windows) - 2019-08-15T17:00:59+02:00 - 2019-08-15T17:00:59+02:00 - 2019-08-15T17:00:59+02:00 - - - - 256 - 44 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgALAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9A+V/K/lmXyzpEkmkWTy PZW7O7W8RZmMSkkkruTkpSNoATP/AAn5V/6s1j/0jQ/804OIrQd/hPyr/wBWax/6Rof+aceIrQd/ hPyr/wBWax/6Rof+aceIrQd/hPyr/wBWax/6Rof+aceIrQQtppWl6f5oQWFnBaCSxkMggjSMMRMl K8AK0rhvZeqZ31vqcrqbO8S2UD4laH1anxryWmAJQ31HzF/1dYv+kUf9VMbCHfUfMX/V1i/6RR/1 UxsK76j5i/6usX/SKP8AqpjYVL9Yv9Q0hbVr7WY0F5OlrDSz5fG9TU0k2UBSWY7DCBalZq2o6zp1 1bWjXsl1c3UcsscVtYiQ8IDGrs370UAMy4gBVK01u+ma5SfVDp8tpEbmeO9sTBSAdZQzScWUU3IO 3fDSLUD5i1ZIVu557i30xiP9yMunqsIU9HdfW9ZE3+08YA6mgxpbbuvMGt21wkDvdlpZGhhZdNBW RlVn+A+tv8KM3yxoLarHrt79Vu7m51Q2a2QT6zHcWPGRTKSI1CCRizP+yBuajGltamuayssC3k89 hDcusdvc3Ngqxs7niitwndoyx2HqBd9uuNBbTK+bWbGOJ59WjCzTRW6UtAfjmcIn+7OnJsApKXS6 1rP1m4gsrmbUvqjGO6ltbFDHHIv2o+Uk8Yd1r8SpyI6HfDQRa2TzFe+lZyW2ovem+Ephjt9PLSD6 uwWUOjSIyFGbiQdwcaW0bplx5iv2kH1iW09MA1ubARhq1+z+9NcBpKHu9V1yK+msra4l1Ce2Cm6F tZRlYi68lVnkniUsV34qSaEeIw0EIabzPfx2TXyXdxPaxrI1w8emn9yYSRKkqtKrIycTUUx4VtWt Nc1e4uLSB7me1N7J6Vs9xp4RXf0ZJ6A+sf2IWONLaZ3K63bNAsurRg3EghjpaA/GQW3/AHngpwbJ SSHzVqElqt79YulsGXn9c/RbNGE/nPCR24960w8KLTGTU7qNpfU16BYYbVL6S4NsPS+ryFgrh/Vo a8DgrySgj5i1aOJbm6nuLTT3Ipfz6eFiAJADSKJjLEpr9qRFA70w0i0++o+YT/0tYv8ApFH/AFUy NhLvqPmL/q6xf9Io/wCqmNhXfUfMX/V1i/6RR/1UxsK76j5i/wCrrF/0ij/qpjYV3lP/AJRXRv8A mBtv+TK4y5qOSakgAkmgHU4EoDTtc0vUpZo7Cb6ytvQSTxqzQ8iSCqzU9N2FPiCsad8JFLaKu7u3 s7Wa7uZBFbW6NLNK3RUQcmY/IDAq2xvrW/s4b20kEttcIJIZACKqwqNiAQfY7jEhUC//AClUP/MD L/yejw9EdU1wJdirsVdirDdUrrOvajC+m3GoadZ2r6aGga3UCa6VXuT++li3WP0lUgGh5DJjYMUF Yahr2o6poBheGDWLbT9TtdTF0jSASwXFjHL8MUi7swDg8iOJwkDdVHzIuppe3La60M5jgtJke1V0 hFhFqED6gJI3LtXgoJPKhXag3qjyUs51S90630i6vLxkfT0geSYmjK0XGpHgeQ+/IAMkBeMGl8tM ITbg3VRbsAGj/wBx9z8BA2qvTD3oY9qzRR+bGnuNrGHVNPa6Y/ZHOznjgZvYXLxfTkhyR1ZV5hvN PtNKkkvohcQs8aJbUUtLK7gRIoagLF6UyACShfN3+8en/wDbTsP+olMMVKzyGy/4U0+E7XNuhhv1 P2hdxsRccvcy8j9OMuajkk08v6Q8zWLaC8dgVfU0kunhEsczxm2WV1VXjr8dV5V6qcPTdDKtMttY h9X9I3sV5y4+l6UBg40ryrWSXlXbwyJpKVJZzTatqlzoWpfVbn10TUrS4h9eAzpBGFcKGhkUtD6Y qHoaDbD71QtxevceVPNUU9tDb3tol3Bevbf3c0n1RZBKCQGqY5EB5bgilTTD1COiJ1d1jk8pTOeM aX6h2PQGXT7mFP8AgpJFX6cA6pRnmCZVu9Eh6yTX4CKOvwW8zsfkAuAKVHyXLHF5L0uWVxHFHaIz uxAVVC1JJPQDDLmo5MFt+EMdpPMvDS44tOuZFIKhbI6pcPAWXsiKY2IPRRvk2L0zWLjT7fSbyfUe J09IXN0G3Bi4nkPeo2plYZlQ8rRXkPlnSIb6v12Oyt0uuXX1ViUPX35VxlzQEzwJdirsVYdb+ZTp Hlny5bxwB572yt1iuLiQW9nGwiQUlnYNRm5fCiqWbtk6sljaar5clvqSeYLr9I13+oxqYrEfOGrN L/z1Zh3CjBfcmk7REjRURQqKKKqigAHYAZFKR66o1PUbPQhvBVb7Ux29CJv3UTf8Zpl+lUcZIbbo LWmt+jNfutIb4bW+D6hp3gGLD63EPlIwl/2Z8MTuFRL/APKVQ/8AMDL/AMno8HReqa4EuxV2Kqct zbxECWVIydwGYA0+nFVC1/RdpbytbtFFBzeadww485GLu7NXqWNd8KqNpaaE11Jq1oIXnfmJbuNg wPNYxJUg03FvHX/VGO6EVJaWhuBdyRr6yRNF6rdo3IZl8KEoMCUsg8peWY5E9K1Bjt5BJFamSRre KT7SsluWMKEdVom3bJcRRSZXJsPUha4aMSQOZIS7AFXKMhIqf5HI+nIpUfqujXTXSFILg3qhbuM8 XEiKOIDqagihph3VCQaD5asLqKUKBPbg/VlnnklEPIU/dJM7rHsafABtthsopM57a1u0jEyLKiOk 0ddwHjYOjD5EVyKUvufLOg3s8t20JEtyKXElvNLB6wG3730XQSbCnxVw8RRS06b5YvDBaRiAtp6N Hbw28nptChoGUCJlKj4RtjZVWs7XRdPkf0JRHI3wuHnd+ntI7Ux3Vq78v6Nf3AvniIuWQIbq3lkg kdOytJA0bOorsCcbK06G08vW1u2iRCCOOZXWSy5Dm4lBLlgTzYvUkk7nHfmqvqdrpMumvbaksR08 gK6TEBKAjjuaUIIFD44hKF03RtAt3Go2n75whRLyWeS5Kx/tKkkrycV+Hfie2JJRSn/hDyysSK1k j28VGSGR3eEcdwfTdim3yw8RWkdNHpAuJJJvR9aWIQS8yvxRAkhGB/Z+M/fg3SgLXyr5YUwmG3Ek Vuwkt7dppJbeNgfhaOBnaJOJHw8V27YeIopNYb6ynleGG4jllj/vI0dWZd6bgGoyNJVsVdirsVSf yxDFN5R0iKZFkiewtleNwGVgYVqCDsRhlzQOSkvlubTvi8v3Rs0G/wCjpqzWZ9kQkPD7emwUfynD fetI3TdRvpzLFf6fJZTwAFmDCaCQGu8Mi0ZunRkVvbAQqH8s2119Xn1O+jMV/qknryQt9qKIDjBC fApGByH85bxxKhf5jsbieyju7NOeo6dILuyXoWZAVeKv/FsbNH9Ne2IKlYkgl8yW0gVlD6e7BXBV hWWM0YHoceipxgS7FXYqw/VmUedZeWiyaz/uNt/hiFqfT/fz7n61LAPi/wAmuTHJj1dfaZLeLYXM Pl8QRWdw8txoly1qjTj0uKTIIZJoGaNn+ESMPo2qg+apZ5kbRm0vzDLHZz6Nqsuiags1jLGka3KC KvqcojJDI8R2qrkgNvtTCL2Usu82f8orrP8AzA3P/JlshHmk8mJ6b6+marrnmCANJBFdW8OrW4qa 2q6ZZsJkX+aBnZtuqlup45M77ITzTrTTr/zJrck0MN1HS0aF3VZBRoa1UkHY7dMieSW/y/0+wi8n 6BcRW0Udw+mWnOZUUO3KBCasBU1OMzuVHJLpzH/ivW1fy/LrIK2oMkYsiEHpH4T9amhO/sCMPTmj qgbfWY9J8v656Srok1xqC2thp0xWMWT3McaK7UPpBSeVwfTYpStDWuGrK2raQthJpOveUdD1GEpF AX0q4SYOqR3akcWeMkgrOHrTcBlxPQlR3K9wmjww2UWoaHL5fe1mh+qahbpC8MTq4CgTQFmSOSvB vVRQQaHrg3VvTnjCXYPlWfUj9evv9NQacVf/AEyXp69xFJ8P2fiUdPDE+9U68wX09h5Qu7u0iNjP Ha/uY2Cf6OzqAOQjLx/ui1TxJG3WmADdJ5Np5N8tLph05rGOWJhWSWQBp3k7zNL9sy1+LnWtceIr SV6FY2Oq6rcS3s6awmkR29pYSycZUJaBZJLmgqhklL8Sw/l2pU4SaQEt8/WVtpNpqbafGtvFq2k6 nHfW0YCo7w2pkjn4ig5qAUJ6kMK9BQxNqUZqEsml6Frfl25YtGmnXUujTuamS2WI8oST1e35BfdO J68sA3Nqh7BkGs6vy8vTax8Vp+/iFkQn+hQ/AfrU8Le+wphPLmqlegy6++mJC+m2+qtptvdwKUR4 4RFe3EkRaFmVfU9H0yUb9rY98RyVMPNEHljTrQL9Rl099OQXNtqVjZOy2yx/ET6kS8QvFSHWtCvX BGypZjkGTsVdiqVeU/8AlFdG/wCYG2/5MrhlzQOSa4EuxV2KuxVKn/5SqH/mBl/5PR4eiOqa4Eux V2KpRd6RqR1ltTsLyGB5LdLaSOeBpxSN3cMpSaGn94fHDeyKUbrQ9ZuZbe8bUYYtTsy4tp4rZhEY pQvqRTRPM5dWKK3wupqow2FpD6n5Tv8AWI7tdW1FJDLZ3NlarbW5hji+tx+nJKyvLM0jgdPiAp27 4iVLSKvdK8w31lc2V1qFp9XuoZIJfSs5FcLIhSqs1y4qK+GIIVF6To6adJfuJTL9emSdgRTjwtYb bj1Nai35fTgJUBC+XfK9voc9+1tMz2126NBbsNoI0UgRIa7oKniP2Rt0GEytQEboemLpWi6fpayG VbC2hthKRxLCGMJypU0rxwE2UhBvo+rRareX9hewRC9EXqRT2zzEGJeI4sk8PX5Y2ikPY+UTFrMe r3t895dqZJXBQRxmVo1hjZEBPERxc1Ubn42JJwmWy0r+YPK9rrU1vLLK8DRJLC7R05NHKFYAE9GS aKORTQ7r03xEqUhRudA16/tBYanqsM1i1BdCC0MM0yKQeDSGeRFDUo/GMV7ccbC0rQaVr1oJYrO/ tVt3nnnRZrSSRwbiVpmBZbmMGjSED4RjYVMXs/rOnvZ6j6dys8bRXQVDHG6uCrDgWcgEGn2jgSk4 0HzKtn+jl10fUwPTFw1tW+EVKU+seqI+dNufo/RXfDY7kUvPlc2c0E+g3C6c8MEVpJDJGbiCWCHa MOnOJ+aAkK4fvvy2x4u9aUbvyhPqNvqR1W/+sX19ZT6fDLFF6UNtDcLR/ShLyEsx4lizmtANhjxU tI7zR5ctvMGkS6fLI1vIwJt7qPd4nKleQr1BVirDupIwRNKRatpejrYXF7MJTIbxomKkU4+lAkPi a19OuJK0hNQ8rW99c3txJPJHJdC1MMkQAeCWzZ3jlQnkCaydCKU2NQcIktIXVfLWv6xpk2majrEQ s7iN45/qtq0MsgYEAO7Tyjj/ADBVHLpUA4ggLTJcil2KuxVjvlX9M/4Y0jh9W4fUrbjXnWnpLSuS lVoCaf7nP+Xb/kpg2V3+5z/l2/5KY7K7/c5/y7f8lMdld/uc/wCXb/kpjsqBh+u/4pj+tenX6jJx 9Ll/v5K15Yei9VTXP0Z6sX1z9IcuJ4fUf0hxpX9r6n8Nf9bfAFKW/wDOuf8Aa8/7nmS38vsV3/Ou f9rz/ueY7+X2K7/nXP8Atef9zzHfy+xXf865/wBrz/ueY7+X2K7/AJ1z/tef9zzHfy+xXf8AOuf9 rz/ueY7+X2K7/nXP+15/3PMd/L7Fd/zrn/a8/wC55jv5fYrv+dc/7Xn/AHPMd/L7Fd/zrn/a8/7n mO/l9iu/51z/ALXn/c8x38vsV3/Ouf8Aa8/7nmO/l9iu/wCdc/7Xn/c8x38vsV3/ADrn/a8/7nmO /l9iu/51z/tef9zzHfy+xXf865/2vP8AueY7+X2K7/nXP+15/wBzzHfy+xXf865/2vP+55jv5fYr v+dc/wC15/3PMd/L7Fd/zrn/AGvP+55jv5fYrv8AnXP+15/3PMd/L7Fd/wA65/2vP+55jv5fYrv+ dc/7Xn/c8x38vsV3/Ouf9rz/ALnmO/l9iu/51z/tef8Ac8x38vsV/9k= - - - - - - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - xmp.did:83C243DB6CBFE911BD9AA28FB1AC607B - uuid:39edf73c-b15e-49ae-a9fd-8c00537e13e4 - proof:pdf - - uuid:4978cad7-75c2-834c-a0a4-665e27ce28fa - xmp.did:02801174072068118083917CE3B5B58A - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - proof:pdf - - - - - saved - xmp.iid:83C243DB6CBFE911BD9AA28FB1AC607B - 2019-08-15T17:00:58+02:00 - Adobe Illustrator CS6 (Windows) - / - - - - - - Basic RGB - Document - - - 1 - False - False - - 888.000000 - 600.000000 - Pixels - - - - Cyan - Magenta - Yellow - Black - - - - - - Standard-Farbfeldgruppe - 0 - - - - Weiß - RGB - PROCESS - 255 - 255 - 255 - - - Schwarz - RGB - PROCESS - 0 - 0 - 0 - - - RGB Rot - RGB - PROCESS - 255 - 0 - 0 - - - RGB Gelb - RGB - PROCESS - 255 - 255 - 0 - - - RGB Grün - RGB - PROCESS - 0 - 255 - 0 - - - RGB Cyan - RGB - PROCESS - 0 - 255 - 255 - - - RGB Blau - RGB - PROCESS - 0 - 0 - 255 - - - RGB Magenta - RGB - PROCESS - 255 - 0 - 255 - - - R=193 G=39 B=45 - RGB - PROCESS - 193 - 39 - 45 - - - R=237 G=28 B=36 - RGB - PROCESS - 237 - 28 - 36 - - - R=241 G=90 B=36 - RGB - PROCESS - 241 - 90 - 36 - - - R=247 G=147 B=30 - RGB - PROCESS - 247 - 147 - 30 - - - R=251 G=176 B=59 - RGB - PROCESS - 251 - 176 - 59 - - - R=252 G=238 B=33 - RGB - PROCESS - 252 - 238 - 33 - - - R=217 G=224 B=33 - RGB - PROCESS - 217 - 224 - 33 - - - R=140 G=198 B=63 - RGB - PROCESS - 140 - 198 - 63 - - - R=57 G=181 B=74 - RGB - PROCESS - 57 - 181 - 74 - - - R=0 G=146 B=69 - RGB - PROCESS - 0 - 146 - 69 - - - R=0 G=104 B=55 - RGB - PROCESS - 0 - 104 - 55 - - - R=34 G=181 B=115 - RGB - PROCESS - 34 - 181 - 115 - - - R=0 G=169 B=157 - RGB - PROCESS - 0 - 169 - 157 - - - R=41 G=171 B=226 - RGB - PROCESS - 41 - 171 - 226 - - - R=0 G=113 B=188 - RGB - PROCESS - 0 - 113 - 188 - - - R=46 G=49 B=146 - RGB - PROCESS - 46 - 49 - 146 - - - R=27 G=20 B=100 - RGB - PROCESS - 27 - 20 - 100 - - - R=102 G=45 B=145 - RGB - PROCESS - 102 - 45 - 145 - - - R=147 G=39 B=143 - RGB - PROCESS - 147 - 39 - 143 - - - R=158 G=0 B=93 - RGB - PROCESS - 158 - 0 - 93 - - - R=212 G=20 B=90 - RGB - PROCESS - 212 - 20 - 90 - - - R=237 G=30 B=121 - RGB - PROCESS - 237 - 30 - 121 - - - R=199 G=178 B=153 - RGB - PROCESS - 199 - 178 - 153 - - - R=153 G=134 B=117 - RGB - PROCESS - 153 - 134 - 117 - - - R=115 G=99 B=87 - RGB - PROCESS - 115 - 99 - 87 - - - R=83 G=71 B=65 - RGB - PROCESS - 83 - 71 - 65 - - - R=198 G=156 B=109 - RGB - PROCESS - 198 - 156 - 109 - - - R=166 G=124 B=82 - RGB - PROCESS - 166 - 124 - 82 - - - R=140 G=98 B=57 - RGB - PROCESS - 140 - 98 - 57 - - - R=117 G=76 B=36 - RGB - PROCESS - 117 - 76 - 36 - - - R=96 G=56 B=19 - RGB - PROCESS - 96 - 56 - 19 - - - R=66 G=33 B=11 - RGB - PROCESS - 66 - 33 - 11 - - - - - - Kalt - 1 - - - - C=56 M=0 Y=20 K=0 - RGB - PROCESS - 101 - 200 - 208 - - - C=51 M=43 Y=0 K=0 - RGB - PROCESS - 131 - 139 - 197 - - - C=26 M=41 Y=0 K=0 - RGB - PROCESS - 186 - 155 - 201 - - - - - - Graustufen - 1 - - - - R=0 G=0 B=0 - RGB - PROCESS - 0 - 0 - 0 - - - R=26 G=26 B=26 - RGB - PROCESS - 26 - 26 - 26 - - - R=51 G=51 B=51 - RGB - PROCESS - 51 - 51 - 51 - - - R=77 G=77 B=77 - RGB - PROCESS - 77 - 77 - 77 - - - R=102 G=102 B=102 - RGB - PROCESS - 102 - 102 - 102 - - - R=128 G=128 B=128 - RGB - PROCESS - 128 - 128 - 128 - - - R=153 G=153 B=153 - RGB - PROCESS - 153 - 153 - 153 - - - R=179 G=179 B=179 - RGB - PROCESS - 179 - 179 - 179 - - - R=204 G=204 B=204 - RGB - PROCESS - 204 - 204 - 204 - - - R=230 G=230 B=230 - RGB - PROCESS - 230 - 230 - 230 - - - R=242 G=242 B=242 - RGB - PROCESS - 242 - 242 - 242 - - - - - - - - - Adobe PDF library 10.01 - - - Arctic Ice Studio - - - True - https://www.arcticicestudio.com - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 7 0 obj <>/Resources<>/Properties<>>>/Thumb 11 0 R/TrimBox[0.0 0.0 888.0 600.0]/Type/Page>> endobj 8 0 obj <>stream -/OC /MC0 BDC -0.298 0.337 0.416 rg -/GS0 gs -q 1 0 0 1 315.4341 263.0762 cm -0 0 m -0 -1.807 l --23.045 -1.807 l --23.045 32.12 l --0.237 32.12 l --0.237 30.314 l --20.955 30.314 l --20.955 16.725 l --1.473 16.725 l --1.473 14.92 l --20.955 14.92 l --20.955 0 l -h -f -Q -q -0 600 888 -600 re -W n -q 1 0 0 1 341.1421 285.5029 cm -0 0 m --0.237 5.798 -4.609 8.696 -10.881 8.696 c --14.73 8.696 -20.194 7.08 -20.194 1.474 c --20.194 -3.991 -14.397 -4.894 -8.648 -6.082 c --2.851 -7.27 2.946 -8.743 2.946 -15.489 c -2.946 -22.522 -3.801 -25.04 -8.98 -25.04 c --16.916 -25.04 -23.377 -21.763 -23.283 -13.019 c --21.192 -13.019 l --21.62 -20.432 -15.68 -23.235 -8.98 -23.235 c --4.894 -23.235 0.855 -21.382 0.855 -15.489 c -0.855 -9.741 -4.941 -8.743 -10.738 -7.555 c --16.488 -6.366 -22.285 -4.989 -22.285 1.474 c --22.285 7.983 -16.25 10.501 -10.881 10.501 c --3.801 10.501 1.758 7.46 2.091 0 c -h -f -Q -q 1 0 0 1 348.937 295.1963 cm -0 0 m -2.09 0 l -2.09 -32.12 l -21.334 -32.12 l -21.334 -33.927 l -0 -33.927 l -h -f -Q -372.697 295.196 2.09 -33.927 re -f -q 1 0 0 1 380.7749 295.1963 cm -0 0 m -2.613 0 l -24.043 -31.123 l -24.138 -31.123 l -24.138 0 l -26.229 0 l -26.229 -33.927 l -23.758 -33.927 l -2.186 -2.565 l -2.09 -2.565 l -2.09 -33.927 l -0 -33.927 l -h -f -Q -q 1 0 0 1 409.3345 293.3906 cm -0 0 m -0 1.806 l -25.991 1.806 l -25.991 0 l -14.017 0 l -14.017 -32.121 l -11.926 -32.121 l -11.926 0 l -h -f -Q -q 1 0 0 1 452.957 263.0762 cm -0 0 m -11.498 0 l -17.485 0 21.239 2.66 21.239 7.697 c -21.239 13.494 15.965 14.92 11.498 14.92 c -0 14.92 l -h -0 16.725 m -11.498 16.725 l -17.152 16.725 20.1 19.576 20.1 23.71 c -20.1 28.604 16.013 30.314 11.498 30.314 c -0 30.314 l -h --2.091 32.12 m -11.498 32.12 l -19.576 32.12 22.189 27.701 22.189 23.33 c -22.189 19.671 19.529 16.582 15.585 16.107 c -15.68 16.012 l -16.582 16.154 23.33 14.539 23.33 7.697 c -23.33 1.52 18.578 -1.807 11.498 -1.807 c --2.091 -1.807 l -h -f -Q -q 1 0 0 1 499.3818 273.957 cm -0 0 m --7.271 19.196 l --7.365 19.196 l --14.92 0 l -h --6.225 21.239 m -7.175 -12.688 l -4.942 -12.688 l -0.665 -1.806 l --15.585 -1.806 l --19.909 -12.688 l --22.143 -12.688 l --8.505 21.239 l -h -f -Q -q 1 0 0 1 531.125 285.5029 cm -0 0 m --0.238 5.798 -4.609 8.696 -10.881 8.696 c --14.73 8.696 -20.195 7.08 -20.195 1.474 c --20.195 -3.991 -14.398 -4.894 -8.648 -6.082 c --2.852 -7.27 2.945 -8.743 2.945 -15.489 c -2.945 -22.522 -3.801 -25.04 -8.98 -25.04 c --16.916 -25.04 -23.379 -21.763 -23.283 -13.019 c --21.193 -13.019 l --21.619 -20.432 -15.68 -23.235 -8.98 -23.235 c --4.895 -23.235 0.855 -21.382 0.855 -15.489 c -0.855 -9.741 -4.941 -8.743 -10.738 -7.555 c --16.488 -6.366 -22.285 -4.989 -22.285 1.474 c --22.285 7.983 -16.25 10.501 -10.881 10.501 c --3.801 10.501 1.758 7.46 2.09 0 c -h -f -Q -q 1 0 0 1 561.9648 263.0762 cm -0 0 m -0 -1.807 l --23.045 -1.807 l --23.045 32.12 l --0.238 32.12 l --0.238 30.314 l --20.955 30.314 l --20.955 16.725 l --1.473 16.725 l --1.473 14.92 l --20.955 14.92 l --20.955 0 l -h -f -Q -q 1 0 0 1 605.1602 285.0762 cm -0 0 m --0.902 5.701 -5.891 9.123 -11.545 9.123 c --20.432 9.123 -25.611 1.853 -25.611 -6.843 c --25.611 -15.539 -20.432 -22.809 -11.545 -22.809 c --4.941 -22.809 0.191 -16.916 0.57 -10.597 c -2.662 -10.597 l -1.9 -18.674 -4.086 -24.613 -11.545 -24.613 c --21.715 -24.613 -27.701 -16.773 -27.701 -6.843 c --27.701 3.088 -21.715 10.928 -11.545 10.928 c -0.477 10.928 2.043 0.475 2.092 0 c -h -f -Q -q 1 0 0 1 626.8301 262.2676 cm -0 0 m -8.84 0 14.018 7.27 14.018 15.966 c -14.018 24.661 8.84 31.932 0 31.932 c --8.885 31.932 -14.064 24.661 -14.064 15.966 c --14.064 7.27 -8.885 0 0 0 c -0 -1.805 m --10.168 -1.805 -16.154 6.035 -16.154 15.966 c --16.154 25.896 -10.168 33.736 0 33.736 c -10.121 33.736 16.109 25.896 16.109 15.966 c -16.109 6.035 10.121 -1.805 0 -1.805 c -f -Q -q 1 0 0 1 647.4082 295.1963 cm -0 0 m -2.613 0 l -24.043 -31.123 l -24.139 -31.123 l -24.139 0 l -26.229 0 l -26.229 -33.927 l -23.758 -33.927 l -2.186 -2.565 l -2.09 -2.565 l -2.09 -33.927 l -0 -33.927 l -h -f -Q -q 1 0 0 1 681.7168 277.9961 cm -0 0 m -0 -16.727 l --2.09 -16.727 l --2.09 17.2 l -19.197 17.2 l -19.197 15.395 l -0 15.395 l -0 1.805 l -17.297 1.805 l -17.297 0 l -h -f -Q -704.051 295.196 2.092 -33.927 re -f -q 1 0 0 1 741.5898 277.9004 cm -0 0 m -0 -16.631 l --1.807 -16.631 l --1.807 -9.408 l --1.9 -9.408 l --3.564 -14.35 -8.744 -17.437 -14.73 -17.437 c --24.994 -17.437 -30.695 -9.598 -30.695 0.143 c --30.695 9.74 -24.898 18.104 -14.684 18.104 c --7.697 18.104 -1.758 13.875 -0.57 6.795 c --2.566 6.795 l --4.135 12.639 -8.459 16.299 -14.635 16.299 c --23.807 16.299 -28.605 8.601 -28.605 0.143 c --28.605 -8.506 -23.949 -15.633 -14.635 -15.633 c --6.557 -15.633 -1.473 -10.121 -1.807 -1.805 c --14.303 -1.805 l --14.303 0 l -h -f -Q -q 1 0 0 1 330.7173 326.3184 cm -0 0 m --7.27 19.197 l --7.365 19.197 l --14.92 0 l -h --6.225 21.24 m -7.175 -12.687 l -4.941 -12.687 l -0.665 -1.805 l --15.585 -1.805 l --19.909 -12.687 l --22.143 -12.687 l --8.505 21.24 l -h -f -Q -q 1 0 0 1 354.4771 330.8799 cm -0 0 m -4.941 0 8.648 2.329 8.648 7.793 c -8.648 12.925 4.562 14.873 0 14.873 c --12.069 14.873 l --12.069 0 l -h --14.16 16.679 m -0 16.679 l -5.939 16.679 10.738 14.493 10.738 7.936 c -10.738 3.374 7.982 0 3.469 -0.76 c -3.469 -0.854 l -8.505 -1.425 9.741 -4.608 10.073 -8.125 c -10.406 -11.641 9.836 -15.442 11.214 -17.248 c -8.885 -17.248 l -7.603 -14.92 8.363 -11.023 7.982 -7.745 c -7.555 -4.466 5.939 -1.805 0 -1.805 c --12.069 -1.805 l --12.069 -17.248 l --14.16 -17.248 l -h -f -Q -q 1 0 0 1 396.6729 337.4375 cm -0 0 m --0.903 5.702 -5.892 9.123 -11.546 9.123 c --20.432 9.123 -25.611 1.854 -25.611 -6.842 c --25.611 -15.538 -20.432 -22.808 -11.546 -22.808 c --4.941 -22.808 0.19 -16.916 0.57 -10.596 c -2.661 -10.596 l -1.901 -18.674 -4.086 -24.613 -11.546 -24.613 c --21.714 -24.613 -27.702 -16.773 -27.702 -6.842 c --27.702 3.089 -21.714 10.929 -11.546 10.929 c -0.476 10.929 2.043 0.476 2.091 0 c -h -f -Q -q 1 0 0 1 400.0493 345.7529 cm -0 0 m -0 1.806 l -25.991 1.806 l -25.991 0 l -14.017 0 l -14.017 -32.121 l -11.926 -32.121 l -11.926 0 l -h -f -Q -428.371 347.559 2.09 -33.927 re -f -q 1 0 0 1 462.8672 337.4375 cm -0 0 m --0.902 5.702 -5.892 9.123 -11.547 9.123 c --20.432 9.123 -25.611 1.854 -25.611 -6.842 c --25.611 -15.538 -20.432 -22.808 -11.547 -22.808 c --4.941 -22.808 0.19 -16.916 0.57 -10.596 c -2.661 -10.596 l -1.9 -18.674 -4.086 -24.613 -11.547 -24.613 c --21.714 -24.613 -27.702 -16.773 -27.702 -6.842 c --27.702 3.089 -21.714 10.929 -11.547 10.929 c -0.476 10.929 2.043 0.476 2.091 0 c -h -f -Q -483.113 347.559 2.09 -33.927 re -f -q 1 0 0 1 517.6094 337.4375 cm -0 0 m --0.902 5.702 -5.893 9.123 -11.547 9.123 c --20.432 9.123 -25.611 1.854 -25.611 -6.842 c --25.611 -15.538 -20.432 -22.808 -11.547 -22.808 c --4.941 -22.808 0.189 -16.916 0.57 -10.596 c -2.66 -10.596 l -1.9 -18.674 -4.086 -24.613 -11.547 -24.613 c --21.715 -24.613 -27.701 -16.773 -27.701 -6.842 c --27.701 3.089 -21.715 10.929 -11.547 10.929 c -0.475 10.929 2.043 0.476 2.092 0 c -h -f -Q -q 1 0 0 1 547.6895 315.4375 cm -0 0 m -0 -1.806 l --23.045 -1.806 l --23.045 32.121 l --0.238 32.121 l --0.238 30.315 l --20.955 30.315 l --20.955 16.726 l --1.473 16.726 l --1.473 14.92 l --20.955 14.92 l --20.955 0 l -h -f -Q -q 1 0 0 1 586.6094 337.8652 cm -0 0 m --0.238 5.797 -4.609 8.695 -10.881 8.695 c --14.73 8.695 -20.195 7.08 -20.195 1.473 c --20.195 -3.991 -14.398 -4.895 -8.648 -6.082 c --2.852 -7.27 2.945 -8.743 2.945 -15.49 c -2.945 -22.522 -3.801 -25.041 -8.98 -25.041 c --16.916 -25.041 -23.379 -21.763 -23.283 -13.02 c --21.193 -13.02 l --21.619 -20.432 -15.68 -23.235 -8.98 -23.235 c --4.895 -23.235 0.855 -21.382 0.855 -15.49 c -0.855 -9.741 -4.941 -8.743 -10.738 -7.555 c --16.488 -6.367 -22.285 -4.989 -22.285 1.473 c --22.285 7.982 -16.25 10.501 -10.881 10.501 c --3.801 10.501 1.758 7.46 2.09 0 c -h -f -Q -q 1 0 0 1 590.7461 345.7529 cm -0 0 m -0 1.806 l -25.99 1.806 l -25.99 0 l -14.016 0 l -14.016 -32.121 l -11.926 -32.121 l -11.926 0 l -h -f -Q -q 1 0 0 1 621.1582 347.5586 cm -0 0 m -0 -20.337 l -0 -24.424 0.855 -32.929 10.643 -32.929 c -18.959 -32.929 21.762 -28.034 21.762 -20.337 c -21.762 0 l -23.854 0 l -23.854 -20.337 l -23.854 -28.415 20.812 -34.734 10.643 -34.734 c --1.426 -34.734 -2.092 -24.851 -2.092 -20.337 c --2.092 0 l -h -f -Q -q 1 0 0 1 653.0918 315.4375 cm -0 0 m -9.123 0 l -15.441 0 22.617 3.469 22.617 15.205 c -22.617 29.08 13.732 30.315 8.695 30.315 c -0 30.315 l -h --2.092 32.121 m -9.027 32.121 l -21.145 32.121 24.707 23.806 24.707 15.205 c -24.707 5.607 19.814 -1.806 8.934 -1.806 c --2.092 -1.806 l -h -f -Q -682.695 347.559 2.092 -33.927 re -f -q 1 0 0 1 705.4082 314.6299 cm -0 0 m -8.84 0 14.018 7.27 14.018 15.966 c -14.018 24.661 8.84 31.931 0 31.931 c --8.885 31.931 -14.064 24.661 -14.064 15.966 c --14.064 7.27 -8.885 0 0 0 c -0 -1.806 m --10.168 -1.806 -16.154 6.034 -16.154 15.966 c --16.154 25.896 -10.168 33.736 0 33.736 c -10.121 33.736 16.109 25.896 16.109 15.966 c -16.109 6.034 10.121 -1.806 0 -1.806 c -f -Q -0.298 0.337 0.416 RG -2 w -q 1 0 0 1 224.354 245.2334 cm -0 0 m -586.412 0 l -S -Q -q 1 0 0 1 224.354 354.7666 cm -0 0 m -586.412 0 l -S -Q -202.607 237.313 -125.373 125.373 re -S -q 1 0 0 1 144.5532 275.8838 cm -0 0 m -23.008 46.938 l -25.227 46.938 l -48.233 0 l -46.293 0 l -24.117 45.275 l -1.941 0 l -h -f -Q -q 1 0 0 1 133.9937 275.8838 cm -0 0 m --46.938 23.008 l --46.938 25.225 l -0 48.232 l -0 46.292 l --45.276 24.117 l -0 1.941 l -h -f -Q -EMC -Q - -endstream endobj 11 0 obj <>stream -8;Z\tgD.UK$ptij/&T0d>,Pa2#256;Y:n]O!l\lX&.Th9&4-XGK_R&f3o\e@[a=U- -J.TJ9h(.3]S,[KP%=O0n#EN4i1p:BrF3Dn7YH?Uu[AWLZa/Z*$P,9(e/+J"`S3)Ud -2W*=Z*[B52'1F33jtl.1=ek)nkSQdj8i`3.PNRp/7Np_i/A]5qUFPhiLU -/+VDu*d#S@#rMo\[C0!j1+A)T&[af&K_V8c-[>p6(Qe(4L$FoQeDW8R=0F.N2TqR7 -f!!htm9\2n='#YNKFgHUnHlZ*!/7 -endstream endobj 12 0 obj [/Indexed/DeviceRGB 255 13 0 R] endobj 13 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> -endstream endobj 5 0 obj <> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 10 0 obj <> endobj 9 0 obj <> endobj 16 0 obj <> endobj 17 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (Unbenannt-2) -%%CreationDate: 8/15/2019 5:00 PM -%%Canvassize: 16383 -%%BoundingBox: 76 -364 811 -236 -%%HiResBoundingBox: 76.2339 -363.6865 810.7656 -236.3135 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: 0 -600 888 0 -%AI3_TemplateBox: 444.5 -300.5 444.5 -300.5 -%AI3_TileBox: 23.04 -597.6602 864.96 -2.33984 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -224 191 1 1418 903 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:44 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 18 0 obj <>stream -%%BoundingBox: 76 -364 811 -236 -%%HiResBoundingBox: 76.2339 -363.6865 810.7656 -236.3135 -%AI7_Thumbnail: 128 24 8 -%%BeginData: 5443 Hex Bytes -%0000330000660000990000CC0033000033330033660033990033CC0033FF -%0066000066330066660066990066CC0066FF009900009933009966009999 -%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 -%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 -%3333663333993333CC3333FF3366003366333366663366993366CC3366FF -%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 -%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 -%6600666600996600CC6600FF6633006633336633666633996633CC6633FF -%6666006666336666666666996666CC6666FF669900669933669966669999 -%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 -%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF -%9933009933339933669933999933CC9933FF996600996633996666996699 -%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 -%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF -%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 -%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 -%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF -%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC -%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 -%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 -%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 -%000011111111220000002200000022222222440000004400000044444444 -%550000005500000055555555770000007700000077777777880000008800 -%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB -%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF -%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF -%524C457EA8A884A8A8A884A8A8A884A8A8A884A8A8A884A87DA9FD69FF84 -%FD15FFA8FFFFFFA8A884A8A8A884A8A8A884A8A8A884A8A8A884FD08A8A9 -%FD0BA8A9A8A884A8A8A884FD0BA884FD0BA884FD07A884FD04A8A9A8A884 -%A8A8A884A8A8A884A8A8A884FD04A8FD14FFA8AFFD04FFA9FFA8FFA9FFA8 -%FFA9FFA8FFA9FFA8FFA8FFA8A9A8A8A8FFFFAF7DA8AFAFFD05A8FFFFA87D -%AFFFFFA8FFA8FFA8A8A8FFA8A9A8A8A8FFAFFFA8A884FFFD05A8FFA9FFA8 -%FFFD05A8FFA8FFFFA87DA8FFFFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA97EFD -%14FFA8A8FD13FF7DA8FFFF7DA87D7DA8FF7DA87DA8A8A87DA87DA8FFA87D -%A87DA9FFFFA8A8FF7D84A87DFF7DA87DA8A8FFFFA87DA87DA87D7D7DA87D -%FFFFFFA8FF7DA87D7EFFA8A8AF7DA87DA8FD10FFA8FD14FFA8FD14FFA87D -%FFA8A8FFFFA8A87EFFFFFF7EFFFFA8FFFF7EA97DFFFFFF7EFFFFFFA8A8A8 -%FFFFA8A8A8FD06FF7DFFFFA8A8FFA8FFFFA8A8FFFFFFA8A8FFFFA8A8A8A9 -%7DFFFFFF7DAFFD0FFF7EFD14FFA9A8FD12FFA8A8A9A8FF7DFFA8A87DA8FD -%06FF7EFFFFA87DFD07FFA8847DFD05FF7DA8A8A8FFFFFF7E7EFD04FFA8A8 -%FF7DFFFFFFA8A87EFFFFFF7EA87DA8FD04FF7DFD0FFFA8FD14FFA8A9FD12 -%FF7EA9A8A8FF7D7EA87DA97EFD06FFA8A8FFA884A8FD07FF7DA8FD05FF7E -%7EA8A8FD04FFA87DA8FFFF84FFFFA8A8FFFFA9A8A8FFFFFFA87E7EA8FFFF -%FFA8A8FD0FFF7DFD07FFA8A8A8FD05FFA8FD04FFAFA8FD11FFA87D7EA859 -%A87DFFFFA87D7EFFFFFFA87EFF84FFA8A87DA8FFFFFF7EA8FFA8847DFFFF -%FFA8847EFD05FFA8FFFFFFA884FFA8A8FF7DA9FFFF7EA87DFFFFFF7DA87D -%A8FFFFFFA87DFD0FFFA8FD06FFA8A8A8FD05FF7D7EFD04FFA8A9FD11FFA8 -%A8FFFFAF7DA8FFFFFD04A8FFFF7DFFFFA8A9FF7EFF7DFFFFA87EFFFFFFA8 -%A97EFFFD04A8FD06FF7DFFFFA8A8FF84FFFFA97DFFFF84A8A8FFFF7DFFA8 -%FF7DA9FFFF7DFD10FF7DFD04FFA87DA8A8FD05FFA8A87EA8FD04FFA8FD11 -%FFA8FFFFFFA8A8A8FFFFFFA8FF7DA87DA9FFFFA8FFFFA9FFA97DA87EFFFF -%FFA8A9FFA87D7EA8FF7EA87EA8A8FFFFA97DA87DFFFFA8A8FFFFA87DA8A8 -%FF7EA87EA8FFFFA8FF7DA87DA9FD10FFA8FFFFA8A87EFD08FFA8A8FF7DFF -%FFFFA8AFFD69FF7EFF7DA8A8FD09FF7DFFFF84A8FFFFA8A8FD69FFA8FF7E -%A8FD09FFA8AFFFFFA8A8FFFFA8FD11FFA8FFA9FFA8A8A8FD0DFFA8FFA8FF -%FFFFA9FFA8FD09FFA8FFFFFFA8FFA8FD05FFA8AFFD04FFA8A9FD08FFA8FF -%A8FD05FFA8FD0EFF7EFFFFA87DA8FD07FF7EFD04FF7DFFFFA9A8FD0EFFA8 -%7DA8A8A97EA8A87DA8A8A8FFFFA8A87DA8FFFFA8A8A87DA8A8FFFF7E7EA8 -%7DA8FFFF53FFFFA87DA87DA9FD05A8FFFFFF7DA8847EA8FF7DA8847DFFA8 -%7DFFFFA8A87EFD06A87DA87DA8FD0CFFA8FD04FFA8A8A8FD04FFA9A8FD05 -%FF7EFFA8A9FD0EFFA8FD04FF7EFFFFFFA87EFFFFFF84A87DA8FFFF7EFFA8 -%A8FD04FF7EFFFFFF7DFFA87EA8FF7DFFFFFF84A8FD06FF7EA8FFFFA8A87E -%FFFFFFA8A87E7DA8FF84A8A8FFFFFF7EA87DFFFFFF7DFD0CFF7DFD05FFA8 -%A87DA8FFFF7DFD06FF7EA8FFA8FD0EFFA87DA87EFF7E7EA8FFFF84A8FFFF -%A87DA87EA8FFA8FFFF7DFFFFFFA87E7EA87DA8FF84A8A8FFA87DA8A8FF7D -%FD04A8FFFF7EA8FFFFFFA8A8FD04FF7D84A87EFFA8847EFD04A87DA8FFFF -%A9FFA8FD0BFFA8FD08FF7EFFA8A8FD06FFA8FFA9A9FD0EFFA87EA8A8A8FF -%A8A87DFF7EFFFFFFA8A8A8FF7DFF84FFA8A8FD04FF7DA8A884A8FF7DFF7D -%FFFFFFA884A8A97EA87EFFFFFF7DFD05FF84FD04FFA87DFFA8A8A8A97DA8 -%7EFFA87EA8FFA8A87DFD0CFF7DFD15FFA8FD0EFFA8A8FFFFFFA8FFFFFF7D -%84A8FFFFA87DA8FFA87DA8FFFF7DFFFFFFA8A8FFFFFFA87D84A8847DA8FF -%FFFF7E7DFD06FF7EA8FFFFFF7D84FD04FF7DA8A8FF7D7EA8A8FFFFFFA87D -%A8FFFFFF7DA8FD0BFFA8FD14FFA8AFFD0EFF7EA8FFFFA884A8FFA8A87EA9 -%AFFF84A87DFFFF8453FFA8A8FD04FF7DFFFFA87DA8FFFFFF847DA8FFFF7E -%A8A8FD05FFA87EA8FF7DAFA8A8FFFF7DFF84FFFFFF53A87DFFFFFF7DFF7D -%FFFFFF59FD0CFF7EFD14FFA8A8FD0EFFA87DA87DA8A8A87D7EA8A97DA87E -%A8A8A8FFFFA8A8FFFFA8FD04FFA87DA87EA8A8FFFFFFA8FF7DA87DFFA8A8 -%7DA8A8FFFFFFA8847DA8FFFF7EA87DA8FFA9A8FFFFA8A8A8FFFFFFA8FFFF -%7DA87DA9FD0CFFA8FD14FFA8FD6AFF7EFD14FFA9A8FD69FFA8FD14FFA8A9 -%FFFFFFA884A8A8A884A8A8A884A8A8A884A8A8A884A8A8A884A8A8A884A8 -%A8A884A8A8A884A8A8A884A8A8A884A8A8A884A8A8A884A8A8A884A8A8A8 -%84A8A8A884A8A8A884A8A8A884A8A8A884A8A8A884A8A8A884A8A8A884A8 -%A8A884A8A8A884A8A8A884A8A8A8847DFFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8A8A8FFFFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF -%%EndData - -endstream endobj 19 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (Unbenannt-2) -%%CreationDate: 8/15/2019 5:00 PM -%%Canvassize: 16383 -%%BoundingBox: 76 -364 811 -236 -%%HiResBoundingBox: 76.2339 -363.6865 810.7656 -236.3135 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%%DocumentFonts: HelveticaNeueLTStd-Th -%%DocumentNeededFonts: HelveticaNeueLTStd-Th -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: 0 -600 888 0 -%AI3_TemplateBox: 444.5 -300.5 444.5 -300.5 -%AI3_TileBox: 23.04 -597.6602 864.96 -2.33984 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -224 191 1 1418 903 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:44 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments -%%BeginProlog -%%EndProlog -%%BeginSetup -[ -39/quotesingle 96/grave 128/Euro 130/quotesinglbase/florin/quotedblbase/ellipsis -/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 145/quoteleft -/quoteright/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark -/scaron/guilsinglright/oe/dotlessi 159/Ydieresis /space 164/currency 166/brokenbar -168/dieresis/copyright/ordfeminine 172/logicalnot/hyphen/registered/macron/ring -/plusminus/twosuperior/threesuperior/acute/mu 183/periodcentered/cedilla -/onesuperior/ordmasculine 188/onequarter/onehalf/threequarters 192/Agrave -/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute -/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde -/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave -/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute -/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex -/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute -/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex -/udieresis/yacute/thorn/ydieresis -TE -%AI55J_Tsume: None -%AI3_BeginEncoding: _HelveticaNeueLTStd-Th HelveticaNeueLTStd-Th -[/_HelveticaNeueLTStd-Th/HelveticaNeueLTStd-Th 0 0 1 TZ %AI3_EndEncoding AdobeType -%AI5_Begin_NonPrinting -Np -%AI8_PluginGroupInfo -(Adobe Vectorized Object) (Nachgezeichnetes Bild) (Vectorize.aip) -%AI8_PluginGroupInfo -(Adobe Flare Plugin) (Flare) (flare.aip) -%AI8_PluginGroupInfo -(Adobe Deform Plugin) (Adobe H\374llen-Zusatzmodul) (Envelope and Warp.aip) -%AI8_PluginGroupInfo -(Adobe Planar Group) (Adobe-Zusatzmodul Interaktiv malen) (Live Paint.aip) -%AI8_PluginGroupInfo -(Adobe Perspective Plugin Group) (Adobe Perspective Plugin Group) (Perspective.aip) -%AI8_PluginGroupInfo -(Adobe Path Blends) (Adobe Angleichungen-Zusatzmodul) (Live Blends.aip) -%AI8_PluginGroupInfo -(Adobe Symbolism) (Adobe Symbolism) (Symbolism.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe Calligraphic Brush Tool) (Adobe Kalligrafiepinsel-Zusatzmodul) (Calligraphic Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Pattern Editor Plugin Group) (Adobe Pattern Editor Plugin Group) (Swatch Libraries.aip) -%AI8_PluginGroupInfo -(Pathfinder Suite) (Adobe Zusammengesetzte Form) (PathFinder Suite.aip) -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -9 Bn -%AI5_BeginGradient: (Blauer Himmel) -(Blauer Himmel) 0 2 Bd -[ -0.591974 -0 -0.148531 -0 -0.239216 -0.870588 -0.929412 -4 %_Br -[ -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 Bs -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Goldstaub) -(Goldstaub) 0 4 Bd -[ -< -21202121222122222323222323242324242524242525252526262626272727272728282929292929 -2A2A2A2A2B2B2B2B2B2B2B2C2C2C2C2D2D2D2D2D2E2E2F2F30303030303131313132313232323232 -333333333434 -> -< -2D2F30313234343637393B3C3D3E4041434345464749494B4C4D4E4F50525354555658595B5C5D5E -5F616164656768696B6B6D6E6F70727374767778797A7B7D7E8081828384858688888A8B8D8E8F91 -919394959698 -> -< -F4F4F4F5F5F5F5F5F6F6F6F7F7F7F7F7F8F8F8F9F9F9FAFAFAFBFBFBFBFBFCFCFCFCFDFDFEFEFEFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF -> -< -030404040404050506060606060707070708080808080808090909090A0A0A0B0B0B0B0C0C0D0D0D -0D0D0E0E0E0E0F0F0F0F0F1010101011111011111211121213131414141515161616161717171717 -181819191A19 -> -< -E5E5E4E4E3E3E2E2E1E1E1E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D8D8D8D7D7D6D6D5D5D4D4D4 -D3D3D2D2D1D1D0D0D0CFCFCECECDCDCCCCCCCBCBCACAC9C9C8C8C7C7C7C6C6C5C5C4C4C3C3C3C2C2 -C1C1C0C0BFBF -> -< -C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E -9D9C9B999897969594939291908F8E8D8C8B8A898887868584838281807F7E7D7C7B7A7978777675 -74737271706F -> -0 -4 %_Br -< -171717181818181818181919191A1A1A1A1B1B1B1B1B1C1C1D1D1D1D1D1D1E1E1E1F1F20202021 -> -< -69686765646261605E5D5B5A5856555352514F4C4B4948464543413F3E3C3A3837353332302F2D -> -< -FAFAFAFAFAFAF9FAFAFAFAF9F9F9F9F9F8F8F8F7F7F6F6F6F6F6F6F6F5F5F5F4F5F5F4F4F4F4F4 -> -< -030303030303030303030303030404040404040404040404040404040404040404040404040403 -> -0.898039 -< -9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5 -> -< -030303030303030202020202020202020202020201010101010101010101010100000000000000 -> -4 %_Br -< -00000000000000000000000000000000000000000000000000000000000000000000000102040406 -060808090A0C0E0E0F0F1111131414151517 -> -< -A5A5A5A4A4A3A3A3A3A2A1A0A09F9E9E9D9B9B9A99989796959594939191908F8E8C8B8B89888685 -848281817F7D7C7A7978767472706F6D6B69 -> -< -F0F0F0F1F1F1F1F1F1F1F2F2F2F3F3F3F4F4F4F4F4F5F5F6F6F6F7F7F7F8F8F9F9FAFAFAFAFAFAFA -FAFBFBFBFBFCFCFCFCFCFCFBFBFBFBFBFAFA -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -000000000000010101010101010102020203 -> -< -FFFFFFFEFEFEFEFDFDFDFCFCFCFBFBFBFAFAF9F9F9F8F8F7F7F6F6F5F5F4F4F3F3F2F2F1F1F0F0EF -EFEEEEEDEDECEBEBEAEAE9E9E8E7E7E6E6E5 -> -< -73737374747575767677777878797A7A7B7C7C7D7E7E7F808181828384848586878889898A8B8C8D -8E8F90909192939495969798999A9B9C9D9E -> -< -00000000000000000000000000000001010101010101010101010101010101010101020202020202 -020202020202020202020303030303030303 -> -4 %_Br -[ -0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 %_BS -%_0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 Bs -0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 %_BS -%_0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 Bs -0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 %_BS -%_0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 Bs -0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 %_BS -%_0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 1) -(Unnamed gradient 1) 0 2 Bd -[ -< -0000010304050608090B0C0D0F10111213141718191A1B1C1E1F21222324252728292A -> -< -00000102030405060708090A0A0B0C0C0D0E1011111213141516171819191A1B1B1C1D -> -< -000001020304050708090A0B0C0D0E0F101112131415161718191A1B1C1C1D1E1F2021 -> -< -0000000000000000000000000000000000000000000000000000000000000000000000 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -4 %_Br -[ -0.81 0 1 6 50 100 %_BS -%_0.81 0 1 6 50 100 Bs -1 0 1 6 50 0 %_BS -%_1 0 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 17) -(Unnamed gradient 17) 1 2 Bd -[ -< -26252423222121201E1D1B1A191716151413131211100F0D0C0B09080605050403010000 -> -< -1F1E1D1D1C1B1A19181716151413131211100F0E0D0C0C0B0A0A09070605040302010000 -> -< -2120201F1E1D1C1C1B1A1817161615141312100F0F0E0D0C0B0A09080605040302010000 -> -< -000000000000000000000000000000000000000000000000000000000000000000000000 -> -< -DFE0E1E2E3E4E4E5E6E7E8E9EAEBECEDEEEFEFF0F1F2F3F4F5F6F7F8F9FAFAFBFCFDFEFF -> -< -DCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -< -DBDCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -4 %_Br -[ -0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 %_BS -%_0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 Bs -0 0 0 0 1 1 1 2 0 6 50 100 %_BS -%_0 0 0 0 1 1 1 2 0 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 2) -(Unnamed gradient 2) 0 2 Bd -[ -< -B7B8B8B9B9BABBBBBCBDBDBEBEBFC0C0C1C1C2C2C3C3C4C4C5C6C6C7C7C7C8C8C9CACACBCBCCCCCD -CDCECECFCFD0D1D1D2D2D3D3D4D4D5D5D6D6D7D7D8D8D9D9DA -> -< -515251535253555455575657575859595A5C5B5C5B5D5E5D5F605F61606163626364636564656766 -6869686A696B6C6B6D6E6D6F6E6F7170727373747475777678 -> -0 -0 -0 -< -9D9C9C9B9B9A999998979796969594949392929191908F8F8E8D8D8C8C8B8A8A8988888787868585 -84838382828180807F7E7E7D7D7C7B7B7A7979787877767675 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDDDCDBDAD9D8D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBE -> -4 %_Br -[ -0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 %_BS -%_0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 Bs -0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 %_BS -%_0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 28) -(Unnamed gradient 28) 1 2 Bd -[ -< -0000010304050608090A0C0D0F10111314151617181A1B1C1D1E1F20212324262728292A2B2D2E30 -31323335363738393A3C3D3E404142434445464748494A4B4C4D4E4F5051525354565758595A -> -< -00000100010203040504060708090908090A0B0C0C0C0D0D0E0F100F101112131413141516171816 -1718191A1B1A1B1C1D1E1F1E1F20212223222324252627262728292A2B2A2B2C2D2E2F2E2F30 -> -< -0000000103040304050707080909090B0C0B0C0D0E0E0F100F10111312131415151717171818191A -1B1B1C1C1C1E1D1E1F20202122232223242425252625262829282829282A2B2C2B2D2E2F2F2F -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000001000101010101010202020202020203030303030404 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1 -> -< -FFFEFDFDFCFBFAF9F8F8F7F6F5F4F3F3F2F1F0EFEEEEEDECEBEAE9E9E8E7E6E5E4E4E3E2E1E0DFDF -DEDDDCDBDADAD9D8D7D6D5D5D4D3D2D1D0D0CFCECDCCCBCBCAC9C8C7C6C6C5C4C3C2C1C1C0BF -> -< -FFFEFEFDFCFBFBFAF9F8F8F7F6F6F5F4F3F3F2F1F0F0EFEEEEEDECEBEBEAE9E8E8E7E6E6E5E4E3E3 -E2E1E0E0DFDEDEDDDCDBDBDAD9D8D8D7D6D6D5D4D3D3D2D1D0D0CFCECECDCCCBCBCAC9C8C8C7 -> -4 %_Br -[ -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 %_BS -%_0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 3) -(Unnamed gradient 3) 0 2 Bd -[ -< -2C2D2E2F303132333435363738393B3C3D3E3F4142434445464748494A4B4C4D4F50505152535454 -5556575858595A5B5C5D5E5F606162636364656667686969 -> -< -00000000000000000000000000000000000000000000000001000000000100000000000000010000 -010002010002010201000201020101030204040305040606 -> -0 -0 -< -DAD9D8D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBB9B8B7B6B5B4B3B2 -B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A -> -< -F1F1F0F0EFEFEFEEEEEDEDEDECECEBEBEBEAEAE9E9E9E8E8E7E7E7E6E6E5E5E5E4E4E4E3E3E2E2E2 -E1E1E0E0E0DFDFDEDEDEDDDDDCDCDCDBDBDADADAD9D9D8D8 -> -1 -4 %_Br -[ -0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 %_BS -%_0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 Bs -0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 %_BS -%_0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 7) -(Unnamed gradient 7) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Weiß, Schwarz) -(Weiß, Schwarz) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI3_BeginPattern: (Jive) -(Jive) 47.5615 109.6396 155.9004 219.2813 -%_0 A -%_0 Xw -%_u -%_0 1 0 0 0 Xy -%_0 J 0 j 1 w 10 M []0 d %_0 XR -%_47.5615 219.2813 m -%_155.9004 219.2813 L -%_155.9004 109.6396 L -%_47.5615 109.6396 L -%_47.5615 219.2813 L -%_n -%_/ArtDictionary : -%_1 /Bool (AIPattern_Editor_Backing_Tile_Rect) , -%_; -%_ -%_u -%_*u -%_1 D -%_0 O -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_135.0352 74.9453 m -%_135.0566 75.0645 135.1602 75.1504 135.2813 75.1523 c -%_148.1875 75.2871 160.0352 78.4199 169.2529 86.667 C -%_161.2227 81.1094 146.3105 79.1563 137.7256 83.0488 c -%_137.6152 83.0986 137.5566 83.2188 137.584 83.3369 c -%_137.6104 83.4551 137.7168 83.5371 137.8379 83.5332 c -%_148.5176 83.2441 157.1172 86.54 163.8223 92.498 C -%_156.9531 92.9199 151.248 97.2383 151.2656 102.3428 c -%_151.2656 102.4619 151.3496 102.5645 151.4668 102.5898 c -%_151.583 102.6152 151.7012 102.5547 151.75 102.4463 c -%_152.8711 99.957 156.498 98.666 160.333 99.5664 c -%_164.5127 100.5469 167.333 103.7559 166.6338 106.7314 c -%_166.1621 108.7461 164.1973 110.1348 161.6816 110.5186 c -%_161.5547 110.5371 161.4619 110.6484 161.4648 110.7764 c -%_161.4688 110.9043 161.5674 111.0098 161.6953 111.0215 c -%_162.7637 111.124 163.875 111.1279 165.0127 111.0195 c -%_171.5029 110.4023 176.5264 106.4238 176.9619 101.8418 C -%_181.6748 102.3887 185.8467 104.998 187.3408 108.6152 c -%_187.3857 108.7236 187.501 108.7871 187.6162 108.7695 c -%_187.7314 108.75 187.8193 108.6553 187.8291 108.5391 c -%_188.2061 103.7871 186.5713 100.7002 182.8584 97.6846 C -%_188.2432 99.7441 194.3027 99.8496 200.1133 97.1465 c -%_200.2188 97.0977 200.2773 96.9824 200.2559 96.8672 c -%_200.2324 96.752 200.1328 96.668 200.0156 96.6641 c -%_195.1367 96.4736 191.5996 94.9082 188.2861 91.5918 C -%_206.5391 96.7256 221.3711 85.3906 216.2383 68.5391 c -%_216.2031 68.4238 216.0918 68.3486 215.9707 68.3613 c -%_215.8496 68.373 215.7539 68.4688 215.7441 68.5898 c -%_214.8262 78.3037 208.041 84.7051 197.8828 85.666 C -%_203.2695 83.6055 208.8828 78.6895 209.4395 70.1318 c -%_209.4473 70.0098 209.3672 69.8984 209.248 69.8691 c -%_209.1289 69.8398 209.0059 69.8984 208.9551 70.0098 c -%_206.1563 76.1641 200.6582 79.2754 194.7949 79.8223 C -%_201.1289 77.2422 205.1914 71.2207 206.3652 63.4023 c -%_206.3848 63.2793 206.3105 63.1602 206.1914 63.123 c -%_206.0742 63.084 205.9453 63.1387 205.8887 63.248 c -%_202.0234 70.8311 193.7324 76.042 183.4424 72.0605 c -%_172.8252 67.9512 168.168 55.6738 167.1387 47.0195 c -%_167.124 46.8984 167.0234 46.8047 166.9004 46.7969 c -%_166.7783 46.7891 166.668 46.8711 166.6396 46.9922 c -%_162.9199 62.6797 170.2227 78.9414 183.2764 85.832 C -%_176.1807 83.8291 169.8369 79.5723 166.249 72.4775 C -%_157.9551 71.459 152.2451 68.6152 149.3916 63.2383 c -%_149.335 63.1309 149.2109 63.0781 149.0957 63.1133 c -%_148.9805 63.1465 148.9043 63.2578 148.9141 63.3789 c -%_149.0967 65.4883 149.8555 69.709 152.9883 71.6494 C -%_146.0234 71.6387 140.4824 72.543 135.1895 74.6621 c -%_135.0781 74.708 135.0127 74.8262 135.0352 74.9453 c -%_f -%_0 D -%_164.5215 21.4746 m -%_164.4229 21.541 164.293 21.5293 164.2061 21.4492 c -%_164.1201 21.3672 164.1016 21.2383 164.1602 21.1367 c -%_165.7803 18.3398 164.3008 14.3223 161.1094 14.3223 c -%_155.3887 14.3223 152.6387 25.0918 153.5137 34.916 C -%_155.6768 29.1602 157.5469 26.8613 160.8613 24.1211 c -%_160.9551 24.043 161.0898 24.043 161.1836 24.1191 c -%_161.2773 24.1973 161.3047 24.3281 161.2471 24.4355 c -%_156.3906 33.5156 155.3496 40.502 155.3496 48.5215 C -%_156.8125 42.5625 158.5449 39.1992 163.4766 34.1406 c -%_163.5625 34.0527 163.6992 34.0391 163.8018 34.1074 c -%_163.9033 34.1777 163.9404 34.3105 163.8887 34.4238 c -%_158.5908 46.0137 158.9951 58.8711 162.9414 68.6875 c -%_162.9805 68.7852 162.9561 68.8965 162.8789 68.9688 c -%_162.8018 69.0391 162.6895 69.0566 162.5938 69.0098 c -%_157.3887 66.459 154.3301 64.7832 149.8418 58.6211 C -%_151.1992 51.2227 150.0703 47.5723 146.6699 41.4258 C -%_150.6074 51.3438 148.5117 65.3203 138.4824 71.0176 c -%_138.373 71.0791 138.2344 71.0518 138.1582 70.9531 c -%_138.0801 70.8535 138.0869 70.7119 138.1738 70.6211 c -%_141.9551 66.666 144.7051 59.9863 142.3301 52.6934 C -%_143.8594 63.082 134.7344 71.8086 124.5508 71.8086 c -%_114.9512 71.8086 108.4004 64.2988 108.9414 56.8672 c -%_109.4785 49.502 114.3848 45.8984 118.6133 44.3691 c -%_118.7246 44.3301 118.8496 44.3711 118.9131 44.4707 c -%_118.9766 44.5723 118.9629 44.7012 118.8799 44.7871 c -%_113.2695 50.4785 112.502 61.2793 122.4629 64.5469 C -%_116.6035 59.4902 118.7734 47.7168 128.1523 46.8223 c -%_128.2695 46.8105 128.3789 46.8809 128.417 46.9922 c -%_128.4551 47.1035 128.4121 47.2266 128.3135 47.2891 c -%_126.3047 48.5664 124.6348 51.0605 124.6348 53.8633 c -%_124.6348 58.5371 128.0566 60.373 130.3105 60.373 c -%_133.7324 60.373 136.5703 57.1172 136.5703 52.1934 c -%_136.5703 46.3496 131.3105 41.5098 124.5508 40.7578 c -%_117.9248 40.0234 111.7686 42.9121 108.8008 47.2168 c -%_108.7314 47.3184 108.5996 47.3555 108.4873 47.3047 c -%_108.375 47.2539 108.3164 47.1289 108.3467 47.0098 c -%_111.3652 35.3066 125.1426 30.1328 135.2344 37.5039 C -%_128.6211 30.002 118.2285 29.8984 109.5127 37.5898 c -%_109.4219 37.6699 109.2871 37.6738 109.1904 37.5996 c -%_109.0938 37.5273 109.0635 37.3945 109.1172 37.2871 c -%_111.7842 31.8789 118.3701 25.4668 127.7227 26.4023 c -%_136.2793 27.2578 141.2441 35.416 142.2461 42.0938 C -%_142.8027 33.5723 140.8525 27.5566 133.4922 21.9473 c -%_133.3955 21.873 133.3652 21.7402 133.4199 21.6309 c -%_133.4746 21.5234 133.5996 21.4688 133.7168 21.502 c -%_140.502 23.4629 145.9473 26.9277 148.7656 34.0469 C -%_148.7656 27.8848 146.627 21.6738 141.2402 17.5352 c -%_141.1426 17.4609 141.1133 17.3301 141.168 17.2207 c -%_141.2227 17.1113 141.3467 17.0566 141.4639 17.0898 c -%_144.917 18.0742 147.6348 19.5781 149.6016 22.2754 C -%_150.9121 11.1758 156.123 4.58398 162.127 4.58398 c -%_166.252 4.58398 169.332 7.61719 169.332 12.4551 c -%_169.332 15.2852 167.8438 19.2578 164.5215 21.4746 c -%_f -%_263.748 113.0938 m -%_260.5859 116.998 254.209 118.4863 247.3164 117.082 C -%_247.8262 121.3828 246.9824 125.873 245.7051 128.5664 c -%_245.6523 128.6758 245.5313 128.7334 245.4141 128.7051 c -%_245.2969 128.6758 245.2168 128.5684 245.2207 128.4473 c -%_245.5957 119.6807 240.5977 112.6035 231.7715 109.5371 C -%_238.6777 114.293 240.6973 123.7305 237.4102 128.6035 c -%_237.3418 128.7021 237.2148 128.7412 237.1035 128.6953 c -%_236.9922 128.6504 236.9277 128.5332 236.9492 128.416 c -%_237.3223 126.3555 236.3438 123.7314 234.2363 121.6895 c -%_231.3301 118.875 227.3867 118.2363 225.4258 120.2598 c -%_223.4648 122.2852 224.2285 126.207 227.1328 129.0215 c -%_228.1934 130.0488 229.3926 130.7832 230.582 131.2061 c -%_230.6953 131.2461 230.7637 131.3594 230.748 131.4775 c -%_230.7344 131.5967 230.6387 131.6885 230.5195 131.6982 c -%_224.1309 132.2529 219.75 128.4463 217.0039 123.8203 c -%_214.209 119.1152 209.4336 115.4102 203.793 116.1504 c -%_203.6738 116.166 203.5605 116.0957 203.5195 115.9824 c -%_203.4805 115.8691 203.5254 115.7422 203.6289 115.6807 c -%_206.4258 113.9961 209.5 113.2969 213.4922 114.6289 C -%_207.6973 109.7197 199.4453 106.8867 191.6523 109.4014 c -%_191.543 109.4375 191.4238 109.3945 191.3613 109.2979 c -%_191.2988 109.2012 191.3105 109.0752 191.3867 108.9902 c -%_197.2949 102.4258 209.0762 102.2949 216.4961 107.6172 C -%_213.459 103.3008 209.4277 100.1328 202.2031 99.1387 c -%_202.0879 99.123 201.998 99.0313 201.9844 98.916 c -%_201.9727 98.7998 202.0391 98.6904 202.1484 98.6504 c -%_210.4395 95.5723 218.748 98.6953 225.5938 106.8652 C -%_222.6016 100.4883 217.6875 95.3809 210.8262 92.8535 c -%_210.7109 92.8115 210.6426 92.6934 210.6641 92.5742 c -%_210.6836 92.4531 210.7871 92.3643 210.9082 92.3613 c -%_214.8516 92.2803 218.3945 93.2188 223.1738 95.9316 C -%_219.666 90.2422 220.4336 80.293 225.543 73.6738 c -%_225.6133 73.582 225.7383 73.5498 225.8457 73.5957 c -%_225.9512 73.6426 226.0137 73.7549 225.9941 73.8691 c -%_224.8145 81.0703 227.293 89.1992 231.6035 93.5117 C -%_229.4512 85.8799 231.5977 78.9355 237.5 73.8672 c -%_237.5703 73.8066 237.6699 73.79 237.7559 73.8232 c -%_237.8438 73.8564 237.9043 73.9355 237.918 74.0273 c -%_239.1523 83.4453 249.6875 93.002 258.5195 93.8027 c -%_258.6445 93.8135 258.7422 93.9141 258.75 94.0381 c -%_258.7578 94.1621 258.6758 94.2754 258.5527 94.3027 c -%_254.2734 95.2715 249.8613 94.793 246.1641 93.2715 C -%_248.8242 96.2051 252.1035 98.3828 255.7188 99.5176 c -%_255.8359 99.5537 255.9082 99.668 255.8945 99.7891 c -%_255.8809 99.9102 255.7813 100.0039 255.6602 100.0127 c -%_251.1504 100.3242 246.7363 99.0068 242.9297 96.4746 C -%_247.291 103.0957 253.9102 108.0195 262.3574 109.9805 c -%_262.4785 110.0088 262.5605 110.1191 262.5547 110.2432 c -%_262.5469 110.3672 262.4512 110.4668 262.3281 110.4805 c -%_250.4102 111.7822 240.582 107.1621 234.1074 98.5625 C -%_235.7559 103.4629 240.4727 108.3184 247.0527 111.1816 c -%_252.8984 113.7266 258.9023 114.1279 263.4746 112.6914 c -%_263.5801 112.6582 263.6973 112.6982 263.7598 112.791 c -%_263.8223 112.8828 263.8184 113.0059 263.748 113.0938 c -%_f -%_210.8438 37.5215 m -%_215.6504 48.0078 215.3086 56.207 211.4375 66.5762 c -%_211.3926 66.6934 211.2715 66.7607 211.1484 66.7363 c -%_211.0254 66.7109 210.9395 66.5996 210.9453 66.4746 c -%_211.5664 53.8535 208.1191 44.8203 200.6465 38.668 C -%_208.8965 48.5195 205 68.2275 191.8242 68.2275 c -%_182.2393 68.2275 174.3086 60.252 172.3691 50.7031 c -%_172.3447 50.582 172.4111 50.459 172.5273 50.416 c -%_172.6426 50.3711 172.7734 50.416 172.8359 50.5215 c -%_175.6787 55.2832 180.2451 58.373 185.2939 58.373 c -%_193.4277 58.373 195.834 51.9063 195.834 47.375 c -%_195.834 41.1875 190.9082 36.0313 187.1279 36.0313 c -%_183.6904 36.0313 182.0869 38.8555 182.0869 40.959 c -%_182.0869 44.8574 185.085 48.125 188.4639 49.123 c -%_188.583 49.1582 188.6611 49.2773 188.6436 49.4023 c -%_188.624 49.5273 188.5186 49.6191 188.3936 49.6211 c -%_184.2861 49.6465 180.8154 47.7656 178.7627 44.0527 C -%_178.4932 46.9277 178.4902 48.7383 179.4033 51.7754 c -%_179.4385 51.8926 179.3848 52.0176 179.2773 52.0742 c -%_179.168 52.1309 179.0352 52.1016 178.9609 52.0059 c -%_171.6045 42.6133 175.125 26.3809 180.9404 19.6484 C -%_175.4082 23.6309 170.5234 32.2813 170.6006 44.041 c -%_170.6016 44.1641 170.5156 44.2676 170.3955 44.291 c -%_170.2754 44.3164 170.1563 44.25 170.1113 44.1367 c -%_166.0029 33.8848 168.1826 14.8887 179.3926 4.28516 C -%_176.5088 3.88867 173.5254 3.93945 170.2676 4.97852 c -%_170.1523 5.01367 170.0273 4.96484 169.9688 4.85938 c -%_169.9102 4.75195 169.9336 4.61914 170.0273 4.54102 c -%_174.1191 1.08594 179.8418 0 185.2939 0 C -%_180.5967 5.5 182.1572 16.5547 189.6494 16.5547 c -%_194.9961 16.5547 197.4238 8.25586 193.2949 3.77344 c -%_193.2168 3.6875 193.207 3.55859 193.2695 3.46289 c -%_193.334 3.36523 193.4551 3.32227 193.5664 3.36133 c -%_198.3457 5.01563 203.5117 9.15039 203.5117 14.377 c -%_203.5117 19.4199 198.6992 23.7715 191.7109 23.4277 C -%_200.5293 25.9336 209.7617 23.1602 214.5918 17.1758 c -%_214.666 17.082 214.7969 17.0547 214.9023 17.1074 c -%_215.0098 17.1621 215.0645 17.2832 215.0352 17.3984 c -%_212.2441 28.1152 203.0684 32.5977 191.5957 31.1055 C -%_200.877 34.8613 214.8457 31.5859 221.0195 23.7949 c -%_221.0918 23.7031 221.2188 23.6738 221.3262 23.7227 c -%_221.4316 23.7734 221.4902 23.8906 221.4668 24.0039 c -%_220.0957 30.6191 216.6035 35.5664 210.8438 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 56.8086 m -%_237.2051 56.6895 237.1016 56.6016 236.9805 56.6016 c -%_224.0742 56.4648 212.2266 53.334 203.0098 45.0859 C -%_211.0391 50.6445 225.9512 52.5957 234.5371 48.7051 c -%_234.6465 48.6543 234.7051 48.5332 234.6777 48.416 c -%_234.6523 48.2988 234.5449 48.2168 234.4238 48.2188 c -%_223.7441 48.5098 215.1445 45.2129 208.4395 39.2559 C -%_215.3086 38.832 221.0137 34.5156 220.9961 29.4102 c -%_220.9961 29.291 220.9121 29.1875 220.7949 29.1621 c -%_220.6797 29.1387 220.5605 29.1973 220.5117 29.3066 c -%_219.3906 31.7949 215.7637 33.0879 211.9297 32.1875 c -%_207.75 31.2051 204.9297 27.998 205.6289 25.0215 c -%_206.0996 23.0078 208.0645 21.6191 210.5801 21.2344 c -%_210.707 21.2148 210.8008 21.1055 210.7969 20.9766 c -%_210.793 20.8496 210.6953 20.7441 210.5664 20.7305 c -%_209.498 20.6289 208.3867 20.625 207.25 20.7344 c -%_200.7598 21.3516 195.7363 25.3281 195.3008 29.9121 C -%_190.5889 29.3652 186.417 26.7539 184.9229 23.1387 c -%_184.8779 23.0293 184.7646 22.9668 184.6475 22.9844 c -%_184.5322 23.002 184.4443 23.0977 184.4346 23.2148 c -%_184.0576 27.9648 185.6924 31.0527 189.4053 34.0684 C -%_184.0205 32.0098 177.959 31.9043 172.1484 34.6055 c -%_172.043 34.6563 171.9844 34.7715 172.0059 34.8867 c -%_172.0293 35.002 172.1289 35.0859 172.2461 35.0898 c -%_177.125 35.2793 180.6631 36.8457 183.9795 40.1621 C -%_165.7227 35.0273 150.8906 46.3633 156.0234 63.2129 c -%_156.0586 63.3301 156.1699 63.4043 156.291 63.3926 c -%_156.4121 63.3809 156.5078 63.2852 156.5176 63.1641 c -%_157.4355 53.4492 164.2207 47.0469 174.3789 46.0879 C -%_168.9922 48.1465 163.3789 53.0625 162.8223 61.6211 c -%_162.8145 61.7441 162.8945 61.8535 163.0137 61.8848 c -%_163.1328 61.9141 163.2559 61.8535 163.3066 61.7422 c -%_166.1055 55.5879 171.6035 52.4785 177.4668 51.9297 C -%_171.1328 54.5117 167.0703 60.5332 165.8965 68.3516 c -%_165.877 68.4746 165.9512 68.5918 166.0703 68.6309 c -%_166.1875 68.668 166.3164 68.6152 166.373 68.5039 c -%_170.2383 60.9219 178.5293 55.7109 188.8213 59.6934 c -%_199.4375 63.8027 204.0938 76.0781 205.123 84.7324 c -%_205.1387 84.8555 205.2383 84.9492 205.3613 84.957 c -%_205.4844 84.9629 205.5938 84.8809 205.623 84.7617 c -%_209.3418 69.0723 202.0391 52.8125 188.9873 45.9219 C -%_196.082 47.9238 202.4258 52.1816 206.0137 59.2754 C -%_214.3066 60.293 220.0176 63.1387 222.8711 68.5156 c -%_222.9277 68.6211 223.0508 68.6738 223.166 68.6406 c -%_223.2813 68.6055 223.3574 68.4941 223.3477 68.375 c -%_223.166 66.2656 222.4063 62.0449 219.2734 60.1035 C -%_226.2383 60.1152 231.7793 59.2109 237.0723 57.0898 c -%_237.1836 57.0449 237.25 56.9277 237.2266 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 110.2773 m -%_207.8398 110.2129 207.9688 110.2227 208.0566 110.3047 c -%_208.1426 110.3848 208.1602 110.5137 208.1016 110.6172 c -%_206.4824 113.4141 207.9609 117.4297 211.1523 117.4297 c -%_216.873 117.4297 219.623 106.6602 218.748 96.8379 C -%_216.5859 102.5918 214.7148 104.8926 211.4004 107.6328 c -%_211.3066 107.709 211.1719 107.7109 211.0781 107.6328 c -%_210.9844 107.5566 210.957 107.4238 211.0156 107.3164 c -%_215.8711 98.2383 216.9121 91.252 216.9121 83.2324 C -%_215.4492 89.1895 213.7168 92.5527 208.7852 97.6133 c -%_208.6992 97.7012 208.5625 97.7148 208.4609 97.6445 c -%_208.3594 97.5742 208.3223 97.4414 208.373 97.3301 c -%_213.6719 85.7383 213.2676 72.8828 209.3203 63.0664 c -%_209.2813 62.9688 209.3066 62.8574 209.3828 62.7852 c -%_209.4609 62.7129 209.5723 62.6973 209.668 62.7422 c -%_214.873 65.293 217.9316 66.9688 222.4199 73.1328 C -%_221.0625 80.5313 222.1914 84.1797 225.5918 90.3262 C -%_221.6543 80.4102 223.75 66.4336 233.7793 60.7363 c -%_233.8887 60.6738 234.0273 60.7012 234.1035 60.8008 c -%_234.1816 60.9004 234.1758 61.041 234.0879 61.1328 c -%_230.3066 65.0879 227.5566 71.7676 229.9316 79.0586 C -%_228.4023 68.6699 237.5273 59.9453 247.7109 59.9453 c -%_257.3105 59.9453 263.8613 67.4531 263.3203 74.8848 c -%_262.7832 82.25 257.877 85.8555 253.6484 87.3828 c -%_253.5371 87.4238 253.4121 87.3809 253.3496 87.2813 c -%_253.2852 87.1816 253.2988 87.0508 253.3828 86.9668 c -%_258.9922 81.2734 259.7598 70.4746 249.7988 67.207 C -%_255.6582 72.2637 253.4883 84.0352 244.1094 84.9316 c -%_243.9922 84.9414 243.8828 84.8711 243.8457 84.7598 c -%_243.8066 84.6504 243.8496 84.5273 243.9492 84.4648 c -%_245.957 83.1855 247.627 80.6934 247.627 77.8906 c -%_247.627 73.2168 244.2051 71.3789 241.9512 71.3789 c -%_238.5293 71.3789 235.6914 74.6348 235.6914 79.5605 c -%_235.6914 85.4023 240.9512 90.2441 247.7109 90.9941 c -%_254.3379 91.7305 260.4941 88.8398 263.4609 84.5352 c -%_263.5313 84.4336 263.6621 84.3984 263.7754 84.4492 c -%_263.8867 84.5 263.9453 84.623 263.916 84.7422 c -%_260.8965 96.4453 247.1191 101.6191 237.0273 94.25 C -%_243.6406 101.75 254.0332 101.8555 262.75 94.1641 c -%_262.8398 94.084 262.9746 94.0781 263.0723 94.1523 c -%_263.168 94.2266 263.1992 94.3574 263.1445 94.4668 c -%_260.4785 99.873 253.8926 106.2852 244.5391 105.3516 c -%_235.9824 104.4961 231.0176 96.3359 230.0156 89.6602 C -%_229.459 98.1816 231.4102 104.1953 238.7695 109.8047 c -%_238.8672 109.8789 238.8965 110.0117 238.8418 110.1211 c -%_238.7871 110.2305 238.6621 110.2852 238.5449 110.25 c -%_231.7598 108.291 226.3145 104.8262 223.4961 97.707 C -%_223.4961 103.8672 225.6348 110.0781 231.0215 114.2168 c -%_231.1191 114.291 231.1484 114.4238 231.0938 114.5332 c -%_231.0391 114.6406 230.916 114.6953 230.7988 114.6621 c -%_227.3457 113.6797 224.627 112.1738 222.6602 109.4785 C -%_221.3496 120.5781 216.1387 127.168 210.1348 127.168 c -%_206.0098 127.168 202.9297 124.1348 202.9297 119.2988 c -%_202.9297 116.4688 204.418 112.4961 207.7402 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 18.6602 m -%_111.6758 14.7559 118.0527 13.2676 124.9453 14.6719 C -%_124.4355 10.3691 125.2793 5.88086 126.5566 3.18555 c -%_126.6094 3.07813 126.7305 3.01953 126.8477 3.04883 c -%_126.9648 3.07813 127.0449 3.18555 127.041 3.30664 c -%_126.666 12.0723 131.6641 19.1484 140.4902 22.2148 C -%_133.584 17.459 131.5645 8.02148 134.8516 3.15039 c -%_134.9199 3.05078 135.0469 3.01172 135.1582 3.05664 c -%_135.2695 3.10156 135.334 3.21875 135.3125 3.33789 c -%_134.9395 5.39844 135.918 8.02148 138.0254 10.0625 c -%_140.9316 12.877 144.875 13.5156 146.8359 11.4922 c -%_148.7969 9.4668 148.0332 5.54492 145.1289 2.73242 c -%_144.0684 1.70508 142.8691 0.96875 141.6797 0.546875 c -%_141.5664 0.505859 141.498 0.392578 141.5137 0.275391 c -%_141.5273 0.15625 141.623 0.064453 141.7422 0.054688 c -%_148.1309 -0.5 152.5117 3.30664 155.2578 7.93164 c -%_158.0527 12.6367 162.8281 16.3438 168.4688 15.6035 c -%_168.5879 15.5879 168.7012 15.6582 168.7422 15.7715 c -%_168.7813 15.8848 168.7363 16.0098 168.6328 16.0723 c -%_165.8359 17.7559 162.7617 18.4551 158.7695 17.125 C -%_164.5645 22.0332 172.8164 24.8652 180.6104 22.3516 c -%_180.7197 22.3164 180.8389 22.3594 180.9014 22.4551 c -%_180.9639 22.5508 180.9541 22.6777 180.876 22.7637 c -%_174.9668 29.3281 163.1855 29.459 155.7656 24.1348 C -%_158.8027 28.4512 162.834 31.6211 170.0586 32.6133 c -%_170.1738 32.6289 170.2637 32.7227 170.2773 32.8379 c -%_170.2891 32.9531 170.2227 33.0625 170.1133 33.1035 c -%_161.8223 36.1797 153.5137 33.0586 146.668 24.8867 C -%_149.6602 31.2656 154.5742 36.373 161.4355 38.9004 c -%_161.5508 38.9414 161.6191 39.0586 161.5977 39.1797 c -%_161.5781 39.3008 161.4746 39.3887 161.3535 39.3906 c -%_157.4102 39.4727 153.8672 38.5332 149.0879 35.8203 C -%_152.5957 41.5117 151.8281 51.459 146.7188 58.0801 c -%_146.6484 58.1719 146.5234 58.2031 146.416 58.1582 c -%_146.3105 58.1113 146.248 57.998 146.2676 57.8828 c -%_147.4473 50.6836 144.9688 42.5547 140.6582 38.2422 C -%_142.8105 45.873 140.6641 52.8184 134.7617 57.8848 c -%_134.6914 57.9453 134.5918 57.9629 134.5059 57.9297 c -%_134.418 57.8965 134.3574 57.8184 134.3438 57.7266 c -%_133.1094 48.3086 122.5742 38.752 113.7422 37.9512 c -%_113.6172 37.9395 113.5195 37.8398 113.5117 37.7148 c -%_113.5039 37.5898 113.5859 37.4785 113.709 37.4512 c -%_117.9883 36.4824 122.4004 36.9609 126.0977 38.4805 C -%_123.4375 35.5488 120.1582 33.3711 116.543 32.2363 c -%_116.4258 32.1992 116.3535 32.0859 116.3672 31.9648 c -%_116.3809 31.8438 116.4805 31.748 116.6016 31.7402 c -%_121.1113 31.4297 125.5254 32.7461 129.332 35.2793 C -%_124.9707 28.6582 118.3516 23.7344 109.9043 21.7715 c -%_109.7832 21.7441 109.7012 21.6328 109.707 21.5098 c -%_109.7148 21.3867 109.8105 21.2871 109.9336 21.2734 c -%_121.8516 19.9707 131.6797 24.5918 138.1543 33.1914 C -%_136.5059 28.2891 131.7891 23.4355 125.209 20.5723 c -%_119.3633 18.0273 113.3594 17.625 108.7871 19.0625 c -%_108.6816 19.0957 108.5645 19.0547 108.502 18.9629 c -%_108.4395 18.8691 108.4434 18.7461 108.5137 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 94.2324 m -%_156.6113 83.7461 156.9531 75.5469 160.8242 65.1777 c -%_160.8691 65.0605 160.9902 64.9922 161.1133 65.0176 c -%_161.2363 65.043 161.3223 65.1543 161.3164 65.2773 c -%_160.6953 77.9004 164.1426 86.9316 171.6152 93.0859 C -%_163.3652 83.2324 167.2617 63.5254 180.4385 63.5254 c -%_190.0244 63.5254 197.9531 71.502 199.8926 81.0508 c -%_199.918 81.1719 199.8516 81.293 199.7344 81.3379 c -%_199.6191 81.3828 199.4883 81.3379 199.4258 81.2305 c -%_196.584 76.4688 192.0176 73.3789 186.9697 73.3789 c -%_178.834 73.3789 176.4277 79.8457 176.4277 84.3789 c -%_176.4277 90.5645 181.3545 95.7207 185.1357 95.7207 c -%_188.5732 95.7207 190.1768 92.8984 190.1768 90.7949 c -%_190.1768 86.8965 187.1787 83.6289 183.8018 82.6309 c -%_183.6807 82.5938 183.6045 82.4766 183.6221 82.3516 c -%_183.6396 82.2266 183.7451 82.1328 183.8721 82.1328 c -%_187.9775 82.1074 191.4473 83.9863 193.5 87.7012 C -%_193.7695 84.8262 193.7715 83.0156 192.8594 79.9766 c -%_192.8242 79.8594 192.877 79.7344 192.9844 79.6777 c -%_193.0938 79.623 193.2266 79.6504 193.3008 79.748 c -%_200.6582 89.1406 197.1367 105.3711 191.3223 112.1055 C -%_196.8535 108.123 201.7383 99.4707 201.6621 87.7109 c -%_201.6602 87.5898 201.7461 87.4844 201.8672 87.4609 c -%_201.9863 87.4375 202.1055 87.502 202.1504 87.6152 c -%_206.2598 97.8691 204.0801 116.8633 192.8691 127.4668 C -%_195.7539 127.8652 198.7363 127.8145 201.9941 126.7754 c -%_202.1094 126.7383 202.2344 126.7891 202.293 126.8945 c -%_202.3516 127 202.3281 127.1328 202.2344 127.2109 c -%_198.1426 130.666 192.4199 131.752 186.9697 131.752 C -%_191.666 126.252 190.1064 115.1992 182.6162 115.1992 c -%_177.2656 115.1992 174.8379 123.498 178.9668 127.9805 c -%_179.0449 128.0664 179.0547 128.1934 178.9922 128.291 c -%_178.9277 128.3887 178.8066 128.4297 178.6953 128.3926 c -%_173.916 126.7363 168.75 122.6035 168.75 117.375 c -%_168.75 112.334 173.5625 107.9805 180.5537 108.3242 C -%_171.7324 105.8203 162.5 108.5918 157.6699 114.5781 c -%_157.5957 114.6699 157.4648 114.6992 157.3594 114.6445 c -%_157.252 114.5918 157.1973 114.4707 157.2266 114.3535 c -%_160.0176 103.6387 169.1934 99.1543 180.667 100.6484 C -%_171.3848 96.8906 157.416 100.166 151.2422 107.957 c -%_151.1699 108.0488 151.043 108.0801 150.9355 108.0293 c -%_150.8301 107.9805 150.7715 107.8633 150.7949 107.748 c -%_152.166 101.1328 155.6582 96.1875 161.418 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 74.9453 m -%_26.7178 75.0645 26.8213 75.1504 26.9424 75.1523 c -%_39.8486 75.2871 51.6963 78.4199 60.9141 86.667 C -%_52.8838 81.1094 37.9717 79.1563 29.3867 83.0488 c -%_29.2764 83.0986 29.2178 83.2188 29.2451 83.3369 c -%_29.2715 83.4551 29.3779 83.5371 29.499 83.5332 c -%_40.1787 83.2441 48.7783 86.54 55.4834 92.498 C -%_48.6143 92.9199 42.9092 97.2383 42.9268 102.3428 c -%_42.9268 102.4619 43.0107 102.5645 43.1279 102.5898 c -%_43.2441 102.6152 43.3623 102.5547 43.4111 102.4463 c -%_44.5322 99.957 48.1592 98.666 51.9941 99.5664 c -%_56.1738 100.5469 58.9941 103.7559 58.2949 106.7314 c -%_57.8232 108.7461 55.8584 110.1348 53.3428 110.5186 c -%_53.2158 110.5371 53.123 110.6484 53.126 110.7764 c -%_53.1299 110.9043 53.2285 111.0098 53.3564 111.0215 c -%_54.4248 111.124 55.5361 111.1279 56.6738 111.0195 c -%_63.1641 110.4023 68.1875 106.4238 68.623 101.8418 C -%_73.3359 102.3887 77.5078 104.998 79.002 108.6152 c -%_79.0469 108.7236 79.1621 108.7871 79.2773 108.7695 c -%_79.3926 108.75 79.4805 108.6553 79.4902 108.5391 c -%_79.8672 103.7871 78.2324 100.7002 74.5195 97.6846 C -%_79.9043 99.7441 85.9648 99.8496 91.7754 97.1465 c -%_91.8809 97.0977 91.9395 96.9824 91.918 96.8672 c -%_91.8945 96.752 91.7949 96.668 91.6777 96.6641 c -%_86.7988 96.4736 83.2617 94.9082 79.9473 91.5918 C -%_98.2012 96.7256 113.0332 85.3906 107.9004 68.5391 c -%_107.8652 68.4238 107.7539 68.3486 107.6328 68.3613 c -%_107.5117 68.373 107.416 68.4688 107.4063 68.5898 c -%_106.4883 78.3037 99.7031 84.7051 89.5449 85.666 C -%_94.9316 83.6055 100.5449 78.6895 101.1016 70.1318 c -%_101.1094 70.0098 101.0293 69.8984 100.9102 69.8691 c -%_100.791 69.8398 100.668 69.8984 100.6172 70.0098 c -%_97.8184 76.1641 92.3203 79.2754 86.457 79.8223 C -%_92.791 77.2422 96.8535 71.2207 98.0273 63.4023 c -%_98.0469 63.2793 97.9727 63.1602 97.8535 63.123 c -%_97.7363 63.084 97.6074 63.1387 97.5508 63.248 c -%_93.6855 70.8311 85.3945 76.042 75.1035 72.0605 c -%_64.4863 67.9512 59.8291 55.6738 58.7998 47.0195 c -%_58.7852 46.8984 58.6846 46.8047 58.5615 46.7969 c -%_58.4395 46.7891 58.3291 46.8711 58.3008 46.9922 c -%_54.5811 62.6797 61.8838 78.9414 74.9375 85.832 C -%_67.8418 83.8291 61.498 79.5723 57.9102 72.4775 C -%_49.6162 71.459 43.9063 68.6152 41.0527 63.2383 c -%_40.9961 63.1309 40.8721 63.0781 40.7568 63.1133 c -%_40.6416 63.1465 40.5654 63.2578 40.5752 63.3789 c -%_40.7578 65.4883 41.5166 69.709 44.6494 71.6494 C -%_37.6846 71.6387 32.1436 72.543 26.8506 74.6621 c -%_26.7393 74.708 26.6738 74.8262 26.6963 74.9453 c -%_f -%_0 D -%_56.1826 21.4746 m -%_56.084 21.541 55.9541 21.5293 55.8672 21.4492 c -%_55.7813 21.3672 55.7627 21.2383 55.8213 21.1367 c -%_57.4414 18.3398 55.9619 14.3223 52.7705 14.3223 c -%_47.0498 14.3223 44.2998 25.0918 45.1748 34.916 C -%_47.3379 29.1602 49.208 26.8613 52.5225 24.1211 c -%_52.6162 24.043 52.751 24.043 52.8447 24.1191 c -%_52.9385 24.1973 52.9658 24.3281 52.9082 24.4355 c -%_48.0518 33.5156 47.0107 40.502 47.0107 48.5215 C -%_48.4736 42.5625 50.2061 39.1992 55.1377 34.1406 c -%_55.2236 34.0527 55.3604 34.0391 55.4629 34.1074 c -%_55.5645 34.1777 55.6016 34.3105 55.5498 34.4238 c -%_50.252 46.0137 50.6563 58.8711 54.6025 68.6875 c -%_54.6416 68.7852 54.6172 68.8965 54.54 68.9688 c -%_54.4629 69.0391 54.3506 69.0566 54.2549 69.0098 c -%_49.0498 66.459 45.9912 64.7832 41.5029 58.6211 C -%_42.8604 51.2227 41.7314 47.5723 38.3311 41.4258 C -%_42.2686 51.3438 40.1729 65.3203 30.1436 71.0176 c -%_30.0342 71.0791 29.8955 71.0518 29.8193 70.9531 c -%_29.7412 70.8535 29.748 70.7119 29.835 70.6211 c -%_33.6162 66.666 36.3662 59.9863 33.9912 52.6934 C -%_35.5205 63.082 26.3955 71.8086 16.2119 71.8086 c -%_6.6123 71.8086 0.061523 64.2988 0.602539 56.8672 c -%_1.13965 49.502 6.0459 45.8984 10.2744 44.3691 c -%_10.3857 44.3301 10.5107 44.3711 10.5742 44.4707 c -%_10.6377 44.5723 10.624 44.7012 10.541 44.7871 c -%_4.93066 50.4785 4.16309 61.2793 14.124 64.5469 C -%_8.26465 59.4902 10.4346 47.7168 19.8135 46.8223 c -%_19.9307 46.8105 20.04 46.8809 20.0781 46.9922 c -%_20.1162 47.1035 20.0732 47.2266 19.9746 47.2891 c -%_17.9658 48.5664 16.2959 51.0605 16.2959 53.8633 c -%_16.2959 58.5371 19.7178 60.373 21.9717 60.373 c -%_25.3936 60.373 28.2314 57.1172 28.2314 52.1934 c -%_28.2314 46.3496 22.9717 41.5098 16.2119 40.7578 c -%_9.58594 40.0234 3.42969 42.9121 0.461914 47.2168 c -%_0.392578 47.3184 0.260742 47.3555 0.148438 47.3047 c -%_0.036133 47.2539 -0.022461 47.1289 0.007813 47.0098 c -%_3.02637 35.3066 16.8037 30.1328 26.8955 37.5039 C -%_20.2822 30.002 9.88965 29.8984 1.17383 37.5898 c -%_1.08301 37.6699 0.948242 37.6738 0.851563 37.5996 c -%_0.754883 37.5273 0.724609 37.3945 0.77832 37.2871 c -%_3.44531 31.8789 10.0313 25.4668 19.3838 26.4023 c -%_27.9404 27.2578 32.9053 35.416 33.9072 42.0938 C -%_34.4639 33.5723 32.5137 27.5566 25.1533 21.9473 c -%_25.0566 21.873 25.0264 21.7402 25.0811 21.6309 c -%_25.1357 21.5234 25.2607 21.4688 25.3779 21.502 c -%_32.1631 23.4629 37.6084 26.9277 40.4268 34.0469 C -%_40.4268 27.8848 38.2881 21.6738 32.9014 17.5352 c -%_32.8037 17.4609 32.7744 17.3301 32.8291 17.2207 c -%_32.8838 17.1113 33.0078 17.0566 33.125 17.0898 c -%_36.5781 18.0742 39.2959 19.5781 41.2627 22.2754 C -%_42.5732 11.1758 47.7842 4.58398 53.7881 4.58398 c -%_57.9131 4.58398 60.9932 7.61719 60.9932 12.4551 c -%_60.9932 15.2852 59.5049 19.2578 56.1826 21.4746 c -%_f -%_155.4102 113.0938 m -%_152.248 116.998 145.8711 118.4863 138.9785 117.082 C -%_139.4883 121.3828 138.6445 125.873 137.3672 128.5664 c -%_137.3145 128.6758 137.1934 128.7334 137.0762 128.7051 c -%_136.959 128.6758 136.8789 128.5684 136.8828 128.4473 c -%_137.2578 119.6807 132.2598 112.6035 123.4336 109.5371 C -%_130.3398 114.293 132.3594 123.7305 129.0723 128.6035 c -%_129.0039 128.7021 128.877 128.7412 128.7656 128.6953 c -%_128.6543 128.6504 128.5898 128.5332 128.6113 128.416 c -%_128.9844 126.3555 128.0059 123.7314 125.8984 121.6895 c -%_122.9922 118.875 119.0488 118.2363 117.0879 120.2598 c -%_115.127 122.2852 115.8906 126.207 118.7949 129.0215 c -%_119.8555 130.0488 121.0547 130.7832 122.2441 131.2061 c -%_122.3574 131.2461 122.4258 131.3594 122.4102 131.4775 c -%_122.3965 131.5967 122.3008 131.6885 122.1816 131.6982 c -%_115.793 132.2529 111.4121 128.4463 108.666 123.8203 c -%_105.8711 119.1152 101.0957 115.4102 95.4551 116.1504 c -%_95.3359 116.166 95.2227 116.0957 95.1816 115.9824 c -%_95.1426 115.8691 95.1875 115.7422 95.291 115.6807 c -%_98.0879 113.9961 101.1621 113.2969 105.1543 114.6289 C -%_99.3594 109.7197 91.1074 106.8867 83.3145 109.4014 c -%_83.2051 109.4375 83.0859 109.3945 83.0234 109.2979 c -%_82.9609 109.2012 82.9727 109.0752 83.0488 108.9902 c -%_88.957 102.4258 100.7383 102.2949 108.1582 107.6172 C -%_105.1211 103.3008 101.0898 100.1328 93.8652 99.1387 c -%_93.75 99.123 93.6602 99.0313 93.6465 98.916 c -%_93.6348 98.7998 93.7012 98.6904 93.8105 98.6504 c -%_102.1016 95.5723 110.4102 98.6953 117.2559 106.8652 C -%_114.2637 100.4883 109.3496 95.3809 102.4883 92.8535 c -%_102.373 92.8115 102.3047 92.6934 102.3262 92.5742 c -%_102.3457 92.4531 102.4492 92.3643 102.5703 92.3613 c -%_106.5137 92.2803 110.0566 93.2188 114.8359 95.9316 C -%_111.3281 90.2422 112.0957 80.293 117.2051 73.6738 c -%_117.2754 73.582 117.4004 73.5498 117.5078 73.5957 c -%_117.6133 73.6426 117.6758 73.7549 117.6563 73.8691 c -%_116.4766 81.0703 118.9551 89.1992 123.2656 93.5117 C -%_121.1133 85.8799 123.2598 78.9355 129.1621 73.8672 c -%_129.2324 73.8066 129.332 73.79 129.418 73.8232 c -%_129.5059 73.8564 129.5664 73.9355 129.5801 74.0273 c -%_130.8145 83.4453 141.3496 93.002 150.1816 93.8027 c -%_150.3066 93.8135 150.4043 93.9141 150.4121 94.0381 c -%_150.4199 94.1621 150.3379 94.2754 150.2148 94.3027 c -%_145.9355 95.2715 141.5234 94.793 137.8262 93.2715 C -%_140.4863 96.2051 143.7656 98.3828 147.3809 99.5176 c -%_147.498 99.5537 147.5703 99.668 147.5566 99.7891 c -%_147.543 99.9102 147.4434 100.0039 147.3223 100.0127 c -%_142.8125 100.3242 138.3984 99.0068 134.5918 96.4746 C -%_138.9531 103.0957 145.5723 108.0195 154.0195 109.9805 c -%_154.1406 110.0088 154.2227 110.1191 154.2168 110.2432 c -%_154.209 110.3672 154.1133 110.4668 153.9902 110.4805 c -%_142.0723 111.7822 132.2441 107.1621 125.7695 98.5625 C -%_127.418 103.4629 132.1348 108.3184 138.7148 111.1816 c -%_144.5605 113.7266 150.5645 114.1279 155.1367 112.6914 c -%_155.2422 112.6582 155.3594 112.6982 155.4219 112.791 c -%_155.4844 112.8828 155.4805 113.0059 155.4102 113.0938 c -%_f -%_102.5059 37.5215 m -%_107.3125 48.0078 106.9707 56.207 103.0996 66.5762 c -%_103.0547 66.6934 102.9336 66.7607 102.8105 66.7363 c -%_102.6875 66.7109 102.6016 66.5996 102.6074 66.4746 c -%_103.2285 53.8535 99.7813 44.8203 92.3086 38.668 C -%_100.5586 48.5195 96.6621 68.2275 83.4863 68.2275 c -%_73.9004 68.2275 65.9697 60.252 64.0303 50.7031 c -%_64.0059 50.582 64.0723 50.459 64.1885 50.416 c -%_64.3037 50.3711 64.4346 50.416 64.4971 50.5215 c -%_67.3398 55.2832 71.9063 58.373 76.9551 58.373 c -%_85.0898 58.373 87.4961 51.9063 87.4961 47.375 c -%_87.4961 41.1875 82.5703 36.0313 78.7891 36.0313 c -%_75.3516 36.0313 73.748 38.8555 73.748 40.959 c -%_73.748 44.8574 76.7461 48.125 80.125 49.123 c -%_80.2441 49.1582 80.3223 49.2773 80.3047 49.4023 c -%_80.2852 49.5273 80.1797 49.6191 80.0547 49.6211 c -%_75.9473 49.6465 72.4766 47.7656 70.4238 44.0527 C -%_70.1543 46.9277 70.1514 48.7383 71.0645 51.7754 c -%_71.0996 51.8926 71.0459 52.0176 70.9385 52.0742 c -%_70.8291 52.1309 70.6963 52.1016 70.6221 52.0059 c -%_63.2656 42.6133 66.7861 26.3809 72.6016 19.6484 C -%_67.0693 23.6309 62.1846 32.2813 62.2617 44.041 c -%_62.2627 44.1641 62.1768 44.2676 62.0566 44.291 c -%_61.9365 44.3164 61.8174 44.25 61.7725 44.1367 c -%_57.6641 33.8848 59.8438 14.8887 71.0537 4.28516 C -%_68.1699 3.88867 65.1865 3.93945 61.9287 4.97852 c -%_61.8135 5.01367 61.6885 4.96484 61.6299 4.85938 c -%_61.5713 4.75195 61.5947 4.61914 61.6885 4.54102 c -%_65.7803 1.08594 71.5029 0 76.9551 0 C -%_72.2578 5.5 73.8184 16.5547 81.3105 16.5547 c -%_86.6582 16.5547 89.0859 8.25586 84.957 3.77344 c -%_84.8789 3.6875 84.8691 3.55859 84.9316 3.46289 c -%_84.9961 3.36523 85.1172 3.32227 85.2285 3.36133 c -%_90.0078 5.01563 95.1738 9.15039 95.1738 14.377 c -%_95.1738 19.4199 90.3613 23.7715 83.373 23.4277 C -%_92.1914 25.9336 101.4238 23.1602 106.2539 17.1758 c -%_106.3281 17.082 106.459 17.0547 106.5645 17.1074 c -%_106.6719 17.1621 106.7266 17.2832 106.6973 17.3984 c -%_103.9063 28.1152 94.7305 32.5977 83.2578 31.1055 C -%_92.5391 34.8613 106.5078 31.5859 112.6816 23.7949 c -%_112.7539 23.7031 112.8809 23.6738 112.9883 23.7227 c -%_113.0938 23.7734 113.1523 23.8906 113.1289 24.0039 c -%_111.7578 30.6191 108.2656 35.5664 102.5059 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 56.8086 m -%_128.8672 56.6895 128.7637 56.6016 128.6426 56.6016 c -%_115.7363 56.4648 103.8887 53.334 94.6719 45.0859 C -%_102.7012 50.6445 117.6133 52.5957 126.1992 48.7051 c -%_126.3086 48.6543 126.3672 48.5332 126.3398 48.416 c -%_126.3145 48.2988 126.207 48.2168 126.0859 48.2188 c -%_115.4063 48.5098 106.8066 45.2129 100.1016 39.2559 C -%_106.9707 38.832 112.6758 34.5156 112.6582 29.4102 c -%_112.6582 29.291 112.5742 29.1875 112.457 29.1621 c -%_112.3418 29.1387 112.2227 29.1973 112.1738 29.3066 c -%_111.0527 31.7949 107.4258 33.0879 103.5918 32.1875 c -%_99.4121 31.2051 96.5918 27.998 97.291 25.0215 c -%_97.7617 23.0078 99.7266 21.6191 102.2422 21.2344 c -%_102.3691 21.2148 102.4629 21.1055 102.459 20.9766 c -%_102.4551 20.8496 102.3574 20.7441 102.2285 20.7305 c -%_101.1602 20.6289 100.0488 20.625 98.9121 20.7344 c -%_92.4219 21.3516 87.3984 25.3281 86.9629 29.9121 C -%_82.25 29.3652 78.0781 26.7539 76.584 23.1387 c -%_76.5391 23.0293 76.4258 22.9668 76.3086 22.9844 c -%_76.1934 23.002 76.1055 23.0977 76.0957 23.2148 c -%_75.7188 27.9648 77.3535 31.0527 81.0664 34.0684 C -%_75.6816 32.0098 69.6201 31.9043 63.8096 34.6055 c -%_63.7041 34.6563 63.6455 34.7715 63.667 34.8867 c -%_63.6904 35.002 63.79 35.0859 63.9072 35.0898 c -%_68.7861 35.2793 72.3242 36.8457 75.6406 40.1621 C -%_57.3838 35.0273 42.5518 46.3633 47.6846 63.2129 c -%_47.7197 63.3301 47.8311 63.4043 47.9521 63.3926 c -%_48.0732 63.3809 48.1689 63.2852 48.1787 63.1641 c -%_49.0967 53.4492 55.8818 47.0469 66.04 46.0879 C -%_60.6533 48.1465 55.04 53.0625 54.4834 61.6211 c -%_54.4756 61.7441 54.5557 61.8535 54.6748 61.8848 c -%_54.7939 61.9141 54.917 61.8535 54.9678 61.7422 c -%_57.7666 55.5879 63.2646 52.4785 69.1279 51.9297 C -%_62.7939 54.5117 58.7314 60.5332 57.5576 68.3516 c -%_57.5381 68.4746 57.6123 68.5918 57.7314 68.6309 c -%_57.8486 68.668 57.9775 68.6152 58.0342 68.5039 c -%_61.8994 60.9219 70.1904 55.7109 80.4824 59.6934 c -%_91.0996 63.8027 95.7559 76.0781 96.7852 84.7324 c -%_96.8008 84.8555 96.9004 84.9492 97.0234 84.957 c -%_97.1465 84.9629 97.2559 84.8809 97.2852 84.7617 c -%_101.0039 69.0723 93.7012 52.8125 80.6484 45.9219 C -%_87.7441 47.9238 94.0879 52.1816 97.6758 59.2754 C -%_105.9688 60.293 111.6797 63.1387 114.5332 68.5156 c -%_114.5898 68.6211 114.7129 68.6738 114.8281 68.6406 c -%_114.9434 68.6055 115.0195 68.4941 115.0098 68.375 c -%_114.8281 66.2656 114.0684 62.0449 110.9355 60.1035 C -%_117.9004 60.1152 123.4414 59.2109 128.7344 57.0898 c -%_128.8457 57.0449 128.9121 56.9277 128.8887 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 110.2773 m -%_99.502 110.2129 99.6309 110.2227 99.7188 110.3047 c -%_99.8047 110.3848 99.8223 110.5137 99.7637 110.6172 c -%_98.1445 113.4141 99.623 117.4297 102.8145 117.4297 c -%_108.5352 117.4297 111.2852 106.6602 110.4102 96.8379 C -%_108.248 102.5918 106.377 104.8926 103.0625 107.6328 c -%_102.9688 107.709 102.834 107.7109 102.7402 107.6328 c -%_102.6465 107.5566 102.6191 107.4238 102.6777 107.3164 c -%_107.5332 98.2383 108.5742 91.252 108.5742 83.2324 C -%_107.1113 89.1895 105.3789 92.5527 100.4473 97.6133 c -%_100.3613 97.7012 100.2246 97.7148 100.123 97.6445 c -%_100.0215 97.5742 99.9844 97.4414 100.0352 97.3301 c -%_105.334 85.7383 104.9297 72.8828 100.9824 63.0664 c -%_100.9434 62.9688 100.9688 62.8574 101.0449 62.7852 c -%_101.123 62.7129 101.2344 62.6973 101.3301 62.7422 c -%_106.5352 65.293 109.5938 66.9688 114.082 73.1328 C -%_112.7246 80.5313 113.8535 84.1797 117.2539 90.3262 C -%_113.3164 80.4102 115.4121 66.4336 125.4414 60.7363 c -%_125.5508 60.6738 125.6895 60.7012 125.7656 60.8008 c -%_125.8438 60.9004 125.8379 61.041 125.75 61.1328 c -%_121.9688 65.0879 119.2188 71.7676 121.5938 79.0586 C -%_120.0645 68.6699 129.1895 59.9453 139.373 59.9453 c -%_148.9727 59.9453 155.5234 67.4531 154.9824 74.8848 c -%_154.4453 82.25 149.5391 85.8555 145.3105 87.3828 c -%_145.1992 87.4238 145.0742 87.3809 145.0117 87.2813 c -%_144.9473 87.1816 144.9609 87.0508 145.0449 86.9668 c -%_150.6543 81.2734 151.4219 70.4746 141.4609 67.207 C -%_147.3203 72.2637 145.1504 84.0352 135.7715 84.9316 c -%_135.6543 84.9414 135.5449 84.8711 135.5078 84.7598 c -%_135.4688 84.6504 135.5117 84.5273 135.6113 84.4648 c -%_137.6191 83.1855 139.2891 80.6934 139.2891 77.8906 c -%_139.2891 73.2168 135.8672 71.3789 133.6133 71.3789 c -%_130.1914 71.3789 127.3535 74.6348 127.3535 79.5605 c -%_127.3535 85.4023 132.6133 90.2441 139.373 90.9941 c -%_146 91.7305 152.1563 88.8398 155.123 84.5352 c -%_155.1934 84.4336 155.3242 84.3984 155.4375 84.4492 c -%_155.5488 84.5 155.6074 84.623 155.5781 84.7422 c -%_152.5586 96.4453 138.7813 101.6191 128.6895 94.25 C -%_135.3027 101.75 145.6953 101.8555 154.4121 94.1641 c -%_154.502 94.084 154.6367 94.0781 154.7344 94.1523 c -%_154.8301 94.2266 154.8613 94.3574 154.8066 94.4668 c -%_152.1406 99.873 145.5547 106.2852 136.2012 105.3516 c -%_127.6445 104.4961 122.6797 96.3359 121.6777 89.6602 C -%_121.1211 98.1816 123.0723 104.1953 130.4316 109.8047 c -%_130.5293 109.8789 130.5586 110.0117 130.5039 110.1211 c -%_130.4492 110.2305 130.3242 110.2852 130.207 110.25 c -%_123.4219 108.291 117.9766 104.8262 115.1582 97.707 C -%_115.1582 103.8672 117.2969 110.0781 122.6836 114.2168 c -%_122.7813 114.291 122.8105 114.4238 122.7559 114.5332 c -%_122.7012 114.6406 122.5781 114.6953 122.4609 114.6621 c -%_119.0078 113.6797 116.2891 112.1738 114.3223 109.4785 C -%_113.0117 120.5781 107.8008 127.168 101.7969 127.168 c -%_97.6719 127.168 94.5918 124.1348 94.5918 119.2988 c -%_94.5918 116.4688 96.0801 112.4961 99.4023 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 18.6602 m -%_3.33691 14.7559 9.71387 13.2676 16.6064 14.6719 C -%_16.0967 10.3691 16.9404 5.88086 18.2178 3.18555 c -%_18.2705 3.07813 18.3916 3.01953 18.5088 3.04883 c -%_18.626 3.07813 18.7061 3.18555 18.7021 3.30664 c -%_18.3271 12.0723 23.3252 19.1484 32.1514 22.2148 C -%_25.2451 17.459 23.2256 8.02148 26.5127 3.15039 c -%_26.5811 3.05078 26.708 3.01172 26.8193 3.05664 c -%_26.9307 3.10156 26.9951 3.21875 26.9736 3.33789 c -%_26.6006 5.39844 27.5791 8.02148 29.6865 10.0625 c -%_32.5928 12.877 36.5361 13.5156 38.4971 11.4922 c -%_40.458 9.4668 39.6943 5.54492 36.79 2.73242 c -%_35.7295 1.70508 34.5303 0.96875 33.3408 0.546875 c -%_33.2275 0.505859 33.1592 0.392578 33.1748 0.275391 c -%_33.1885 0.15625 33.2842 0.064453 33.4033 0.054688 c -%_39.792 -0.5 44.1729 3.30664 46.9189 7.93164 c -%_49.7139 12.6367 54.4893 16.3438 60.1299 15.6035 c -%_60.249 15.5879 60.3623 15.6582 60.4033 15.7715 c -%_60.4424 15.8848 60.3975 16.0098 60.2939 16.0723 c -%_57.4971 17.7559 54.4229 18.4551 50.4307 17.125 C -%_56.2256 22.0332 64.4775 24.8652 72.2715 22.3516 c -%_72.3809 22.3164 72.5 22.3594 72.5625 22.4551 c -%_72.625 22.5508 72.6152 22.6777 72.5371 22.7637 c -%_66.6279 29.3281 54.8467 29.459 47.4268 24.1348 C -%_50.4639 28.4512 54.4951 31.6211 61.7197 32.6133 c -%_61.835 32.6289 61.9248 32.7227 61.9385 32.8379 c -%_61.9502 32.9531 61.8838 33.0625 61.7744 33.1035 c -%_53.4834 36.1797 45.1748 33.0586 38.3291 24.8867 C -%_41.3213 31.2656 46.2354 36.373 53.0967 38.9004 c -%_53.2119 38.9414 53.2803 39.0586 53.2588 39.1797 c -%_53.2393 39.3008 53.1357 39.3887 53.0146 39.3906 c -%_49.0713 39.4727 45.5283 38.5332 40.749 35.8203 C -%_44.2568 41.5117 43.4893 51.459 38.3799 58.0801 c -%_38.3096 58.1719 38.1846 58.2031 38.0771 58.1582 c -%_37.9717 58.1113 37.9092 57.998 37.9287 57.8828 c -%_39.1084 50.6836 36.6299 42.5547 32.3193 38.2422 C -%_34.4717 45.873 32.3252 52.8184 26.4229 57.8848 c -%_26.3525 57.9453 26.2529 57.9629 26.167 57.9297 c -%_26.0791 57.8965 26.0186 57.8184 26.0049 57.7266 c -%_24.7705 48.3086 14.2354 38.752 5.40332 37.9512 c -%_5.27832 37.9395 5.18066 37.8398 5.17285 37.7148 c -%_5.16504 37.5898 5.24707 37.4785 5.37012 37.4512 c -%_9.64941 36.4824 14.0615 36.9609 17.7588 38.4805 C -%_15.0986 35.5488 11.8193 33.3711 8.2041 32.2363 c -%_8.08691 32.1992 8.01465 32.0859 8.02832 31.9648 c -%_8.04199 31.8438 8.1416 31.748 8.2627 31.7402 c -%_12.7725 31.4297 17.1865 32.7461 20.9932 35.2793 C -%_16.6318 28.6582 10.0127 23.7344 1.56543 21.7715 c -%_1.44434 21.7441 1.3623 21.6328 1.36816 21.5098 c -%_1.37598 21.3867 1.47168 21.2871 1.59473 21.2734 c -%_13.5127 19.9707 23.3408 24.5918 29.8154 33.1914 C -%_28.167 28.2891 23.4502 23.4355 16.8701 20.5723 c -%_11.0244 18.0273 5.02051 17.625 0.448242 19.0625 c -%_0.342773 19.0957 0.225586 19.0547 0.163086 18.9629 c -%_0.100586 18.8691 0.104492 18.7461 0.174805 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 94.2324 m -%_48.2725 83.7461 48.6143 75.5469 52.4854 65.1777 c -%_52.5303 65.0605 52.6514 64.9922 52.7744 65.0176 c -%_52.8975 65.043 52.9834 65.1543 52.9775 65.2773 c -%_52.3564 77.9004 55.8037 86.9316 63.2764 93.0859 C -%_55.0264 83.2324 58.9229 63.5254 72.0996 63.5254 c -%_81.6855 63.5254 89.6152 71.502 91.5547 81.0508 c -%_91.5801 81.1719 91.5137 81.293 91.3965 81.3379 c -%_91.2813 81.3828 91.1504 81.3379 91.0879 81.2305 c -%_88.2461 76.4688 83.6797 73.3789 78.6309 73.3789 c -%_70.4951 73.3789 68.0889 79.8457 68.0889 84.3789 c -%_68.0889 90.5645 73.0156 95.7207 76.7969 95.7207 c -%_80.2344 95.7207 81.8379 92.8984 81.8379 90.7949 c -%_81.8379 86.8965 78.8398 83.6289 75.4629 82.6309 c -%_75.3418 82.5938 75.2656 82.4766 75.2832 82.3516 c -%_75.3008 82.2266 75.4063 82.1328 75.5332 82.1328 c -%_79.6387 82.1074 83.1094 83.9863 85.1621 87.7012 C -%_85.4316 84.8262 85.4336 83.0156 84.5215 79.9766 c -%_84.4863 79.8594 84.5391 79.7344 84.6465 79.6777 c -%_84.7559 79.623 84.8887 79.6504 84.9629 79.748 c -%_92.3203 89.1406 88.7988 105.3711 82.9844 112.1055 C -%_88.5156 108.123 93.4004 99.4707 93.3242 87.7109 c -%_93.3223 87.5898 93.4082 87.4844 93.5293 87.4609 c -%_93.6484 87.4375 93.7676 87.502 93.8125 87.6152 c -%_97.9219 97.8691 95.7422 116.8633 84.5313 127.4668 C -%_87.416 127.8652 90.3984 127.8145 93.6563 126.7754 c -%_93.7715 126.7383 93.8965 126.7891 93.9551 126.8945 c -%_94.0137 127 93.9902 127.1328 93.8965 127.2109 c -%_89.8047 130.666 84.082 131.752 78.6309 131.752 C -%_83.3281 126.252 81.7676 115.1992 74.2773 115.1992 c -%_68.9268 115.1992 66.499 123.498 70.6279 127.9805 c -%_70.7061 128.0664 70.7158 128.1934 70.6533 128.291 c -%_70.5889 128.3887 70.4678 128.4297 70.3564 128.3926 c -%_65.5771 126.7363 60.4111 122.6035 60.4111 117.375 c -%_60.4111 112.334 65.2236 107.9805 72.2148 108.3242 C -%_63.3936 105.8203 54.1611 108.5918 49.3311 114.5781 c -%_49.2568 114.6699 49.126 114.6992 49.0205 114.6445 c -%_48.9131 114.5918 48.8584 114.4707 48.8877 114.3535 c -%_51.6787 103.6387 60.8545 99.1543 72.3281 100.6484 C -%_63.0459 96.8906 49.0771 100.166 42.9033 107.957 c -%_42.8311 108.0488 42.7041 108.0801 42.5967 108.0293 c -%_42.4912 107.9805 42.4326 107.8633 42.4561 107.748 c -%_43.8271 101 -endstream endobj 20 0 obj <>stream -.1328 47.3193 96.1875 53.0791 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_135.0352 184.5869 m -%_135.0566 184.7061 135.1602 184.792 135.2813 184.7939 c -%_148.1875 184.9287 160.0352 188.0615 169.2529 196.3086 C -%_161.2227 190.751 146.3105 188.7979 137.7256 192.6904 c -%_137.6152 192.7402 137.5566 192.8604 137.584 192.9785 c -%_137.6104 193.0967 137.7168 193.1787 137.8379 193.1748 c -%_148.5176 192.8857 157.1172 196.1816 163.8223 202.1396 C -%_156.9531 202.5615 151.248 206.8799 151.2656 211.9844 c -%_151.2656 212.1035 151.3496 212.2061 151.4668 212.2314 c -%_151.583 212.2568 151.7012 212.1963 151.75 212.0879 c -%_152.8711 209.5986 156.498 208.3076 160.333 209.208 c -%_164.5127 210.1885 167.333 213.3975 166.6338 216.373 c -%_166.1621 218.3877 164.1973 219.7764 161.6816 220.1602 c -%_161.5547 220.1787 161.4619 220.29 161.4648 220.418 c -%_161.4688 220.5459 161.5674 220.6514 161.6953 220.6631 c -%_162.7637 220.7656 163.875 220.7695 165.0127 220.6611 c -%_171.5029 220.0439 176.5264 216.0654 176.9619 211.4834 C -%_181.6748 212.0303 185.8467 214.6396 187.3408 218.2568 c -%_187.3857 218.3652 187.501 218.4287 187.6162 218.4111 c -%_187.7314 218.3916 187.8193 218.2969 187.8291 218.1807 c -%_188.2061 213.4287 186.5713 210.3418 182.8584 207.3262 C -%_188.2432 209.3857 194.3027 209.4912 200.1133 206.7881 c -%_200.2188 206.7393 200.2773 206.624 200.2559 206.5088 c -%_200.2324 206.3936 200.1328 206.3096 200.0156 206.3057 c -%_195.1367 206.1152 191.5996 204.5498 188.2861 201.2334 C -%_206.5391 206.3672 221.3711 195.0322 216.2383 178.1807 c -%_216.2031 178.0654 216.0918 177.9902 215.9707 178.0029 c -%_215.8496 178.0146 215.7539 178.1104 215.7441 178.2314 c -%_214.8262 187.9453 208.041 194.3467 197.8828 195.3076 C -%_203.2695 193.2471 208.8828 188.3311 209.4395 179.7734 c -%_209.4473 179.6514 209.3672 179.54 209.248 179.5107 c -%_209.1289 179.4814 209.0059 179.54 208.9551 179.6514 c -%_206.1563 185.8057 200.6582 188.917 194.7949 189.4639 C -%_201.1289 186.8838 205.1914 180.8623 206.3652 173.0439 c -%_206.3848 172.9209 206.3105 172.8018 206.1914 172.7646 c -%_206.0742 172.7256 205.9453 172.7803 205.8887 172.8896 c -%_202.0234 180.4727 193.7324 185.6836 183.4424 181.7021 c -%_172.8252 177.5928 168.168 165.3154 167.1387 156.6611 c -%_167.124 156.54 167.0234 156.4463 166.9004 156.4385 c -%_166.7783 156.4307 166.668 156.5127 166.6396 156.6338 c -%_162.9199 172.3213 170.2227 188.583 183.2764 195.4736 C -%_176.1807 193.4707 169.8369 189.2139 166.249 182.1191 C -%_157.9551 181.1006 152.2451 178.2568 149.3916 172.8799 c -%_149.335 172.7725 149.2109 172.7197 149.0957 172.7549 c -%_148.9805 172.7881 148.9043 172.8994 148.9141 173.0205 c -%_149.0967 175.1299 149.8555 179.3506 152.9883 181.291 C -%_146.0234 181.2803 140.4824 182.1846 135.1895 184.3037 c -%_135.0781 184.3496 135.0127 184.4678 135.0352 184.5869 c -%_f -%_0 D -%_164.5215 131.1162 m -%_164.4229 131.1826 164.293 131.1709 164.2061 131.0908 c -%_164.1201 131.0088 164.1016 130.8799 164.1602 130.7783 c -%_165.7803 127.9814 164.3008 123.9639 161.1094 123.9639 c -%_155.3887 123.9639 152.6387 134.7334 153.5137 144.5576 C -%_155.6768 138.8018 157.5469 136.5029 160.8613 133.7627 c -%_160.9551 133.6846 161.0898 133.6846 161.1836 133.7607 c -%_161.2773 133.8389 161.3047 133.9697 161.2471 134.0771 c -%_156.3906 143.1572 155.3496 150.1436 155.3496 158.1631 C -%_156.8125 152.2041 158.5449 148.8408 163.4766 143.7822 c -%_163.5625 143.6943 163.6992 143.6807 163.8018 143.749 c -%_163.9033 143.8193 163.9404 143.9521 163.8887 144.0654 c -%_158.5908 155.6553 158.9951 168.5127 162.9414 178.3291 c -%_162.9805 178.4268 162.9561 178.5381 162.8789 178.6104 c -%_162.8018 178.6807 162.6895 178.6982 162.5938 178.6514 c -%_157.3887 176.1006 154.3301 174.4248 149.8418 168.2627 C -%_151.1992 160.8643 150.0703 157.2139 146.6699 151.0674 C -%_150.6074 160.9854 148.5117 174.9619 138.4824 180.6592 c -%_138.373 180.7207 138.2344 180.6934 138.1582 180.5947 c -%_138.0801 180.4951 138.0869 180.3535 138.1738 180.2627 c -%_141.9551 176.3076 144.7051 169.6279 142.3301 162.335 C -%_143.8594 172.7236 134.7344 181.4502 124.5508 181.4502 c -%_114.9512 181.4502 108.4004 173.9404 108.9414 166.5088 c -%_109.4785 159.1436 114.3848 155.54 118.6133 154.0107 c -%_118.7246 153.9717 118.8496 154.0127 118.9131 154.1123 c -%_118.9766 154.2139 118.9629 154.3428 118.8799 154.4287 c -%_113.2695 160.1201 112.502 170.9209 122.4629 174.1885 C -%_116.6035 169.1318 118.7734 157.3584 128.1523 156.4639 c -%_128.2695 156.4521 128.3789 156.5225 128.417 156.6338 c -%_128.4551 156.7451 128.4121 156.8682 128.3135 156.9307 c -%_126.3047 158.208 124.6348 160.7021 124.6348 163.5049 c -%_124.6348 168.1787 128.0566 170.0146 130.3105 170.0146 c -%_133.7324 170.0146 136.5703 166.7588 136.5703 161.835 c -%_136.5703 155.9912 131.3105 151.1514 124.5508 150.3994 c -%_117.9248 149.665 111.7686 152.5537 108.8008 156.8584 c -%_108.7314 156.96 108.5996 156.9971 108.4873 156.9463 c -%_108.375 156.8955 108.3164 156.7705 108.3467 156.6514 c -%_111.3652 144.9482 125.1426 139.7744 135.2344 147.1455 C -%_128.6211 139.6436 118.2285 139.54 109.5127 147.2314 c -%_109.4219 147.3115 109.2871 147.3154 109.1904 147.2412 c -%_109.0938 147.1689 109.0635 147.0361 109.1172 146.9287 c -%_111.7842 141.5205 118.3701 135.1084 127.7227 136.0439 c -%_136.2793 136.8994 141.2441 145.0576 142.2461 151.7354 C -%_142.8027 143.2139 140.8525 137.1982 133.4922 131.5889 c -%_133.3955 131.5146 133.3652 131.3818 133.4199 131.2725 c -%_133.4746 131.165 133.5996 131.1104 133.7168 131.1436 c -%_140.502 133.1045 145.9473 136.5693 148.7656 143.6885 C -%_148.7656 137.5264 146.627 131.3154 141.2402 127.1768 c -%_141.1426 127.1025 141.1133 126.9717 141.168 126.8623 c -%_141.2227 126.7529 141.3467 126.6982 141.4639 126.7314 c -%_144.917 127.7158 147.6348 129.2197 149.6016 131.917 C -%_150.9121 120.8174 156.123 114.2256 162.127 114.2256 c -%_166.252 114.2256 169.332 117.2588 169.332 122.0967 c -%_169.332 124.9268 167.8438 128.8994 164.5215 131.1162 c -%_f -%_263.748 222.7354 m -%_260.5859 226.6396 254.209 228.1279 247.3164 226.7236 C -%_247.8262 231.0244 246.9824 235.5146 245.7051 238.208 c -%_245.6523 238.3174 245.5313 238.375 245.4141 238.3467 c -%_245.2969 238.3174 245.2168 238.21 245.2207 238.0889 c -%_245.5957 229.3223 240.5977 222.2451 231.7715 219.1787 C -%_238.6777 223.9346 240.6973 233.3721 237.4102 238.2451 c -%_237.3418 238.3438 237.2148 238.3828 237.1035 238.3369 c -%_236.9922 238.292 236.9277 238.1748 236.9492 238.0576 c -%_237.3223 235.9971 236.3438 233.373 234.2363 231.3311 c -%_231.3301 228.5166 227.3867 227.8779 225.4258 229.9014 c -%_223.4648 231.9268 224.2285 235.8486 227.1328 238.6631 c -%_228.1934 239.6904 229.3926 240.4248 230.582 240.8477 c -%_230.6953 240.8877 230.7637 241.001 230.748 241.1191 c -%_230.7344 241.2383 230.6387 241.3301 230.5195 241.3398 c -%_224.1309 241.8945 219.75 238.0879 217.0039 233.4619 c -%_214.209 228.7568 209.4336 225.0518 203.793 225.792 c -%_203.6738 225.8076 203.5605 225.7373 203.5195 225.624 c -%_203.4805 225.5107 203.5254 225.3838 203.6289 225.3223 c -%_206.4258 223.6377 209.5 222.9385 213.4922 224.2705 C -%_207.6973 219.3613 199.4453 216.5283 191.6523 219.043 c -%_191.543 219.0791 191.4238 219.0361 191.3613 218.9395 c -%_191.2988 218.8428 191.3105 218.7168 191.3867 218.6318 c -%_197.2949 212.0674 209.0762 211.9365 216.4961 217.2588 C -%_213.459 212.9424 209.4277 209.7744 202.2031 208.7803 c -%_202.0879 208.7646 201.998 208.6729 201.9844 208.5576 c -%_201.9727 208.4414 202.0391 208.332 202.1484 208.292 c -%_210.4395 205.2139 218.748 208.3369 225.5938 216.5068 C -%_222.6016 210.1299 217.6875 205.0225 210.8262 202.4951 c -%_210.7109 202.4531 210.6426 202.335 210.6641 202.2158 c -%_210.6836 202.0947 210.7871 202.0059 210.9082 202.0029 c -%_214.8516 201.9219 218.3945 202.8604 223.1738 205.5732 C -%_219.666 199.8838 220.4336 189.9346 225.543 183.3154 c -%_225.6133 183.2236 225.7383 183.1914 225.8457 183.2373 c -%_225.9512 183.2842 226.0137 183.3965 225.9941 183.5107 c -%_224.8145 190.7119 227.293 198.8408 231.6035 203.1533 C -%_229.4512 195.5215 231.5977 188.5771 237.5 183.5088 c -%_237.5703 183.4482 237.6699 183.4316 237.7559 183.4648 c -%_237.8438 183.498 237.9043 183.5771 237.918 183.6689 c -%_239.1523 193.0869 249.6875 202.6436 258.5195 203.4443 c -%_258.6445 203.4551 258.7422 203.5557 258.75 203.6797 c -%_258.7578 203.8037 258.6758 203.917 258.5527 203.9443 c -%_254.2734 204.9131 249.8613 204.4346 246.1641 202.9131 C -%_248.8242 205.8467 252.1035 208.0244 255.7188 209.1592 c -%_255.8359 209.1953 255.9082 209.3096 255.8945 209.4307 c -%_255.8809 209.5518 255.7813 209.6455 255.6602 209.6543 c -%_251.1504 209.9658 246.7363 208.6484 242.9297 206.1162 C -%_247.291 212.7373 253.9102 217.6611 262.3574 219.6221 c -%_262.4785 219.6504 262.5605 219.7607 262.5547 219.8848 c -%_262.5469 220.0088 262.4512 220.1084 262.3281 220.1221 c -%_250.4102 221.4238 240.582 216.8037 234.1074 208.2041 C -%_235.7559 213.1045 240.4727 217.96 247.0527 220.8232 c -%_252.8984 223.3682 258.9023 223.7695 263.4746 222.333 c -%_263.5801 222.2998 263.6973 222.3398 263.7598 222.4326 c -%_263.8223 222.5244 263.8184 222.6475 263.748 222.7354 c -%_f -%_210.8438 147.1631 m -%_215.6504 157.6494 215.3086 165.8486 211.4375 176.2178 c -%_211.3926 176.335 211.2715 176.4023 211.1484 176.3779 c -%_211.0254 176.3525 210.9395 176.2412 210.9453 176.1162 c -%_211.5664 163.4951 208.1191 154.4619 200.6465 148.3096 C -%_208.8965 158.1611 205 177.8691 191.8242 177.8691 c -%_182.2393 177.8691 174.3086 169.8936 172.3691 160.3447 c -%_172.3447 160.2236 172.4111 160.1006 172.5273 160.0576 c -%_172.6426 160.0127 172.7734 160.0576 172.8359 160.1631 c -%_175.6787 164.9248 180.2451 168.0146 185.2939 168.0146 c -%_193.4277 168.0146 195.834 161.5479 195.834 157.0166 c -%_195.834 150.8291 190.9082 145.6729 187.1279 145.6729 c -%_183.6904 145.6729 182.0869 148.4971 182.0869 150.6006 c -%_182.0869 154.499 185.085 157.7666 188.4639 158.7646 c -%_188.583 158.7998 188.6611 158.9189 188.6436 159.0439 c -%_188.624 159.1689 188.5186 159.2607 188.3936 159.2627 c -%_184.2861 159.2881 180.8154 157.4072 178.7627 153.6943 C -%_178.4932 156.5693 178.4902 158.3799 179.4033 161.417 c -%_179.4385 161.5342 179.3848 161.6592 179.2773 161.7158 c -%_179.168 161.7725 179.0352 161.7432 178.9609 161.6475 c -%_171.6045 152.2549 175.125 136.0225 180.9404 129.29 C -%_175.4082 133.2725 170.5234 141.9229 170.6006 153.6826 c -%_170.6016 153.8057 170.5156 153.9092 170.3955 153.9326 c -%_170.2754 153.958 170.1563 153.8916 170.1113 153.7783 c -%_166.0029 143.5264 168.1826 124.5303 179.3926 113.9268 C -%_176.5088 113.5303 173.5254 113.5811 170.2676 114.6201 c -%_170.1523 114.6553 170.0273 114.6064 169.9688 114.501 c -%_169.9102 114.3936 169.9336 114.2607 170.0273 114.1826 c -%_174.1191 110.7275 179.8418 109.6416 185.2939 109.6416 C -%_180.5967 115.1416 182.1572 126.1963 189.6494 126.1963 c -%_194.9961 126.1963 197.4238 117.8975 193.2949 113.415 c -%_193.2168 113.3291 193.207 113.2002 193.2695 113.1045 c -%_193.334 113.0068 193.4551 112.9639 193.5664 113.0029 c -%_198.3457 114.6572 203.5117 118.792 203.5117 124.0186 c -%_203.5117 129.0615 198.6992 133.4131 191.7109 133.0693 C -%_200.5293 135.5752 209.7617 132.8018 214.5918 126.8174 c -%_214.666 126.7236 214.7969 126.6963 214.9023 126.749 c -%_215.0098 126.8037 215.0645 126.9248 215.0352 127.04 c -%_212.2441 137.7568 203.0684 142.2393 191.5957 140.7471 C -%_200.877 144.5029 214.8457 141.2275 221.0195 133.4365 c -%_221.0918 133.3447 221.2188 133.3154 221.3262 133.3643 c -%_221.4316 133.415 221.4902 133.5322 221.4668 133.6455 c -%_220.0957 140.2607 216.6035 145.208 210.8438 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 166.4502 m -%_237.2051 166.3311 237.1016 166.2432 236.9805 166.2432 c -%_224.0742 166.1064 212.2266 162.9756 203.0098 154.7275 C -%_211.0391 160.2861 225.9512 162.2373 234.5371 158.3467 c -%_234.6465 158.2959 234.7051 158.1748 234.6777 158.0576 c -%_234.6523 157.9404 234.5449 157.8584 234.4238 157.8604 c -%_223.7441 158.1514 215.1445 154.8545 208.4395 148.8975 C -%_215.3086 148.4736 221.0137 144.1572 220.9961 139.0518 c -%_220.9961 138.9326 220.9121 138.8291 220.7949 138.8037 c -%_220.6797 138.7803 220.5605 138.8389 220.5117 138.9482 c -%_219.3906 141.4365 215.7637 142.7295 211.9297 141.8291 c -%_207.75 140.8467 204.9297 137.6396 205.6289 134.6631 c -%_206.0996 132.6494 208.0645 131.2607 210.5801 130.876 c -%_210.707 130.8564 210.8008 130.7471 210.7969 130.6182 c -%_210.793 130.4912 210.6953 130.3857 210.5664 130.3721 c -%_209.498 130.2705 208.3867 130.2666 207.25 130.376 c -%_200.7598 130.9932 195.7363 134.9697 195.3008 139.5537 C -%_190.5889 139.0068 186.417 136.3955 184.9229 132.7803 c -%_184.8779 132.6709 184.7646 132.6084 184.6475 132.626 c -%_184.5322 132.6436 184.4443 132.7393 184.4346 132.8564 c -%_184.0576 137.6064 185.6924 140.6943 189.4053 143.71 C -%_184.0205 141.6514 177.959 141.5459 172.1484 144.2471 c -%_172.043 144.2979 171.9844 144.4131 172.0059 144.5283 c -%_172.0293 144.6436 172.1289 144.7275 172.2461 144.7314 c -%_177.125 144.9209 180.6631 146.4873 183.9795 149.8037 C -%_165.7227 144.6689 150.8906 156.0049 156.0234 172.8545 c -%_156.0586 172.9717 156.1699 173.0459 156.291 173.0342 c -%_156.4121 173.0225 156.5078 172.9268 156.5176 172.8057 c -%_157.4355 163.0908 164.2207 156.6885 174.3789 155.7295 C -%_168.9922 157.7881 163.3789 162.7041 162.8223 171.2627 c -%_162.8145 171.3857 162.8945 171.4951 163.0137 171.5264 c -%_163.1328 171.5557 163.2559 171.4951 163.3066 171.3838 c -%_166.1055 165.2295 171.6035 162.1201 177.4668 161.5713 C -%_171.1328 164.1533 167.0703 170.1748 165.8965 177.9932 c -%_165.877 178.1162 165.9512 178.2334 166.0703 178.2725 c -%_166.1875 178.3096 166.3164 178.2568 166.373 178.1455 c -%_170.2383 170.5635 178.5293 165.3525 188.8213 169.335 c -%_199.4375 173.4443 204.0938 185.7197 205.123 194.374 c -%_205.1387 194.4971 205.2383 194.5908 205.3613 194.5986 c -%_205.4844 194.6045 205.5938 194.5225 205.623 194.4033 c -%_209.3418 178.7139 202.0391 162.4541 188.9873 155.5635 C -%_196.082 157.5654 202.4258 161.8232 206.0137 168.917 C -%_214.3066 169.9346 220.0176 172.7803 222.8711 178.1572 c -%_222.9277 178.2627 223.0508 178.3154 223.166 178.2822 c -%_223.2813 178.2471 223.3574 178.1357 223.3477 178.0166 c -%_223.166 175.9072 222.4063 171.6865 219.2734 169.7451 C -%_226.2383 169.7568 231.7793 168.8525 237.0723 166.7314 c -%_237.1836 166.6865 237.25 166.5693 237.2266 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 219.9189 m -%_207.8398 219.8545 207.9688 219.8643 208.0566 219.9463 c -%_208.1426 220.0264 208.1602 220.1553 208.1016 220.2588 c -%_206.4824 223.0557 207.9609 227.0713 211.1523 227.0713 c -%_216.873 227.0713 219.623 216.3018 218.748 206.4795 C -%_216.5859 212.2334 214.7148 214.5342 211.4004 217.2744 c -%_211.3066 217.3506 211.1719 217.3525 211.0781 217.2744 c -%_210.9844 217.1982 210.957 217.0654 211.0156 216.958 c -%_215.8711 207.8799 216.9121 200.8936 216.9121 192.874 C -%_215.4492 198.8311 213.7168 202.1943 208.7852 207.2549 c -%_208.6992 207.3428 208.5625 207.3564 208.4609 207.2861 c -%_208.3594 207.2158 208.3223 207.083 208.373 206.9717 c -%_213.6719 195.3799 213.2676 182.5244 209.3203 172.708 c -%_209.2813 172.6104 209.3066 172.499 209.3828 172.4268 c -%_209.4609 172.3545 209.5723 172.3389 209.668 172.3838 c -%_214.873 174.9346 217.9316 176.6104 222.4199 182.7744 C -%_221.0625 190.1729 222.1914 193.8213 225.5918 199.9678 C -%_221.6543 190.0518 223.75 176.0752 233.7793 170.3779 c -%_233.8887 170.3154 234.0273 170.3428 234.1035 170.4424 c -%_234.1816 170.542 234.1758 170.6826 234.0879 170.7744 c -%_230.3066 174.7295 227.5566 181.4092 229.9316 188.7002 C -%_228.4023 178.3115 237.5273 169.5869 247.7109 169.5869 c -%_257.3105 169.5869 263.8613 177.0947 263.3203 184.5264 c -%_262.7832 191.8916 257.877 195.4971 253.6484 197.0244 c -%_253.5371 197.0654 253.4121 197.0225 253.3496 196.9229 c -%_253.2852 196.8232 253.2988 196.6924 253.3828 196.6084 c -%_258.9922 190.915 259.7598 180.1162 249.7988 176.8486 C -%_255.6582 181.9053 253.4883 193.6768 244.1094 194.5732 c -%_243.9922 194.583 243.8828 194.5127 243.8457 194.4014 c -%_243.8066 194.292 243.8496 194.1689 243.9492 194.1064 c -%_245.957 192.8271 247.627 190.335 247.627 187.5322 c -%_247.627 182.8584 244.2051 181.0205 241.9512 181.0205 c -%_238.5293 181.0205 235.6914 184.2764 235.6914 189.2021 c -%_235.6914 195.0439 240.9512 199.8857 247.7109 200.6357 c -%_254.3379 201.3721 260.4941 198.4814 263.4609 194.1768 c -%_263.5313 194.0752 263.6621 194.04 263.7754 194.0908 c -%_263.8867 194.1416 263.9453 194.2646 263.916 194.3838 c -%_260.8965 206.0869 247.1191 211.2607 237.0273 203.8916 C -%_243.6406 211.3916 254.0332 211.4971 262.75 203.8057 c -%_262.8398 203.7256 262.9746 203.7197 263.0723 203.7939 c -%_263.168 203.8682 263.1992 203.999 263.1445 204.1084 c -%_260.4785 209.5146 253.8926 215.9268 244.5391 214.9932 c -%_235.9824 214.1377 231.0176 205.9775 230.0156 199.3018 C -%_229.459 207.8232 231.4102 213.8369 238.7695 219.4463 c -%_238.8672 219.5205 238.8965 219.6533 238.8418 219.7627 c -%_238.7871 219.8721 238.6621 219.9268 238.5449 219.8916 c -%_231.7598 217.9326 226.3145 214.4678 223.4961 207.3486 C -%_223.4961 213.5088 225.6348 219.7197 231.0215 223.8584 c -%_231.1191 223.9326 231.1484 224.0654 231.0938 224.1748 c -%_231.0391 224.2822 230.916 224.3369 230.7988 224.3037 c -%_227.3457 223.3213 224.627 221.8154 222.6602 219.1201 C -%_221.3496 230.2197 216.1387 236.8096 210.1348 236.8096 c -%_206.0098 236.8096 202.9297 233.7764 202.9297 228.9404 c -%_202.9297 226.1104 204.418 222.1377 207.7402 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 128.3018 m -%_111.6758 124.3975 118.0527 122.9092 124.9453 124.3135 C -%_124.4355 120.0107 125.2793 115.5225 126.5566 112.8271 c -%_126.6094 112.7197 126.7305 112.6611 126.8477 112.6904 c -%_126.9648 112.7197 127.0449 112.8271 127.041 112.9482 c -%_126.666 121.7139 131.6641 128.79 140.4902 131.8564 C -%_133.584 127.1006 131.5645 117.6631 134.8516 112.792 c -%_134.9199 112.6924 135.0469 112.6533 135.1582 112.6982 c -%_135.2695 112.7432 135.334 112.8604 135.3125 112.9795 c -%_134.9395 115.04 135.918 117.6631 138.0254 119.7041 c -%_140.9316 122.5186 144.875 123.1572 146.8359 121.1338 c -%_148.7969 119.1084 148.0332 115.1865 145.1289 112.374 c -%_144.0684 111.3467 142.8691 110.6104 141.6797 110.1885 c -%_141.5664 110.1475 141.498 110.0342 141.5137 109.917 c -%_141.5273 109.7979 141.623 109.7061 141.7422 109.6963 c -%_148.1309 109.1416 152.5117 112.9482 155.2578 117.5732 c -%_158.0527 122.2783 162.8281 125.9854 168.4688 125.2451 c -%_168.5879 125.2295 168.7012 125.2998 168.7422 125.4131 c -%_168.7813 125.5264 168.7363 125.6514 168.6328 125.7139 c -%_165.8359 127.3975 162.7617 128.0967 158.7695 126.7666 C -%_164.5645 131.6748 172.8164 134.5068 180.6104 131.9932 c -%_180.7197 131.958 180.8389 132.001 180.9014 132.0967 c -%_180.9639 132.1924 180.9541 132.3193 180.876 132.4053 c -%_174.9668 138.9697 163.1855 139.1006 155.7656 133.7764 C -%_158.8027 138.0928 162.834 141.2627 170.0586 142.2549 c -%_170.1738 142.2705 170.2637 142.3643 170.2773 142.4795 c -%_170.2891 142.5947 170.2227 142.7041 170.1133 142.7451 c -%_161.8223 145.8213 153.5137 142.7002 146.668 134.5283 C -%_149.6602 140.9072 154.5742 146.0146 161.4355 148.542 c -%_161.5508 148.583 161.6191 148.7002 161.5977 148.8213 c -%_161.5781 148.9424 161.4746 149.0303 161.3535 149.0322 c -%_157.4102 149.1143 153.8672 148.1748 149.0879 145.4619 C -%_152.5957 151.1533 151.8281 161.1006 146.7188 167.7217 c -%_146.6484 167.8135 146.5234 167.8447 146.416 167.7998 c -%_146.3105 167.7529 146.248 167.6396 146.2676 167.5244 c -%_147.4473 160.3252 144.9688 152.1963 140.6582 147.8838 C -%_142.8105 155.5146 140.6641 162.46 134.7617 167.5264 c -%_134.6914 167.5869 134.5918 167.6045 134.5059 167.5713 c -%_134.418 167.5381 134.3574 167.46 134.3438 167.3682 c -%_133.1094 157.9502 122.5742 148.3936 113.7422 147.5928 c -%_113.6172 147.5811 113.5195 147.4814 113.5117 147.3564 c -%_113.5039 147.2314 113.5859 147.1201 113.709 147.0928 c -%_117.9883 146.124 122.4004 146.6025 126.0977 148.1221 C -%_123.4375 145.1904 120.1582 143.0127 116.543 141.8779 c -%_116.4258 141.8408 116.3535 141.7275 116.3672 141.6064 c -%_116.3809 141.4854 116.4805 141.3896 116.6016 141.3818 c -%_121.1113 141.0713 125.5254 142.3877 129.332 144.9209 C -%_124.9707 138.2998 118.3516 133.376 109.9043 131.4131 c -%_109.7832 131.3857 109.7012 131.2744 109.707 131.1514 c -%_109.7148 131.0283 109.8105 130.9287 109.9336 130.915 c -%_121.8516 129.6123 131.6797 134.2334 138.1543 142.833 C -%_136.5059 137.9307 131.7891 133.0771 125.209 130.2139 c -%_119.3633 127.6689 113.3594 127.2666 108.7871 128.7041 c -%_108.6816 128.7373 108.5645 128.6963 108.502 128.6045 c -%_108.4395 128.5107 108.4434 128.3877 108.5137 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 203.874 m -%_156.6113 193.3877 156.9531 185.1885 160.8242 174.8193 c -%_160.8691 174.7021 160.9902 174.6338 161.1133 174.6592 c -%_161.2363 174.6846 161.3223 174.7959 161.3164 174.9189 c -%_160.6953 187.542 164.1426 196.5732 171.6152 202.7275 C -%_163.3652 192.874 167.2617 173.167 180.4385 173.167 c -%_190.0244 173.167 197.9531 181.1436 199.8926 190.6924 c -%_199.918 190.8135 199.8516 190.9346 199.7344 190.9795 c -%_199.6191 191.0244 199.4883 190.9795 199.4258 190.8721 c -%_196.584 186.1104 192.0176 183.0205 186.9697 183.0205 c -%_178.834 183.0205 176.4277 189.4873 176.4277 194.0205 c -%_176.4277 200.2061 181.3545 205.3623 185.1357 205.3623 c -%_188.5732 205.3623 190.1768 202.54 190.1768 200.4365 c -%_190.1768 196.5381 187.1787 193.2705 183.8018 192.2725 c -%_183.6807 192.2354 183.6045 192.1182 183.6221 191.9932 c -%_183.6396 191.8682 183.7451 191.7744 183.8721 191.7744 c -%_187.9775 191.749 191.4473 193.6279 193.5 197.3428 C -%_193.7695 194.4678 193.7715 192.6572 192.8594 189.6182 c -%_192.8242 189.501 192.877 189.376 192.9844 189.3193 c -%_193.0938 189.2646 193.2266 189.292 193.3008 189.3896 c -%_200.6582 198.7822 197.1367 215.0127 191.3223 221.7471 C -%_196.8535 217.7646 201.7383 209.1123 201.6621 197.3525 c -%_201.6602 197.2314 201.7461 197.126 201.8672 197.1025 c -%_201.9863 197.0791 202.1055 197.1436 202.1504 197.2568 c -%_206.2598 207.5107 204.0801 226.5049 192.8691 237.1084 C -%_195.7539 237.5068 198.7363 237.4561 201.9941 236.417 c -%_202.1094 236.3799 202.2344 236.4307 202.293 236.5361 c -%_202.3516 236.6416 202.3281 236.7744 202.2344 236.8525 c -%_198.1426 240.3076 192.4199 241.3936 186.9697 241.3936 C -%_191.666 235.8936 190.1064 224.8408 182.6162 224.8408 c -%_177.2656 224.8408 174.8379 233.1396 178.9668 237.6221 c -%_179.0449 237.708 179.0547 237.835 178.9922 237.9326 c -%_178.9277 238.0303 178.8066 238.0713 178.6953 238.0342 c -%_173.916 236.3779 168.75 232.2451 168.75 227.0166 c -%_168.75 221.9756 173.5625 217.6221 180.5537 217.9658 C -%_171.7324 215.4619 162.5 218.2334 157.6699 224.2197 c -%_157.5957 224.3115 157.4648 224.3408 157.3594 224.2861 c -%_157.252 224.2334 157.1973 224.1123 157.2266 223.9951 c -%_160.0176 213.2803 169.1934 208.7959 180.667 210.29 C -%_171.3848 206.5322 157.416 209.8076 151.2422 217.5986 c -%_151.1699 217.6904 151.043 217.7217 150.9355 217.6709 c -%_150.8301 217.6221 150.7715 217.5049 150.7949 217.3896 c -%_152.166 210.7744 155.6582 205.8291 161.418 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 184.5869 m -%_26.7178 184.7061 26.8213 184.792 26.9424 184.7939 c -%_39.8486 184.9287 51.6963 188.0615 60.9141 196.3086 C -%_52.8838 190.751 37.9717 188.7979 29.3867 192.6904 c -%_29.2764 192.7402 29.2178 192.8604 29.2451 192.9785 c -%_29.2715 193.0967 29.3779 193.1787 29.499 193.1748 c -%_40.1787 192.8857 48.7783 196.1816 55.4834 202.1396 C -%_48.6143 202.5615 42.9092 206.8799 42.9268 211.9844 c -%_42.9268 212.1035 43.0107 212.2061 43.1279 212.2314 c -%_43.2441 212.2568 43.3623 212.1963 43.4111 212.0879 c -%_44.5322 209.5986 48.1592 208.3076 51.9941 209.208 c -%_56.1738 210.1885 58.9941 213.3975 58.2949 216.373 c -%_57.8232 218.3877 55.8584 219.7764 53.3428 220.1602 c -%_53.2158 220.1787 53.123 220.29 53.126 220.418 c -%_53.1299 220.5459 53.2285 220.6514 53.3564 220.6631 c -%_54.4248 220.7656 55.5361 220.7695 56.6738 220.6611 c -%_63.1641 220.0439 68.1875 216.0654 68.623 211.4834 C -%_73.3359 212.0303 77.5078 214.6396 79.002 218.2568 c -%_79.0469 218.3652 79.1621 218.4287 79.2773 218.4111 c -%_79.3926 218.3916 79.4805 218.2969 79.4902 218.1807 c -%_79.8672 213.4287 78.2324 210.3418 74.5195 207.3262 C -%_79.9043 209.3857 85.9648 209.4912 91.7754 206.7881 c -%_91.8809 206.7393 91.9395 206.624 91.918 206.5088 c -%_91.8945 206.3936 91.7949 206.3096 91.6777 206.3057 c -%_86.7988 206.1152 83.2617 204.5498 79.9473 201.2334 C -%_98.2012 206.3672 113.0332 195.0322 107.9004 178.1807 c -%_107.8652 178.0654 107.7539 177.9902 107.6328 178.0029 c -%_107.5117 178.0146 107.416 178.1104 107.4063 178.2314 c -%_106.4883 187.9453 99.7031 194.3467 89.5449 195.3076 C -%_94.9316 193.2471 100.5449 188.3311 101.1016 179.7734 c -%_101.1094 179.6514 101.0293 179.54 100.9102 179.5107 c -%_100.791 179.4814 100.668 179.54 100.6172 179.6514 c -%_97.8184 185.8057 92.3203 188.917 86.457 189.4639 C -%_92.791 186.8838 96.8535 180.8623 98.0273 173.0439 c -%_98.0469 172.9209 97.9727 172.8018 97.8535 172.7646 c -%_97.7363 172.7256 97.6074 172.7803 97.5508 172.8896 c -%_93.6855 180.4727 85.3945 185.6836 75.1035 181.7021 c -%_64.4863 177.5928 59.8291 165.3154 58.7998 156.6611 c -%_58.7852 156.54 58.6846 156.4463 58.5615 156.4385 c -%_58.4395 156.4307 58.3291 156.5127 58.3008 156.6338 c -%_54.5811 172.3213 61.8838 188.583 74.9375 195.4736 C -%_67.8418 193.4707 61.498 189.2139 57.9102 182.1191 C -%_49.6162 181.1006 43.9063 178.2568 41.0527 172.8799 c -%_40.9961 172.7725 40.8721 172.7197 40.7568 172.7549 c -%_40.6416 172.7881 40.5654 172.8994 40.5752 173.0205 c -%_40.7578 175.1299 41.5166 179.3506 44.6494 181.291 C -%_37.6846 181.2803 32.1436 182.1846 26.8506 184.3037 c -%_26.7393 184.3496 26.6738 184.4678 26.6963 184.5869 c -%_f -%_0 D -%_56.1826 131.1162 m -%_56.084 131.1826 55.9541 131.1709 55.8672 131.0908 c -%_55.7813 131.0088 55.7627 130.8799 55.8213 130.7783 c -%_57.4414 127.9814 55.9619 123.9639 52.7705 123.9639 c -%_47.0498 123.9639 44.2998 134.7334 45.1748 144.5576 C -%_47.3379 138.8018 49.208 136.5029 52.5225 133.7627 c -%_52.6162 133.6846 52.751 133.6846 52.8447 133.7607 c -%_52.9385 133.8389 52.9658 133.9697 52.9082 134.0771 c -%_48.0518 143.1572 47.0107 150.1436 47.0107 158.1631 C -%_48.4736 152.2041 50.2061 148.8408 55.1377 143.7822 c -%_55.2236 143.6943 55.3604 143.6807 55.4629 143.749 c -%_55.5645 143.8193 55.6016 143.9521 55.5498 144.0654 c -%_50.252 155.6553 50.6563 168.5127 54.6025 178.3291 c -%_54.6416 178.4268 54.6172 178.5381 54.54 178.6104 c -%_54.4629 178.6807 54.3506 178.6982 54.2549 178.6514 c -%_49.0498 176.1006 45.9912 174.4248 41.5029 168.2627 C -%_42.8604 160.8643 41.7314 157.2139 38.3311 151.0674 C -%_42.2686 160.9854 40.1729 174.9619 30.1436 180.6592 c -%_30.0342 180.7207 29.8955 180.6934 29.8193 180.5947 c -%_29.7412 180.4951 29.748 180.3535 29.835 180.2627 c -%_33.6162 176.3076 36.3662 169.6279 33.9912 162.335 C -%_35.5205 172.7236 26.3955 181.4502 16.2119 181.4502 c -%_6.6123 181.4502 0.061523 173.9404 0.602539 166.5088 c -%_1.13965 159.1436 6.0459 155.54 10.2744 154.0107 c -%_10.3857 153.9717 10.5107 154.0127 10.5742 154.1123 c -%_10.6377 154.2139 10.624 154.3428 10.541 154.4287 c -%_4.93066 160.1201 4.16309 170.9209 14.124 174.1885 C -%_8.26465 169.1318 10.4346 157.3584 19.8135 156.4639 c -%_19.9307 156.4521 20.04 156.5225 20.0781 156.6338 c -%_20.1162 156.7451 20.0732 156.8682 19.9746 156.9307 c -%_17.9658 158.208 16.2959 160.7021 16.2959 163.5049 c -%_16.2959 168.1787 19.7178 170.0146 21.9717 170.0146 c -%_25.3936 170.0146 28.2314 166.7588 28.2314 161.835 c -%_28.2314 155.9912 22.9717 151.1514 16.2119 150.3994 c -%_9.58594 149.665 3.42969 152.5537 0.461914 156.8584 c -%_0.392578 156.96 0.260742 156.9971 0.148438 156.9463 c -%_0.036133 156.8955 -0.022461 156.7705 0.007813 156.6514 c -%_3.02637 144.9482 16.8037 139.7744 26.8955 147.1455 C -%_20.2822 139.6436 9.88965 139.54 1.17383 147.2314 c -%_1.08301 147.3115 0.948242 147.3154 0.851563 147.2412 c -%_0.754883 147.1689 0.724609 147.0361 0.77832 146.9287 c -%_3.44531 141.5205 10.0313 135.1084 19.3838 136.0439 c -%_27.9404 136.8994 32.9053 145.0576 33.9072 151.7354 C -%_34.4639 143.2139 32.5137 137.1982 25.1533 131.5889 c -%_25.0566 131.5146 25.0264 131.3818 25.0811 131.2725 c -%_25.1357 131.165 25.2607 131.1104 25.3779 131.1436 c -%_32.1631 133.1045 37.6084 136.5693 40.4268 143.6885 C -%_40.4268 137.5264 38.2881 131.3154 32.9014 127.1768 c -%_32.8037 127.1025 32.7744 126.9717 32.8291 126.8623 c -%_32.8838 126.7529 33.0078 126.6982 33.125 126.7314 c -%_36.5781 127.7158 39.2959 129.2197 41.2627 131.917 C -%_42.5732 120.8174 47.7842 114.2256 53.7881 114.2256 c -%_57.9131 114.2256 60.9932 117.2588 60.9932 122.0967 c -%_60.9932 124.9268 59.5049 128.8994 56.1826 131.1162 c -%_f -%_155.4102 222.7354 m -%_152.248 226.6396 145.8711 228.1279 138.9785 226.7236 C -%_139.4883 231.0244 138.6445 235.5146 137.3672 238.208 c -%_137.3145 238.3174 137.1934 238.375 137.0762 238.3467 c -%_136.959 238.3174 136.8789 238.21 136.8828 238.0889 c -%_137.2578 229.3223 132.2598 222.2451 123.4336 219.1787 C -%_130.3398 223.9346 132.3594 233.3721 129.0723 238.2451 c -%_129.0039 238.3438 128.877 238.3828 128.7656 238.3369 c -%_128.6543 238.292 128.5898 238.1748 128.6113 238.0576 c -%_128.9844 235.9971 128.0059 233.373 125.8984 231.3311 c -%_122.9922 228.5166 119.0488 227.8779 117.0879 229.9014 c -%_115.127 231.9268 115.8906 235.8486 118.7949 238.6631 c -%_119.8555 239.6904 121.0547 240.4248 122.2441 240.8477 c -%_122.3574 240.8877 122.4258 241.001 122.4102 241.1191 c -%_122.3965 241.2383 122.3008 241.3301 122.1816 241.3398 c -%_115.793 241.8945 111.4121 238.0879 108.666 233.4619 c -%_105.8711 228.7568 101.0957 225.0518 95.4551 225.792 c -%_95.3359 225.8076 95.2227 225.7373 95.1816 225.624 c -%_95.1426 225.5107 95.1875 225.3838 95.291 225.3223 c -%_98.0879 223.6377 101.1621 222.9385 105.1543 224.2705 C -%_99.3594 219.3613 91.1074 216.5283 83.3145 219.043 c -%_83.2051 219.0791 83.0859 219.0361 83.0234 218.9395 c -%_82.9609 218.8428 82.9727 218.7168 83.0488 218.6318 c -%_88.957 212.0674 100.7383 211.9365 108.1582 217.2588 C -%_105.1211 212.9424 101.0898 209.7744 93.8652 208.7803 c -%_93.75 208.7646 93.6602 208.6729 93.6465 208.5576 c -%_93.6348 208.4414 93.7012 208.332 93.8105 208.292 c -%_102.1016 205.2139 110.4102 208.3369 117.2559 216.5068 C -%_114.2637 210.1299 109.3496 205.0225 102.4883 202.4951 c -%_102.373 202.4531 102.3047 202.335 102.3262 202.2158 c -%_102.3457 202.0947 102.4492 202.0059 102.5703 202.0029 c -%_106.5137 201.9219 110.0566 202.8604 114.8359 205.5732 C -%_111.3281 199.8838 112.0957 189.9346 117.2051 183.3154 c -%_117.2754 183.2236 117.4004 183.1914 117.5078 183.2373 c -%_117.6133 183.2842 117.6758 183.3965 117.6563 183.5107 c -%_116.4766 190.7119 118.9551 198.8408 123.2656 203.1533 C -%_121.1133 195.5215 123.2598 188.5771 129.1621 183.5088 c -%_129.2324 183.4482 129.332 183.4316 129.418 183.4648 c -%_129.5059 183.498 129.5664 183.5771 129.5801 183.6689 c -%_130.8145 193.0869 141.3496 202.6436 150.1816 203.4443 c -%_150.3066 203.4551 150.4043 203.5557 150.4121 203.6797 c -%_150.4199 203.8037 150.3379 203.917 150.2148 203.9443 c -%_145.9355 204.9131 141.5234 204.4346 137.8262 202.9131 C -%_140.4863 205.8467 143.7656 208.0244 147.3809 209.1592 c -%_147.498 209.1953 147.5703 209.3096 147.5566 209.4307 c -%_147.543 209.5518 147.4434 209.6455 147.3223 209.6543 c -%_142.8125 209.9658 138.3984 208.6484 134.5918 206.1162 C -%_138.9531 212.7373 145.5723 217.6611 154.0195 219.6221 c -%_154.1406 219.6504 154.2227 219.7607 154.2168 219.8848 c -%_154.209 220.0088 154.1133 220.1084 153.9902 220.1221 c -%_142.0723 221.4238 132.2441 216.8037 125.7695 208.2041 C -%_127.418 213.1045 132.1348 217.96 138.7148 220.8232 c -%_144.5605 223.3682 150.5645 223.7695 155.1367 222.333 c -%_155.2422 222.2998 155.3594 222.3398 155.4219 222.4326 c -%_155.4844 222.5244 155.4805 222.6475 155.4102 222.7354 c -%_f -%_102.5059 147.1631 m -%_107.3125 157.6494 106.9707 165.8486 103.0996 176.2178 c -%_103.0547 176.335 102.9336 176.4023 102.8105 176.3779 c -%_102.6875 176.3525 102.6016 176.2412 102.6074 176.1162 c -%_103.2285 163.4951 99.7813 154.4619 92.3086 148.3096 C -%_100.5586 158.1611 96.6621 177.8691 83.4863 177.8691 c -%_73.9004 177.8691 65.9697 169.8936 64.0303 160.3447 c -%_64.0059 160.2236 64.0723 160.1006 64.1885 160.0576 c -%_64.3037 160.0127 64.4346 160.0576 64.4971 160.1631 c -%_67.3398 164.9248 71.9063 168.0146 76.9551 168.0146 c -%_85.0898 168.0146 87.4961 161.5479 87.4961 157.0166 c -%_87.4961 150.8291 82.5703 145.6729 78.7891 145.6729 c -%_75.3516 145.6729 73.748 148.4971 73.748 150.6006 c -%_73.748 154.499 76.7461 157.7666 80.125 158.7646 c -%_80.2441 158.7998 80.3223 158.9189 80.3047 159.0439 c -%_80.2852 159.1689 80.1797 159.2607 80.0547 159.2627 c -%_75.9473 159.2881 72.4766 157.4072 70.4238 153.6943 C -%_70.1543 156.5693 70.1514 158.3799 71.0645 161.417 c -%_71.0996 161.5342 71.0459 161.6592 70.9385 161.7158 c -%_70.8291 161.7725 70.6963 161.7432 70.6221 161.6475 c -%_63.2656 152.2549 66.7861 136.0225 72.6016 129.29 C -%_67.0693 133.2725 62.1846 141.9229 62.2617 153.6826 c -%_62.2627 153.8057 62.1768 153.9092 62.0566 153.9326 c -%_61.9365 153.958 61.8174 153.8916 61.7725 153.7783 c -%_57.6641 143.5264 59.8438 124.5303 71.0537 113.9268 C -%_68.1699 113.5303 65.1865 113.5811 61.9287 114.6201 c -%_61.8135 114.6553 61.6885 114.6064 61.6299 114.501 c -%_61.5713 114.3936 61.5947 114.2607 61.6885 114.1826 c -%_65.7803 110.7275 71.5029 109.6416 76.9551 109.6416 C -%_72.2578 115.1416 73.8184 126.1963 81.3105 126.1963 c -%_86.6582 126.1963 89.0859 117.8975 84.957 113.415 c -%_84.8789 113.3291 84.8691 113.2002 84.9316 113.1045 c -%_84.9961 113.0068 85.1172 112.9639 85.2285 113.0029 c -%_90.0078 114.6572 95.1738 118.792 95.1738 124.0186 c -%_95.1738 129.0615 90.3613 133.4131 83.373 133.0693 C -%_92.1914 135.5752 101.4238 132.8018 106.2539 126.8174 c -%_106.3281 126.7236 106.459 126.6963 106.5645 126.749 c -%_106.6719 126.8037 106.7266 126.9248 106.6973 127.04 c -%_103.9063 137.7568 94.7305 142.2393 83.2578 140.7471 C -%_92.5391 144.5029 106.5078 141.2275 112.6816 133.4365 c -%_112.7539 133.3447 112.8809 133.3154 112.9883 133.3643 c -%_113.0938 133.415 113.1523 133.5322 113.1289 133.6455 c -%_111.7578 140.2607 108.2656 145.208 102.5059 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 166.4502 m -%_128.8672 166.3311 128.7637 166.2432 128.6426 166.2432 c -%_115.7363 166.1064 103.8887 162.9756 94.6719 154.7275 C -%_102.7012 160.2861 117.6133 162.2373 126.1992 158.3467 c -%_126.3086 158.2959 126.3672 158.1748 126.3398 158.0576 c -%_126.3145 157.9404 126.207 157.8584 126.0859 157.8604 c -%_115.4063 158.1514 106.8066 154.8545 100.1016 148.8975 C -%_106.9707 148.4736 112.6758 144.1572 112.6582 139.0518 c -%_112.6582 138.9326 112.5742 138.8291 112.457 138.8037 c -%_112.3418 138.7803 112.2227 138.8389 112.1738 138.9482 c -%_111.0527 141.4365 107.4258 142.7295 103.5918 141.8291 c -%_99.4121 140.8467 96.5918 137.6396 97.291 134.6631 c -%_97.7617 132.6494 99.7266 131.2607 102.2422 130.876 c -%_102.3691 130.8564 102.4629 130.7471 102.459 130.6182 c -%_102.4551 130.4912 102.3574 130.3857 102.2285 130.3721 c -%_101.1602 130.2705 100.0488 130.2666 98.9121 130.376 c -%_92.4219 130.9932 87.3984 134.9697 86.9629 139.5537 C -%_82.25 139.0068 78.0781 136.3955 76.584 132.7803 c -%_76.5391 132.6709 76.4258 132.6084 76.3086 132.626 c -%_76.1934 132.6436 76.1055 132.7393 76.0957 132.8564 c -%_75.7188 137.6064 77.3535 140.6943 81.0664 143.71 C -%_75.6816 141.6514 69.6201 141.5459 63.8096 144.2471 c -%_63.7041 144.2979 63.6455 144.4131 63.667 144.5283 c -%_63.6904 144.6436 63.79 144.7275 63.9072 144.7314 c -%_68.7861 144.9209 72.3242 146.4873 75.6406 149.8037 C -%_57.3838 144.6689 42.5518 156.0049 47.6846 172.8545 c -%_47.7197 172.9717 47.8311 173.0459 47.9521 173.0342 c -%_48.0732 173.0225 48.1689 172.9268 48.1787 172.8057 c -%_49.0967 163.0908 55.8818 156.6885 66.04 155.7295 C -%_60.6533 157.7881 55.04 162.7041 54.4834 171.2627 c -%_54.4756 171.3857 54.5557 171.4951 54.6748 171.5264 c -%_54.7939 171.5557 54.917 171.4951 54.9678 171.3838 c -%_57.7666 165.2295 63.2646 162.1201 69.1279 161.5713 C -%_62.7939 164.1533 58.7314 170.1748 57.5576 177.9932 c -%_57.5381 178.1162 57.6123 178.2334 57.7314 178.2725 c -%_57.8486 178.3096 57.9775 178.2568 58.0342 178.1455 c -%_61.8994 170.5635 70.1904 165.3525 80.4824 169.335 c -%_91.0996 173.4443 95.7559 185.7197 96.7852 194.374 c -%_96.8008 194.4971 96.9004 194.5908 97.0234 194.5986 c -%_97.1465 194.6045 97.2559 194.5225 97.2852 194.4033 c -%_101.0039 178.7139 93.7012 162.4541 80.6484 155.5635 C -%_87.7441 157.5654 94.0879 161.8232 97.6758 168.917 C -%_105.9688 169.9346 111.6797 172.7803 114.5332 178.1572 c -%_114.5898 178.2627 114.7129 178.3154 114.8281 178.2822 c -%_114.9434 178.2471 115.0195 178.1357 115.0098 178.0166 c -%_114.8281 175.9072 114.0684 171.6865 110.9355 169.7451 C -%_117.9004 169.7568 123.4414 168.8525 128.7344 166.7314 c -%_128.8457 166.6865 128.9121 166.5693 128.8887 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 219.9189 m -%_99.502 219.8545 99.6309 219.8643 99.7188 219.9463 c -%_99.8047 220.0264 99.8223 220.1553 99.7637 220.2588 c -%_98.1445 223.0557 99.623 227.0713 102.8145 227.0713 c -%_108.5352 227.0713 111.2852 216.3018 110.4102 206.4795 C -%_108.248 212.2334 106.377 214.5342 103.0625 217.2744 c -%_102.9688 217.3506 102.834 217.3525 102.7402 217.2744 c -%_102.6465 217.1982 102.6191 217.0654 102.6777 216.958 c -%_107.5332 207.8799 108.5742 200.8936 108.5742 192.874 C -%_107.1113 198.8311 105.3789 202.1943 100.4473 207.2549 c -%_100.3613 207.3428 100.2246 207.3564 100.123 207.2861 c -%_100.0215 207.2158 99.9844 207.083 100.0352 206.9717 c -%_105.334 195.3799 104.9297 182.5244 100.9824 172.708 c -%_100.9434 172.6104 100.9688 172.499 101.0449 172.4268 c -%_101.123 172.3545 101.2344 172.3389 101.3301 172.3838 c -%_106.5352 174.9346 109.5938 176.6104 114.082 182.7744 C -%_112.7246 190.1729 113.8535 193.8213 117.2539 199.9678 C -%_113.3164 190.0518 115.4121 176.0752 125.4414 170.3779 c -%_125.5508 170.3154 125.6895 170.3428 125.7656 170.4424 c -%_125.8438 170.542 125.8379 170.6826 125.75 170.7744 c -%_121.9688 174.7295 119.2188 181.4092 121.5938 188.7002 C -%_120.0645 178.3115 129.1895 169.5869 139.373 169.5869 c -%_148.9727 169.5869 155.5234 177.0947 154.9824 184.5264 c -%_154.4453 191.8916 149.5391 195.4971 145.3105 197.0244 c -%_145.1992 197.0654 145.0742 197.0225 145.0117 196.9229 c -%_144.9473 196.8232 144.9609 196.6924 145.0449 196.6084 c -%_150.6543 190.915 151.4219 180.1162 141.4609 176.8486 C -%_147.3203 181.9053 145.1504 193.6768 135.7715 194.5732 c -%_135.6543 194.583 135.5449 194.5127 135.5078 194.4014 c -%_135.4688 194.292 135.5117 194.1689 135.6113 194.1064 c -%_137.6191 192.8271 139.2891 190.335 139.2891 187.5322 c -%_139.2891 182.8584 135.8672 181.0205 133.6133 181.0205 c -%_130.1914 181.0205 127.3535 184.2764 127.3535 189.2021 c -%_127.3535 195.0439 132.6133 199.8857 139.373 200.6357 c -%_146 201.3721 152.1563 198.4814 155.123 194.1768 c -%_155.1934 194.0752 155.3242 194.04 155.4375 194.0908 c -%_155.5488 194.1416 155.6074 194.2646 155.5781 194.3838 c -%_152.5586 206.0869 138.7813 211.2607 128.6895 203.8916 C -%_135.3027 211.3916 145.6953 211.4971 154.4121 203.8057 c -%_154.502 203.7256 154.6367 203.7197 154.7344 203.7939 c -%_154.8301 203.8682 154.8613 203.999 154.8066 204.1084 c -%_152.1406 209.5146 145.5547 215.9268 136.2012 214.9932 c -%_127.6445 214.1377 122.6797 205.9775 121.6777 199.3018 C -%_121.1211 207.8232 123.0723 213.8369 130.4316 219.4463 c -%_130.5293 219.5205 130.5586 219.6533 130.5039 219.7627 c -%_130.4492 219.8721 130.3242 219.9268 130.207 219.8916 c -%_123.4219 217.9326 117.9766 214.4678 115.1582 207.3486 C -%_115.1582 213.5088 117.2969 219.7197 122.6836 223.8584 c -%_122.7813 223.9326 122.8105 224.0654 122.7559 224.1748 c -%_122.7012 224.2822 122.5781 224.3369 122.4609 224.3037 c -%_119.0078 223.3213 116.2891 221.8154 114.3223 219.1201 C -%_113.0117 230.2197 107.8008 236.8096 101.7969 236.8096 c -%_97.6719 236.8096 94.5918 233.7764 94.5918 228.9404 c -%_94.5918 226.1104 96.0801 222.1377 99.4023 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 128.3018 m -%_3.33691 124.3975 9.71387 122.9092 16.6064 124.3135 C -%_16.0967 120.0107 16.9404 115.5225 18.2178 112.8271 c -%_18.2705 112.7197 18.3916 112.6611 18.5088 112.6904 c -%_18.626 112.7197 18.7061 112.8271 18.7021 112.9482 c -%_18.3271 121.7139 23.3252 128.79 32.1514 131.8564 C -%_25.2451 127.1006 23.2256 117.6631 26.5127 112.792 c -%_26.5811 112.6924 26.708 112.6533 26.8193 112.6982 c -%_26.9307 112.7432 26.9951 112.8604 26.9736 112.9795 c -%_26.6006 115.04 27.5791 117.6631 29.6865 119.7041 c -%_32.5928 122.5186 36.5361 123.1572 38.4971 121.1338 c -%_40.458 119.1084 39.6943 115.1865 36.79 112.374 c -%_35.7295 111.3467 34.5303 110.6104 33.3408 110.1885 c -%_33.2275 110.1475 33.1592 110.0342 33.1748 109.917 c -%_33.1885 109.7979 33.2842 109.7061 33.4033 109.6963 c -%_39.792 109.1416 44.1729 112.9482 46.9189 117.5732 c -%_49.7139 122.2783 54.4893 125.9854 60.1299 125.2451 c -%_60.249 125.2295 60.3623 125.2998 60.4033 125.4131 c -%_60.4424 125.5264 60.3975 125.6514 60.2939 125.7139 c -%_57.4971 127.3975 54.4229 128.0967 50.4307 126.7666 C -%_56.2256 131.6748 64.4775 134.5068 72.2715 131.9932 c -%_72.3809 131.958 72.5 132.001 72.5625 132.0967 c -%_72.625 132.1924 72.6152 132.3193 72.5371 132.4053 c -%_66.6279 138.9697 54.8467 139.1006 47.4268 133.7764 C -%_50.4639 138.0928 54.4951 141.2627 61.7197 142.2549 c -%_61.835 142.2705 61.9248 142.3643 61.9385 142.4795 c -%_61.9502 142.5947 61.8838 142.7041 61.7744 142.7451 c -%_53.4834 145.8213 45.1748 142.7002 38.3291 134.5283 C -%_41.3213 140.9072 46.2354 146.0146 53.0967 148.542 c -%_53.2119 148.583 53.2803 148.7002 53.2588 148.8213 c -%_53.2393 148.9424 53.1357 149.0303 53.0146 149.0322 c -%_49.0713 149.1143 45.5283 148.1748 40.749 145.4619 C -%_44.2568 151.1533 43.4893 161.1006 38.3799 167.7217 c -%_38.3096 167.8135 38.1846 167.8447 38.0771 167.7998 c -%_37.9717 167.7529 37.9092 167.6396 37.9287 167.5244 c -%_39.1084 160.3252 36.6299 152.1963 32.3193 147.8838 C -%_34.4717 155.5146 32.3252 162.46 26.4229 167.5264 c -%_26.3525 167.5869 26.2529 167.6045 26.167 167.5713 c -%_26.0791 167.5381 26.0186 167.46 26.0049 167.3682 c -%_24.7705 157.9502 14.2354 148.3936 5.40332 147.5928 c -%_5.27832 147.5811 5.18066 147.4814 5.17285 147.3564 c -%_5.16504 147.2314 5.24707 147.1201 5.37012 147.0928 c -%_9.64941 146.124 14.0615 146.6025 17.7588 148.1221 C -%_15.0986 145.1904 11.8193 143.0127 8.2041 141.8779 c -%_8.08691 141.8408 8.01465 141.7275 8.02832 141.6064 c -%_8.04199 141.4854 8.1416 141.3896 8.2627 141.3818 c -%_12.7725 141.0713 17.1865 142.3877 20.9932 144.9209 C -%_16.6318 138.2998 10.0127 133.376 1.56543 131.4131 c -%_1.44434 131.3857 1.3623 131.2744 1.36816 131.1514 c -%_1.37598 131.0283 1.47168 130.9287 1.59473 130.915 c -%_13.5127 129.6123 23.3408 134.2334 29.8154 142.833 C -%_28.167 137.9307 23.4502 133.0771 16.8701 130.2139 c -%_11.0244 127.6689 5.02051 127.2666 0.448242 128.7041 c -%_0.342773 128.7373 0.225586 128.6963 0.163086 128.6045 c -%_0.100586 128.5107 0.104492 128.3877 0.174805 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 203.874 m -%_48.2725 193.3877 48.6143 185.1885 52.4854 174.8193 c -%_52.5303 174.7021 52.6514 174.6338 52.7744 174.6592 c -%_52.8975 174.6846 52.9834 174.7959 52.9775 174.9189 c -%_52.3564 187.542 55.8037 196.5732 63.2764 202.7275 C -%_55.0264 192.874 58.9229 173.167 72.0996 173.167 c -%_81.6855 173.167 89.6152 181.1436 91.5547 190.6924 c -%_91.5801 190.8135 91.5137 190.9346 91.3965 190.9795 c -%_91.2813 191.0244 91.1504 190.9795 91.0879 190.8721 c -%_88.2461 186.1104 83.6797 183.0205 78.6309 183.0205 c -%_70.4951 183.0205 68.0889 189.4873 68.0889 194.0205 c -%_68.0889 200.2061 73.0156 205.3623 76.7969 205.3623 c -%_80.2344 205.3623 81.8379 202.54 81.8379 200.4365 c -%_81.8379 196.5381 78.8398 193.2705 75.4629 192.2725 c -%_75.3418 192.2354 75.2656 192.1182 75.2832 191.9932 c -%_75.3008 191.8682 75.4063 191.7744 75.5332 191.7744 c -%_79.6387 191.749 83.1094 193.6279 85.1621 197.3428 C -%_85.4316 194.4678 85.4336 192.6572 84.5215 189.6182 c -%_84.4863 189.501 84.5391 189.376 84.6465 189.3193 c -%_84.7559 189.2646 84.8887 189.292 84.9629 189.3896 c -%_92.3203 198.7822 88.7988 215.0127 82.9844 221.7471 C -%_88.5156 217.7646 93.4004 209.1123 93.3242 197.3525 c -%_93.3223 197.2314 93.4082 197.126 93.5293 197.1025 c -%_93.6484 197.0791 93.7676 197.1436 93.8125 197.2568 c -%_97.9219 207.5107 95.7422 226.5049 84.5313 237.1084 C -%_87.416 237.5068 90.3984 237.4561 93.6563 236.417 c -%_93.7715 236.3799 93.8965 236.4307 93.9551 236.5361 c -%_94.0137 236.6416 93.9902 236.7744 93.8965 236.8525 c -%_89.8047 240.3076 84.082 241.3936 78.6309 241.3936 C -%_83.3281 235.8936 81.7676 224.8408 74.2773 224.8408 c -%_68.9268 224.8408 66.499 233.1396 70.6279 237.6221 c -%_70.7061 237.708 70.7158 237.835 70.6533 237.9326 c -%_70.5889 238.0303 70.4678 238.0713 70.3564 238.0342 c -%_65.5771 236.3779 60.4111 232.2451 60.4111 227.0166 c -%_60.4111 221.9756 65.2236 217.6221 72.2148 217.9658 C -%_63.3936 215.4619 54.1611 218.2334 49.3311 224.2197 c -%_49.2568 224.3115 49.126 224.3408 49.0205 224.2861 c -%_48.9131 224.2334 48.8584 224.1123 48.8877 223.9951 c -%_51.6787 213.2803 60.8545 208.7959 72.3281 210.29 C -%_63.0459 206.5322 49.0771 209.8076 42.9033 217.5986 c -%_42.8311 217.6904 42.7041 217.7217 42.5967 217.6709 c -%_42.4912 217.6221 42.4326 217.5049 42.4561 217.3896 c -%_43.8271 210.7744 47.3193 205.8291 53.0791 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_; -%_ -%_9 () XW -%_U -%_/ArtDictionary : -%_5 /Int (AIPattern_Editor_Preview_Rows) , -%_109.6416 /Real (AIPattern_Editor_Tile_Height) , -%_1 /Bool (AIPattern_Editor_Top_in_Front) , -%_1 /Bool (AIPattern_Editor_Left_in_Front) , -%_1 /Bool (AIPattern_Editor_Dim_Copies_Key) , -%_5 /Int (AIPattern_Editor_Preview_Cols) , -%_108.3384 /Real (AIPattern_Editor_Tile_Width) , -%_4 /Int (AIPattern_Editor_Editable_Copy_Loc_Key) , -%_50 /Real (AIPattern_Editor_Dim_Percent_Key) , -%_; -%_ -%_9 () XW -E -%AI3_EndPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginBrushPattern -(Unnamed 6) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --3874.5 4018.5 m --3773.1816 4018.5 L --3773.1816 4010.7832 L --3874.5 4010.7832 L --3874.5 4018.5 L -n -u -0 O -0.720851 0.673426 0.586358 0.790768 0.137255 0.121569 0.12549 Xa --3773.3 4012.2073 m --3773.1504 4012.2439 -3773.2041 4011.8247 -3773.1816 4011.7495 C --3773.4319 4011.8423 -3773.2937 4012.3159 -3773.3 4012.2073 C -f --3775.7693 4013.1582 m --3775.7256 4012.9871 L --3776.0896 4013.4063 L --3775.7693 4013.1582 L -f --3778.0784 4013.1504 m --3777.8601 4013.8643 -3777.2417 4013.0352 -3776.8303 4013.2888 C --3776.7625 4013.4524 L --3776.5769 4012.8772 L --3777.0769 4012.9683 -3777.7263 4013.3499 -3778.0784 4013.1504 C -f --3779.3096 4011.6072 m --3779.2336 4011.8843 -3779.5759 4011.8455 -3779.0225 4011.6936 C --3779.0503 4011.6631 -3779.0583 4011.6455 -3779.0745 4011.6233 C --3779.1243 4011.6272 -3779.1929 4011.6262 -3779.3096 4011.6072 C -f --3779.0745 4011.6233 m --3778.8313 4011.6033 -3779.2336 4011.3904 -3779.0745 4011.6233 C --3779.0745 4011.6233 L -f --3780.1975 4011.7822 m --3779.8772 4011.5342 L --3779.9441 4011.3704 -3780.2292 4011.3333 -3780.1233 4011.2134 C --3780.4519 4011.3496 -3780.3843 4011.5127 -3780.1975 4011.7822 C -f --3780.5012 4012.3032 m --3780.3352 4012.1982 L --3780.3643 4012.1294 -3780.4082 4012.1052 -3780.5012 4012.3032 C -f --3779.9832 4011.9768 m --3780.3352 4012.1982 L --3780.2888 4012.3132 -3780.2839 4012.5447 -3780.1736 4012.1184 C --3780.2024 4012.3296 -3780.1328 4012.1262 -3779.9832 4011.9768 C -f --3779.7839 4012.0852 m --3779.6042 4012.24 -3779.3721 4012.3384 -3779.6936 4012.5852 C --3779.0808 4012.4871 -3779.1711 4011.9856 -3779.7839 4012.0852 C -f --3778.1963 4013.8887 m --3777.9561 4014.0984 L --3777.7483 4013.8584 L --3777.8521 4013.9771 -3778.2112 4013.6653 -3778.1963 4013.8887 C -f --3782.1929 4011.4126 m --3782.2129 4011.5647 -3782.0852 4011.8174 -3782.0613 4012.0122 C --3781.8247 4011.8374 L --3781.9463 4011.7334 -3782.1768 4011.6375 -3782.1929 4011.4126 C -f --3782.0613 4012.0122 m --3782.4153 4012.2727 L --3782.0991 4012.3032 -3782.0413 4012.1792 -3782.0613 4012.0122 C -f --3780.5583 4013.0955 m --3779.9768 4012.5479 L --3780.6704 4013.1033 L --3780.5583 4013.0955 L -f --3783.5449 4011.3936 m --3783.3442 4011.0422 L --3783.7017 4011.5735 L --3783.5449 4011.3936 L -f --3784.4417 4011.4551 m --3784.2932 4011.1638 -3784.6453 4010.9624 -3784.4883 4010.7832 C --3784.7319 4010.8352 -3784.9399 4011.0852 -3785.1272 4011.3103 C --3784.9282 4011.1848 -3784.7161 4011.2168 -3784.4417 4011.4551 C -f --3785.4417 4011.6375 m --3785.3423 4011.5679 -3785.2393 4011.4431 -3785.1272 4011.3103 C --3785.2329 4011.3772 -3785.3369 4011.4744 -3785.4417 4011.6375 C -f --3783.0183 4012.1975 m --3783.0457 4012.1055 -3783.0984 4011.8655 -3783.2969 4011.7639 C --3783.1577 4012.1912 L --3783.1152 4012.1936 -3783.0671 4012.1951 -3783.0183 4012.1975 C -f --3783.1528 4012.2046 m --3783.1577 4012.1912 L --3783.3088 4012.1814 -3783.4136 4012.1719 -3783.4585 4012.1672 c --3783.4199 4012.1707 -3783.3279 4012.1824 -3783.1528 4012.2046 C -f --3782.9832 4012.1992 m --3782.9961 4012.1982 -3783.0056 4012.1975 -3783.0183 4012.1975 C --3783.0049 4012.24 -3782.9968 4012.2534 -3782.9832 4012.1992 C -f --3781.4863 4012.7092 m --3781.6943 4012.9482 -3782.1279 4013.2039 -3781.7083 4013.5686 C --3781.5591 4013.2759 -3781.7993 4013.0686 -3781.4863 4012.7092 c -f --3782.8103 4012.7334 m --3782.4343 4012.8311 L --3782.4417 4012.7183 -3782.5095 4012.5535 -3782.4065 4012.4351 C --3782.8103 4012.7334 L -f --3782.9944 4012.8694 m --3782.8103 4012.7334 L --3782.9497 4012.6975 L --3782.9944 4012.8694 L -f --3784.7976 4012.0376 m --3784.96 4012.2239 -3785.1377 4012.2393 -3785.3384 4012.2693 C --3785.1233 4012.3533 -3784.9009 4012.3992 -3784.6897 4012.3972 C --3784.6599 4012.2632 -3784.5671 4012.0222 -3784.7976 4012.0376 C -f --3783.9983 4012.1563 m --3784.0095 4012.1663 -3784.0239 4012.1707 -3784.0344 4012.1807 C --3784.0122 4012.2173 -3783.9944 4012.2283 -3783.9983 4012.1563 C -f --3787.3142 4012.2664 m --3787.3032 4012.2896 -3787.2937 4012.3196 -3787.2825 4012.3442 C --3787.28 4012.3196 -3787.2783 4012.2952 -3787.2751 4012.27 C --3787.3142 4012.2664 L -f --3784.6536 4012.4771 m --3784.4919 4012.5598 -3784.3953 4012.4551 -3784.3032 4012.3242 C --3784.4241 4012.3662 -3784.5522 4012.3943 -3784.6897 4012.3972 C --3784.7031 4012.4583 -3784.7056 4012.4983 -3784.6536 4012.4771 C -f --3785.9929 4011.8374 m --3785.9087 4011.927 -3785.8132 4012.0032 -3785.7129 4012.0723 C --3785.7952 4011.9373 -3785.9631 4011.7263 -3785.9929 4011.8374 C -f --3784.0889 4012.0623 m --3784.0808 4012.0559 -3784.0735 4012.0479 -3784.0647 4012.0432 C --3784.1177 4011.9524 -3784.1111 4011.9966 -3784.0889 4012.0623 C -f --3784.0889 4012.0623 m --3784.1721 4012.1243 -3784.2375 4012.2295 -3784.3032 4012.3242 C --3784.2048 4012.2896 -3784.1135 4012.2439 -3784.0344 4012.1807 C --3784.0544 4012.1504 -3784.0745 4012.1042 -3784.0889 4012.0623 C -f --3787.9128 4015.0093 m --3787.8843 4014.6133 -3787.4592 4014.2471 -3787.0923 4014.6719 C --3786.7312 4014.3752 -3786.9673 4013.0723 -3787.2825 4012.3442 C --3787.2937 4012.5166 -3787.2937 4012.6763 -3787.6653 4012.9104 C --3787.5352 4013.1262 -3786.8408 4013.4163 -3787.1543 4013.7747 C --3787.6465 4013.9783 -3787.5576 4013.6343 -3787.7969 4013.4253 C --3787.5935 4013.9182 -3788.4231 4014.1431 -3788.3159 4014.8687 C --3787.8843 4014.6133 L --3787.8762 4014.7263 -3788.0327 4014.9063 -3787.9128 4015.0093 C -f --3786.5745 4012.3843 m --3786.4216 4012.3352 L --3786.5959 4012.2664 -3786.7207 4012.1079 -3786.9504 4011.7976 C --3787.2048 4011.9915 -3787.2576 4012.1382 -3787.2751 4012.27 C --3786.5222 4012.3252 L --3786.5745 4012.3843 L -f --3785.7351 4012.3335 m --3785.8545 4012.7644 -3786.2217 4012.9482 -3785.9968 4013.4143 C --3785.5481 4013.3843 -3785.6824 4013.0542 -3785.4143 4012.8672 C --3786.1384 4012.9744 -3785.2063 4012.6272 -3785.7295 4012.3831 C --3785.5872 4012.3096 -3785.4592 4012.2871 -3785.3384 4012.2693 C --3785.4688 4012.2173 -3785.5945 4012.1519 -3785.7129 4012.0723 C --3785.7063 4012.0823 -3785.7017 4012.0896 -3785.6963 4012.0984 C --3785.6929 4012.0984 L --3785.6929 4012.1006 -3785.6936 4012.1016 -3785.6936 4012.1042 C --3785.6624 4012.1582 -3785.6521 4012.1912 -3785.6873 4012.1604 C --3785.6897 4012.1653 -3785.6985 4012.1672 -3785.7024 4012.1692 C --3785.7073 4012.2283 -3785.7207 4012.2808 -3785.7351 4012.3311 C --3785.9448 4012.2422 -3785.7681 4012.22 -3785.7024 4012.1692 C --3785.7 4012.1472 -3785.6943 4012.1272 -3785.6936 4012.1042 C --3785.6943 4012.1023 -3785.6953 4012.1006 -3785.6963 4012.0984 C --3786.4216 4012.3352 L --3786.2681 4012.3953 -3786.0759 4012.3831 -3785.7351 4012.3335 C -f --3782.0952 4014.4951 m --3782.1177 4014.4573 -3782.1167 4014.4263 -3782.1184 4014.3953 C --3782.1653 4014.4482 -3782.1831 4014.4839 -3782.0952 4014.4951 C -f --3782.3936 4014.2351 m --3782.3408 4014.1753 -3782.2969 4014.0032 -3782.1255 4014.0471 C --3781.9768 4014.1763 -3782.1262 4014.2534 -3782.1184 4014.3953 C --3782.0151 4014.2808 -3781.7568 4014.0862 -3782.0808 4013.876 C --3782.1321 4013.9351 L --3782.4241 4013.7871 -3782.7993 4013.2495 -3782.7483 4013.1902 C --3782.6631 4013.5784 -3782.5879 4013.8542 -3782.3936 4014.2351 C -f --3784.0852 4013.3943 m --3784.6892 4013.6055 L --3784.3816 4013.9783 L --3784.3972 4013.7544 L --3784.0537 4013.8423 -3784.1279 4013.5667 -3784.0852 4013.3943 C -f --3787.3833 4012.0522 m --3787.3032 4011.5967 L --3787.6521 4012.24 L --3787.3833 4012.0522 L -f --3788.1682 4012.1062 m --3788.1392 4011.7112 L --3788.3464 4011.9495 L --3788.1682 4012.1062 L -f --3832.4617 4017.0166 m --3832.6392 4017.1287 L --3832.5552 4017.0942 -3832.5012 4017.0564 -3832.4617 4017.0166 C -f --3831.1768 4017.0435 m --3831.1453 4016.8484 L --3831.2048 4016.9558 -3831.2292 4017.0352 -3831.1768 4017.0435 C -f --3807.4456 4012.1504 m --3807.7041 4011.7815 -3807.9929 4011.2083 -3807.9617 4011.6536 C --3807.8823 4012.0872 L --3807.7017 4012.0093 -3807.5632 4012.0576 -3807.4456 4012.1504 C -f --3820.6479 4014.7415 m --3820.6233 4014.7832 -3820.5977 4014.8286 -3820.5723 4014.8728 C --3820.5095 4014.7246 -3820.4504 4014.5872 -3820.3977 4014.4583 C --3820.4729 4014.5471 -3820.5583 4014.6416 -3820.6479 4014.7415 C -f --3820.8303 4016.5364 m --3821.1711 4016.2566 L --3821.0945 4016.3542 -3820.9849 4016.4482 -3820.8303 4016.5364 C -f --3839.4792 4017.4768 m --3839.6863 4017.9182 L --3839.3623 4017.9163 -3839.5049 4017.6936 -3839.4792 4017.4768 C -f --3796.2073 4012.2664 m --3796.4304 4012.0967 -3796.6079 4012.0254 -3796.7639 4012.0044 C --3796.4951 4012.2534 -3796.2783 4012.6272 -3796.2073 4012.2664 C -f --3831.9561 4012.4126 m --3832.0647 4012.4912 -3832.1111 4012.5796 -3832.1079 4012.6763 C --3831.9961 4012.6023 -3831.9329 4012.5193 -3831.9561 4012.4126 C -f --3797.4082 4012.0059 m --3797.3689 4012.0496 -3797.3303 4012.0713 -3797.2903 4012.1079 C --3797.1272 4012.0352 -3796.9631 4011.9768 -3796.7639 4012.0044 C --3796.9624 4011.8196 -3797.1897 4011.7046 -3797.4082 4012.0059 C -f --3864.9297 4017.1172 m --3864.9482 4017.0984 -3864.9705 4017.0884 -3864.9873 4017.0652 C --3864.9929 4017.1243 -3864.9673 4017.1272 -3864.9297 4017.1172 C -f --3872.3442 4012.74 m --3872.2712 4012.7124 -3872.1521 4012.7119 -3872.0398 4012.7063 C --3872.0945 4012.6763 -3872.1863 4012.6792 -3872.3442 4012.74 c -f --3791.3264 4011.9172 m --3791.1599 4011.8887 -3791.3 4011.8694 -3791.3264 4011.9172 C --3791.3264 4011.9172 L -f --3790.5168 4013.6331 m --3790.5522 4013.6814 -3790.5791 4013.7439 -3790.5833 4013.8442 C --3790.5696 4013.74 -3790.5464 4013.6736 -3790.5168 4013.6331 c -f --3799.0664 4014.7063 m --3799.0713 4014.7063 -3799.0752 4014.7046 -3799.0808 4014.7046 C --3799.0313 4014.7896 -3799.0398 4014.7732 -3799.0664 4014.7063 C -f --3791.0759 4012.1143 m --3791.1384 4012.0613 -3791.2104 4012.0166 -3791.2888 4011.9856 C --3791.2544 4012.0193 -3791.1897 4012.0613 -3791.0759 4012.1143 C -f --3791.1096 4011.9092 m --3791.0522 4011.9287 -3791.0071 4011.9395 -3790.9641 4011.9512 C --3790.9431 4011.8792 -3790.9617 4011.8335 -3791.1096 4011.9092 C -f --3791.5583 4011.9407 m --3791.4631 4011.9336 -3791.3743 4011.9539 -3791.2888 4011.9856 C --3791.3215 4011.9558 -3791.3352 4011.9319 -3791.3264 4011.9172 C --3791.3752 4011.9236 -3791.4441 4011.9326 -3791.5583 4011.9407 c -f --3851.2932 4015.9558 m --3851.3042 4015.9424 -3851.3169 4015.9336 -3851.3289 4015.9153 C --3851.4968 4016.0952 -3851.4231 4016.0667 -3851.2932 4015.9558 C -f --3811.7783 4016.6563 m --3811.7705 4016.6519 -3811.7664 4016.6404 -3811.7593 4016.6362 C --3811.7671 4016.6311 -3811.7769 4016.6252 -3811.7839 4016.6199 C --3811.7783 4016.6563 L -f --3812.3762 4016.9792 m --3812.1216 4016.4392 -3811.9768 4016.5056 -3811.7839 4016.6199 C --3811.9817 4015.3694 L --3812.3762 4016.9792 L -f -*u --3835.5383 4017.1416 m --3835.1184 4017.5322 L --3835.6252 4018.1736 -3835.9919 4017.9524 -3835.5977 4018.5 C --3835.5383 4017.1416 -3833.9656 4018.3616 -3833.9072 4017.0039 C --3833.6304 4017.2896 L --3833.7097 4017.2766 -3833.7224 4017.3562 -3833.8008 4017.3433 C --3833.2625 4017.9934 -3833.4009 4016.3616 -3832.7073 4016.5542 C --3832.4656 4016.6582 -3832.2969 4016.8552 -3832.4617 4017.0166 C --3831.9231 4016.6807 L --3831.7664 4016.7073 -3831.8047 4016.9431 -3831.9607 4016.9172 C --3831.1392 4016.8086 L --3831.1453 4016.8484 L --3831.0281 4016.6362 -3830.7625 4016.3064 -3830.6328 4016.1663 C --3830.4241 4016.3616 -3830.7375 4016.3103 -3830.6841 4016.4792 C --3830.2292 4016.1504 L --3830.0439 4016.5032 -3830.4209 4016.8442 -3830.7351 4016.7935 C --3830.3103 4018.1494 -3830.3577 4016.4524 -3829.4409 4017.2444 C --3829.8704 4017.4163 L --3829.5935 4018.1863 -3829.2583 4017.907 -3828.7727 4018.3875 C --3828.8879 4018.1367 -3829.7449 4017.1775 -3829.2512 4016.8391 C --3829.1121 4016.9414 -3828.9287 4016.99 -3828.6624 4016.7168 C --3828.6599 4017.2 -3828.3999 4017.0811 -3828.0745 4017.0535 C --3828.0967 4017.6936 L --3827.7449 4017.5088 -3827.7727 4017.1831 -3827.5657 4016.8953 C --3827.1736 4016.9583 -3827.0923 4017.4536 -3827 4017.8711 C --3826.3721 4017.9727 -3827.4336 4017.0767 -3826.6904 4016.9558 C --3826.1682 4017.2007 -3825.8015 4016.9392 -3825.1768 4016.5564 C --3824.8113 4016.7776 -3825.2407 4016.9482 -3825.1096 4017.1311 C --3824.7856 4016.6206 L --3824.7063 4016.6331 -3824.7319 4016.7896 -3824.7449 4016.8687 C --3824.4719 4016.6707 -3824.7224 4016.2292 -3824.2932 4016.0559 C --3824.1775 4015.3511 -3823.4121 4017.0852 -3822.8809 4016.2854 C --3822.75 4016.4673 -3822.9441 4016.6775 -3822.9041 4016.9253 C --3822.1753 4016.3999 -3822.2793 4016.5435 -3821.6809 4015.8367 C --3821.1711 4016.2566 L --3821.5457 4015.7766 -3821.0671 4015.2083 -3820.6479 4014.7415 C --3820.7808 4014.5093 -3820.8943 4014.3064 -3820.9705 4014.2095 C --3820.3015 4013.8662 L --3820.2207 4013.9712 -3820.2881 4014.1912 -3820.3977 4014.4583 C --3820.3521 4014.4055 -3820.3088 4014.3533 -3820.2751 4014.3047 C --3820.0359 4014.5413 -3820.1599 4014.9104 -3820.3313 4015.2676 C --3820.4128 4015.1416 -3820.4937 4015.0071 -3820.5723 4014.8728 C --3820.7375 4015.2615 -3820.8921 4015.6919 -3820.8577 4016.0667 C --3820.8142 4015.9927 -3820.7305 4015.9292 -3820.6384 4015.8936 C --3820.6816 4015.9993 -3820.7092 4016.0935 -3820.6892 4016.1575 c --3820.6665 4016.2246 -3820.5967 4016.0833 -3820.4873 4015.9192 C --3820.3352 4016.6331 L --3820.2983 4016.3499 L --3819.4231 4016.7959 L --3818.7969 4016.0784 -3818.2522 4015.0212 -3817.2583 4014.7271 C --3817.5049 4015.25 -3817.3113 4015.5811 -3817.3247 4016.2007 C --3817.5959 4015.5447 -3818.0945 4016.4792 -3818.6096 4016.3462 c --3818.3408 4016.4153 -3818.3999 4016.7112 -3818.4683 4016.8132 C --3817.5496 4016.2168 L --3817.5703 4016.7239 -3817.3545 4016.5967 -3817.1145 4016.8064 C --3817.2959 4015.8047 -3816.4297 4016.1392 -3816.0559 4015.8323 C --3816.0327 4016.1682 -3816.1223 4016.5122 -3816.5784 4016.4304 C --3816.0752 4017.1848 -3815.9282 4015.2544 -3815.4343 4015.8953 C --3815.5457 4015.9031 -3815.6057 4015.8518 -3815.6497 4016.0232 C --3815.3896 4015.7239 -3814.7537 4015.9612 -3814.9033 4016.2534 C --3815.0144 4016.2603 L --3814.2751 4016.3792 -3812.7639 4016.2676 -3812.6536 4015.4172 C --3812.6462 4015.5276 -3812.7505 4016.4424 -3812.7952 4016.6143 C --3811.4761 4013.7527 L --3811.5923 4014.4832 -3811.1462 4016.2224 -3811.7593 4016.6362 C --3811.5833 4016.74 -3811.3655 4016.8616 -3810.9944 4016.6033 C --3811.1145 4016.4993 -3811.2937 4015.5471 -3811.1296 4015.48 C --3810.6792 4016.2932 -3810.8169 4015.9153 -3810.2617 4016.6084 C --3810.4417 4016.4524 -3810.2417 4015.3064 -3809.9573 4015.3433 C --3810.0017 4015.5144 -3809.9336 4016.4734 -3810.0376 4016.5928 C --3809.3296 4015.4683 L --3809.5063 4015.6707 -3809.3608 4016.4214 -3809.2024 4016.74 C --3809.2759 4016.5193 -3808.5903 4016.76 -3808.4016 4016.6487 C --3808.7017 4016.3875 L --3807.9023 4016.5579 -3807.9121 4014.8064 -3807.1191 4014.8655 C --3807.2151 4015.0974 -3807.3562 4016.2952 -3806.9529 4016.4363 C --3806.7681 4015.8606 -3806.1345 4013.6663 -3805.4329 4013.2227 C --3805.2983 4013.5522 L --3804.76 4013.1768 L --3805.0952 4014.0435 -3806.0359 4015.8672 -3806.5496 4016.5767 C --3806.2505 4016.8374 -3806.4663 4016.9656 -3806.0183 4016.9351 C --3805.8601 4017.2439 -3806.2625 4017.4031 -3806.3943 4017.4214 C --3805.3513 4017.6206 L --3805.3977 4016.9482 -3804.5537 4016.9463 -3804.5935 4016.3862 C --3805.7263 4017.0833 L --3805.7722 4016.4119 -3805.0713 4015.1753 -3804.3323 4015.2932 C --3804.1443 4015.5613 -3804.4729 4016.49 -3804.4575 4016.7144 C --3804.3616 4016.4832 -3803.7561 4016.2722 -3803.6882 4016.4363 C --3804.0017 4016.7959 L --3803.5903 4017.0486 -3803.3303 4015.9048 -3802.8359 4016.5464 C --3802.6653 4016.5896 -3802.3264 4017.4119 -3802.2969 4017.0144 C --3802.5752 4016.2471 -3802.6296 4013.8743 -3802.4441 4013.2979 C --3802.3843 4013.3499 -3801.5481 4014.0313 -3801.3533 4014.4104 C --3801.0723 4015.0122 -3801.7751 4015.8442 -3801.5359 4016.3606 C --3801.5256 4016.1768 -3801.3704 4015.9502 -3801.3057 4015.8772 C --3801.1265 4016.0342 -3801.3799 4016.4463 -3800.9905 4016.3633 C --3800.9255 4015.6824 -3800.1985 4016.4207 -3800.8064 4015.7871 C --3800.4255 4015.5923 -3800.4016 4015.928 -3799.9543 4015.8975 C --3800.0967 4015.4573 -3799.5527 4014.3992 -3799.1711 4014.2039 C --3799.1936 4014.3772 -3799.1079 4014.6033 -3799.0664 4014.7063 C --3798.2856 4014.7676 -3797.8665 4015.0774 -3797.1384 4015.0833 C --3797.0713 4015.2483 -3796.72 4015.4482 -3796.8696 4015.7415 C --3796.7649 4015.6206 -3796.6687 4015.3894 -3796.4441 4015.3733 C --3796.0095 4015.9624 -3796.9448 4015.4646 -3796.6135 4016.1736 C --3796.5852 4015.7776 -3796.0327 4015.6262 -3795.7129 4015.3792 C --3795.8113 4014.7671 -3796.4519 4015.2615 -3796.7722 4015.5088 C --3796.7737 4014.6653 -3796.2161 4013.7815 -3795.4551 4013.3911 C --3794.8503 4013.1814 -3795.1929 4013.9363 -3795.0879 4013.8167 C --3793.9519 4013.9639 -3794.1201 4012.3433 -3793.1768 4012.9524 C --3792.8025 4013.4895 -3793.1599 4014.0212 -3793.0769 4014.4092 C --3793.5696 4014.6128 -3793.8333 4014.0679 -3794.1672 4014.0896 C --3793.7561 4014.3442 L --3793.9128 4014.5232 -3794.2417 4014.6582 -3794.4209 4014.5032 C --3794.1072 4014.9856 -3792.5017 4014.5952 -3791.6252 4015.0413 C --3791.4695 4014.8616 -3791.2007 4014.6743 -3791.3279 4014.4583 C --3791.6052 4014.5332 L --3791.8601 4014.0999 -3791.0833 4013.9336 -3791.4343 4013.7312 C --3791.0623 4013.4263 -3790.6453 4012.9473 -3790.1216 4013.1924 C --3790.0232 4013.8054 L --3790.0344 4013.6262 -3790.3655 4013.4407 -3790.5127 4013.6272 c --3790.2944 4013.3552 -3789.7097 4014.4573 -3789.4705 4013.6543 C --3789.8376 4013.2295 L --3789.4641 4012.9214 -3789.0024 4012.2703 -3788.5383 4012.4639 C --3788.7495 4011.8584 -3788.6453 4012.5332 -3788.9751 4011.8247 C --3788.6892 4012.7063 -3790.1624 4011.7876 -3789.7031 4012.7134 C --3790.0415 4011.8916 -3790.2888 4012.3655 -3790.7312 4011.6638 C --3790.717 -endstream endobj 21 0 obj <>stream -5 4011.8662 -3790.5745 4012.0513 -3790.9641 4011.9512 C --3790.9817 4012.0103 -3791.0232 4012.0852 -3791.0496 4012.1294 C --3791.0615 4012.1243 -3791.0657 4012.1206 -3791.0759 4012.1143 C --3791.0681 4012.1223 -3791.0623 4012.1311 -3791.0544 4012.1382 C --3791.0713 4012.1687 -3791.0728 4012.1753 -3791.0464 4012.1462 C --3790.9536 4012.2356 -3790.8784 4012.3416 -3790.8479 4012.4539 C --3791.0413 4012.9182 -3791.6609 4012.9038 -3791.8704 4013.1443 C --3792.1016 4013.0479 -3791.7737 4012.9119 -3791.8999 4012.6963 C --3792.2129 4013.0559 L --3792.2439 4012.6072 -3792.8271 4012.3096 -3792.2825 4012.0464 C --3792.7727 4012.0264 L --3793.0613 4011.7747 -3793.4583 4011.6743 -3793.7031 4011.8633 C --3793.9343 4011.7664 -3794.2871 4012.3606 -3794.0857 4012.0088 C --3794.8545 4012.2871 L --3794.8616 4012.1753 L --3795.6201 4012.1184 -3796.4231 4012.9192 -3797.2903 4012.1079 C --3797.5457 4012.2212 -3797.8096 4012.3599 -3798.2368 4012.2327 C --3798.3201 4011.8442 L --3798.6479 4011.9792 -3799.3047 4011.4551 -3799.4456 4011.8599 C --3799.7993 4010.8142 -3801.0369 4011.6316 -3801.6135 4011.4463 C --3801.6353 4011.9536 L --3802.0322 4011.9253 -3802.4128 4012.0696 -3802.9055 4012.2727 C --3802.8752 4012.7207 L --3803.3 4013.0884 -3803.9673 4012.4019 -3804.6392 4012.4482 C --3804.5935 4012.2766 -3804.4231 4012.3213 -3804.3025 4012.4253 C --3805.1052 4011.4119 -3805.9961 4013.1614 -3806.7241 4012.4236 C --3806.9055 4012.5872 -3807.0369 4012.5313 -3807.1641 4012.4192 C --3807.1472 4012.4175 -3807.1321 4012.4092 -3807.1191 4012.3953 C --3807.1377 4012.3904 -3807.1653 4012.3887 -3807.1936 4012.3894 C --3807.2737 4012.3123 -3807.3562 4012.2227 -3807.4456 4012.1504 C --3807.3696 4012.26 -3807.2969 4012.3496 -3807.2336 4012.3911 C --3807.3735 4012.4004 -3807.5857 4012.4558 -3807.7937 4012.5686 C --3807.8823 4012.0872 L --3807.8992 4012.0935 -3807.9128 4012.0923 -3807.9304 4012.1006 C --3808.1345 4011.9231 -3808.0945 4012.3286 -3807.9856 4012.6912 C --3808.0903 4012.77 -3808.1863 4012.8655 -3808.2607 4012.9812 C --3808.4265 4012.2039 -3808.8064 4013.2432 -3809.0327 4012.4143 C --3809.1729 4012.8184 -3810.0784 4012.7183 -3810.1892 4013.5696 C --3810.1963 4013.4583 -3810.2576 4013.4055 -3810.1453 4013.3982 C --3810.3772 4013.3015 -3810.6089 4013.2046 -3810.8169 4013.4446 C --3810.9153 4012.8323 L --3811.4216 4013.6553 L --3811.7292 4013.2822 -3811.8567 4013.0652 -3811.5513 4012.5942 C --3812.2888 4013.3196 -3812.1497 4012.8672 -3812.7769 4013.5852 C --3812.7463 4013.1895 L --3812.9705 4013.2046 -3813.3289 4013.7356 -3813.4641 4013.4082 C --3813.9656 4012.6553 -3815.9456 4013.3042 -3817.2329 4012.6042 C --3816.9832 4013.77 -3817.8313 4012.0823 -3817.8823 4012.9856 C --3817.9573 4012.7102 -3818.1367 4012.5542 -3817.9282 4012.3152 C --3818.5852 4012.5852 -3818.9153 4011.8772 -3819.3689 4012.6392 C --3819.4441 4012.3623 -3819.2283 4012.2356 -3819.2952 4012.0713 C --3819.3479 4012.1311 -3819.5039 4012.3113 -3819.5723 4012.1462 c --3819.6392 4011.9822 -3819.4761 4011.9153 -3819.3721 4011.7952 C --3820.0432 4011.8416 -3820.1111 4012.6912 -3820.1599 4013.4883 C --3820.5 4013.1111 -3820.6697 4013.1638 -3820.9153 4013.6873 C --3821.0337 4013.4263 -3821.2312 4013.1536 -3820.8142 4013.0598 C --3821.0488 4013.0215 -3822.2473 4012.6775 -3822.2712 4013.3167 C --3822.3447 4013.1543 -3822.5991 4013.2693 -3822.6609 4013.3433 C --3823.1873 4013.3047 -3823.2336 4013.2471 -3823.7505 4013.3079 C --3823.6072 4013.4119 L --3823.8113 4014.1831 -3824.0369 4013.5842 -3824.4536 4013.6768 C --3824.4417 4013.5984 L --3825.3972 4013.0415 -3824.8542 4013.8643 -3825.7969 4013.2292 C --3825.7456 4013.7092 L --3825.8335 4014.74 -3826.5808 4013.1006 -3827.1279 4013.4951 C --3826.9304 4013.7693 L --3827.2292 4014.1223 -3827.7656 4012.3662 -3828.0657 4012.2371 C --3828.1311 4012.1472 -3827.9624 4012.0935 -3827.8711 4012.0276 C --3828.6567 4011.4182 -3827.9729 4012.6553 -3828.5583 4012.8015 C --3828.6663 4012.4624 -3828.4192 4011.9392 -3828.8132 4011.8762 C --3829.0095 4011.6023 -3829.9561 4012.9768 -3830.4937 4012.3267 C --3830.3752 4012.5879 -3830.2576 4012.8484 -3830.5295 4013.0447 C --3830.9463 4013.1382 -3831.6563 4012.0579 -3832.0327 4012.8816 C --3832.0857 4012.8096 -3832.1057 4012.7415 -3832.1079 4012.6763 C --3832.4265 4012.8887 -3833.1433 4013.0291 -3833.3352 4013.4756 C --3833.6296 4011.8191 -3835.3159 4014.2815 -3835.3088 4012.7534 C --3836.2888 4012.8352 L --3836.2632 4012.6792 L --3836.8896 4012.5784 -3837.1111 4012.9446 -3837.3313 4013.3113 C --3837.4761 4013.2073 -3837.3704 4013.0642 -3837.3584 4012.9846 C --3838.2737 4012.6763 -3838.3647 4012.7415 -3839.1321 4013.5032 C --3839.2119 4013.0071 L --3839.4199 4013.2952 -3840.5352 4012.2295 -3841.4329 4012.8079 C --3841.4241 4012.7512 -3841.4055 4012.6553 -3841.3342 4012.5852 C --3842.3442 4013.1672 -3843.7522 4011.2112 -3844.1223 4013.0159 C --3844.7888 4013.4607 L --3843.9265 4013.6006 -3844.9172 4014.2444 -3844.5625 4014.5435 C --3844.9016 4014.6494 -3845.4392 4013.9993 -3845.0225 4013.9063 C --3844.9573 4013.9966 L --3844.8042 4013.0559 -3846.0288 4013.6631 -3846.0056 4013.0222 C --3847.7024 4013.0696 -3849.3562 4012.5479 -3850.9456 4012.5078 C --3850.7625 4013.2393 L --3851.3169 4013.1975 L --3851.4624 4013.0276 -3851.5122 4012.6252 -3851.1167 4012.6553 C --3851.3247 4012.24 -3851.78 4013.0032 -3851.7913 4013.1614 C --3852.5657 4012.8655 -3851.4888 4012.3086 -3851.7263 4012.2913 C --3852.0488 4012.3455 L --3851.9761 4012.4312 L --3852.2375 4012.73 -3852.2607 4013.0471 -3852.7361 4013.011 C --3853.0369 4012.8643 -3852.8904 4012.5598 -3853.0088 4012.5322 C --3853.0081 4012.4792 -3853.0481 4012.4551 -3853.1904 4012.5103 C --3853.8889 4012.4482 L --3853.6096 4013.0254 L --3853.9192 4013.3103 -3854.2664 4012.9951 -3853.9441 4013.6494 c --3854.4172 4012.6404 -3856.5496 4013.2871 -3856.8401 4012.9744 C --3857.2737 4013.3953 -3857.7017 4013.3875 -3858.2319 4013.3367 C --3858.1001 4013.4573 -3858.0212 4014.1062 -3858.4785 4014.0271 C --3858.3113 4012.6873 -3859.3159 4013.4456 -3859.6855 4012.4812 C --3859.3552 4013.1206 -3860.9856 4012.6392 -3860.4673 4013.5471 C --3860.8489 4013.4382 -3860.4905 4013.0454 -3860.78 4012.73 C --3861.6882 4013.2493 -3862.7815 4012.3926 -3863.9041 4012.5679 C --3863.9216 4012.7444 -3863.7336 4013.0127 -3863.9744 4013.2747 C --3864.5671 4012.3953 L --3864.7888 4012.4812 -3864.7712 4013.4104 -3865.1763 4012.8 C --3865.1191 4012.9482 -3865.0337 4013.1707 -3865.1824 4013.2271 C --3867.3816 4012.3704 -3869.6763 4013.9292 -3871.9097 4012.3191 C --3871.6072 4012.6604 -3871.8088 4012.6936 -3872.0398 4012.7063 C --3871.8896 4012.7876 -3872.0432 4013.1404 -3872.0137 4013.3792 C --3872.9487 4012.7168 L --3873.1191 4013.3784 -3873.9512 4012.7615 -3874.0488 4013.3943 C --3873.7527 4013.28 L --3874.1465 4014.0271 -3873.2017 4014.9395 -3873.2593 4015.8975 C --3872.8184 4015.0486 -3872.0967 4017.1543 -3871.3733 4015.9395 C --3871.2136 4016.1353 -3871.5095 4016.2483 -3871.4241 4016.4702 C --3871.2407 4016.0598 -3871.0193 4015.9744 -3870.6089 4016.1582 C --3870.6553 4016.26 L --3869.5024 4016.1599 -3869.0081 4016.5647 -3867.7129 4016.8342 C --3867.8088 4016.3606 L --3867.5305 4016.4236 -3867.4719 4016.5723 -3867.3416 4016.6912 C --3867.0222 4015.9727 -3868.1233 4016.6504 -3867.8323 4015.8584 C --3867.4631 4016.8223 -3865.8696 4015.8728 -3865.6201 4016.9683 C --3865.1919 4016.9744 -3865.7456 4016.4192 -3865.3176 4016.4263 C --3865.2041 4016.7227 L --3865.0959 4016.3408 L --3864.8152 4016.4038 -3864.6736 4016.7747 -3864.6631 4017.0254 C --3864.7312 4016.9956 -3864.8567 4017.0955 -3864.9297 4017.1172 C --3864.5657 4017.4663 -3863.9033 4016.9983 -3863.7783 4017.1118 C --3864.1897 4016.9292 L --3863.0212 4016.6519 -3861.5945 4017.0413 -3860.4656 4016.4382 C --3860.5513 4016.2151 L --3859.6892 4015.8015 -3859.8608 4016.4607 -3858.9143 4016.2693 C --3858.9487 4016.3223 L --3858.7593 4016.0999 -3858.5063 4015.9871 -3858.2473 4016.0127 C --3858.4863 4016.2747 -3857.7976 4016.5212 -3858.1111 4016.8113 C --3857.1763 4016.3672 -3857.6487 4016.4624 -3857.0313 4015.6316 C --3856.8889 4016.0032 L --3856.6785 4015.6672 -3856.6609 4015.49 -3856.1882 4015.3943 C --3856.5759 4015.7124 -3855.8865 4015.9592 -3856.3208 4016.3799 C --3855.3289 4017.1912 -3854.8479 4015.5613 -3854.3928 4016.7471 C --3853.9373 4015.7207 -3855.2512 4016.1775 -3854.9961 4015.9575 C --3855.2097 4015.6223 -3854.6201 4015.1902 -3854.3088 4015.2932 C --3853.9919 4015.3167 -3853.77 4016.6072 -3852.9729 4016.5872 C --3853.0522 4016.5823 -3853.0576 4016.6604 -3853.1367 4016.6553 C --3852.8384 4016.9172 -3852.5522 4016.3008 -3852.1863 4016.7263 C --3851.9812 4016.1052 -3851.7112 4016.7615 -3851.6521 4015.9702 C --3852.3833 4016.1536 L --3851.9688 4015.9463 -3851.5801 4015.02 -3850.8972 4015.4695 C --3850.9504 4015.6287 -3851.1536 4015.8391 -3851.2932 4015.9558 C --3851.0935 4016.1895 -3850.9087 4015.8015 -3850.7017 4016.0413 C --3850.7607 4016.8335 -3851.5903 4016.2134 -3852.0344 4016.8174 C --3851.8201 4017.1519 -3851.1943 4016.2439 -3851.4175 4017.1016 c --3851.0967 4016.011 -3850.6321 4017.24 -3850.0923 4016.4063 C --3850.1279 4016.8806 L --3850.0425 4016.8064 -3849.8655 4016.5823 -3849.7083 4016.5942 C --3849.9929 4017.2095 L --3849.5559 4016.6848 -3849.1504 4017.6692 -3848.7312 4017.3831 C --3849.6089 4017.3975 -3848.9282 4016.8113 -3849.2993 4016.4646 C --3848.2168 4015.8296 -3848.6768 4017.7063 -3847.4648 4017.4783 C --3847.6289 4017.5454 -3848.0808 4017.1936 -3847.8242 4016.9734 C --3847.5935 4017.0713 -3847.2888 4017.2534 -3847.1472 4017.5032 C --3846.3442 4017.4038 -3847.2705 4017.0144 -3846.9287 4016.7224 C --3846.6553 4017.3008 -3846.5344 4016.4871 -3846.1824 4016.3022 C --3846.1799 4016.7847 L --3845.2649 4017.0942 -3845.9373 4015.7791 -3845.1135 4016.1536 C --3845.4617 4016.8223 L --3845.0322 4016.6494 L --3845.1208 4017.1982 L --3844.6536 4016.7913 -3844.5081 4016.8962 -3844.0503 4017.0503 C --3844.1567 4016.7112 -3843.9905 4016.1753 -3843.5852 4016.1599 C --3843.3088 4016.4463 -3843.74 4016.6184 -3843.1655 4016.5496 C --3843.2952 4016.8511 -3843.4373 4017.23 -3843.6873 4016.7864 C --3843.7129 4016.9436 -3843.8152 4017.0884 -3843.8416 4017.2444 C --3843.5439 4017.5735 -3843.0935 4017.3191 -3842.8855 4017.3142 C --3842.9656 4017.2964 -3843.0613 4017.2703 -3843.1104 4017.2024 C --3842.2776 4016.5332 L --3842.1465 4016.7144 -3842.2505 4016.8599 -3842.3535 4017.0032 C --3842.1848 4016.9502 -3842.0681 4016.7283 -3841.8201 4016.6873 C --3841.8843 4017.0791 -3841.8689 4017.4839 -3842.22 4017.6687 C --3841.4265 4017.2334 L --3841.3735 4017.4038 -3841.0193 4017.7024 -3841.1223 4017.8462 C --3840.6824 4018.0767 -3840.0432 4017.0852 -3839.46 4017.3894 C --3839.4297 4017.3135 -3839.3689 4017.24 -3839.2449 4017.1848 C --3838.6968 4017.2732 -3838.2112 4017.7544 -3837.5615 4017.2173 C --3837.1929 4017.9192 L --3836.6841 4017.7603 -3837.6919 4017.0342 -3836.8447 4016.7693 C --3836.2449 4016.5447 -3836.6208 4017.3687 -3836.4104 4017.5642 C --3836.1121 4017.2102 -3835.5935 4016.4888 -3835.0425 4017.0613 C --3835.2249 4017.1936 -3835.3679 4017.0896 -3835.5383 4017.1416 C -f -1 D --3829.2632 4016.8296 m --3829.3848 4016.9312 -3829.6272 4017.2439 -3829.7161 4016.9592 C --3829.5776 4016.4063 -3829.4705 4016.6707 -3829.2632 4016.8296 C -f --3819.7241 4015.6692 m --3819.8145 4015.8279 -3819.9543 4015.7493 -3820.1121 4015.5667 C --3819.9976 4015.5271 -3819.8679 4015.5447 -3819.7241 4015.6692 C -f --3793.1511 4012.3096 m --3793.1563 4012.3174 -3793.1599 4012.323 -3793.1641 4012.3333 C --3793.4353 4012.1453 -3793.3391 4012.22 -3793.1511 4012.3096 C -f -0 D --3792.5879 4012.5193 m --3792.5313 4012.4524 -3792.5352 4012.3848 -3792.5591 4012.3174 C --3792.5984 4012.4392 -3792.7249 4012.4482 -3792.8689 4012.4136 C --3792.8289 4012.5398 -3792.7561 4012.6272 -3792.5879 4012.5193 C -f -1 D --3853.0713 4012.7092 m --3852.9617 4012.8352 L --3853.2092 4012.9744 -3853.1399 4012.8484 -3853.0713 4012.7092 C -f -*U -0 D --3820.8057 4016.3286 m --3820.8401 4016.2471 -3820.8496 4016.1575 -3820.8577 4016.0667 C --3820.9055 4016.1475 -3820.9065 4016.2415 -3820.8057 4016.3286 C -f --3839.4409 4017.3953 m --3839.4473 4017.3911 -3839.4536 4017.3926 -3839.46 4017.3894 C --3839.4705 4017.4182 -3839.4761 4017.4482 -3839.4792 4017.4768 C --3839.4409 4017.3953 L -f --3801.3123 4016.6096 m --3801.4282 4016.5398 -3801.4929 4016.4524 -3801.5359 4016.3606 C --3801.5422 4016.4783 -3801.4895 4016.5784 -3801.3123 4016.6096 C -f --3789.6033 4011.6992 m --3789.9641 4011.8247 L --3789.7896 4011.8008 -3789.7273 4011.9063 -3789.6392 4011.9832 C --3789.6472 4011.8704 -3789.7161 4011.7073 -3789.6033 4011.6992 C -f --3786.4719 4014.6848 m --3786.4192 4014.6255 -3786.3601 4014.6782 -3786.3081 4014.6184 C --3786.3225 4014.3943 L --3786.5471 4014.4087 -3786.7041 4014.5896 -3786.4719 4014.6848 C -f --3789.2693 4013.3022 m --3789.2407 4013.7083 -3789.0144 4013.5703 -3788.7617 4013.4951 C --3788.7769 4013.4966 -3788.7913 4013.5 -3788.8064 4013.4951 C --3788.7319 4012.928 -3789.0012 4013.115 -3789.2693 4013.3022 C -f --3788.7031 4013.4812 m --3788.6252 4013.4624 -3788.5457 4013.4524 -3788.4695 4013.4712 C --3788.4399 4013.2439 -3788.5642 4013.4236 -3788.7031 4013.4812 C -f --3791.8735 4012.25 m --3791.7537 4012.3542 -3791.7983 4011.7312 -3791.7305 4011.8962 C --3791.5967 4011.3799 -3792.5295 4012.5212 -3791.8735 4012.25 C -f --3789.0647 4014.6392 m --3789.1553 4014.1382 L --3789.2969 4014.5422 L --3789.0647 4014.6392 L -f --3791.0601 4014.2712 m --3790.6563 4014.4104 L --3790.6624 4014.3264 -3790.6111 4014.2776 -3790.5481 4014.24 C --3790.7969 4014.2224 -3791.0696 4014.1233 -3791.0601 4014.2712 C -f --3790.5481 4014.24 m --3790.4185 4014.2493 -3790.2952 4014.2383 -3790.2231 4014.1563 C --3790.2932 4014.1614 -3790.4441 4014.1782 -3790.5481 4014.24 C -f --3789.6167 4014.7896 m --3789.7361 4014.6851 L --3790.0212 4014.6487 L --3789.6167 4014.7896 L -f --3795.4009 4014.1753 m --3795.8416 4014.3184 L --3795.8865 4014.49 -3795.7664 4014.5952 -3795.6023 4014.5271 C --3795.4968 4014.407 -3795.3333 4014.3408 -3795.4009 4014.1753 C -f --3794.0681 4015.5471 m --3794.1873 4015.4431 -3794.1953 4015.3311 -3794.2625 4015.1663 C --3794.2759 4015.7871 L --3794.0681 4015.5471 L -f --3795.3533 4015.6919 m --3795.3972 4015.8643 -3795.9929 4016.1863 -3795.4343 4016.1475 C --3795.3896 4015.9768 -3794.9482 4015.8335 -3795.3533 4015.6919 C -f --3801.9937 4014.9063 m --3801.8816 4014.8982 L --3801.8977 4013.8799 L --3801.9937 4014.9063 L -f --3807.8464 4017.3433 m --3807.3242 4017.5872 -3807.7224 4016.7144 -3807.2505 4017.0193 C --3807.1279 4016.7783 -3807.6362 4016.7703 -3807.5105 4016.5623 C --3807.8257 4016.8167 -3807.9912 4016.6736 -3807.8464 4017.3433 C -f --3807.5105 4016.5623 m --3807.46 4016.5222 -3807.4065 4016.4734 -3807.3496 4016.4082 C --3807.4409 4016.4712 -3807.4839 4016.52 -3807.5105 4016.5623 C -f --3873.5745 4012.1924 m --3873.9104 4011.98 L --3873.6936 4012.3223 L --3873.5745 4012.1924 L -f --3874.2192 4012.9482 m --3874.2983 4012.2991 L --3874.5 4012.8862 L --3874.4241 4012.8572 -3874.2769 4012.8015 -3874.2192 4012.9482 C -f --3828.3303 4018.1375 m --3828.3047 4017.9812 L --3828.3567 4017.8123 -3828.4353 4017.8 -3828.5928 4017.7732 C --3828.3303 4018.1375 L -f --3832.8848 4017.6519 m --3832.8064 4017.6653 L --3832.9529 4017.0784 L --3832.8848 4017.6519 L -f --3836.7073 4018.4004 m --3836.5513 4018.4253 -3836.3679 4018.2942 -3836.2112 4018.3196 C --3836.5513 4018.4253 -3836.7495 4017.6692 -3836.7073 4018.4004 C -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 45) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7746 7859.3877 L --7721.1748 7859.3877 L --7721.1748 7890 L --7746 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7746 7881.4985 m --7721.1738 7881.4985 L --7721.1738 7880.5142 L --7746 7880.5142 L --7746 7881.4985 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7746 7880.5176 m --7721.1738 7880.5176 L --7721.1738 7873.7935 L --7746 7873.7935 L --7746 7880.5176 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7746 7873.7959 m --7721.1738 7873.7959 L --7721.1738 7872.6367 L --7746 7872.6367 L --7746 7873.7959 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7721.1738 7872.6367 m --7721.1738 7860.5278 L --7746 7860.5278 L --7746 7872.6367 L --7721.1738 7872.6367 L -f -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 47) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7746 7859.3877 L --7715.3848 7859.3877 L --7715.3848 7890 L --7746 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7715.3848 7880.5142 m --7724.8672 7880.5142 L --7724.8711 7889.9985 L --7723.8896 7889.9985 L --7723.8896 7881.4951 L --7715.3848 7881.4951 L --7715.3848 7880.5142 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7715.3848 7873.7935 m --7731.5928 7873.7915 L --7731.5928 7890 L --7724.8672 7890 L --7724.8672 7880.5132 L --7715.3848 7880.5132 L --7715.3848 7873.7935 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7715.3848 7872.6357 m --7732.7485 7872.6357 L --7732.7485 7889.9995 L --7731.5957 7889.9995 L --7731.5957 7873.7915 L --7715.3848 7873.7915 L --7715.3848 7872.6357 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7715.3848 7860.5244 m --7744.8594 7860.5244 L --7744.8594 7889.9985 L --7732.7495 7890 L --7732.7495 7872.6357 L --7715.3848 7872.6357 L --7715.3848 7860.5244 L -f -0 0 0 0 1 1 1 Xa --7731.5918 7874.1533 m --7732.7207 7872.6733 l --7731.5918 7873.7959 l --7731.5918 7874.1533 l -f --7723.8896 7881.8096 m --7724.8232 7880.5615 l --7723.8896 7881.4951 l --7723.8896 7881.8096 l -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 49) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7715.3335 7890 L --7715.3335 7859.3345 L --7746 7859.3345 L --7746 7890 L -n -u -u -u -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7737.4219 7889.9688 m --7736.5039 7889.9688 L --7736.5039 7868.8013 L --7715.3389 7868.8013 L --7715.3389 7867.8853 L --7737.4219 7867.8853 L --7737.4219 7889.9688 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa -0 XR --7736.5039 7889.9688 m --7729.7539 7889.9688 L --7729.7539 7875.5527 L --7715.3389 7875.5527 L --7715.3389 7876.7173 L --7715.3389 7876.7173 L --7715.3389 7868.8013 L --7736.5039 7868.8013 L --7736.5039 7889.9688 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7715.3389 7876.7173 m --7715.3389 7875.5527 L --7729.7539 7875.5527 L --7729.7539 7889.9688 L --7728.5889 7889.9688 L --7728.5889 7876.7173 L --7715.3389 7876.7173 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa -0 XR --7728.5889 7876.7173 m --7728.5889 7889.9688 L --7716.5039 7889.9688 L --7716.5352 7888.8135 L --7715.3389 7888.8135 L --7715.3389 7876.7173 L --7728.5889 7876.7173 L -f -U -9 () XW -1 Ap -1 XR --7746 7890 m --7746 7859.3345 L --7715.3335 7859.3345 L --7715.3335 7890 L --7746 7890 L -n -U -9 () XW -0 Ap -0 O -0 0 0 0 1 1 1 Xa -0 XR --7728.5986 7877.0796 m --7729.7285 7875.6016 l --7728.5986 7876.7212 L --7728.5986 7877.0796 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ --7736.5 7869.1255 m --7737.3848 7867.9287 l --7736.5 7868.8101 L --7736.5 7869.1255 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ -U -9 () XW -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSVGFilter -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_AbgeflachteKanteMitSchatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color:white) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20000) /UnicodeString (xmlnode-nodevalue) , -(z) /UnicodeString (xmlnode-nodename) , -; (z) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5000) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10000) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(fePointLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.1) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_7) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Holzmaserung) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offset) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(flood-color:black; flood-opacity:0.4) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFlood) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(shadowColor) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -endstream endobj 22 0 obj <>stream - -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.5) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncR) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.7 0 ) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncG) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.1 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncB) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComponentTransfer) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(MergeAll) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(110%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_KühleBrise) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-40%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.2) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(freeze) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(stdDeviation) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(spline) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 1;20 15;200 200; 15 20;1 1 ) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50;20 20;50 50) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow;green;blue;indigo;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(red) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indigo;green;yellow;blue;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(130%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 / -endstream endobj 23 0 obj <>stream -Int (xmlnode-nodetype) , -(AI_Statisch) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(baseFrequency) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.7) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_5) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.4) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -%AI10_EndSVGFilter -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI14_BeginSymbol -(Kombinationsfeld) 0 A -0 Xw -u -u -0 O -9 0.7 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -6.5 -10 m -6.5 -10 L --10.5 -10 L --10.5 10 L -6.5 10 L -6.5 10 L -8.15625 10 9.5 8.6582 9.5 7 C -9.5 -7 L -9.5 -8.65625 8.15625 -10 6.5 -10 C -Bb -1 (Unnamed gradient 1) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -24 0.000001 -7735.5 7901 Xm --0.000001 -23.5 -24 0.000001 -7735.5 7924.5 Bc --0.000001 -20 -24 0.000001 -7735.5 7901 Bm --0.000001 -23.5 -24 0.000001 -7735.5 7881 Bc -f -0 BB -0 1 0 0 0 Xy -6.5 -11 m -6.5 -11 L --10.5 -11 L --10.5 -10 L -6.5 -10 L -6.5 -10 L -8.15625 -10 9.5 -8.65625 9.5 -7 C -9.5 7 L -9.5 8.6582 8.15625 10 6.5 10 C -6.5 10 L --9.5 10 L --10.5 10 L --10.5 11 L -6.5 11 L -6.5 11 L -8.70898 11 10.5 9.20898 10.5 7 C -10.5 -7 L -10.5 -9.20898 8.70898 -11 6.5 -11 C -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -25 0.000001 -7734.5 7902 Xm --0.000001 -25 -25 0.000001 -7734.5 7927 Bc --0.000001 -22 -25 0.000001 -7734.5 7902 Bm --0.000001 -25 -25 0.000001 -7734.5 7880 Bc -f -0 BB -U -9 () XW -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa --3.5 -2 m -2.5 -2 L --0.5 2 l --3.5 -2 L -f -U -%_/ArtDictionary : -%_0 17 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Schaltfläche) 0 A -0 Xw -u -*u -1 D -0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -0 g -28.0005 -11 m -28 -11 L --28 -11 L --30.21 -11 -32 -9.20898 -32 -7 C --32 7 L --32 9.20801 -30.21 10.999 -28 11 C -28 11 L -28.0005 11 L -30.2085 11 32 9.20898 32 7 C -32 -7 L -32 -9.20898 30.2085 -11 28.0005 -11 C -f -0 D -31 7 m -31 8.6582 29.6563 10 28.0005 10 C -28 10 L --28 10 L --29.6572 9.99902 -31 8.65625 -31 7 C --31 -7 L --31 -8.65527 -29.6572 -10 -28 -10 C -28 -10 L -28.0005 -10 L -29.6563 -10 31 -8.65625 31 -7 C -31 7 L -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -68 0.000003 -7713 7902 Xm --0.000001 -25 -68 0.000003 -7713 7927 Bc --0.000001 -22 -68 0.000003 -7713 7902 Bm --0.000001 -25 -68 0.000003 -7713 7880 Bc -f -0 BB -*U -9 0.85 0 0 0 Xy -28.0005 -10 m -28 -10 L -28 -10 L --28 -10 L --28 -10 L --29.6572 -10 -31 -8.65527 -31 -7 C --31 7 L --31 8.65625 -29.6572 9.99902 -28 10 C --28 10 L -28 10 L -28 10 L -28.0005 10 l -29.6563 10 31 8.6582 31 7 C -31 -7 L -31 -8.65625 29.6563 -10 28.0005 -10 c -Bb -1 (Unnamed gradient 3) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -66 0.000003 -7714 7901 Xm --0.000001 -23 -66 0.000003 -7714 7924 Bc --0.000001 -20 -66 0.000003 -7714 7901 Bm --0.000001 -23 -66 0.000003 -7714 7881 Bc -f -0 BB -U -%_/ArtDictionary : -%_4 60 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Suchen) 0 A -0 Xw -u -1 Ap -0 O -1 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -31 21.5322 m -31 24.0166 17.1211 26.0303 0 26.0303 c --17.1191 26.0303 -31 24.0166 -31 21.5322 c --31 19.0459 -17.1191 17.0303 0 17.0303 c -17.1211 17.0303 31 19.0459 31 21.5322 c -Bb -0 0 0 0 Bh -1 (Unnamed gradient 17) 0 0 0 1 1.4762 0 0 0.2143 -3789.1475 6144.7451 1 Bg -30.9986 0 0 -4.50006 -7747 7869.4692 Bm -f -0 BB -%_/ArtDictionary : -%_/Dictionary : /NotRecorded , -%_1.4762 0 0 0.2143 -3789.1475 6144.7451 /RealMatrix -%_ (CAIGradientTformMatrix) , -%_; (Adobe_AI9_ArtStyle_Dictionary) , -%_; -%_ -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 17) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -6 () XW -u -0 Ap -0 1 0 0 0 Xy -10 M -18.4502 21.9706 m --18.7514 21.9706 -19.0387 21.8438 -19.2384 21.6228 C --23.965 16.396 L --24.1564 16.1854 -24.2537 15.9123 -24.2398 15.6264 c --24.2259 15.3403 -24.1025 15.0776 -23.8923 14.8867 C --10.655 2.8613 L --10.4594 2.68388 -10.205 2.58601 -9.93892 2.58601 c --9.63749 2.58601 -9.35004 2.7128 -9.15027 2.93386 C --4.42351 8.15868 L --4.23263 8.36885 -4.13573 8.64198 -4.15001 8.92848 c --4.16429 9.21497 -4.28761 9.47757 -4.49724 9.66792 C --17.7366 21.6953 L --17.9317 21.873 -18.1849 21.9706 -18.4502 21.9706 C -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -18.1731 0 0 -18.1731 -7764.2183 7866.1729 Bm -f -0 BB -u -*u -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 Xa --9.93896 3.08594 m --9.84473 3.08594 -9.66504 3.10986 -9.521 3.26953 C --4.79297 8.49561 L --4.65771 8.64453 -4.64502 8.81494 -4.64941 8.90381 C --4.65723 9.05713 -4.72217 9.19678 -4.8335 9.29785 C --18.0737 21.3262 L --18.1763 21.4194 -18.3096 21.4707 -18.4502 21.4707 C --18.5444 21.4707 -18.7236 21.4468 -18.8677 21.2871 C --23.5957 16.0591 L --23.8022 15.8315 -23.7842 15.4639 -23.5562 15.2568 C --10.3193 3.23193 L --10.2158 3.1377 -10.0806 3.08594 -9.93896 3.08594 C -F -1 D --9.93896 2.08594 m --10.3145 2.08594 -10.6919 2.21973 -10.9912 2.49121 C --24.2285 14.5166 L --24.8672 15.0967 -24.916 16.0928 -24.3359 16.7314 C --19.6094 21.958 L --19.3022 22.2979 -18.877 22.4707 -18.4502 22.4707 C --18.0747 22.4707 -17.6982 22.3369 -17.4004 22.0654 C --4.16113 10.0381 L --3.52441 9.45996 -3.47266 8.46191 -4.05273 7.82324 C --8.7793 2.59863 L --9.08643 2.25879 -9.51172 2.08594 -9.93896 2.08594 C --9.93896 2.08594 L -f -*U -U -0 0 Xd -6 () XW -U -0 0 Xd -6 () XW -%_0 D -%_-24.3359 16.7314 m -%_-24.916 16.0928 -24.8672 15.0967 -24.2285 14.5166 c -%_-10.9912 2.49121 l -%_-10.3516 1.91113 -9.35645 1.95996 -8.7793 2.59863 c -%_-4.05273 7.82324 l -%_-3.47266 8.46191 -3.52441 9.45996 -4.16113 10.0381 c -%_-17.4004 22.0654 l -%_-18.0371 22.6455 -19.0322 22.5967 -19.6094 21.958 c -%_-24.3359 16.7314 l -%_n -1 (Anon) XW -*u -0 O -0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -4 M 0 g -7.40234 -25.5303 m -9.28125 -25.5303 11.1943 -25.2197 13.0703 -24.5713 C -22.1172 -21.4404 26.9102 -11.5713 23.7832 -2.52441 C -21.3018 4.64551 14.5879 9.14551 7.40234 9.14551 C -5.52344 9.14551 3.61328 8.83496 1.73438 8.18652 C --7.3125 5.05762 -12.1084 -4.81348 -8.97852 -13.8584 C --6.49707 -21.0283 0.219727 -25.5303 7.40234 -25.5303 C -B -1 D -7.40234 -20.374 m -2.21582 -20.374 -2.40918 -17.0791 -4.1084 -12.1729 C --5.1709 -9.09863 -4.97363 -5.7959 -3.55176 -2.86816 C --2.12988 0.055664 0.34668 2.25293 3.42188 3.31738 C -4.71191 3.76465 6.05176 3.99121 7.40234 3.99121 C -12.5889 3.99121 17.2139 0.696289 18.9131 -4.20801 C -19.9756 -7.28223 19.7783 -10.5869 18.3564 -13.5127 C -16.9346 -16.4404 14.458 -18.6377 11.3857 -19.7002 C -11.3857 -19.7002 L -10.0898 -20.1475 8.75 -20.374 7.40234 -20.374 C -7.40234 -20.374 L -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) 0.007548 0.433959 0 1.40083 1 0 0 1 0 0 1 Bg -17.0658 0 0 -17.0658 -7739.3364 7884.1445 Bm -b -2 BB -*U -u -0 D -10 M -8.90137 7.71973 m --8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C --9.96973 4.26465 L --22.5664 15.708 L --20.3691 18.1377 L --8.90137 7.71973 L -Bb -1 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -17.6244 -20.6243 -16.0703 -13.7328 -7766.499 7901.1626 Xm -33.9039 -39.6748 -16.0703 -13.7328 -7800.4028 7940.8374 Bc -17.6244 -20.6243 -16.0703 -13.7328 -7766.499 7901.1626 Bm -33.9039 -39.6748 -16.0703 -13.7328 -7748.8745 7880.5381 Bc -f -0 BB -U -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-8.90137 7.71973 m -%_-8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-20.3691 18.1377 L -%_-8.90137 7.71973 L -%_n -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -1 (Anon 437) XW -0 O -4 M 12.5801 -23.1553 m -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.3125 -8.30762 -8.32813 -2.95605 -5.40723 1.08691 C --5.00293 -0.069336 -4.43066 -1.18066 -3.72559 -2.23926 C --3.80273 -2.38379 -3.88965 -2.52051 -3.96191 -2.66895 c --5.43652 -5.70605 -5.6416 -9.13379 -4.53906 -12.3232 c --2.77637 -17.4111 2.02148 -20.8291 7.40234 -20.8291 c -8.80078 -20.8291 10.1904 -20.5947 11.5352 -20.1299 c -14.7217 -19.0283 17.291 -16.749 18.7666 -13.7119 c -19.0146 -13.2021 19.2129 -12.6787 19.3887 -12.1494 C -19.7041 -12.1279 20.0215 -12.1143 20.3359 -12.0811 c -21.1885 -11.9932 22.0146 -11.8623 22.8184 -11.7021 C -21.6367 -16.8506 17.9277 -21.3037 12.5801 -23.1553 c -Bb -1 (Unnamed gradient 7) -0.837511 0 -63.554 2.1927 1 0 0 1 0 0 1 Bg -19.0977 -38.3947 -33.1435 -16.4857 -7737.2896 7936.3179 Xm -20.434 -41.0812 -33.1435 -16.4857 -7757.7231 7977.3994 Bc -19.0977 -38.3947 -33.1435 -16.4857 -7737.2896 7936.3179 Bm -20.434 -41.0812 -33.1435 -16.4857 -7718.1919 7897.9233 Bc -f -0 BB --6.4707 -11.915 m --4.26367 -18.292 1.75 -22.5752 8.49316 -22.5752 c -10.251 -22.5752 11.9922 -22.2822 13.6709 -21.7021 c -16.4521 -20.7393 18.7813 -19.0635 20.5557 -16.9619 C -18.7041 -19.7471 15.9766 -21.9795 12.5801 -23.1553 c -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.45313 -7.90137 -8.14941 -2.10254 -4.66309 2.02637 C --7.30762 -1.9502 -8.14941 -7.06348 -6.4707 -11.915 c -Bb -1 (Unnamed gradient 7) -0.284451 0 -62.8867 1.31311 1 0 0 1 0 0 1 Bg -11.6282 -22.7105 -32.3312 -16.5542 -7733.5737 7926.2744 Xm -13.8263 -27.0035 -32.3312 -16.5542 -7747.3999 7953.2778 Bc -11.6282 -22.7105 -32.3312 -16.5542 -7733.5737 7926.2744 Bm -13.8263 -27.0035 -32.3312 -16.5542 -7721.9453 7903.564 Bc -f -0 BB -u -0 1 0 0 0 Xy -10 M -9.12402 5.19824 m --9.96973 4.26465 L --22.5664 15.708 L --21.7207 16.6436 L --9.12402 5.19824 L -Bb -1 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -3.53784 -7.91375 -18.7709 -8.3915 -7755.1191 7888.4551 Xm -11.3559 -25.4018 -18.7709 -8.3915 -7766.4751 7913.8569 Bc -3.53784 -7.91375 -18.7709 -8.3915 -7755.1191 7888.4551 Bm -11.3559 -25.4018 -18.7709 -8.3915 -7751.5815 7880.541 Bc -f -0 BB -U -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-9.12402 5.19824 m -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-21.7207 16.6436 L -%_-9.12402 5.19824 L -%_n -1 (Anon 438) XW -U -%_/ArtDictionary : -%_15.5 46.5 39.0454 13.0151 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_0 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Textbereich) 0 A -0 Xw -u -1 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 0.991358 w 4 M []0 d 0 XR -77.5 45.5 m --77.5 45.5 L --77.5 -45.5 L -77.5 -45.5 L -77.5 45.5 L -s -0 0.6 0 0 0 Xy -1.00864 w 78.5 46.5 m --78.5 46.5 L --78.5 -46.5 L -78.5 -46.5 L -78.5 46.5 L -s -U -%_/ArtDictionary : -%_2.0811 156.0811 91.4609 2.4609 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Texteingabe) 0 A -0 Xw -u -0 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -77.5 11.5 m --77.5 11.5 L --77.5 -11.5 L -77.5 -11.5 L -77.5 11.5 L -s -0 0.6 0 0 0 Xy -78.5 12.5 m --78.5 12.5 L --78.5 -12.5 L -78.5 -12.5 L -78.5 12.5 L -s -U -%_/ArtDictionary : -%_1.7002 155.7002 24 2 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Brush Manager Order) -(Adobe Brush Manager Order) -( Adobe Calligraphic Brush Tool/ Rund - 3 Pt./ Adobe Calligraph) - -(ic Brush Tool/ Rund - 10 Pt./ Adobe Calligraphic Brush Tool/ O) - -(val - 3 Pt./ Adobe ArtOnPath Brush Tool/ Kohle - Feder/ Adobe ) - -(dBrush Brush Tool/ Stupfpinsel/ Adobe PatternOnPath Brush Tool) - -(/ Silber/) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe dBrush Brush Tool) -(Stupfpinsel) -(0 4 0.75 0.75 0.33 0.75 1 3 AI_BristleBrushLibary_CS5 02_Round) - -(_Blunt) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Oval - 3 Pt.) -(1 3 3 26 74 15 15 0 1 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 10 Pt.) -(1 10 10 100 100 0 0 1 0 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 3 Pt.) -(1 3 3 100 100 0 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe ArtOnPath Brush Tool) -(Kohle - Feder) -(2 / Unnamed 6/ / / / / 0 1 / 1 1 1 0 1 0 0 0 1 1 0 0 0 0 1) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe PatternOnPath Brush Tool) -(Silber) -(2 / Unnamed Brush Pattern 45/ Unnamed Brush Pattern 49/ Unname) - -(d Brush Pattern 47/ / / 5 0.623529 0.67451 0.737255 / 1 0 1 0) - -( 1 0 0 0 1 1 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyles -/KnownStyle : -(Anon) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -1 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 437) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 438) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 91) /Name , -/SimpleStyle : -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Paint ; - /Def ; -/KnownStyle : -(Anon 92) /Name , -/SimpleStyle : -0 O -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Paint ; - /Def ; -/KnownStyle : -(Jive_GS) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -(Jive) 0 0 1 1 0 0 0 0 0 [0 1.47 -1.47 0 3549.7441 19033.0313] p -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0.389013 0.068635 0.08426 0 0.65098 0.815686 0.894118 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schein nach außen - 5 Pt.) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Outer Glow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schein nach au\337en) /Title , -/Dictionary : /NotRecorded , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -2 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schlagschatten) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Drop Shadow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schlagschatten) /Title , -/Dictionary : /NotRecorded , -1 /Bool (pair) , -7 /Real (vert) , -50 /Real (dark) , -7 /Real (horz) , -1 /Int (csrc) , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -1 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -([Standard]) /Name , -/SimpleStyle : -0 O -0 0 0 0 1 1 1 Xa -0 R -0.912474 0.787625 0.619837 0.97467 0 0 0 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -1 1 Xd -/Paint ; - /Def ; -%AI9_EndArtStyles -%AI5_End_NonPrinting-- -%AI5_BeginPalette -0 0 Pb -0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz -([Passermarken]) -Pc -0 0 0 0 1 1 1 Xa -(Weiß) -Pc -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(Schwarz) -Pc -0 0.94641 0.916289 0 1 0 0 Xa -(RGB Rot) -Pc -0.096254 0 0.951965 0 1 1 0 Xa -(RGB Gelb) -Pc -0.647547 0 1 0 0 1 0 Xa -(RGB Grün) -Pc -0.570733 0 0.153567 0 0 1 1 Xa -(RGB Cyan) -Pc -0.934081 0.745846 0 0 0 0 1 Xa -(RGB Blau) -Pc -0.409979 0.77676 0 0 1 0 1 Xa -(RGB Magenta) -Pc -0.168978 0.950286 0.823636 0.068666 0.756863 0.152941 0.176471 Xa -(R=193 G=39 B=45) -Pc -0 0.946624 0.85211 0 0.929412 0.109804 0.141176 Xa -(R=237 G=28 B=36) -Pc -0 0.752956 0.887388 0 0.945098 0.352941 0.141176 Xa -(R=241 G=90 B=36) -Pc -0 0.501823 0.907988 0 0.968627 0.576471 0.117647 Xa -(R=247 G=147 B=30) -Pc -0 0.365637 0.819852 0 0.984314 0.690196 0.231373 Xa -(R=251 G=176 B=59) -Pc -0.065736 0 0.852628 0 0.988235 0.933333 0.129412 Xa -(R=252 G=238 B=33) -Pc -0.231907 0 0.892332 0 0.85098 0.878431 0.129412 Xa -(R=217 G=224 B=33) -Pc -0.524254 0 0.880919 0 0.54902 0.776471 0.247059 Xa -(R=140 G=198 B=63) -Pc -0.718288 0 0.876951 0 0.223529 0.709804 0.290196 Xa -(R=57 G=181 B=74) -Pc -0.842954 0.14374 0.926757 0.021576 0 0.572549 0.270588 Xa -(R=0 G=146 B=69) -Pc -0.899077 0.322972 0.925994 0.247654 0 0.407843 0.215686 Xa -(R=0 G=104 B=55) -Pc -0.735958 0 0.689784 0 0.133333 0.709804 0.45098 Xa -(R=34 G=181 B=115) -Pc -0.766171 0.045533 0.450782 0 0 0.662745 0.615686 Xa -(R=0 G=169 B=157) -Pc -0.709987 0.132143 0.001953 0 0.160784 0.670588 0.886275 Xa -(R=41 G=171 B=226) -Pc -0.866178 0.492958 0 0 0 0.443137 0.737255 Xa -(R=0 G=113 B=188) -Pc -0.975586 0.89572 0 0.000824 0.180392 0.192157 0.572549 Xa -(R=46 G=49 B=146) -Pc -1 0.970001 0.322484 0.218753 0.105882 0.078431 0.392157 Xa -(R=27 G=20 B=100) -Pc -0.755703 0.923125 0 0.000031 0.4 0.176471 0.568627 Xa -(R=102 G=45 B=145) -Pc -0.5393 0.930297 0 0 0.576471 0.152941 0.560784 Xa -(R=147 G=39 B=143) -Pc -0.323583 1 0.236301 0.1673 0.619608 0 0.364706 Xa -(R=158 G=0 B=93) -Pc -0.097993 0.983551 0.407263 0.020691 0.831373 0.078431 0.352941 Xa -(R=212 G=20 B=90) -Pc -0 0.935058 0.142763 0 0.929412 0.117647 0.47451 Xa -(R=237 G=30 B=121) -Pc -0.220859 0.272648 0.389227 0.061189 0.780392 0.698039 0.6 Xa -(R=199 G=178 B=153) -Pc -0.354864 0.386694 0.466072 0.211734 0.6 0.52549 0.458824 Xa -(R=153 G=134 B=117) -Pc -0.446387 0.47068 0.52636 0.380346 0.45098 0.388235 0.341176 Xa -(R=115 G=99 B=87) -Pc -0.535302 0.542443 0.552728 0.542199 0.32549 0.278431 0.254902 Xa -(R=83 G=71 B=65) -Pc -0.204685 0.376715 0.593042 0.084871 0.776471 0.611765 0.427451 Xa -(R=198 G=156 B=109) -Pc -0.280308 0.462287 0.671046 0.207126 0.65098 0.486275 0.321569 Xa -(R=166 G=124 B=82) -Pc -0.324376 0.536675 0.760494 0.329229 0.54902 0.384314 0.223529 Xa -(R=140 G=98 B=57) -Pc -0.359228 0.605188 0.857359 0.451545 0.458824 0.298039 0.141176 Xa -(R=117 G=76 B=36) -Pc -0.391424 0.683131 0.943023 0.57116 0.376471 0.219608 0.07451 Xa -(R=96 G=56 B=19) -Pc -0.474617 0.7467 0.825315 0.730831 0.258824 0.129412 0.043137 Xa -(R=66 G=33 B=11) -Pc -Bb -2 (Weiß, Schwarz) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Weiß, Schwarz) -Pc -Bb -2 (Goldstaub) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Goldstaub) -Pc -Bb -2 (Blauer Himmel) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Blauer Himmel) -Pc -(Jive) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p -(Jive) -Pc -1 (Kalt) 1 Pg -0.584497 0 0.222965 0 0.396078 0.784314 0.815686 Xa -(C=56 M=0 Y=20 K=0) -Pc -0.55404 0.445533 0 0 0.513726 0.545098 0.772549 Xa -(C=51 M=43 Y=0 K=0) -Pc -0.313512 0.439063 0.001465 0 0.729412 0.607843 0.788235 Xa -(C=26 M=41 Y=0 K=0) -Pc -1 (Graustufen) 1 Pg -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(R=0 G=0 B=0) -Pc -0.762295 0.667414 0.60705 0.828763 0.101961 0.101961 0.101961 Xa -(R=26 G=26 B=26) -Pc -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa -(R=51 G=51 B=51) -Pc -0.620386 0.5234 0.503532 0.47776 0.301961 0.301961 0.301961 Xa -(R=77 G=77 B=77) -Pc -0.559442 0.453803 0.448554 0.326848 0.4 0.4 0.4 Xa -(R=102 G=102 B=102) -Pc -0.492378 0.386633 0.38529 0.202182 0.501961 0.501961 0.501961 Xa -(R=128 G=128 B=128) -Pc -0.410864 0.319738 0.323857 0.110109 0.6 0.6 0.6 Xa -(R=153 G=153 B=153) -Pc -0.32575 0.244968 0.255344 0.043549 0.701961 0.701961 0.701961 Xa -(R=179 G=179 B=179) -Pc -0.231479 0.170962 0.180972 0.008301 0.8 0.8 0.8 Xa -(R=204 G=204 B=204) -Pc -0.11664 0.082246 0.092653 0 0.901961 0.901961 0.901961 Xa -(R=230 G=230 B=230) -Pc -0.062196 0.043153 0.05127 0 0.94902 0.94902 0.94902 Xa -(R=242 G=242 B=242) -Pc -PB -%AI5_EndPalette -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyleList -([Standard]) -(Schlagschatten) -(Schein nach außen - 5 Pt.) -(Jive_GS) -%AI9_EndArtStyleList -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSymbolList -(Textbereich) -(Schaltfläche) -(Kombinationsfeld) -(Texteingabe) -(Suchen) -%AI10_EndSymbolList -%AI5_End_NonPrinting-- -%AI9_BeginDocumentData -%_/Document : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(binding1) /String (xmlnode-nodevalue) , -%_(varSetName) /String (xmlnode-nodename) , -%_; (varSetName) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(none) /String (xmlnode-nodevalue) , -%_(locked) /String (xmlnode-nodename) , -%_; (locked) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variables) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns:v) /String (xmlnode-nodename) , -%_; (xmlns:v) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_custom;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(v:sampleDataSets) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSet) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSets) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_sfw;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(slices) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_734.5317 /Real (xmlnode-nodevalue) , -%_(width) /String (xmlnode-nodename) , -%_; (width) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_127.373 /Real (xmlnode-nodevalue) , -%_(height) /String (xmlnode-nodename) , -%_; (height) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_76.2339 /Real (xmlnode-nodevalue) , -%_(x) /String (xmlnode-nodename) , -%_; (x) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_-363.6865 /Real (xmlnode-nodevalue) , -%_(y) /String (xmlnode-nodename) , -%_; (y) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_1 /Bool (xmlnode-nodevalue) , -%_(bottomLeftOrigin) /String (xmlnode-nodename) , -%_; (bottomLeftOrigin) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sliceSourceBounds) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sfw) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(metadata) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_9 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(#document) /String (xmlnode-nodename) , -%_; (#document) , -%_0 /Real (BleedLeftValue) , -%_0 /Int (CropAreaActive) , -%_/Array : -%_/Dictionary : -%_7747 7891 /RealPoint -%_ (RulerOrigin) , -%_0 /Int (DisplayMark) , -%_(Zeichenfläche 1) /UnicodeString (Name) , -%_1 /Real (PAR) , -%_888 -600 /RealPointRelToROrigin -%_ (PositionPoint2) , -%_0 0 /RealPointRelToROrigin -%_ (PositionPoint1) , -%_1 /Bool (IsArtboardDefaultName) , -%_; , -%_; (ArtboardArray) , -%_0 /Bool (AI11 document knockout group) , -%_0 /Bool (AI11 document isolate blending) , -%_0 /Bool (AI9 paper simulation) , -%_2 /Int (AI9 transparency grid size) , -%_1 /Int (AI9 artboard color) , -%_52428 /Int (AI9 artboard color 2 blue) , -%_52428 /Int (AI9 artboard color 2 green) , -%_52428 /Int (AI9 artboard color 2 red) , -%_65535 /Int (AI9 artboard color 1 blue) , -%_65535 /Int (AI9 artboard color 1 green) , -%_65535 /Int (AI9 artboard color 1 red) , -%_16383 /Int (AIDocumentCanvasSize) , -%_1 /Bool (AI11 Preserve Text Editability) , -%_([Mittlere Auflösung]) /UnicodeString (AI11 Document Setup Flattener Preset Name) , -%_150 /Real (AI9 Mesh Rasterization Resolution) , -%_300 /Real (AI9 Output Rasterization Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_/Dictionary : -%_36 /Real (padd) , -%_0 /Bool (mask) , -%_1 /Bool (spot) , -%_0 /Bool (alis) , -%_72 /Int (dpi.) , -%_4 /Int (colr) , -%_; (AI Auto Rasterize) , -%_5 /Real (GlobalRepulsion) , -%_0 /Real (BleedRightValue) , -%_0 /Real (BleedTopValue) , -%_0 /Int (PerspectiveGrid_RightBlue) , -%_65535 /Int (PerspectiveGrid_RightRed) , -%_50 /Real (PerspectiveGrid_RightOpacity) , -%_45 /Real (PerspectiveGrid_RightFaceAngle) , -%_45 /Real (PerspectiveGrid_LeftFaceAngle) , -%_480 /Real (PerspectiveGrid_ViewingDistance) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_StationPoint) , -%_26214 /Int (PerspectiveGrid_LeftGreen) , -%_58981 /Int (PerspectiveGrid_LeftBlue) , -%_6553 /Int (PerspectiveGrid_LeftRed) , -%_50 /Real (PerspectiveGrid_LeftOpacity) , -%_0 /Real (PerspectiveGrid_FloorOffset) , -%_0 /Bool (AI16 flattener anti alias) , -%_1 /Bool (AI10 flattener outline strokes) , -%_1 1 /RealPoint -%_ (PerspectiveGrid_Scale) , -%_0 /Bool (AI10 flattener outline text) , -%_0 /Int (PerspectiveGrid_Unit) , -%_15 /Real (PerspectiveGrid_CellCount) , -%_4 /Int (AI9 Flattening Quality Level) , -%_1 /Int (AI12_SpotColorMode) , -%_580 /Real (PerspectiveGrid_RightExtent) , -%_30 /Real (PerspectiveGrid_CellSize) , -%_250 /Real (PerspectiveGrid_HorizonHeight) , -%_580 /Real (PerspectiveGrid_LeftExtent) , -%_45874 /Int (PerspectiveGrid_FloorGreen) , -%_2 /Int (PerspectiveGrid_Type) , -%_32767 /Int (PerspectiveGrid_FloorBlue) , -%_32767 /Int (PerspectiveGrid_FloorRed) , -%_50 /Real (PerspectiveGrid_FloorOpacity) , -%_(14.0.0) /String (kAIFullDocumentVersionStr) , -%_32767 /Int (PerspectiveGrid_RightGreen) , -%_0 /Real (BleedBottomValue) , -%_/Dictionary : -%_/Array : -%_; (SelHatDocInterIDsArray) , -%_/Array : -%_; (SelHatDocLocalNamesArray) , -%_; (SelHatDocTableDict) , -%_2 /Int (kAIParametersWhichProfileKey) , -%_0 /Bool (kAIParametersCompression) , -%_0 /Int (kAIParametersEmbedProfileKey) , -%_1 /Bool (kAIParametersPDFCompatibility) , -%_0 -500 /RealPoint -%_ (PerspectiveGrid_RelativeFloorVanishingPoint) , -%_8431 8316 /RealPoint -%_ (PerspectiveGrid_RightPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RightPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_RightPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_RightPlaneBottomPoint) , -%_8671 8191 /RealPoint -%_ (PerspectiveGrid_RightVanishingPoint) , -%_7951 8316 /RealPoint -%_ (PerspectiveGrid_LeftPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexSecond) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexFirst) , -%_0 /Int (PerspectiveGrid_FloorPlaneVisibilityState) , -%_0 /Int (PerspectiveGrid_LeftPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_LeftPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_LeftPlaneBottomPoint) , -%_7711 8191 /RealPoint -%_ (PerspectiveGrid_LeftVanishingPoint) , -%_1 /Bool (AI10 flattener preserve overprints) , -%_1 /Bool (AI10 flattener clip complex regions) , -%_75 /Int (AI10 flattener raster-vector balance) , -%_100 /Real (kAIParametersSubsetFontsRatioKey) , -%_; /Recorded , -%_/Dictionary : /NotRecorded , -%_0 /Bool (AI16 AI Anti Aliasing) , -%_1 /Int (LastArtboardID) , -%_1 /Int (AI11 EPS Overprints) , -%_1 /Bool (AI11 EPS Clip Complex Regions) , -%_1 /Bool (AI11 EPS Outline Strokes) , -%_1 /Int (AI12 AI Overprints) , -%_0 /Bool (AI11 EPS Outline Text) , -%_75 /Int (AI11 EPS Raster/Vector Balance) , -%_1 /Bool (AI12 AI Clip Complex Regions) , -%_([Medium Resolution]) /String (AI11 EPS Flattener Preset Name) , -%_/Dictionary : /NotRecorded , -%_ /String (/attributes/job.pagerange) , -%_1 /Int (/attributes/job.printall) , -%_1 /Int (/attributes/job.skipblank) , -%_0 /Int (/attributes/job.reverseorder) , -%_0 /Int (/attributes/job.collate) , -%_() /UnicodeString (/attributes/job.artboardrange) , -%_1 /Int (/attributes/job.printallartboards) , -%_; (AI11 Print JobInfo Dict) , -%_0 /Bool (AI12 AI Outline Text) , -%_75 /Int (AI12 AI Raster/Vector Balance) , -%_0 /Bool (AI16 EPS Anti Aliasing) , -%_1 /Bool (AI12 AI Outline Strokes) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/job.bitmapresolution) , -%_0 /Real (/attributes/pgmk.bleedoff.bottom) , -%_6 /Real (/attributes/pgmk.marksoff.bottom) , -%_1 /Int (/attributes/pgmk.bleedoff.useDocBleeds) , -%_([Standard]) /UnicodeString (/attributes/collectionName) , -%_1 /Int (/attributes/stl.defaultprinter) , -%_() /UnicodeString (/attributes/stl.printername) , -%_() /UnicodeString (/attributes/stl.ppdmodelname) , -%_1 /Int (/attributes/stl.defaultppd) , -%_() /UnicodeString (/attributes/stl.customppd) , -%_0 /Int (/attributes/ppr.custom) , -%_1 /Int (/attributes/ppr.default) , -%_595.32 /Real (/attributes/ppr.width) , -%_841.92 /Real (/attributes/ppr.height) , -%_0 /Real (/attributes/ppr.image.left) , -%_0 /Real (/attributes/ppr.image.top) , -%_595.32 /Real (/attributes/ppr.image.right) , -%_841.92 /Real (/attributes/ppr.image.bottom) , -%_(Durch Treiber definiert) /UnicodeString (/attributes/ppr.name) , -%_0 /Real (/attributes/cppr.width) , -%_0 /Real (/attributes/cppr.height) , -%_0 /Real (/attributes/cppr.woffset) , -%_0 /Real (/attributes/cppr.hoffset) , -%_0 /Int (/attributes/cppr.trans) , -%_0 /Int (/attributes/job.designation) , -%_2 /Int (/attributes/job.printbounds) , -%_0 /Int (/attributes/job.printofile) , -%_0 /Int (/attributes/job.printasbitmap) , -%_() /UnicodeString (/attributes/job.name) , -%_0 /Int (/attributes/clr.mode) , -%_0 /Int (/attributes/clr.convertspots) , -%_0 /Int (/attributes/clr.overprintblack) , -%_720 /Int (/attributes/crd.orientation) , -%_0 /Int (/attributes/crd.fliphorz) , -%_5 /Int (/attributes/crd.position) , -%_0 /Real (/attributes/crd.org.h) , -%_0 /Real (/attributes/crd.org.v) , -%_100 /Real (/attributes/crd.scale.h) , -%_100 /Real (/attributes/crd.scale.v) , -%_0 /Int (/attributes/crd.scplcy) , -%_1 /Int (/attributes/crd.sccnst) , -%_0 /Int (/attributes/crd.tiling) , -%_0 /Real (/attributes/crd.overlap.h) , -%_0 /Real (/attributes/crd.overlap.v) , -%_0 /Int (/attributes/pgmk.enabled) , -%_0 /Int (/attributes/pgmk.style) , -%_() /UnicodeString (/attributes/pgmk.customfile) , -%_() /UnicodeString (/attributes/pgmk.jobtitle) , -%_0.25 /Real (/attributes/pgmk.deflinewidth) , -%_0 /Int (/attributes/pgmk.bleed) , -%_0 /Int (/attributes/pgmk.crop) , -%_0 /Int (/attributes/pgmk.pageinfo) , -%_0 /Int (/attributes/pgmk.registration) , -%_0 /Int (/attributes/pgmk.colorbars) , -%_0 /Real (/attributes/pgmk.bleedoff.left) , -%_0 /Real (/attributes/pgmk.bleedoff.top) , -%_0 /Real (/attributes/pgmk.bleedoff.right) , -%_6 /Real (/attributes/pgmk.marksoff.left) , -%_6 /Real (/attributes/pgmk.marksoff.top) , -%_6 /Real (/attributes/pgmk.marksoff.right) , -%_1 /Int (/attributes/fnt.dlmode) , -%_0 /Int (/attributes/fnt.dlprfonts) , -%_0 /Int (/attributes/fnt.subst) , -%_3 /Int (/attributes/ps.level) , -%_1 /Int (/attributes/ps.binary) , -%_0 /Int (/attributes/ps.negative) , -%_0 /Int (/attributes/ps.compression) , -%_0 /Int (/attributes/ps.contone) , -%_0 /Int (/attributes/ps.l1compat) , -%_300 /Real (/attributes/ps.shaderes) , -%_0 /Int (/attributes/ps.setflatness) , -%_1 /Real (/attributes/ps.flatness) , -%_75 /Int (/attributes/xp.balance) , -%_300 /Int (/attributes/xp.rresolution) , -%_150 /Int (/attributes/xp.gresolution) , -%_0 /Int (/attributes/xp.converttext) , -%_1 /Int (/attributes/xp.convertstroke) , -%_1 /Int (/attributes/xp.clip) , -%_0 /Int (/attributes/xp.antialiasing) , -%_0 /Int (/attributes/xp.opco) , -%_0 /Int (/attributes/xp.opse) , -%_0 /Int (/attributes/xp.opdu) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/xp.name) , -%_0 /Int (/attributes/rdrs.enabled) , -%_0 /Int (/attributes/rdrs.func) , -%_1 /Real (/attributes/rdrs.flatteness) , -%_() /UnicodeString (/attributes/rdrs.annot) , -%_ /String (/attributes/rdrs.custom) , -%_1 /Int (/attributes/cm.mode) , -%_(Coated FOGRA39 \(ISO 12647-2:2004\)) /UnicodeString (/attributes/cm.profile) , -%_2 /Int (/attributes/cm.inteint) , -%_1 /Int (/attributes/cm.preservecmyk) , -%_0 /Int (/attributes/cm.preserveother) , -%_; (AI11 Print Attribute Dict) , -%_0 /Bool (AI15 Document PixelPerfect) , -%_150 /Real (AI12 AI Gradient and Mesh Resolution) , -%_300 /Real (AI12 AI Line Art and Text Resolution) , -%_150 /Real (AI11 EPS Gradient and Mesh Resolution) , -%_300 /Real (AI11 EPS Line Art and Text Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_1 /Bool (AI9 no overprint in composite) , -%_([Medium Resolution]) /String (AI12 AI Flattener Preset Name) , -%_1 /Bool (PerspectiveGrid_Snap) , -%_0 /Bool (PerspectiveGrid_ShowHide) , -%_/Dictionary : /NotRecorded , -%_([Illustrator-Standard]) /UnicodeString (/attributes/collectionName) , -%_0 /Int (/attributes/AI11PDF_PageInfo) , -%_0 /Real (/attributes/AI11PDF_BleedTop) , -%_0 /Real (/attributes/AI11PDF_BleedBottom) , -%_0 /Int (/attributes/AI11PDF_RegMarks) , -%_1 /Int (/attributes/AI11PDF_CompressArt) , -%_0 /Real (/attributes/AI11PDF_BleedRight) , -%_(Dies sind die Standardeinstellungen beim Speichern einer Illustrator-Datei als PDF-Dokument. Verwenden Sie diese Einstellungen, wenn Sie die Datei später in Illustrator oder in einem Layoutprogramm wie z. B. InDesign bearbeiten möchten oder der endgültige Verwendungszweck der Datei unbekannt ist.) /UnicodeString (/attributes/AI12PDF_Description) , -%_0 /Int (/attributes/AI11PDF_FastWebView) , -%_1 /Int (/attributes/AI11PDF_BleedLink) , -%_1 /Int (/attributes/AI11PDF_Overprint) , -%_0 /Int (/attributes/AI11PDF_ColorBars) , -%_0 /Int (/attributes/AI12PDF_Trapped) , -%_1 /Int (/attributes/AI14PDF_DocBleed) , -%_0 /Real (/attributes/AI11PDF_BleedLeft) , -%_1 /Int (/attributes/AI12PDF_Standard) , -%_0 /Int (/attributes/AI11PDF_TrimMarks) , -%_300 /Int (/attributes/AI11PDF_MonochromeDownsampleResolution) , -%_1 /Int (/attributes/AI11PDF_PreserveIllustratorEditingCapabilities) , -%_1 /Int (/attributes/AI12PDF_OutputIntentProfileNamePolicy) , -%_75 /Int (/attributes/AI10 flattener raster-vector balance) , -%_1 /Int (/attributes/AI11PDF_ColorDownsampleKind) , -%_0.25 /Real (/attributes/AI11PDF_TrimMarkWeight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputCondition) , -%_1 /Int (/attributes/AI12PDF_DestinationPolicy) , -%_() /UnicodeString (/attributes/AI12PDF_DestinationName) , -%_() /UnicodeString (/attributes/AI12PDF_RegistryName) , -%_0 /Int (/attributes/AI11PDF_PrinterMarkType) , -%_0 /Int (/attributes/AI16 flattener anti alias) , -%_6 /Int (/attributes/AI11PDF_GrayCompressionKind) , -%_1 /Int (/attributes/AI11PDF_GenerateThumbnails) , -%_0 /Int (/attributes/AI11PDF_FlattenTransparency) , -%_0 /Int (/attributes/AI12PDF_UsePrintTiling) , -%_256 /Int (/attributes/AI11PDF_GrayTileSize) , -%_100 /Int (/attributes/AI11PDF_SubsetFontRatio) , -%_1 /Int (/attributes/AI11PDF_GrayDownsampleKind) , -%_3 /Int (/attributes/AI11PDF_Compatibility) , -%_0 /Int (/attributes/AI10 flattener outline text) , -%_256 /Int (/attributes/AI11PDF_ColorTileSize) , -%_() /UnicodeString (/attributes/AI12PDF_OutputIntentProfileName) , -%_225 /Int (/attributes/AI11PDF_ColorDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkTop) , -%_1 /Int (/attributes/AI11PDF_PreserveAcrobatLayers) , -%_4 /Int (/attributes/AI11PDF_MonochromeCompressionKind) , -%_225 /Int (/attributes/AI11PDF_GrayDownsampleImageAbove) , -%_1 /Int (/attributes/AI11PDF_ColorCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkRight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputConditionIdentifier) , -%_1 /Int (/attributes/AI10 flattener clip complex regions) , -%_150 /Int (/attributes/AI11PDF_GrayDownsampleResolution) , -%_6 /Int (/attributes/AI11PDF_ColorCompressionKind) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/AI11PDF_FlatteningPresetName) , -%_150 /Real (/attributes/AI9 Mesh Rasterization Resolution) , -%_450 /Int (/attributes/AI11PDF_MonoDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkLeft) , -%_1 /Int (/attributes/AI12PDF_ColorConversionPolicy) , -%_1 /Int (/attributes/AI11PDF_MonochromeDownsampleKind) , -%_150 /Int (/attributes/AI11PDF_ColorDownsampleResolution) , -%_300 /Real (/attributes/AI9 Output Rasterization Resolution) , -%_1 /Int (/attributes/AI11PDF_GrayCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkBottom) , -%_1 /Int (/attributes/AI10 flattener outline strokes) , -%_1 /Int (/attributes/AI12PDF_ProfileInclusionPolicy) , -%_; (PDFPresetCollection) , -%_1 /Int (AI9 Document Setup panel) , -%_0 /Bool (AISaveMultipleArtboards) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/inklst.count) , -%_; (AI11 Ink List Dict) , -%_(Adobe PDF Preset.joboptions) /String (AI12 Job Options Name) , -%_7775 /Int (AI12 Job Options Size) , -%_/Binary : /ASCII85Decode , -%4?O&[+M4?:L\'M@ruc7FE2M8%144#00sDjDg,0$@;^.*@<,ps@sK2/ -%@;L!r%144#00sJtBgHQL@<4eSCi=>cD..'gF!,('Cia.s$6UHE6#LdY6#:7DF%:7ZGtDj]B4Z-,AmoLsAISth+>6#uFD4$WBjl'W -%Df0JbD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC.VCi=>cD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC:]@6#sC^g^o+>6&qDIdI!B-8j$AS-#n$6UHE6Xadu -%9j(+cEc5Q(Ch4_;VJ#h;ccak>VJ#i+EfLh%144#010/a7ri$`:i^JdBl%?'-r+\uALS&q+7Co^+n%,`+>6*#Ci=>[6W6Qn@:s.>Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+6>`77Rdo+6*#Ci=>cD..'g -%6tp.Q+?Vaq$6UH6+>68a@;Tt"ATJtu%144#+F<4+6S]@:OCt -%EZd%g2`OB5+n%,`+?hsu$6UHE -%6Z6dZE_1+VB4XJLGA_J1D/a<&<+p;`F(fK.A06*#Ci=>cD..'g6uR9eF(&p)Ch6RkE+L.F:2b#]%144#010Yo -%DfSEd@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+6*#Ci=>cD..'g9keKC -%ATMd+F`_>9DBLYk0F\@3+>6*#Ci=>cD..'g9keKCATMd+F`_>9DGY7fBk)E202G4M$6UHE6Z6dZE_1+VB4XtPF)Pl;FD5Z2+>G`- -%%144#010YoDfScfFED57B6-OVCh4_;.1HV,+>6*#D/`p*BjtdmBlnVoAThX$+>GK+%144#010YpE,oN2F&-7[ARfh'+>6]&B6+Lh -%+6*#DK]T3F@g=XB4Z-`Db4hWAU%cs+EVXHAISth+>6*&ART[l8jl-6*&ART[l8oJ06/Y0K1a@0K(dB0JY=90K1gB0K(mE -%0K(dB0JY=90K(aA0K(dB0K(gC0K(X>0K1jC0K)9P0K1gB0JY=90K1dA0K(dB0K1gB0K1gB0K(pF0K)?R0K(jD0K1dA0JY=90K1pE -%0K(mE0K(dB0K)?R0JY=90K1dA0K(X>0K1mD0K(pF0K)?R0K(jD0JY=90K(X>0K)?R0JY=90JkdD0K)9P0K)9P0K1jC0K1dA0K1gB -%0K1a@0K(X>0K1gB0K)BS0K1a@0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(X>0K1dA0JY=90K(X>0K)?R0JY=90JkL<0K(aA0K)BS -%0K([?0K(dB0JY=90JtO<0JkU?0Jk[A0JY=90K(aA0K)BS0K(^@0K1jC0K)0K)9P0K(X>0K)?R0JY=90K)BS0K)?R0JY=90K(dB0K(aA0K(pF0K1gB0K(pF0K)?R0K(jD -%0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(X>0K(jD0K(X>0K(pF0K)?R0JY=90K(pF0K)?R0JY=90JkdD -%0K)9P0K)9P0K1jC0K1dA0K1gB0K1a@0K(X>0K1gB0K)BS0K1a@0JZ!L0JY=90K)BS0K1a@0JY=90K1pE0K(mE0K(dB0K)?R0JY=9 -%0K2!G0K)BS0K1jC0JY=90K)?R0K(dB0K(dB0K(aA0JY=90K1gB0K)BS0JY=90K1[>0K)9P0K(X>0K(^@0K(dB0JY=90K(pF0K1gB -%0JY=90K(pF0K)?R0JY=90K(X>0JY=90K)9P0K(X>0K2!G0K)BS0K1jC0K1gB0JY=90K(X>0K1[>0K1[>0K)9P0K(pF0K(^@0K(X> -%0K1gB0K(pF0K)BS0K)?R0JY=90K1dA0K1jC0K(^@0K(mE0JY=90K(X>0K1dA0JY=90JkdD0K)?R0JkU?0K(dB0K1dA0K(pF0K(jD -%0K)?R0JZ!L0JY=90K)BS0K1a@0JY=90K1pE0K(mE0K(dB0K)?R0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)?R0K(X>0K)9P -%0JY=90K1jC0K1dA0K(dB0JY=90K)BS0K(gC0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(pF0K1dA0JY=9 -%0K1jC0K)?R0K)6O0K)?R0K)BS0K1pE0K)?R0JZ'\%144#5!BD_+6-$<+pDk@W#UgCi^_@Eckq&$6UHE6uR9eF(&p)Ch5tPCi=>cD..'gF!,('Cia.s$6UHE6uR9eF(&p)Ch6+W@60#@V'(9ChuRZDKKqBFE2M8%144#01B_eARnDO@S^rb -%Bl@m1+D,%uF(Gdf+60$@rGmh9lFof8SqmKATJu9Eckq&$6UHE7;cX4@:s-o/MR\A+Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+68a@;Tt"ATJtu%144#+F<4+6S]@:OCt -%EZd%g2`OB5+n%,`+?hsu$6UHE -%7ri$`8SqmKAOLH\DKB6'E,9)bBQ@[*BQ%]t+>GK+0JG17%144#01U%kGtDj]B4XJLGA_J1D/a<&<-`Fo+>6K.DIj7a+66*@G`-%144#01U%kGtDj]B4XeODGk%eDesQ66*@9DBLYk0F\@3+>6<' -%@:s.GASl@+Gp"gq1cR?O2@U!9+>6>`77T*e0JGk4Ci=>[6W6Qn@:s.>Bk)6-4?O&[+G__$6UH6+>6].Ch6.K -%BkM+$+>Pf4%144#+Pf4%144#5!BD_+6].Ch6[^A9;K-1,Us!$6UHT4q.iA -%+>6E,@r"JHF*),4Ch7W`@<,dnF!,RFF_)!h+6H-DJr*` -%@:s.>Bk)6-4?O&[+0b"I4+?hsu$6UHE9lFof8SqmKAOLH\DKB6'E,9)bBQ@[*BQ%]t+>GK+0JG17%144#026A&Db4eS -%B4XJLGA_J1D/a<&<-`Fo+>6K.DIj7a+9DGY7fBk)E202G4M$6UHE9lFof8SqmKAQ!)\DesQ>stream -CKl$6UHE:18!N -%F)YPtAKY1d$6UH6+=KNdDdm9,%144#+..1HV,+C,E`+7Co^+6$%;Is9IATC^gEb/ZiF!,('Cia.s$6UH6+6f)Ec+0\A4(9QFD5W8AISth+63#@6#sCi=MhD..'g6?6XGCNCV?Eckq&$6UH6+r![Ch5qRART@q+EVXHAISth+60.E+*Wp -%:gn!J+D,%uF(Gdf+Io+D,%uF(Gdf+6<(@r-9uAOpB@A7]dNDf9`/EZet&Cia.s$6UH6+=63+6H#FCA]gFC@gRH$=1IA9/kA.1HV,+6H#FCA]gFCA*j@VTIaF6H#FE2)*:gn!J;e^Ph+Bo9^+n%,`+6H#FE2)*7GH -%@qZ;Y+6JuD.Rd-@:Njk>7Co^+5AmoLsAISth+6Q"B4XkZ -%Bk;1(@6]7ART[JDes?4F$Xji025khDG>%eBln966Z6dZEcVZs+p#FE2M8%144#+U4EA5-KQCNCV1@;L!r%144#+63#@63&Ec"6]ASl!rFE8RHEckq&$6UH6+MFCfK$@ruF.AKYSnCia.s$6UH6+sZ9+qmATMg! -%@q?ce%144#+6W2D..6E"@n%,`+>6PZ7T_un -%AS#C=Dg56"<,u\i6>q*EAnH*qF=63+6PZ7T`W1@;p0sA0=63+6Q"EcYe[;aWoj -%D/Ej%FE9oiE^XhU8T&-Y+EVXHAISth+>6Q"EcYe`6UO[jDe<^"ATLF\6Z6gYASuU2+EVXHAISth+>6Q"F)t;oEc6)5BM))i7nIQ+ -%B4Z-,AmoLsAISth+>6Q3ATMF'G%F$ZE-Y8gB4W3-Eckq&$6UHE:i^,gATDs*6qKa?=\De(Cis<1+EVXHAISth+>6Q3ATMF'G%F*= -%;b:k=D]iY#Cia.s$6UHE:i^,gATDs*7VlLTDImm1+EVXHAISth+>6Q3ATMF'G%F3QCh@d-DIlCWAoAf(@;L!r%144#02Q\#F(KB8 -%APZ,o6Z6gYASuU2+D,%uF(Gdf+6Z8@<-Hd@:s-o0b"I4+>6Z9@WQ+& -%7W30dF!,RFF_)!h+6_^;IOHR6:XUbAoAeF;Is]`G%D*i+H-@;U&p$9UE[$9gWr -%F(KH4@:s.^AThctAISt~> -%_; (AI12 Job Options Data) , -%_; /NotRecorded , -%_; -%AI9_EndDocumentData -%AI11_BeginTextDocument -/AI11TextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24k&!+c.Q!+c.(!)rqs!-A3O!%e1M!,*f(0/=Y(+?ht35!C)Q4s2sM+>5Dk4?O`>3B8386Z6mZ<-`Fo7W30d+>5Dk -%4?O`>0H_eCrr>anGlVjbB`MQAA,oF+EWC"X/HAZKAH6?CFT?4X@/t5Jm0H`PC+?ht35!C)O4kJ.3L9!+>=p%4s3$Q+?ht34?O`>0H`J?+>5`8 -%+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H5lbEqDZF5HAH5:%D?+h[B`N2S7K@?,D?+c-+>5Jm0H`PC+?ht35!C)p+>5Gl>9H$j -%+>5Dk0d&YD+C-*R4s2L6+?Vb/0/+MQ+?Vb/0/+M24 -%0H_eCs8FtV2^ok&0d&1n5!C)O4G!&4s2sM+>5Dk./s8G48q;j+>5Gl0d&YD+?Vb/0/+Lsrr;s\r]M\Q -%0/4S(+?ht34?O`>0H_eCs8G7^5:I^.0d&1n5!C)O4G!&4s2sM+>5Dk./s8G6iKG%+>5Gl0d&YD+?Vb/ -%0/+Lsrr0H_eCs8P1\4"2:*0d&1n5!C)O4G!&4s2sM+>5Dk./s5h(a'YE -%+>5Gl0d&YD+?Vb/0/+Lsrr4)\+<2gQ0/4S(+?ht34?O`>0H_eCs"F^4#UplL0d&1n5!C)O4G!&4s2sM -%+>5Dk./s6#$nr)=+>5Gl0d&YD+?Vb/0/+Lsrr4Y^0FfNS0/4S(+?ht34?O`>0H_eCs"G!<&1J_T0d&1n5!C)O4G!&4s2sM+>5Dk./s8G2Z>T`+>5Gl1*AbE+?Vb/0/+Lsrr;sWr\u>L0/4S)+?ht34?O`>0H_eCs8G(Y3[l1)0d&4o5!C)O -%4P''4s2sM+>5Dk./s8G55m_p+>5Gl1*AbE+?Vb/0/+Lsrr;s_r]hnT0/4S)+?ht34?O`>0H_eCs8G@a -%67F$10d&4o5!C)O4P''4s2sM+>5Dk./s8H$3(;\+>5Gl1*AbE+?Vb/0/+Lsrr0H_eCs8QC)>q$mL0d&4o5!C)O4.3L8u+>P''4s2sM+>5Dk./s5h*?Z@O+>5Gl1*AbE+?Vb/0/+Lsrr4YY -%0F90N0/4S)+?ht34?O`>0H_eCs"Fg7$Rm2O0d&4o5!C)O4P''4s2sM+>5Dk./s6#%knMC+>5Gl1*AbE -%+?Vb/0/+Lsrr4Ya0G,`V0/4S)+?ht34?O`>0H_eCs"G0A'e(7Y0d&4o5!C)O4Y-(4s2sM+>5Dk./s8H -%?N4=\+>5Gl1E\kF+?Vb/0/+Lsrr4Z<0L7-10/4S*+?ht34?O`>0H_eCs"Heo6Ra-20d&7p5!C)O4Y-( -%4s2sM+>5Dk./s6#7kdF^+>5Gl1E\kF+?Vb/0/+Lsrr4ZD0M*]90/4S*+?ht34?O`>0H_eCs"Iq:@jrNR0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#KeS30+>5Gl1E\kF+?Vb/0/+Lsrr4[-0S_)"0/4S*+?ht34?O`>0H_eCs"KHeN[Z)(0d&7p -%5!C)O4Y-(4s2sM+>5Dk./s6#ShQ`b+>5Gl1E\kF+?Vb/0/+Lsrr4[G0VKp<0/4S*+?ht34?O`>0H_eC -%s"L3%UF@<=0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#V_G"t+>5Gl1E\kF+?Vb/0/+Lsrr4[O0W?KD0/4S* -%+?ht34?O`>0H_eCs"M>E_^Q]]0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#jY5dF+>5Gl1E\kF+?Vb/0/+Ls -%rr4\80]sl-0/4S*+?ht34?O`>0H_eCs"NjpmO9830d&7p5!C)O4Y-(4s2sM+>5Dk./s6#r%S+!+>5Gl -%1E\kF+?Vb/0/+Lsrr4YU0EimJ0/4S*+?ht34?O`>0H_eCs8N-"!@]-E0d&:q5!C)O4b3)4s2sM+>5Dk -%./s8H)ZLa*+>5Gl2'>(H+?Vb/0/+Lsrr4\L0`*:A0/4S,+?ht34?O`>0H_eCru_jq&1J_T0d&=r5!C)O4t?+4s2sM+>5Dk./s6#!\a[)+>5Gl2BY1I+?Vb/0/+Lsrr!0/4S.+?ht34?O`>0H_eCs"FI-!@]-E0d&Ct5!C)O45Dk./s5h,p4N`+>5Gl3$:CK+?Vb/0/+Lsrr0H_eCrrAeoUF@<= -%0d&J!5!C)O45Dk./s8H"oe`T+>5Gl0ea_64s2sM+>5Dk./s5HU&^o:+>5Gl0ea_64s2sM -%+>5Dk./s5HYQ1mV+>5Gl0ea_64s2sM+>5Dk./s5h0H`%u+>5Gl0ea_64s2sM+>5Dk./s5h1*AD&+>5Gl0ea_64s2sM+>5Dk./s6# -%!&+C%+>5Gl0eje74s2sM+>5Dk./s6#681_T+>5Gl0esk84s2sM+>5Dk./s6#6nh"X+>5Gl0esk84s2sM+>5Dk./s6#7PI:\+>5Gl -%0esk84s2sM+>5Dk./s6#82*R`+>5Gl0esk84s2sM+>5Dk./s6#8ha^'+>5Gl0esk84s2sM+>5Dk./s6#A2&Zc+>5Gl0esk84s2sM -%+>5Dk./s6#L+n?2+>5Gl0esk84s2sM+>5Dk./s6#LbOf;+>5Gl0esk84s2sM+>5Dk./s6#O"cbH+>5Gl0esk84s2sM+>5Dk./s8H -%&H5Gl0f'q94s2sM+>5Dk./s6#U+i;j+>5Gl0f1":4s2sM+>5Dk./s6#UbJSn+>5Gl0f1":4s2sM+>5Dk./s6#VD+kr+>5Gl -%0f1":4s2sM+>5Dk./s6#W%b/!+>5Gl0f1":4s2sM+>5Dk./s6#W\D:=+>5Gl0f1":4s2sM+>5Dk./s6#`%^7$+>5Gl0f1":4s2sM -%+>5Dk./s6#jtPpH+>5Gl0f1":4s2sM+>5Dk./s6#kV2BQ+>5Gl0f1":4s2sM+>5Dk./s6#mkF>^+>5Gl0f1":4s2sM+>5Dk./s6% -%+>Q;5+>5Gl0f1":4s2sM+>5Dk./s6%J24>X+>5Gl0f1":4s2sM+>5Dk./s6%cnbSL+>5Gl0f1":4s2sM+>5Dk./s6&!&I\*+>5Gl -%0f1":4s2sM+>5Dk./s6&EAMbe+>5Gl0f1":4s2sM+>5Dk./s6&J2?"1+>5Gl0f1":4s2sM+>5Dk./s6A!2$):+>5Gl0f1":4s2sM -%+>5Dk./s5H0E=*^+>5Gl0f:(;4s2sM+>5Dk./s5H+TQs?+>5Gl0fC.<4s2sM+>5Dk./s5HT`G*A+>5Gl0fC.<4s4,R5!C)Q4s3$Q -%+C-*C0d'[C4?O`>0H`%l5!C)p+?ht30/F_54kC!-J9Y!,hjT!,hj.!+>kF!,DRC!,DRW -%.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB4?O`>0H_r"2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n' -%0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`.-+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[ -%4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3' -%+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n'0/=Xurr4Yd.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR -%5!C)O4#3'+>5Jm./s8H>q$m[4s2sM+>5Gl/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&&# -%2'=P-+=R6h0F90N5!C)O4#3'+>5Jm./s6#$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4 -%+?ht34?O`>0d&'=P-+=R6h0G,`V5!C)O4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6hrsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9 -%+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM -%+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h&1J_c4s4,R5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C -%0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/ -%0/+MQ+>P&r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G[D2]uBK0/4S34>E%+>>E%+>>E%+C-*C -%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>P'!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*AS">p(dT+?Vb/0/+M245Dk>9G[D0ea_U+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o0d'aE0/4S34>E%+>>E%+>>E%+C-*C0d&7p -%5!C)Q4s3$Q+?Vb/0/+MQ+>P&o1*BjF0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;- -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Dk>9G[D0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q -%4s3$Q+?Vb/0/+MQ+>P&o2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht3>p)5Gl -%>9H$j+>5Dk>9G^E0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1E\Ir>p(dT+?Vb/ -%0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1E\D1+C-*C0d&S@ -%+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GaF0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1a"Xu>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk -%>9GaF0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S3 -%4p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GdG0d'aE0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8s+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB2'=[t>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2'?0I0/4S34>E%+>,Mo/i=bW+>5Gl0d&YD+?ht35!C)O4t?J+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG2]uBK0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9$+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=n%>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GPm>p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O4GSn>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GVo>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GYp>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O4G_r>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Gbs>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)p+?ht34?O`>0H`7r0/4SR+?Vb/0/+MQ+>t>s+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u* -%+C-*R4s3$Q+?ht34?O`>0HaRB2BXh!>p(dT+?Vb/0/+M24t?"+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`> -%0HaRB2BY"&>p(dT+?Vb/0/+M24t>s0HaXD0/4S34>E%+>>E%+>,Mo>p)GSn>p(dT+?Vb/0/+M24t>s1*BjF0/4S34>E%+>>E%+>,Mo>p)GYp>p(dT+?Vb/0/+M24t>s1a$'H0/4S34>E%+>>E%+>,Mo>p)G_r>p(dT+?Vb/0/+M245Dk>9GgH0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk2]sb.+BosN4G!E+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(E!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl -%1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(E# -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q -%4s3$Q+?Vb/0/+MQ+?(E'+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1*AbE+?ht35!C)O4GPm>p(dT -%+?Vb/0/+M245Dk>9GjI0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&% -%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt1E]sG0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]sh3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/ -%0/+M245Dk>9GjI0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u* -%+C-*C0d&4o5!C)Q4s3$Q+C-*R4s2sM+>5Dk3$9k/+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+?1K"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)k9I -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GmJ2]uBK0/4S34>E% -%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?1K'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GmJ0f1"Y+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2'?0I0/4S34>E%+>>E%+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB3$9q6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`> -%0H`@u0/4SR+?Vb/0/+MQ+?:Q!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3?U7'>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q)+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GpK0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

G_r>p(dT+?Vb/0/4S345Dk>9GpK0fC.[ -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0ea_'0d'[C4?O`>0HaRB0ea_)+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GXS+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXS+?1KL+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1*BjF -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0ea_)2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_)2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl -%1*AbE+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB -%0eje*2BZ9J0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0esk)0d'[C4?O`>0HaRB -%0esk++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GXU+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0esk+1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0esk+2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f'q.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S3 -%45Dk>9GXV+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0eskW+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp -%0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0fC.[+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f1"+0d'[C4?O`>0HaRB0f1"-+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXW+?(EK+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXW+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0f1"-0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0f1"-1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1, -%2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4G_r0/4SR+?Vb/0/+MQ+>G_r0d'aE0/4S34>E%+>>E%+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G_r1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>k9I+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G_r3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM -%+>5Dk0fC.-0d'[C4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`> -%0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht3 -%5!C)Q4s2sM+>5Dk>9GXY+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Mn0d&YD+?ht35!C)O4kC!-J9Y!,hjT!,hj.!+>kF!,DRC!,DRW.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB -%4?O`>0H_r"2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n'0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b) -%1*A"Eru`.-+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf< -%+?Vb/0/+M#/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3'+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n' -%0/=Xurr4Yd.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR5!C)O4#3'+>5Jm./s8H>q$m[ -%4s2sM+>5Gl/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&'=P-+=R6h0F90N5!C)O4#3' -%+>5Jm./s6#$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4+?ht34?O`>0d&'=P-+=R6h0G,`V -%5!C)O4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&&# -%2'=P-+=R6hrsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9 -%+>5Gl/M8e9+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h -%&1J_c4s4,R5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S34>E%+>,Mo/i=bW -%+>5Gl1E\kF+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk -%>9G[D1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD -%+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G[D3$;KL -%0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;*+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9G[D0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0eskW+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*A;/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0fC.[+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G^E0d'aE0/4S34>E% -%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>Y,t+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S3 -%45Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD -%5!C)Q4s3$Q+?Vb/0/+MQ+>Y-#+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT -%+?Vb/0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/ -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht3 -%5!C)p+?ht34?O`>0H`1p0/4SR+?Vb/0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9GaF2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>b3"+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1a"M1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E, -%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2BZ9J0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s4,R -%5!C)O4k8p0d'[C4?O`>0HaRB2'=Ur>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB2'=b!>p(dT+?Vb/0/+M24k9" -%+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=h#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG3?VTM0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0HaXD -%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0d'aE0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1*BjF0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>k8r1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1a$'H -%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2'?0I0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2BZ9J0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk2BXY-+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB2BXdu>p(dT+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S3 -%4>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM0/4S34>E%+>,Mo/i=bW+?ht3 -%5!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GSn>p(dT+?Vb/ -%0/+M240HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q -%4s3$Q+?Vb/0/+MQ+>t>s1E]sG0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G_r>p(dT+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`:s -%0/4SR+?Vb/0/+MQ+?(Dt+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1E]sG0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0eskW -%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+?1K$+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3$:.&>p(dT -%+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1K(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GmJ0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB3$9q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GmJ0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q -%5!C)Q4s3$Q+C-*R4s2sM+>5Dk3?Tt0+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%% -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3?U:(>p(dT+?Vb/0/4S345Dk>9GpK -%3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk -%>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht3 -%5!C)O4Gbs>p(dT+?Vb/0/4S34GPm0/4SR -%+?Vb/0/+MQ+>GPm0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/ -%0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I -%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXS+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk -%>9GXS+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0ea_)1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_) -%2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3) -%4s3$Q+?ht34?O`>0HaRB0eje*2BZ9J0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk -%0esk)0d'[C4?O`>0HaRB0esk++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXU+>Y-G -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E%+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q -%+?Vb/0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`> -%0HaRB0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C4?O`> -%0HaRB0f'q,+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXV+>Y-G+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GYp -%3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`),+>5Gl>9H$j+>5Dk>9GXW+>G!E+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S3 -%45Dk>9GXW+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q -%0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q -%5!C)Q4s3$Q+?Vb/0/+MQ+>G_r1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX -%+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q -%5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(. -%0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+= -%+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk0fC.-0d'[C4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q -%4s2sM+>5Dk>9GXY+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT -%+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB0fC.6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT -%+?Vb/0/4S345Dk>9GXY+>GPm>p(dT+?Vb/0/4S34Gbs0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM -%+>5Dk>9GXY+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht3>p)5Dk4?O`>0H_eCrr>OhGlVa_D#duEF9$@^FT>PE@/t'CFT?7YDZFYTDZEr@AH6TJCB.cCCB/K++>5Sp4?O`>0H`%l -%0/4S34#3'+>5Jm./s8H#Upl[4s2sM+>5Dk/M8n'0/=Xurr0H_r"2'=P-+=R6h+;cOM5!C)O4#3'+>5Jm./s5h*%5Dk/M8n'0/=Xurr4YX.3Lf<+?Vb/0/+M#/i=b) -%1*A"Es"Fd/+?ht34?O`>0H_r"2'=P-+=R6h0FTBQ5!C)O4#3'+>5Jm./s6#%OiMa4s2sM+>5Dk/M8n'0/=Xurr4Y`.3Lf< -%+?Vb/0/+M#/i=b)1*A"Es"G-9+?ht34?O`>0d&'=P-+=R6hrs:+s5!C)O4#3'+>5Jm./s8H4XhL;4s2sM+>5Gl/M8n' -%0/=Xurr<"(.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`1.+?ht34?O`>0d&'=P-+=R6h+<;mR5!C)O4#3'+>5Jm./s6##q6u\ -%4s2sM+>5Gl/M8n'0/=Xurr4Y[.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fm2+?ht34?O`>0d&'=P-+=R6h0FoTT5!C)O4#3' -%+>5Jm./s6#&Lehd4s2sM+>5Gl/M8n'0/=Xurr4Ye.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NQX+?ht34?O`>0d&'=P-+=R6h0EN[G -%5!C)O4#3'+>5Jm./s8H$n3;_4s2sM+>5Gl/M8n'0/=Xurr4YQ.3Lf<+?Vb/0/+M#/i#:,0/4S$/i#:,0/=XurrFul0d'[C4?O`>0HaRB0d&=r>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)p+?ht34?O`>0H`+n0/4SR+?Vb/0/+MQ+>P&o+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1*BjF0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q -%4s3$Q+?Vb/0/+MQ+>P&q+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1a$'H0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M, -%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G[D2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/ -%0/+MQ+>P'!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D3?VTM0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GPm>p(dT+?Vb/0/+M24P&o0d'aE0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o -%1*BjF0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GYp>p(dT+?Vb/0/+M24P&o1a$'H0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4G_r>p(dT+?Vb/0/+M24P&o2BZ9J0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Get>p(dT+?Vb/0/+M24p)5Gl>9H$j+>5Dk>9G^E0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF -%+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,t+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>Y-#+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>Y,p1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG -%+?ht35!C)O4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`1p -%0/4SR+?Vb/0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GaF2'?0I0/4S3 -%4>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>b3"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1a"M1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q -%+?Vb/0/+MQ+>b2q2BZ9J0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4k8p0d'[C -%4?O`>0HaRB2'=Ur>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4P'F+>5Gl4?O`> -%0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1E]sG0/4S34>E%+>,E,+>,E, -%+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB2'=b!>p(dT+?Vb/0/+M24k9"+C-*C0d&S@+>5Dk4?O`> -%0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=h#>p(dT+?Vb/0/+M245Gl -%0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG -%3?VTM0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0HaXD0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0d'aE0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1*BjF0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r -%1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2BZ9J0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk -%2BXY-+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT -%+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E% -%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH -%0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GSn>p(dT+?Vb/0/+M240HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s -%1E]sG0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p)G_r>p(dT+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1a"tG+?ht35!C)O4Get>p(dT+?Vb/0/+M24p)5Gl>9H$j+>5Dk>9GjI0d'aE0/4S34>E%+>,Mo -%/i=bW+>5Gl1*AbE+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`> -%0HaRB2]sq">p(dT+?Vb/0/+M245Dk4?O`> -%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl -%1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]t+' -%>p(dT+?Vb/0/+M24>E% -%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4G\q>p(dT+?Vb/ -%0/+M24>E%+>,Mo/i=bW -%+>5Gl1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O40HaRB3$9pu>p(dT -%+?Vb/0/4S345Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk -%>9GmJ2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?1K'+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+?1Ju0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q2+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GmJ0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2'?0I0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3$9q6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`@u0/4SR+?Vb/0/+MQ+?:Q!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9GpK1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U1% -%>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GpK3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U=)>p(dT+?Vb/0/4S345Dk>9GpK0ea_U+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB3?U%4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/ -%0/4S345Dk>9GpK0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34GPm -%1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0ea_/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB0ea_0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/ -%0/4S345Dk>9GXS+>GPm>p(dT+?Vb/0/4S345Dk>9GXS+>GVo>p(dT+?Vb/0/4S345Dk>9GXS+>GYp -%>p(dT+?Vb/0/4S345Dk>9GXS+>G\q>p(dT+?Vb/0/4S345Dk>9GXS+>G_r>p(dT+?Vb/0/4S345Dk>9GXS+>Gbs>p(dT+?Vb/0/4S34GSn0/4SR+?Vb/ -%0/+MQ+>GSn2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GSn2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S++?ht35!C)Q4s2sM+>5Dk>9GXT+>Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p -%+?ht34?O`>0H`)*+>5Gl>9H$j+>5Dk>9GXU+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`> -%0HaRB0esk-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl -%1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+?:QM -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>GVo0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f1"Y+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht3 -%5!C)Q4s2sM+>5Dk>9GXU+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)+ -%+>5Gl>9H$j+>5Dk>9GXV+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f'q.+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%4p(dT+?Vb/0/4S345Dk>9GXV+?:QM+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f'qX+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>GYp0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f1"+0d'[C4?O`>0HaRB -%0f1"-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXW+>Y-G+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>G\q2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3$;KL -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f1"-2BZ9J0/4S3 -%4,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f:(,0d'[C4?O`>0HaRB0f:(.+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXX+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1, -%1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB0f:(2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f:(4+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f:(5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXX+>GPm>p(dT+?Vb/0/4S34G_r0eskW+>5Gl4?O`>0d&S@ -%+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`).+>5Gl>9H$j+>5Dk>9GXY+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB0fC.1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>k9I+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXY+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD -%0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXY+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC./0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3) -%4s3$Q+?ht34?O`>0HaRB0fC./1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s4,R5!C)Q -%4s2L7+>b3)4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H=TDk1CB/JWD#eJSD?+ST=o`+6D?+GP@/t'CFX\Fd2'>"D+>5Dk0H`#'+?Vb/ -%0/+MQ+?Vb/0/+M#/i=b)1*A"Es8N?R+?ht34?O`>0H_r"2'=P-+=R6hs#VYP5!C)O4#3'+>5Jm./s8H>:C[Y4s2sM+>5Dk -%/M8n'0/=Xurr4)X.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`:1+?ht34?O`>0H_r"2'=P-+=R6h0F0*M5!C)O4#3'+>5Jm./s6# -%$7R)]4s2sM+>5Dk/M8n'0/=Xurr4Y\.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fp3+?ht34?O`>0H_r"2'=P-+=R6h0G#ZU5!C)O4#3'+>5Jm./s6#'Ib.g4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6h -%s'7&r5!C)O4#3'+>5Jm./s5h)(?[l4s2sM+>5Gl/M8n'0/=Xurr4)].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fa.+?ht34?O`> -%0d&'=P-+=R6h0FK#3'+>5Jm./s6#%4ND`4s2sM+>5Gl/M8n'0/=Xurr4Y_.3Lf<+?Vb/0/4S$/i=b)1*A"E -%s"G$6+?ht34?O`>0d&'=P-+=R6h0GQ#Z5!C)O4#3'+>5Jm./s8H%OiMa4s2sM+>5Gl/M8n'0/=Xurr4YR.3Lf<+?Vb/ -%0/4S$/i=b)1*A"Es8NKV+?ht34?O`>0d&'=P-+=R6h0EEUF5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru*=/5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru3C05!C)O4#3$2'=P,+>#3$2'=P-+=R6h0`*:A5!C)O4#3$2'=P,+>#3$2'=P- -%+=R6h+:otE5!C)p+?ht30/=Y445Gl>9H$j+>5Dk>9GXC2'?0I0/4S34,E, -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk1*A5)+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O -%4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*ACr>p(dT+?Vb/0/+M2 -%4P&s+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB1*ALu>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AS">p(dT+?Vb/0/+M24P&o0HaXD0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4GSn>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4GVo>p(dT -%+?Vb/0/+M24P&o1E]sG0/4S34>E%+>,Mo -%/i=bW+>5Gl1E\kF+?ht35!C)O4G\q>p(dT+?Vb/0/+M24P&o2'?0I0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Gbs>p(dT+?Vb/0/+M2 -%4P&o2]uBK0/4S34,Mo/i=b(2'?0I5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk1E\>*+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB1E\Ir>p(dT+?Vb/0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E -%0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB1E\D1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j -%+>5Dk>9GaF0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C -%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk -%>9GaF0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ -%+>k8r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S( -%+?ht35!C)Q4s2sM+>5Dk>9GdG1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9! -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E, -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB2'=k$>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0fL4\+>5Gl -%4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I5!C)Q4s3$Q+C-*R4s2sM+>5Dk2BXY-+BosN4G!E+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M2 -%45Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD -%0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM -%0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p)GSn>p(dT+?Vb/0/+M240HaRB2BX_0+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1E]sG0/4S34>E%+>,Mo/i=bW -%+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G_r>p(dT -%+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo -%/i=bW+>5Gl1a"tG+?ht35!C)O4Get>p(dT+?Vb/0/+M24,Mo>p) -%0H`:s0/4SR+?Vb/0/+MQ+?(Dt+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1E]sG -%0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O -%45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI -%0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh6+C-*C0d&S@+>5Dk4?O`>0HaRB/i=b(2'=M/ -%+C-*R4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF -%+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1K$+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3$:.&>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+?1K(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GmJ0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+?1Ju1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q4+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GmJ0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk3?Tt0 -%+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/ -%0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%3?U:(>p(dT+?Vb/0/4S345Dk>9GpK3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U%6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/ -%0/4S34GPm0/4SR+?Vb/0/+MQ+>GPm0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXS -%+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXS+?1KL+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)2'?0I -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_)2BZ9J0/4S34>E% -%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht3 -%5!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0eje*2BZ9J -%0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0esk)0d'[C4?O`>0HaRB0esk++C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXU+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C4?O`>0HaRB0f'q,+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXV+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2]uBK -%0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GYp3$;KL0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`),+>5Gl>9H$j+>5Dk>9GXW+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q -%0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ -%1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG -%+?ht35!C)p+?ht34?O`>0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r1a$'H -%0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht3 -%5!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3?VTM -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.0HaXD0/4S34>E% -%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0fC.-0d'[C -%4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXY+>Y-G+>5Gl4?O`> -%0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3 -%4?O`>0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5 -endstream endobj 25 0 obj <>stream -%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0fC.6+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXY+>GPm>p(dT+?Vb/0/4S34Gbs0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>G\q>p(dT+?Vb/0/4S3 -%45Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)/+>5Gl>9H$j+>5Dk>9GXZ+>G!E+>5Gl4?O`>0d&S@ -%+>5Dk>9GOU+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O4Ghu0/4SR+?Vb/0/+MQ+>Ghu0d'aE0/4S34,Mo -%/i=b(2'?0I5!C)Q4s3$Q+C-*R4s4,R5!C)Q4s2L7+>P''4s3$Q+?ht3>p(dT+BosN4=p%4s2sM+>5Dk0d&YD+?Vb/0/+M( -%+?ht34?O`>0H`.o5!C)p+?ht30/Oe64kJ!+[N$0/Xk74I.0(n!/c[p4 -%3rhJF>l]9QU*(-m)'BqB0HgNA#quB6!\ad3#qu`@%58;H&MOqR5qkY[75.4c8MFX.K.r!5LG4`BRkU?dSM6WhTeN5qV(ef$WA)4D -%j"TRKk:l5Gl./s5H>UTSV!.+^@!2gqV+<3'@0FBKB0FfcJ0G6&Rrr`9( -%rs8WIs#^6bs5b[P0/=Xurr4)T+=/-W.3L9"+=R6h0EEj/rs\o;.3L9#+>G!&4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H;ZL_9AcQp% -%+>5Sp4?O`>0H_eCru`1%*A@LJ!\ad3#qu`@%58;H&MOqRSM6Whq_7t&rr3$!$3(G6%f[II)uh#[4o\e:+>5Gl./s5h(a'eP#VZT> -%$nr/F&24gu#ld!d>:C[J1*A"Eru`!u,p4N`+>5Mn./s6#!AFTT%0$ed+>5Po1*AbE+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+?Vb/ -%0/+M'+?ht3>p)5Sp4?O`>0HaRB4?O`>0H`J?+>5Dk./s5H>6%CuDZFeXD#duEC]J#HEr[<_=o`+6B`MWCBE2TDD?+8KDZFeX -%D#duEF9#Sq+>5Vq4?O`>0H`+n0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr0eP.&0/t(. -%+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0+D,%uF(HII -%1,'hmEckq90/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C-AmoLsAKWW]2BZU?Cia/10/>I/FE2M8+>5K0 -%+D,%uF(HII1-$Ih@;L!r+>5N)+>=ok1GL"a@;L!r+>5N++D,%uF(HII1G^.c@;L!r+>5N-+D,%uF(HII1Gp:0+>5N/+>>E%+>5N0 -%+>P&m1H6L61*A5+3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b84s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#* -%3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ -%0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD -%5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%uF(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9 -%Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q -%0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)f -%Ch6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p -%+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kL!*q#r0/Xk74=ok0d&/&0H`#(+>>E%+>5Mn0J5%%0/Oe*/heD$2'=S*0H`#,+>Ful2]sh-1*A50+>=ok -%3?WEaF_)[K0ea_.+>5H(+>P&m0esk,+>5H*+>=ok0f1"/2D-[+0/5=,FE2M8+>5H-+>,Mo0/5C.>9GOX+>GK&+>GK)1E]sG0/5F/ -%>9GUP0H`&%0H`&%0HaXD0/5I0>9GXQ0H`)&0H`)&0HaXD0/>4(2BXY.0d((:Cia/10/>:*0H`#(1E^:@,0H`#(2'=Rq -%0/>I/05bK?+>5K.+D,%uF(HII1,pC0DJO1AmoLsAKWW^0H`J?+?ht30/G=*1H$j>+>5N++?Vb/5!C)B1G^.-+>5N-+>=ok -%1Gp:/+>5N/+>7VHC`kAe2]sds0/GR1AmoLsAKWW^3?U!u0/P@*1*AbE+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L<+?Vb/ -%0/+MQ+?Vb/0/+M242E3EL1a"b40ek::3AWNM+?);@2_I'I0f:j3 -%3&*-B/i,LD2)QL83B9#N3&NEJ2BXt60ek::3AWNM+?);@2_I'I0f:j33&*-B/i,LD2)QL83B9#N3&NEJ2BXt60ek::3AWNM+?);@ -%2_I'I0f:j33&!9J/iYdG0Jst33B9#N3&NEJ2BXt52`*-H2`!-F+?);@2_I'I0f:j33&!9J/iYdG0Jst33B9#N3&NEJ2BXt52`*-H -%2`!-F+?2241bL[G0fCj23&!9J/iYdG0Jst41bgg>2E3EL1a"b32`*-H2`!-F+?2241bL[G0fCj23&!9J/iYdG0Jst41bgg>2E3EL -%1a"b32`*-H2`!-F+?2241bL[G0fCj23&*-B/i,LD2)QL91bgg>2E3EL1a"b40ek::3AWNM+C-*R4s2L6+?Vb/0/+M'+>5Jm>9GXQ -%0H`&%0H`&%0H`)&0H`54/i#FC1c?I73%d'H2DI*4>p(dZ+>Gi.0H`#.+>Gi.0H`PC+?ht35!C)O43%cp>1,(R.3&*3%cp>1,(R.3&*3%cp> -%1,(R.3&*0I/i#4?1Gp:63B&oM0eb@:2'=k51,gg@1GpsG+?);>3%cp>1,(R.3&*0I/i#4?1Gp:71c$s@1c$gD2BXt61,gg@1GpsG -%+?2261bLU@0K(g33&*0I/i#4?1Gp:71c$s@1c$gD2BXt61,gg@1GpsG+?2261bLU@0K(g33&*0I/i#4?1Gp:71c$s@1c$gD2BXt6 -%2DZsE2)R?O+?2261bLU@0K(g33&*Ful1*BdD0eP.&0J5%%0J5%%0eP.&2)m3D3AWKM+>u23 -%2)[5Gl4?O`>0H`J?+>5Dk4?O`>0H`.o0/4SR+?Vb/0/+Lsrr2s@ -%.3L8u+=R6h!&5oF5!C)O45Gl./s5H2(9Y34s2sM+>5Dk./s5H"">?G0d%nDrr=o*+?ht34?O`>0H_eCs"FF%+>5Gl./s5H0e"5/4s2sM+>5Dk./s5HXXPAG -%0d%nDrr=i(+?ht3>p)5Gl0H`#(+>=ok1E\;-3&;[11a"D,1G^.,2'=M/3&;[12BXV.1G^.,2]s_3+>5\sFE2M8+>5_t>9H$j -%+>5Dk0H`#'+=R6h+<2gQ0/=Xurr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M'+>5Gl./s5h*@W*a1*A"Eru`=2+>5Mn -%./s5h)(?[]1a"4Gru`1.+?ht34?O`>0H`+n0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Y,n -%0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1a"G++=R6h+5Gl./s5h*[r3b1*A"Eru`:1+>5Mn./s5h)CZd^1a"4Gru`.-+?ht34?O`>0H`7r0/4Rtrr2u! -%.3L9!+=R6h!4s[&0/F_!rr4*$.3L9#+=R6h+?Cqo5!C)O45Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk3$9k/+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M/+>5Gl./s5HX!o/E1*A"E -%rrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`)*+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht3 -%4?O`>0H`)++>5Gl./s5h*@W*a1*A"Eru`=2+>5Mn./s5h)(?[]1a"4Gru`1.+?ht34?O`>0H`),+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`)-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`> -%0H`).+>5Gl./s5h*@W*a1*A"Eru`=2+>5Mn./s5h)(?[]1a"4Gru`1.+?ht34?O`>0H`)0+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn -%./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`,++>5Gl./s5h*[r3b1*A"Eru`:1+>5Mn./s5h)CZd^1a"4Gru`.-+?ht34?O`>0H`,, -%+>5Gl./s5h*[r3b1*A"Eru`=2+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`,.+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h -%3@Q((1a"4Grua?O+?ht34?O`>0H`,1+>5Gl./s5h*[r3b1*A"Eru`=2+>5Mn./s5h)(?[]1a"4Gru`1.+?ht34?O`>0H`,2+>5Gl -%./s6#*@W*a1*A"Es"GKC+?ht34?O`>0H`/*+>5Gl./s6#$n3;P1*A"Es"Fm2+?ht34?O`>0H`)(+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`))+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`> -%0H`)/+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`)1+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn -%./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`,)+>5Gl./s5h*[r3b1*A"Eru`:1+>5Mn./s5h)CZd^1a"4Gru`.-+?ht34?O`>0H`,* -%+>5Gl./s5h*[r3b1*A"Eru`:1+>5Mn./s5h)CZd^1a"4Gru`.-+?ht34?O`>0H`,-+>5Gl./s5h*[r3b1*A"Eru`=2+>5Mn./s5h -%)CZd^1a"4Gru`1.+?ht34?O`>0H`,/+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`,0+>5Gl -%./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`/++>5Gl./s5h*[r3b1*A"Eru`:1+>5Mn./s5h(b$R\ -%1a"4Gru`1.+?ht34?O`>0H`/,+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`/-+>5Gl./s5h -%*[r3b1*A"Eru`:1+>5Mn./s5h)CZd^1a"4Gru`.-+?ht34?O`>0H`/.+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h(b$R\1a"4G -%ru`1.+?ht34?O`>0H`//+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`/0+>5Gl./s5h*[r3b -%1*A"Eru`:1+>5Mn./s5h)CZd^1a"4Gru`.-+?ht34?O`>0H`/1+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h(b$R\1a"4Gru`1. -%+?ht34?O`>0H`/2+>5Gl./s5h*[r3b1*A"Eru`:1+>5Mn./s5h)CZd^1a"4Gru`.-+?ht34?O`>0H`/3+>5Gl./s5HX!o/E1*A"E -%rrBY[+>5Mn./s5H4=MC+1a"4Grr>53+?ht34?O`>0H`2++>5Gl./s5h*[r3b1*A"Eru`:1+>5Mn./s5h)CZd^1a"4Gru`.-+?ht3 -%4?O`>0H`2,+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5H4=MC+1a"4Grr>53+?ht34?O`>0H`2-+>5Gl./s5h*[r3b1*A"Eru`:1 -%+>5Mn./s5h)CZd^1a"4Gru`.-+?ht34?O`>0H`2.+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`> -%0H`2/+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h3@Q((1a"4Grua?O+?ht34?O`>0H`20+>5Gl./s5h*%5Mn -%./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`21+?ht34?O`>0H`22+?ht34?O`>0H`23+?ht3>p(dT0d&@s0/5=,4?O`>0H_eCrr>Ri -%FT?:ZEr^.ZAH6NHCagJj4s2L52BZU?Cia/15!C)B0d'[C4?O`>0H`J?+>5Dk./s5H70$6d9E7Wa:&n5n+94_.5lag`70"G16NBm^ -%:&m``8H;6\%4NDQ2'>"D+>5Dk>9H$j+>5Dk4?O`>0H`J?+>5Dk./s5q+>5Sp4?O`>0d&/&0H`#(+>>E%+>5Mn0J5%%0/Oe*/heD$ -%2'=S*0H`#)0H`J?+?ht30/G=*1,COA2BXY/1E\@o0/GI.0H`PC+>5Vq0H`PC+?ht30/4S(3?ULL+C-*R4s2L:+?Vb/0/+MQ+?Vb/ -%0/+M245Vq4?O`>0H`%l0/4S+2_HsC+>5Vq0eP.&00(.//heD$2)?@;45Gl>9GXQ0H_u'3B/]L+>,H+2_m65/i5:?2E;mc+?ht35!C)B2)ZS! -%Eckq90/bX00eb46+>5Z6+?Vb/00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>GK&+>GK&+>>E%+C-*R4s3$Q+>5]4 -%+?Vb/00)$802lS%E,9)QF`VYCD+8)FFEMV8+?ht35!C)Q4s3$Q+>5Gl0f^@?4s4,R5!C)B0ea_44b2o1*C[ZF_)[Z4s3$Q -%+>5Gl4?O`>0HaRB4?O`>0H`(m5!C)p+>5Jm>9H$j+>5`8+>6PY+>5Sp0H`#,+BosN45H'+>Ful0H`J?+>5Dk>9Gjb -%2`NEE0JY=>+?2)22_HjA2)@*4>p)5Gl>9GUP0H`&%0H`202D-d@3&WK61H$jC1,(R?+C-*C2'=Xs0/aqW+?Vb/00)$802`oG -%0d'[C0J5%%0J5%%1c70D1GUpJ0d&81/i>C<2)-4Z+>5Vq>9H$j+>5`8+>6V80/4SR+>>E%+>>E%+>br6/i,7B2DH=12D-jB0JtR- -%>p(dX+>P&m2BZ3H4?O`>3B8389HYuC0H`/-/ib[H2`Dj40f1")1H@'E1bgsM+>5H,+>GQ&0fD$K3?Tt/+?Vb/0/+MQ+>>E%+>Yf+ -%3ANQQ2]uBK5!C)B0d'[C0J5%%/MfC>1c-pF3?U.92D-d@3&WK60eb472E3B838;]m_J2'>"D+>5Dk0f^@0 -%1*A7n0/Xka@;L!r+?ht30/aqW+?Vb/00)$801R-<0d'[C0J5%%/MfC>1c-pF3?U.91bLdG1,^s30eb472Ebhr1cHO71E\Cp1Gp:21a"Y2+>Yu"0d&81+>ccHO53?U.6+>bbp0d'aE0/t(Y+?);>3%cp>1,(R.3&*0C/iPO@0fL47 -%1c$p?0Jt[F3?U:92_cp@1G^m2>p(d\+BosI3B&oM0eb@:2'=k51,1C?1,:RC+?2281+k:83AWW;3&*?H/i,:>2'?0I0/51(FE2M8 -%+>5H)+>#B0/i5C>2E;m50f'q,0J5(<3A``=0/>4(0H`PC+C-*R4s4,R5!C)p+?ht3>p)>E%+>5Po0J5%%0/Xk+/heD$1GBq645N*+>P`*2`;d31G^.-+>5N.+>=p%4s2L: -%+>=p%4s3$Q+>5Gl0fU:>4s4,R5!C)B2BY+E+>5Dk>9H$j+>5Dk4?O`>0H`J?+>5Dk./s5q+>5Sp0H`#,+?Vb/0/+M&+>5Gl1cI$E -%1*A5.+>GK&+>5_t0J5%%0/YO.4?O`>3B8386U=:CAU&;n@;0V$+>5Sp./s5H5lbd&DZFYT+94D%0e"4u0H`J?+>5Dk0d&,(+BosC -%/heD#1-%,K*2)[H;>p)5W0+>GQ&0H`#-3?UFH+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`)&0H`)&0H`&%0HaXD5!C)Q4s2L<2BY+E+>5`8+>6Z-D/a<&6ZmHlDf%sT@Ghu5!C)p+?ht30/5.'4?O`>0H`1p0/=YlEckq95!C)Q4s2L5+?Vb/0/+MQ+?Vb/0/+M&+?ht3>p(dU+BosN4 -%+>=ok2BZ3H4?O`>3B8387Na?=0H`%l0/+M24Yo.2)6jC0d'aE0/Xk-+>5Vq>9H$j+>5`8+>6V80/4SR+>>E%+>>E%+>bf2/iYX@0K:122D-jB0JtR->p(dY+BosN45Gl>9GUP0H`&%0H`2,2D-sF0JGI/1H$jC1,(R?+C-*C2'=Xs0/aqW+?Vb/00)$802*KA0ea_+1G1[C3&`c=0/5:+/MfC> -%1c-pH3?Tt02'=V-/ho7E1cZ[30H`J?+>5Dk>9GUP0H`/-/ib[H2`Djb+?ht30/4SR+>>E%+>#B0/i5C>2E;m:0fCXD1GCLB+>GQ& -%0fD$K3?VTM0/aqW+?Vb/00)$802iuH0f:(94Ghu0/=Y(+>5SpAmoLsAKX0#+>5Vq>9H$j+>5`8+>65-0/4SR+>>E%+>#B0 -%/i5C>2E;m:0f(FA1cIGQ&0fD$K3?VTM0/XkV+>Yhs2)-402BXk5+>bhr1H$@1+>bhr1H$@33$9pu2)6:31E\P3+>Yr!1bp11 -%3$9pu>p(d[+BosI3B9#N1,q!I1a"b32E5_t>9Gjb3B&QG3&*?K+?2&53A**F -%3B/o>3&EEF/iPXD3ADX90ekX?3B&ZI3?VTM0/51(FE2M8+>5H)+>#B0/i5C>2E;m50f'q,0J5(<3A``=0/>4(0H`PC+C-*R4s4,R -%5!C)p+?ht3>p)5Jm4?O`>0H`+n0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW` -%+>Pl.0H`#,+>GK&+>5Yr0eP.&0/t(.+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C. -%0J5%%0/5F/FE2M8+>5H0+D,%uF(HII1,'hmEckq90/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C-AmoLs -%AKWW]2BZU?Cia/10/>I/FE2M8+>5K0+D,%uF(HII1-$Ih@;L!r+>5N)+>=ok1GL"a@;L!r+>5N++D,%uF(HII1G^.c@;L!r+>5N- -%+D,%uF(HII1Gp:0+>5N/+>>E%+>5N0+>P&m1H6L61*A5+3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b84s2L8 -%1a"Or0/PO/1*A5,2BXq$0/PU10H`#*3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z-D/a<& -%:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%uF(HII -%2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3>9I2o -%0/bd40H`#,3?U!u0/kR-0H`#-0d&:q0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_F_)[K -%2`Mq%Eckq90/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B3&_s7 -%0JG+5+>5]6+EVXHAKX0#+>5Mn4?O`>0H`%l0/4S'/heD$1*A8'0H`#)+>>E%+>5Po0J5%%0/Xk+/heD$2BX^s0/k"./i"P&3$9mt -%00(.sEckq90/5.'2BXY-0d&4o0/54)1*A5)1E\@o0/5:+1H$j>+>5H,+EVXHAKWW\2BXV0+>5H.+Bos@3$9q.0H`)&1G^.Z+>5H/ -%+BosB/heD%/heD%/heDR+>5H0+BosC/heD&/heD&/heDR+>5K(+>t>q1,0n`@;L!r+>5K*+>=ok1,C%b@;L!r+>5K,+>=ok1,U1. -%+>5K/+>7VHC`kAd2BZU?Cia/10/>L005bK?+>5K1+D,%uF(HII1GBq645N*+>Yo.0H`#)1*A\A+?ht30/GC,0H`#)1a"Ip -%0/GI.0H`#)2BXYjBl"nF1H-F1+>5N1+D,%uF(HII1H?R3+>5Q*+>P''4s3$Q~> -7747 7891 /RulerOrigin , -; -/AI11UndoFreeTextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H9`TG= -%EWBeR@/sg5Jm0H`PC+?ht35!C)p+?ht30/Xk74kD -%!$D8/!,)@@!-/'J!+Q"N!+c.N!$D8?!-A3d!,MXH!*q#r0/aq84Ful0d&2+/heD$1*C1;Cia/10/F__@;L!r+>5PoFE2M8 -%+>5Sp1,gg>+>5Vq0eP.&0/k"./heD$3$9mt00(.//heD$0ea_(/heD$0eje*+>5H)+>=ok0f'q++>5H++>=ok0f:(-+>5H-+>=ok -%0fL4//heD$0fU:tEckq90/5I0AmoLsAKWW]0Hat9Cia/10/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C- -%AmoLsAKWW]2BZU?Cia/10/>I/AmoLsAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l0/G=*AmoLsAKWW^1*C1;Cia/10/GC,AmoLs -%AKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR10H`#)3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b8 -%4s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#*3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z- -%D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%u -%F(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3 -%>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_ -%F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B -%3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kH!,)?T!)il>!-nQ\!+c.9.3L9$+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#* -%+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K -%0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLs -%AKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L7 -%0d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ0H`%l5!C)p+?ht35!C)B0d&S@+>5Dk4?O`>0H`J?+>5Dk0H`#'+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R -%5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\ -%.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h -%)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"E -%rrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O -%4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9" -%+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t -%0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nD -%ru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2 -%+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm -%./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l18 -%4s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6# -%*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1 -%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm -%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+,0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l -%4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h -%*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nDru`@3+>5Jm./s5h*%5Po./s5h)(?[l4s2sM -%+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L1 -%0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1 -%+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nD -%rrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K -%+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9# -%+?ht30/5@-AmoLsAKX0#+>5Jm4?O`>0H`(m0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr -%0eP.&0/t(.+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0 -%+D,%uF(HII1,'h_@;L!r+>5K)+D,%uF(HII1,9ta@;L!r+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/ -%+D,%uF(HII1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful -%1H$@0/heD$1H-F3+>5N1+>=ok1H?R3+>5Q*+D,%uF(HII1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8 -%+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4-+>5T-+D,%uF(HII2)?@;45Dk -%0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF<45Dk0d&,(+BosC/heD%/heD% -%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%u -%F(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z- -%+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/ -%00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW( -%+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$802lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z -%4s2L7+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q -%0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%% -%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLsAKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e -%@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L70d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ -; -%AI11_EndTextDocument -%%EndSetup -%AI5_BeginLayer -1 1 0 1 0 0 1 0 79 128 255 0 50 0 Lb -(repository-hero) Ln -%_/ArtDictionary : -%_/XMLUID : (repository-hero) ; (AI10_ArtUID) , -%_; -%_ -1 A -0 Xw -0 A -u -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -0 /StoryIndex , -/Art : -X= -0 A -0 Xw -1 Ap -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -745.7246 -341.3213 m -289.395 -341.3213 L -289.395 -304.8008 L -745.7246 -304.8008 L -745.7246 -341.3213 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (text-eslint-src) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -315.4341 -336.9238 m -315.4341 -338.7305 L -292.3892 -338.7305 L -292.3892 -304.8037 L -315.1968 -304.8037 L -315.1968 -306.6094 L -294.4795 -306.6094 L -294.4795 -320.1992 L -313.9614 -320.1992 L -313.9614 -322.0039 L -294.4795 -322.0039 L -294.4795 -336.9238 L -315.4341 -336.9238 l -f -*U -*u -341.1421 -314.4971 m -340.9048 -308.6992 336.5332 -305.8008 330.2612 -305.8008 c -326.4121 -305.8008 320.9478 -307.417 320.9478 -313.0234 c -320.9478 -318.4883 326.7451 -319.3906 332.4941 -320.5791 c -338.2915 -321.7666 344.0884 -323.2402 344.0884 -329.9863 c -344.0884 -337.0195 337.3408 -339.5371 332.1616 -339.5371 c -324.2266 -339.5371 317.7646 -336.2598 317.8594 -327.5156 c -319.9502 -327.5156 L -319.5225 -334.9287 325.4619 -337.7324 332.1616 -337.7324 c -336.248 -337.7324 341.9976 -335.8789 341.9976 -329.9863 c -341.9976 -324.2383 336.2007 -323.2402 330.4038 -322.0518 c -324.6543 -320.8633 318.8574 -319.4863 318.8574 -313.0234 c -318.8574 -306.5137 324.8916 -303.9961 330.2612 -303.9961 c -337.3408 -303.9961 342.9004 -307.0371 343.2329 -314.4971 C -341.1421 -314.4971 l -f -*U -*u -348.937 -304.8037 m -351.0273 -304.8037 L -351.0273 -336.9238 L -370.2715 -336.9238 L -370.2715 -338.7305 L -348.937 -338.7305 L -348.937 -304.8037 l -f -*U -*u -372.6968 -304.8037 m -374.7871 -304.8037 L -374.7871 -338.7305 L -372.6968 -338.7305 L -372.6968 -304.8037 l -f -*U -*u -380.7749 -304.8037 m -383.3882 -304.8037 L -404.8179 -335.9268 L -404.9126 -335.9268 L -404.9126 -304.8037 L -407.0034 -304.8037 L -407.0034 -338.7305 L -404.5327 -338.7305 L -382.9604 -307.3691 L -382.8652 -307.3691 L -382.8652 -338.7305 L -380.7749 -338.7305 L -380.7749 -304.8037 l -f -*U -*u -409.3345 -306.6094 m -409.3345 -304.8037 L -435.3257 -304.8037 L -435.3257 -306.6094 L -423.3516 -306.6094 L -423.3516 -338.7305 L -421.2607 -338.7305 L -421.2607 -306.6094 L -409.3345 -306.6094 l -f -*U -*u -450.8662 -304.8037 m -464.4551 -304.8037 L -472.5332 -304.8037 475.1465 -309.2227 475.1465 -313.5938 c -475.1465 -317.2529 472.4863 -320.3418 468.542 -320.8164 c -468.6367 -320.9121 L -469.5391 -320.7695 476.2871 -322.3848 476.2871 -329.2266 c -476.2871 -335.4043 471.5352 -338.7305 464.4551 -338.7305 c -450.8662 -338.7305 L -450.8662 -304.8037 l -f -1 D -452.957 -320.1992 m -464.4551 -320.1992 L -470.1094 -320.1992 473.0566 -317.3477 473.0566 -313.2139 c -473.0566 -308.3203 468.9697 -306.6094 464.4551 -306.6094 c -452.957 -306.6094 L -452.957 -320.1992 l -f -452.957 -336.9238 m -464.4551 -336.9238 L -470.4424 -336.9238 474.1963 -334.2637 474.1963 -329.2266 c -474.1963 -323.4297 468.9219 -322.0039 464.4551 -322.0039 c -452.957 -322.0039 L -452.957 -336.9238 l -f -*U -*u -0 D -493.1572 -304.8037 m -506.5566 -338.7305 L -504.3242 -338.7305 L -500.0469 -327.8486 L -483.7969 -327.8486 L -479.4727 -338.7305 L -477.2393 -338.7305 L -490.877 -304.8037 L -493.1572 -304.8037 l -f -1 D -499.3818 -326.043 m -492.1113 -306.8467 L -492.0166 -306.8467 L -484.4619 -326.043 L -499.3818 -326.043 l -f -*U -*u -0 D -531.125 -314.4971 m -530.8867 -308.6992 526.5156 -305.8008 520.2441 -305.8008 c -516.3945 -305.8008 510.9297 -307.417 510.9297 -313.0234 c -510.9297 -318.4883 516.7266 -319.3906 522.4766 -320.5791 c -528.2734 -321.7666 534.0703 -323.2402 534.0703 -329.9863 c -534.0703 -337.0195 527.3242 -339.5371 522.1445 -339.5371 c -514.209 -339.5371 507.7461 -336.2598 507.8418 -327.5156 c -509.9316 -327.5156 L -509.5059 -334.9287 515.4453 -337.7324 522.1445 -337.7324 c -526.2305 -337.7324 531.9805 -335.8789 531.9805 -329.9863 c -531.9805 -324.2383 526.1836 -323.2402 520.3867 -322.0518 c -514.6367 -320.8633 508.8398 -319.4863 508.8398 -313.0234 c -508.8398 -306.5137 514.875 -303.9961 520.2441 -303.9961 c -527.3242 -303.9961 532.8828 -307.0371 533.2148 -314.4971 C -531.125 -314.4971 l -f -*U -*u -561.9648 -336.9238 m -561.9648 -338.7305 L -538.9199 -338.7305 L -538.9199 -304.8037 L -561.7266 -304.8037 L -561.7266 -306.6094 L -541.0098 -306.6094 L -541.0098 -320.1992 L -560.4922 -320.1992 L -560.4922 -322.0039 L -541.0098 -322.0039 L -541.0098 -336.9238 L -561.9648 -336.9238 l -f -*U -*u -605.1602 -314.9238 m -604.2578 -309.2227 599.2695 -305.8008 593.6152 -305.8008 c -584.7285 -305.8008 579.5488 -313.0713 579.5488 -321.7666 c -579.5488 -330.4629 584.7285 -337.7324 593.6152 -337.7324 c -600.2188 -337.7324 605.3516 -331.8398 605.7305 -325.5205 c -607.8223 -325.5205 L -607.0605 -333.5977 601.0742 -339.5371 593.6152 -339.5371 c -583.4453 -339.5371 577.459 -331.6973 577.459 -321.7666 c -577.459 -311.8359 583.4453 -303.9961 593.6152 -303.9961 c -605.6367 -303.9961 607.2031 -314.4492 607.252 -314.9238 C -605.1602 -314.9238 l -f -*U -*u -626.8301 -339.5371 m -616.6621 -339.5371 610.6758 -331.6973 610.6758 -321.7666 c -610.6758 -311.8359 616.6621 -303.9961 626.8301 -303.9961 c -636.9512 -303.9961 642.9395 -311.8359 642.9395 -321.7666 c -642.9395 -331.6973 636.9512 -339.5371 626.8301 -339.5371 c -f -1 D -626.8301 -337.7324 m -635.6699 -337.7324 640.8477 -330.4629 640.8477 -321.7666 c -640.8477 -313.0713 635.6699 -305.8008 626.8301 -305.8008 c -617.9453 -305.8008 612.7656 -313.0713 612.7656 -321.7666 c -612.7656 -330.4629 617.9453 -337.7324 626.8301 -337.7324 c -f -*U -*u -0 D -647.4082 -304.8037 m -650.0215 -304.8037 L -671.4512 -335.9268 L -671.5469 -335.9268 L -671.5469 -304.8037 L -673.6367 -304.8037 L -673.6367 -338.7305 L -671.166 -338.7305 L -649.5938 -307.3691 L -649.498 -307.3691 L -649.498 -338.7305 L -647.4082 -338.7305 L -647.4082 -304.8037 l -f -*U -*u -681.7168 -322.0039 m -681.7168 -338.7305 L -679.627 -338.7305 L -679.627 -304.8037 L -700.9141 -304.8037 L -700.9141 -306.6094 L -681.7168 -306.6094 L -681.7168 -320.1992 L -699.0137 -320.1992 L -699.0137 -322.0039 L -681.7168 -322.0039 l -f -*U -*u -704.0508 -304.8037 m -706.1426 -304.8037 L -706.1426 -338.7305 L -704.0508 -338.7305 L -704.0508 -304.8037 l -f -*U -*u -741.5898 -322.0996 m -741.5898 -338.7305 L -739.7832 -338.7305 L -739.7832 -331.5078 L -739.6895 -331.5078 L -738.0254 -336.4492 732.8457 -339.5371 726.8594 -339.5371 c -716.5957 -339.5371 710.8945 -331.6973 710.8945 -321.957 c -710.8945 -312.3594 716.6914 -303.9961 726.9063 -303.9961 c -733.8926 -303.9961 739.832 -308.2246 741.0195 -315.3047 c -739.0234 -315.3047 L -737.4551 -309.4609 733.1309 -305.8008 726.9551 -305.8008 c -717.7832 -305.8008 712.9844 -313.499 712.9844 -321.957 c -712.9844 -330.6055 717.6406 -337.7324 726.9551 -337.7324 c -735.0332 -337.7324 740.1172 -332.2207 739.7832 -323.9043 c -727.2871 -323.9043 L -727.2871 -322.0996 L -741.5898 -322.0996 l -f -*U -U -%_/ArtDictionary : -%_/XMLUID : (text-eslint) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -1 /StoryIndex , -/Art : -X= -0 A -0 Xw -1 Ap -725.9746 -288.96 m -309.145 -288.96 L -309.145 -252.4404 L -725.9746 -252.4404 L -725.9746 -288.96 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (text-arcticicestudio-src) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -324.4927 -252.4414 m -337.8921 -286.3682 L -335.6587 -286.3682 L -331.3823 -275.4863 L -315.1318 -275.4863 L -310.8081 -286.3682 L -308.5747 -286.3682 L -322.2119 -252.4414 L -324.4927 -252.4414 l -f -1 D -330.7173 -273.6816 m -323.4473 -254.4844 L -323.3521 -254.4844 L -315.7974 -273.6816 L -330.7173 -273.6816 l -f -*U -*u -0 D -340.3174 -252.4414 m -354.4771 -252.4414 L -360.4165 -252.4414 365.2153 -254.627 365.2153 -261.1846 c -365.2153 -265.7461 362.4595 -269.1201 357.9458 -269.8799 c -357.9458 -269.9746 L -362.9824 -270.5449 364.2178 -273.7285 364.5503 -277.2451 c -364.8828 -280.7607 364.313 -284.5625 365.6909 -286.3682 c -363.3623 -286.3682 L -362.0796 -284.04 362.8398 -280.1436 362.4595 -276.8652 c -362.0317 -273.5859 360.4165 -270.9248 354.4771 -270.9248 c -342.4077 -270.9248 L -342.4077 -286.3682 L -340.3174 -286.3682 L -340.3174 -252.4414 l -f -1 D -354.4771 -269.1201 m -359.4185 -269.1201 363.125 -266.791 363.125 -261.3271 c -363.125 -256.1953 359.0386 -254.2471 354.4771 -254.2471 c -342.4077 -254.2471 L -342.4077 -269.1201 L -354.4771 -269.1201 l -f -*U -*u -0 D -396.6729 -262.5625 m -395.77 -256.8604 390.7813 -253.4395 385.1265 -253.4395 c -376.2412 -253.4395 371.062 -260.709 371.062 -269.4043 c -371.062 -278.1006 376.2412 -285.3701 385.1265 -285.3701 c -391.7314 -285.3701 396.8633 -279.4785 397.2432 -273.1582 c -399.334 -273.1582 L -398.5737 -281.2363 392.5869 -287.1758 385.1265 -287.1758 c -374.9585 -287.1758 368.9712 -279.3359 368.9712 -269.4043 c -368.9712 -259.4736 374.9585 -251.6338 385.1265 -251.6338 c -397.1484 -251.6338 398.7163 -262.0869 398.7637 -262.5625 C -396.6729 -262.5625 l -f -*U -*u -400.0493 -254.2471 m -400.0493 -252.4414 L -426.0405 -252.4414 L -426.0405 -254.2471 L -414.0664 -254.2471 L -414.0664 -286.3682 L -411.9756 -286.3682 L -411.9756 -254.2471 L -400.0493 -254.2471 l -f -*U -*u -428.3706 -252.4414 m -430.4609 -252.4414 L -430.4609 -286.3682 L -428.3706 -286.3682 L -428.3706 -252.4414 l -f -*U -*u -462.8672 -262.5625 m -461.9648 -256.8604 456.9756 -253.4395 451.3203 -253.4395 c -442.4355 -253.4395 437.2563 -260.709 437.2563 -269.4043 c -437.2563 -278.1006 442.4355 -285.3701 451.3203 -285.3701 c -457.9258 -285.3701 463.0576 -279.4785 463.4375 -273.1582 c -465.5283 -273.1582 L -464.7676 -281.2363 458.7813 -287.1758 451.3203 -287.1758 c -441.1528 -287.1758 435.1655 -279.3359 435.1655 -269.4043 c -435.1655 -259.4736 441.1528 -251.6338 451.3203 -251.6338 c -463.3428 -251.6338 464.9102 -262.0869 464.958 -262.5625 C -462.8672 -262.5625 l -f -*U -*u -483.1133 -252.4414 m -485.2031 -252.4414 L -485.2031 -286.3682 L -483.1133 -286.3682 L -483.1133 -252.4414 l -f -*U -*u -517.6094 -262.5625 m -516.707 -256.8604 511.7168 -253.4395 506.0625 -253.4395 c -497.1777 -253.4395 491.998 -260.709 491.998 -269.4043 c -491.998 -278.1006 497.1777 -285.3701 506.0625 -285.3701 c -512.668 -285.3701 517.7988 -279.4785 518.1797 -273.1582 c -520.2695 -273.1582 L -519.5098 -281.2363 513.5234 -287.1758 506.0625 -287.1758 c -495.8945 -287.1758 489.9082 -279.3359 489.9082 -269.4043 c -489.9082 -259.4736 495.8945 -251.6338 506.0625 -251.6338 c -518.084 -251.6338 519.6523 -262.0869 519.7012 -262.5625 C -517.6094 -262.5625 l -f -*U -*u -547.6895 -284.5625 m -547.6895 -286.3682 L -524.6445 -286.3682 L -524.6445 -252.4414 L -547.4512 -252.4414 L -547.4512 -254.2471 L -526.7344 -254.2471 L -526.7344 -267.8369 L -546.2168 -267.8369 L -546.2168 -269.6426 L -526.7344 -269.6426 L -526.7344 -284.5625 L -547.6895 -284.5625 l -f -*U -*u -586.6094 -262.1348 m -586.3711 -256.3379 582 -253.4395 575.7285 -253.4395 c -571.8789 -253.4395 566.4141 -255.0547 566.4141 -260.6621 c -566.4141 -266.126 572.2109 -267.0293 577.9609 -268.2168 c -583.7578 -269.4043 589.5547 -270.8779 589.5547 -277.625 c -589.5547 -284.6572 582.8086 -287.1758 577.6289 -287.1758 c -569.6934 -287.1758 563.2305 -283.8975 563.3262 -275.1543 c -565.416 -275.1543 L -564.9902 -282.5664 570.9297 -285.3701 577.6289 -285.3701 c -581.7148 -285.3701 587.4648 -283.5166 587.4648 -277.625 c -587.4648 -271.876 581.668 -270.8779 575.8711 -269.6895 c -570.1211 -268.502 564.3242 -267.124 564.3242 -260.6621 c -564.3242 -254.1523 570.3594 -251.6338 575.7285 -251.6338 c -582.8086 -251.6338 588.3672 -254.6748 588.6992 -262.1348 C -586.6094 -262.1348 l -f -*U -*u -590.7461 -254.2471 m -590.7461 -252.4414 L -616.7363 -252.4414 L -616.7363 -254.2471 L -604.7617 -254.2471 L -604.7617 -286.3682 L -602.6719 -286.3682 L -602.6719 -254.2471 L -590.7461 -254.2471 l -f -*U -*u -621.1582 -252.4414 m -621.1582 -272.7783 L -621.1582 -276.8652 622.0137 -285.3701 631.8008 -285.3701 c -640.1172 -285.3701 642.9199 -280.4756 642.9199 -272.7783 c -642.9199 -252.4414 L -645.0117 -252.4414 L -645.0117 -272.7783 L -645.0117 -280.8564 641.9707 -287.1758 631.8008 -287.1758 c -619.7324 -287.1758 619.0664 -277.292 619.0664 -272.7783 c -619.0664 -252.4414 L -621.1582 -252.4414 l -f -*U -*u -651 -252.4414 m -662.1191 -252.4414 L -674.2363 -252.4414 677.7988 -260.7568 677.7988 -269.3574 c -677.7988 -278.9551 672.9063 -286.3682 662.0254 -286.3682 c -651 -286.3682 L -651 -252.4414 l -f -1 D -653.0918 -284.5625 m -662.2148 -284.5625 L -668.5332 -284.5625 675.709 -281.0938 675.709 -269.3574 c -675.709 -255.4824 666.8242 -254.2471 661.7871 -254.2471 c -653.0918 -254.2471 L -653.0918 -284.5625 l -f -*U -*u -0 D -682.6953 -252.4414 m -684.7871 -252.4414 L -684.7871 -286.3682 L -682.6953 -286.3682 L -682.6953 -252.4414 l -f -*U -*u -705.4082 -287.1758 m -695.2402 -287.1758 689.2539 -279.3359 689.2539 -269.4043 c -689.2539 -259.4736 695.2402 -251.6338 705.4082 -251.6338 c -715.5293 -251.6338 721.5176 -259.4736 721.5176 -269.4043 c -721.5176 -279.3359 715.5293 -287.1758 705.4082 -287.1758 c -f -1 D -705.4082 -285.3701 m -714.248 -285.3701 719.4258 -278.1006 719.4258 -269.4043 c -719.4258 -260.709 714.248 -253.4395 705.4082 -253.4395 c -696.5234 -253.4395 691.3438 -260.709 691.3438 -269.4043 c -691.3438 -278.1006 696.5234 -285.3701 705.4082 -285.3701 c -f -*U -U -%_/ArtDictionary : -%_/XMLUID : (text-arcticicestudio) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -0 D -0 R -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 XA -2 w 224.354 -354.7666 m -810.7656 -354.7666 L -S -%_/ArtDictionary : -%_/XMLUID : (bottom) ; (AI10_ArtUID) , -%_; -%_ -224.354 -245.2334 m -810.7656 -245.2334 L -S -%_/ArtDictionary : -%_/XMLUID : (top) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (lines) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -U -%_/ArtDictionary : -%_/XMLUID : (title) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -u -1 Ap -202.6069 -362.6865 m -77.2339 -362.6865 L -77.2339 -237.3135 L -202.6069 -237.3135 L -202.6069 -362.6865 L -s -%_/ArtDictionary : -%_/XMLUID : (frame) ; (AI10_ArtUID) , -%_; -%_ -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -1 w 144.5532 -324.1162 m -167.561 -277.1777 L -169.7798 -277.1777 L -192.7866 -324.1162 L -190.8462 -324.1162 L -168.6704 -278.8408 L -146.4946 -324.1162 L -144.5532 -324.1162 l -f -%_/ArtDictionary : -%_(-1.570796) /String (BBAccumRotation) , -%_; -%_ -*U -%_/ArtDictionary : -%_/XMLUID : (character) ; (AI10_ArtUID) , -%_; -%_ -*u -133.9937 -324.1162 m -87.0552 -301.1084 L -87.0552 -298.8916 L -133.9937 -275.8838 L -133.9937 -277.8242 L -88.7173 -299.999 L -133.9937 -322.1748 L -133.9937 -324.1162 l -f -*U -%_/ArtDictionary : -%_/XMLUID : (code) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (box) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -LB -%AI5_EndLayer-- -%%PageTrailer -gsave annotatepage grestore showpage -%%Trailer -%%EOF - -endstream endobj 6 0 obj [5 0 R] endobj 26 0 obj <> endobj xref -0 27 -0000000000 65535 f -0000000016 00000 n -0000000144 00000 n -0000039827 00000 n -0000000000 00000 f -0000050356 00000 n -0000486865 00000 n -0000039878 00000 n -0000040212 00000 n -0000050663 00000 n -0000050550 00000 n -0000049287 00000 n -0000049794 00000 n -0000049842 00000 n -0000050434 00000 n -0000050465 00000 n -0000050736 00000 n -0000051020 00000 n -0000052070 00000 n -0000057722 00000 n -0000123311 00000 n -0000188900 00000 n -0000254489 00000 n -0000320078 00000 n -0000385667 00000 n -0000451256 00000 n -0000486888 00000 n -trailer -<]>> -startxref -487106 -%%EOF diff --git a/assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.svg b/assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.svg deleted file mode 100644 index 9f894d4..0000000 --- a/assets/images/packages/@arcticicestudio/eslint-config-base/repository-hero.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.ai b/assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.ai deleted file mode 100644 index 369733d..0000000 --- a/assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.ai +++ /dev/null @@ -1,13161 +0,0 @@ -%PDF-1.5 % -1 0 obj <>/OCGs[5 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - repository-hero - - - - - Arctic Ice Studio - - - - - Copyright (C) 2018-present Arctic Ice Studio (https://www.arcticicestudio.com) Copyright (C) 2018-present Sven Greb (https://www.svengreb.de) - - - - - Adobe Illustrator CS6 (Windows) - 2019-08-20T21:46:19+02:00 - 2019-08-20T21:46:19+02:00 - 2019-08-20T21:46:19+02:00 - - - - 256 - 44 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgALAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9A+V/K/lmXyzpEkmkWTy PZW7O7W8RZmMSkkkruTkpSNoATP/AAn5V/6s1j/0jQ/804OIrQd/hPyr/wBWax/6Rof+aceIrQd/ hPyr/wBWax/6Rof+aceIrQd/hPyr/wBWax/6Rof+aceIrQUvLlpa2l1rdvaQx29ul8vCGJQiLWyt iaKoAFSa4SoRNxp+qyTO8WqyQxsarEIoWCjwqyk4LVT/AEXrP/V5l/5EQf8ANGNhXfovWf8Aq8y/ 8iIP+aMbCu/Res/9XmX/AJEQf80Y2FQmqjUNM06e/udZnMNuvJlS3gZ2PRUReO7MxCqPHCN1Qd3q V5DpthqEOqXd5HqTRrZx29val3MsbSrs/AD4VPfDSGrTUtSlvI7S7vb/AE2aZXaD63bWoST0xycK 8fqLULvQkGlfA40qG/T2ptbtewzanPpK/F+k47SzMRQdZEjLC4dO4ZYjUbioxpbdda/qkEkAWXU7 iG7kEdncw29g0cxZDIpjJcGjIpIJAxpbVk1m5WK7e81S8sGskieeKe2ti/8ApDskSqsQl5M7JQKN zUY0tuj1TWBPBHfTalp0V06xW9zc29iYmkc0RG9F5mjLmgX1FWpNOu2NBU0uYNUt5rWKTWZuV5KY YqQW9OQieXf4enGI4EpR+mtVlWSexn1K/sImZWv7e2sjEeBoxjV2SWUAjrGjV7Vw0i3Prl89wkOn 3t/qYe2hvPVtLazKCK4aRYifVMRqfRbamNLaZ6bDr17A0sl7eWTKxX0rmC0DkAA8h6fqCm9OuA0l KpNc1QRS3UU2p3GlwlhJqUVtZGKkZKuyxlluHVSOqxGvauGkW1d69qtvLCol1OeK6kEVncRW1g0c xZS6lCXBoyKSKgY0tphpc+q6hPPbnULy0ubdI5JYbi3tQwWUuE+x6g39I98BSh9T1W8sLiW2OpXl xcxtbp6MNtalma6LiMLz4D/dTVqcICF9lqGoz3kVlc399p91OGNtHd2tsol4DkwR4xJGWA348uVN 6UxIVQXW7ua3sJLHUL2+uNRtY76CzgtrT1Vt5VDK8jSenFH1p8T7mtK0ONLaL0u61G/nmtH1O7st QgVXmsbm3tVlCNsrqYxJG6kgjkjEV2wFKZfovWf+rzL/AMiIP+aMFhXfovWf+rzL/wAiIP8AmjGw rv0XrP8A1eZf+REH/NGNhXfovWf+rzL/AMiIP+aMbCu8p/8AKK6N/wAwNt/yZXGXNRyTC6u7W0t3 ubqZLe3jFZJpWCIo8SzUAwJUNN1SDUY3mt45VgU0jmljaISCn2ow9GK/5VKHtXCQqzXNc0/RNOfU L9mWBCq0RS7ksaAKi1LeO3bEC1JRyOkiK6MGRgGVhuCDuCMCpXo3/HR17/mOT/qBtsJ6ICa4EuxV 2KuxVjXmSa7u9b0zS7S3W6FsRqd9Gz+mvGIlbZS1G6zfvBt/uvJDkgsf56jBd2ehlY7K8ttYW6sU etxGtrdwXLrsphLBZFlQAEUAGS80InzdYeYZXFvdXMd99cs9Qg062to2teF41nJxc1knL1j5qPiH Env2YkKWVWuu6K2hJq8dxHFpSxeoZWIVY0UUKsP2Sv2SvUHbIUbTaUXciy2flKRbT6gj3kJSyoF9 FTZzcY6AKBxG1KbYe9Ut12SO382TX9x/vBYzaZNfE/ZWMx3kSyN4LHLIjk9gK5IckHmyfXtSsbaz gE0SXj3c8MVpaGh9WRnUqVqG+xT1CabBa9sgAkobzVFPK2lxW54zyXM6xNWlHbT7oKa9t8MVK7yv qOmjynZTJIkFtZ2yRXAchBA0CBZY5K/YMZUhq4yG6jkkeh+tqXmG7utOdtIt5dMsJEgSKM8ke6vy jlXX4eY+OlP2t8J2CAzGzhuIYQk9wbmSpPqsqoaeFEAGQZMX02GR9F/SOg6r9WsHV5Tp+pRxzQ27 VJlhdkZJI+DclYGRgvbYUyZ57sV894L3TfJ14IBai5ubeYWy9IxJZTNwGw+zWnTHvVG2TpH511WJ yFknsrOWBT1dI3nVyvjxLDl4VHiMB5J6pHqbpN5pmmiYPFHqGl2rspqBNEszum3dVmWvzwjkjqnX meeGa+0fTomD6gb6K5WNaF44YKtLKw/ZUp+7r4sBgikpH+Wcsdvb2tvcEJcXuk6XPZs23qQRWixs iePpycmYduY8clNEU9mmhufO1nHbkPLYWVx9ddTtGLh4fSjend/SLAHstfDI9E9U/wAil2KuxV2K sLi12/0zyx5fjhiWG1msLf19XmSSWC3pEgHOOL4t/F2RB/N2ydWSxtOdN0DTJWi1O4um1q5NJLe8 ndZI0r0a3jQCGP8A1kXl4scBKaTvIpSNQNV8yMxHKx0WqKDuHvZk+M/88YX4/N2HVclyCHeXCbGS 50CQ7afxewJ/aspSfSA/4xFWi+SqT9rE96hX0b/jo69/zHJ/1A22A9FCJ1PWdK0uOOTUbqO0jlbh G0rBQzUJoK96DEC02hrbzX5auVmeDU7d0t09Wd/UUKiA05MTsBU48JRa+w8yaFfyPFaXsUssaGR4 q0f0waF+LUJX/KG2JBW0dFc28tslzHIr28iCRJQaqUI5BgfCm+BKGsrzRrm6leylglu2ihknaMqZ DC4ZoCxG5UgsVr74TaoLVdW8o2l/G+pz2kd/B/dPNw9VNq/CxHJdm/HCAUEhU0/XvLOs3Ma2N3bX 1xADPFwKyMgI9MyKe20nGo7HAQQtpTdah+WCao1xcvpg1NZDzldYvV9VDuSSK81p165KpI2T+yvN I1i3ivLSSG9gikJhmXi4SVKoSp/ZYVI+nImwyQV55i8o2d1Ot1e2kVy/7m55MnNvTH2H7nj6nQ9K 4aKLCDs7n8udLjXVbJtMtUmYwJdwCFfipyaIMnQ0FSuO5XZHQ+ZvKt7ylj1C1mFkDO0hdaQihQyc j9nZytffBwlbCFgj8h67qLTJBY3uooA7F4kMxVTRXIdeTKp6N0HbDuF2Utcm/Li51AjW00y5vYQI Xkuo4ZmiFaiN5HVvT3evFiOuIvoppErqPkry1/uPiksdJEoFz9ViWOAMH+AScUCg8vTpX2xoldgs Np5B1KWPUvR028kuJTGl0FhkMk0aGUqWAPJ0SMtvuKY7hdlSPzZ5LvZreNdSsppA6tahpEJ9Qgqp jLftENQU33x4SthB6l5i/LjUxHFqN5p93wq0SzFHK9AxSu48DTECQWwmq6R5ZudFjt/qNnLozKJ4 oDFGbbiRzDhCOHetaYLNrSC0HUPIkE/1LQmsLeSf7EdokcSzECv7soFWSg3+GuEg9VFLtZm8kwQw aTqq2YihRTBYuiMIo1HBGWMA+moAoGoBiLU0jNPk8tWFlarpzWltZX0nGzNuY1imldS3wFPhdmCE +9MBtUdcXdrbmJZ5VjMzFIQxpyZUaQgeJCRs3yGBKV23nPypczRQ2+q20ss7KkKJICWZzRQPmTku EosIq71/RbS1gurm9ijguQGtnLD96COQ9MDd9jX4cFFbVtP1PT9RgM9jcR3MSsUZo2DcWHVWp9lh 3B3xISg/Kf8Ayiujf8wNt/yZXGXNA5LJ/LUCTPdaTM2lXbnlIYQDBIx7zW5/dsT3YcX/AMrG1pVg m8xLYXf1i2t2v4Vb6oYZGEU7capyDjlFVtiKtTxOOyquh6Z+jNLgtGf1plBe5npQyzyEvNIf9eRi 2JNpCjq2n3Ul/p2o2VPrNpIY5lJoJLWeizJX/JKrIPdad8QUNaN/x0de/wCY5P8AqBtsT0UILzO1 4useXWs4o5p/rU/GOaRokI+qS1q6pKR/wOGPIqXazBqeoWAtr8Wmnym4t5LF1le6R54ZRMiSI0Vv 8JMfY4hShdVubsTWR17TY45FeVLHULScyos0kEi8ZFdIXVZF5CnxCtK9jhHkpTDQf+UH07/tmQ/9 Q4wHmo5MR8uWF1T9L6anPU7Cw0ykINPrFu1opltyTtVuIKE9HA7VyRLEMm8sX9rqGtaze2r87edb N42oQaGE7EHcEdCD0ORkNmQRHkT/AJQjy9/2zLP/AKh0xlzKjk7XP+O/5c/5ibj/AKg5sRyKlA+Y 49U0rUFvdGZEbWpI7K5jk3SO4YcYrwD9pkReLL+38PSmEb81KyK3udE1mOy0iwN8iWKeoWmWNyxn kZpHZx8bSOxZj448whAXVlrkPmnT9Va1to7u/uisdj6zBQsFlOvOWZYm/eNz7IdgBXDYpeqdazBq V/YpbagLSwma5t5LBllkukeeGQTKkiNFb/CfS7N+ORCSgtbvtTgNtNqmlxi+h9caTfWk5lQXT20i qkiukTqJRUUo68uNd6YQEFOfK9pp0flnT4rQLJaS2yPzIB9X1VDPI9a8mkLFmJ6k5GXNIY9oM4h1 +6TQLYXlgml2EURllMXFIrq/RQtVbkux4+1MkeW6AgJmnl1xZ7u3FlfPqzrPaKQ6hU0S79OQSCnq eop60FKce1Sen471RdjH5i1jyJa6OulQxQ3mmxW4vJ7hWRUeFV9X00VmLAfEq7b9xiaBteifXK8f OujrUmml6kKnqf39h1yPRPVb50CSabaW8/8AvFdX9pBeg/ZaJ5gODf5Mj8UPiDTvjFSjPMMWk/oe VtT+CztikwdR8SPEwaNo6CvIOBxpgHNSg/JaRNpk92QPrt1eXTX7n7frJO8fBj/xWqBF9gMMlDH7 3SLC716fSAvHT31SOWkZ4+jdyabcSu0VPsOCI5aj9o1+cgdkK2o6nc3E+jWGoFRq+n38yXfEcVkV tLvvSuEH8koWvswZe2ABU18nza8fL+jLJZ2q2n1O3BlW6kaTh6S0Ppm3Va+3P6cEqtIS/wAgKkpe 4lAe6ttO023tgaVW3a0SX4a9Ocpep78R/LhkgJnp11AfNUyS2EllqN3ZiSVvUjdJI7eQIpZY2Pxg y0DHtt2wHknqjPKf/KK6N/zA23/JlcEuajkmuBLsVdirsVSrRv8Ajo69/wAxyf8AUDbYT0QEFr9z 5Vu54Yr3WorG7sJGdDHdxwyo7IUYGpr9lztTCLU0gT/gmSCWC78yreRScSFn1CMmN0YOkkbKyMjq yghgcO/cjZuN/JpnjmvfMseoGDkbdLm9tykbOpQuqx+mCwViAzVIrjv3Lso2sXk22git4vNbfVoV WNIDqMJTggoEI8KCmO/cuyY6VqPkfSwwtNYsxyjhhPK7ib4LdPTj/a/l64CCU7Nabf8AkPTbu+ur PVLGKTUZBNdAXUXEyAULKvKi8upp1O+JBK7K+m675N07TrXT7bWLIW1nDHbwBrqEnhEoRanluaDE grYdc675NuLq0uZNYsvVsnaSAi6hA5PG0ZqOW/wucaK2HXuu+Tbz0PX1iyP1aZLiKl1CPjSvGvxd N8QCthcPMHk8XrXn6YsvXaMQk/WoacFYsNuXi2NFbCF1fUfJuqG2aTX7e3ltJDLBNb3kMbhmQxnf kdirHEAjoppCk+SpIZYLvzKLyKQLQTahGSjowdJI2RkZHVlFGBw79yNlS2uPJ8d3BdXXmaPUJLUs 1qtze25SNmUqWCx+mGbixAZ6kA7Y79y7KMieRyJIoPMi2thMWMun29/EkB5klwu/qRhidxG6jHfu XZMLPVPItlctcWuqWEJa3gsxGlzCI1htTI0Sqoagp67YKKbChcXPkO41D6/JrFp6/qCXa7iA5rby 2wNOX++52x3XZG2PmDyfZWVvZwaxZCC2jSGIG6hJ4RqFWp5eAxIK2Fsmu+TX1GDUG1iy+s28M1vG frUNOE7RO9Ry61gXGithdfa/5KvrSazvNU0+a2nUpLE1zDQqf9liAVsJXC3ktZoWufMq30NsyyW9 rdX8LxK6boxoVaQqd1MjNQ79RXDv3I2X3U3k2S7mu7TzJHp01yQ119VvYFSVgoXkySeogbiAOSgM e52GO/cuyvaXvkO1jtUg1azH1WZ7lXa8jd3mkjeN5JXZyzsyytUk4KKdluo3XkHUNSstSuNVsjeW AlFvIt3EvwzRtE4ajfEOLmlemItdkZY+YPJ9lZW9nBrFkILaNIYgbqEnhGoVanl4DEgrYS2R/I3p WgttegsriygS1gu7e8hWUwoKLHJyLJIo6jmpoelKnDv3I2XadN5FsdROpjXbe41F4jBLd3F7E7uh ZWofiCgApsFAA323OJtdkNpP6U/RVl+j/wBOfUPQi+p/8cX+54D0/t/F9mn2t8T8PtUIv/nY/wDt ef8Acjx28vtS7/nY/wDtef8Acjx28vtV3/Ox/wDa8/7keO3l9qu/52P/ALXn/cjx28vtVMfLPDhf 8vrX1v61/pv136v6vq/V4uP+837qnpcOn075EqE5wJdirsVdirsVdirsVdirsVdirsVdirsVdirs VdirsVdirsVdirsVdirsVdirsVdir//Z - - - - - - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - xmp.did:958D002483C3E9118CC58E86E21CA3EF - uuid:848e090e-a31c-47a9-9225-07bba11cbd29 - proof:pdf - - uuid:4978cad7-75c2-834c-a0a4-665e27ce28fa - xmp.did:02801174072068118083917CE3B5B58A - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - proof:pdf - - - - - saved - xmp.iid:958D002483C3E9118CC58E86E21CA3EF - 2019-08-20T21:46:17+02:00 - Adobe Illustrator CS6 (Windows) - / - - - - - - Basic RGB - Document - - - 1 - False - False - - 888.000000 - 600.000000 - Pixels - - - - Cyan - Magenta - Yellow - Black - - - - - - Standard-Farbfeldgruppe - 0 - - - - Weiß - RGB - PROCESS - 255 - 255 - 255 - - - Schwarz - RGB - PROCESS - 0 - 0 - 0 - - - RGB Rot - RGB - PROCESS - 255 - 0 - 0 - - - RGB Gelb - RGB - PROCESS - 255 - 255 - 0 - - - RGB Grün - RGB - PROCESS - 0 - 255 - 0 - - - RGB Cyan - RGB - PROCESS - 0 - 255 - 255 - - - RGB Blau - RGB - PROCESS - 0 - 0 - 255 - - - RGB Magenta - RGB - PROCESS - 255 - 0 - 255 - - - R=193 G=39 B=45 - RGB - PROCESS - 193 - 39 - 45 - - - R=237 G=28 B=36 - RGB - PROCESS - 237 - 28 - 36 - - - R=241 G=90 B=36 - RGB - PROCESS - 241 - 90 - 36 - - - R=247 G=147 B=30 - RGB - PROCESS - 247 - 147 - 30 - - - R=251 G=176 B=59 - RGB - PROCESS - 251 - 176 - 59 - - - R=252 G=238 B=33 - RGB - PROCESS - 252 - 238 - 33 - - - R=217 G=224 B=33 - RGB - PROCESS - 217 - 224 - 33 - - - R=140 G=198 B=63 - RGB - PROCESS - 140 - 198 - 63 - - - R=57 G=181 B=74 - RGB - PROCESS - 57 - 181 - 74 - - - R=0 G=146 B=69 - RGB - PROCESS - 0 - 146 - 69 - - - R=0 G=104 B=55 - RGB - PROCESS - 0 - 104 - 55 - - - R=34 G=181 B=115 - RGB - PROCESS - 34 - 181 - 115 - - - R=0 G=169 B=157 - RGB - PROCESS - 0 - 169 - 157 - - - R=41 G=171 B=226 - RGB - PROCESS - 41 - 171 - 226 - - - R=0 G=113 B=188 - RGB - PROCESS - 0 - 113 - 188 - - - R=46 G=49 B=146 - RGB - PROCESS - 46 - 49 - 146 - - - R=27 G=20 B=100 - RGB - PROCESS - 27 - 20 - 100 - - - R=102 G=45 B=145 - RGB - PROCESS - 102 - 45 - 145 - - - R=147 G=39 B=143 - RGB - PROCESS - 147 - 39 - 143 - - - R=158 G=0 B=93 - RGB - PROCESS - 158 - 0 - 93 - - - R=212 G=20 B=90 - RGB - PROCESS - 212 - 20 - 90 - - - R=237 G=30 B=121 - RGB - PROCESS - 237 - 30 - 121 - - - R=199 G=178 B=153 - RGB - PROCESS - 199 - 178 - 153 - - - R=153 G=134 B=117 - RGB - PROCESS - 153 - 134 - 117 - - - R=115 G=99 B=87 - RGB - PROCESS - 115 - 99 - 87 - - - R=83 G=71 B=65 - RGB - PROCESS - 83 - 71 - 65 - - - R=198 G=156 B=109 - RGB - PROCESS - 198 - 156 - 109 - - - R=166 G=124 B=82 - RGB - PROCESS - 166 - 124 - 82 - - - R=140 G=98 B=57 - RGB - PROCESS - 140 - 98 - 57 - - - R=117 G=76 B=36 - RGB - PROCESS - 117 - 76 - 36 - - - R=96 G=56 B=19 - RGB - PROCESS - 96 - 56 - 19 - - - R=66 G=33 B=11 - RGB - PROCESS - 66 - 33 - 11 - - - - - - Kalt - 1 - - - - C=56 M=0 Y=20 K=0 - RGB - PROCESS - 101 - 200 - 208 - - - C=51 M=43 Y=0 K=0 - RGB - PROCESS - 131 - 139 - 197 - - - C=26 M=41 Y=0 K=0 - RGB - PROCESS - 186 - 155 - 201 - - - - - - Graustufen - 1 - - - - R=0 G=0 B=0 - RGB - PROCESS - 0 - 0 - 0 - - - R=26 G=26 B=26 - RGB - PROCESS - 26 - 26 - 26 - - - R=51 G=51 B=51 - RGB - PROCESS - 51 - 51 - 51 - - - R=77 G=77 B=77 - RGB - PROCESS - 77 - 77 - 77 - - - R=102 G=102 B=102 - RGB - PROCESS - 102 - 102 - 102 - - - R=128 G=128 B=128 - RGB - PROCESS - 128 - 128 - 128 - - - R=153 G=153 B=153 - RGB - PROCESS - 153 - 153 - 153 - - - R=179 G=179 B=179 - RGB - PROCESS - 179 - 179 - 179 - - - R=204 G=204 B=204 - RGB - PROCESS - 204 - 204 - 204 - - - R=230 G=230 B=230 - RGB - PROCESS - 230 - 230 - 230 - - - R=242 G=242 B=242 - RGB - PROCESS - 242 - 242 - 242 - - - - - - - - - Adobe PDF library 10.01 - - - Arctic Ice Studio - - - True - https://www.arcticicestudio.com - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 7 0 obj <>/Resources<>/Properties<>>>/Thumb 11 0 R/TrimBox[0.0 0.0 888.0 600.0]/Type/Page>> endobj 8 0 obj <>stream -/OC /MC0 BDC -0.298 0.337 0.416 rg -/GS0 gs -q 1 0 0 1 257.2466 263.0762 cm -0 0 m -0 -1.806 l --23.045 -1.806 l --23.045 32.121 l --0.237 32.121 l --0.237 30.314 l --20.955 30.314 l --20.955 16.726 l --1.473 16.726 l --1.473 14.92 l --20.955 14.92 l --20.955 0 l -h -f -Q -q -0 600 888 -600 re -W n -q 1 0 0 1 282.9551 285.5039 cm -0 0 m --0.237 5.797 -4.609 8.695 -10.881 8.695 c --14.73 8.695 -20.194 7.08 -20.194 1.473 c --20.194 -3.992 -14.397 -4.895 -8.648 -6.082 c --2.851 -7.27 2.946 -8.743 2.946 -15.49 c -2.946 -22.523 -3.801 -25.041 -8.98 -25.041 c --16.916 -25.041 -23.377 -21.763 -23.283 -13.02 c --21.192 -13.02 l --21.62 -20.432 -15.68 -23.235 -8.98 -23.235 c --4.894 -23.235 0.855 -21.383 0.855 -15.49 c -0.855 -9.741 -4.941 -8.743 -10.738 -7.555 c --16.488 -6.367 -22.285 -4.989 -22.285 1.473 c --22.285 7.982 -16.25 10.5 -10.881 10.5 c --3.801 10.5 1.758 7.459 2.091 0 c -h -f -Q -q 1 0 0 1 290.75 295.1973 cm -0 0 m -2.09 0 l -2.09 -32.121 l -21.334 -32.121 l -21.334 -33.927 l -0 -33.927 l -h -f -Q -314.51 295.197 2.09 -33.927 re -f -q 1 0 0 1 322.5879 295.1973 cm -0 0 m -2.613 0 l -24.043 -31.123 l -24.138 -31.123 l -24.138 0 l -26.229 0 l -26.229 -33.927 l -23.758 -33.927 l -2.186 -2.566 l -2.09 -2.566 l -2.09 -33.927 l -0 -33.927 l -h -f -Q -q 1 0 0 1 351.1475 293.3906 cm -0 0 m -0 1.807 l -25.991 1.807 l -25.991 0 l -14.017 0 l -14.017 -32.12 l -11.926 -32.12 l -11.926 0 l -h -f -Q -q 1 0 0 1 389.0205 293.3906 cm -0 0 m -0 1.807 l -25.991 1.807 l -25.991 0 l -14.017 0 l -14.017 -32.12 l -11.926 -32.12 l -11.926 0 l -h -f -Q -q 1 0 0 1 440.292 295.1973 cm -0 0 m -2.328 0 l --11.309 -19.72 l --11.309 -33.927 l --13.399 -33.927 l --13.399 -19.72 l --26.942 0 l --24.566 0 l --12.307 -17.961 l -h -f -Q -q 1 0 0 1 446.708 278.1855 cm -0 0 m -11.927 0 l -18.057 0 20.146 4.039 20.146 7.556 c -20.146 10.074 19.007 15.205 12.212 15.205 c -0 15.205 l -h --2.09 17.012 m -12.354 17.012 l -16.203 17.012 22.237 15.633 22.237 7.508 c -22.237 1.568 18.342 -1.805 11.594 -1.805 c -0 -1.805 l -0 -16.915 l --2.09 -16.915 l -h -f -Q -q 1 0 0 1 495.7471 263.0762 cm -0 0 m -0 -1.806 l --23.046 -1.806 l --23.046 32.121 l --0.238 32.121 l --0.238 30.314 l --20.955 30.314 l --20.955 16.726 l --1.474 16.726 l --1.474 14.92 l --20.955 14.92 l --20.955 0 l -h -f -Q -q 1 0 0 1 521.4551 285.5039 cm -0 0 m --0.237 5.797 -4.608 8.695 -10.881 8.695 c --14.729 8.695 -20.194 7.08 -20.194 1.473 c --20.194 -3.992 -14.397 -4.895 -8.647 -6.082 c --2.851 -7.27 2.946 -8.743 2.946 -15.49 c -2.946 -22.523 -3.801 -25.041 -8.98 -25.041 c --16.915 -25.041 -23.378 -21.763 -23.282 -13.02 c --21.192 -13.02 l --21.619 -20.432 -15.68 -23.235 -8.98 -23.235 c --4.894 -23.235 0.855 -21.383 0.855 -15.49 c -0.855 -9.741 -4.941 -8.743 -10.738 -7.555 c --16.488 -6.367 -22.285 -4.989 -22.285 1.473 c --22.285 7.982 -16.25 10.5 -10.881 10.5 c --3.801 10.5 1.758 7.459 2.091 0 c -h -f -Q -q 1 0 0 1 555.6689 285.0762 cm -0 0 m --0.902 5.701 -5.892 9.123 -11.546 9.123 c --20.432 9.123 -25.611 1.854 -25.611 -6.842 c --25.611 -15.538 -20.432 -22.808 -11.546 -22.808 c --4.941 -22.808 0.19 -16.916 0.57 -10.596 c -2.661 -10.596 l -1.9 -18.674 -4.086 -24.613 -11.546 -24.613 c --21.715 -24.613 -27.701 -16.773 -27.701 -6.842 c --27.701 3.088 -21.715 10.928 -11.546 10.928 c -0.476 10.928 2.043 0.475 2.091 0 c -h -f -Q -q 1 0 0 1 576.8643 278.5186 cm -0 0 m -4.941 0 8.647 2.329 8.647 7.793 c -8.647 12.925 4.562 14.872 0 14.872 c --12.069 14.872 l --12.069 0 l -h --14.16 16.679 m -0 16.679 l -5.939 16.679 10.738 14.493 10.738 7.936 c -10.738 3.374 7.982 0 3.469 -0.761 c -3.469 -0.854 l -8.505 -1.425 9.74 -4.608 10.073 -8.125 c -10.406 -11.642 9.836 -15.442 11.214 -17.248 c -8.886 -17.248 l -7.603 -14.92 8.362 -11.023 7.982 -7.745 c -7.555 -4.466 5.939 -1.806 0 -1.806 c --12.069 -1.806 l --12.069 -17.248 l --14.16 -17.248 l -h -f -Q -592.642 295.197 2.091 -33.927 re -f -q 1 0 0 1 602.8105 278.1855 cm -0 0 m -11.927 0 l -18.057 0 20.146 4.039 20.146 7.556 c -20.146 10.074 19.007 15.205 12.212 15.205 c -0 15.205 l -h --2.091 17.012 m -12.354 17.012 l -16.203 17.012 22.237 15.633 22.237 7.508 c -22.237 1.568 18.342 -1.805 11.594 -1.805 c -0 -1.805 l -0 -16.915 l --2.091 -16.915 l -h -f -Q -q 1 0 0 1 625.1455 293.3906 cm -0 0 m -0 1.807 l -25.991 1.807 l -25.991 0 l -14.017 0 l -14.017 -32.12 l -11.927 -32.12 l -11.927 0 l -h -f -Q -q 1 0 0 1 693.0967 285.0762 cm -0 0 m --0.902 5.701 -5.892 9.123 -11.546 9.123 c --20.432 9.123 -25.611 1.854 -25.611 -6.842 c --25.611 -15.538 -20.432 -22.808 -11.546 -22.808 c --4.941 -22.808 0.19 -16.916 0.57 -10.596 c -2.661 -10.596 l -1.9 -18.674 -4.086 -24.613 -11.546 -24.613 c --21.715 -24.613 -27.701 -16.773 -27.701 -6.842 c --27.701 3.088 -21.715 10.928 -11.546 10.928 c -0.476 10.928 2.043 0.475 2.091 0 c -h -f -Q -q 1 0 0 1 714.7666 262.2686 cm -0 0 m -8.839 0 14.018 7.27 14.018 15.966 c -14.018 24.661 8.839 31.931 0 31.931 c --8.885 31.931 -14.064 24.661 -14.064 15.966 c --14.064 7.27 -8.885 0 0 0 c -0 -1.806 m --10.168 -1.806 -16.155 6.034 -16.155 15.966 c --16.155 25.896 -10.168 33.735 0 33.735 c -10.121 33.735 16.108 25.896 16.108 15.966 c -16.108 6.034 10.121 -1.806 0 -1.806 c -f -Q -q 1 0 0 1 735.3437 295.1973 cm -0 0 m -2.613 0 l -24.043 -31.123 l -24.139 -31.123 l -24.139 0 l -26.229 0 l -26.229 -33.927 l -23.758 -33.927 l -2.187 -2.566 l -2.091 -2.566 l -2.091 -33.927 l -0 -33.927 l -h -f -Q -q 1 0 0 1 769.6533 277.9961 cm -0 0 m -0 -16.726 l --2.091 -16.726 l --2.091 17.201 l -19.196 17.201 l -19.196 15.395 l -0 15.395 l -0 1.806 l -17.296 1.806 l -17.296 0 l -h -f -Q -791.987 295.197 2.091 -33.927 re -f -q 1 0 0 1 829.5254 277.9004 cm -0 0 m -0 -16.63 l --1.806 -16.63 l --1.806 -9.408 l --1.9 -9.408 l --3.563 -14.35 -8.743 -17.437 -14.729 -17.437 c --24.993 -17.437 -30.695 -9.598 -30.695 0.143 c --30.695 9.741 -24.898 18.104 -14.683 18.104 c --7.697 18.104 -1.758 13.875 -0.57 6.795 c --2.565 6.795 l --4.134 12.641 -8.458 16.299 -14.635 16.299 c --23.806 16.299 -28.604 8.602 -28.604 0.143 c --28.604 -8.505 -23.948 -15.632 -14.635 -15.632 c --6.557 -15.632 -1.473 -10.12 -1.806 -1.805 c --14.302 -1.805 l --14.302 0 l -h -f -Q -q 1 0 0 1 345.168 326.3174 cm -0 0 m --7.27 19.197 l --7.365 19.197 l --14.92 0 l -h --6.225 21.24 m -7.175 -12.687 l -4.941 -12.687 l -0.665 -1.805 l --15.585 -1.805 l --19.909 -12.687 l --22.143 -12.687 l --8.505 21.24 l -h -f -Q -q 1 0 0 1 368.9277 330.8789 cm -0 0 m -4.941 0 8.648 2.329 8.648 7.793 c -8.648 12.924 4.562 14.873 0 14.873 c --12.069 14.873 l --12.069 0 l -h --14.16 16.678 m -0 16.678 l -5.939 16.678 10.738 14.493 10.738 7.936 c -10.738 3.374 7.982 0 3.469 -0.76 c -3.469 -0.855 l -8.505 -1.425 9.741 -4.609 10.073 -8.125 c -10.406 -11.641 9.836 -15.442 11.214 -17.248 c -8.885 -17.248 l -7.603 -14.92 8.363 -11.023 7.982 -7.745 c -7.555 -4.466 5.939 -1.805 0 -1.805 c --12.069 -1.805 l --12.069 -17.248 l --14.16 -17.248 l -h -f -Q -q 1 0 0 1 411.1235 337.4365 cm -0 0 m --0.903 5.702 -5.892 9.123 -11.546 9.123 c --20.432 9.123 -25.611 1.853 -25.611 -6.842 c --25.611 -15.538 -20.432 -22.808 -11.546 -22.808 c --4.941 -22.808 0.19 -16.916 0.57 -10.596 c -2.661 -10.596 l -1.901 -18.674 -4.086 -24.613 -11.546 -24.613 c --21.714 -24.613 -27.702 -16.773 -27.702 -6.842 c --27.702 3.088 -21.714 10.928 -11.546 10.928 c -0.476 10.928 2.043 0.475 2.091 0 c -h -f -Q -q 1 0 0 1 414.5 345.7515 cm -0 0 m -0 1.806 l -25.991 1.806 l -25.991 0 l -14.017 0 l -14.017 -32.121 l -11.926 -32.121 l -11.926 0 l -h -f -Q -442.821 347.557 2.09 -33.926 re -f -q 1 0 0 1 477.3184 337.4365 cm -0 0 m --0.903 5.702 -5.893 9.123 -11.547 9.123 c --20.432 9.123 -25.611 1.853 -25.611 -6.842 c --25.611 -15.538 -20.432 -22.808 -11.547 -22.808 c --4.941 -22.808 0.189 -16.916 0.57 -10.596 c -2.66 -10.596 l -1.9 -18.674 -4.086 -24.613 -11.547 -24.613 c --21.715 -24.613 -27.702 -16.773 -27.702 -6.842 c --27.702 3.088 -21.715 10.928 -11.547 10.928 c -0.475 10.928 2.043 0.475 2.09 0 c -h -f -Q -497.563 347.557 2.091 -33.926 re -f -q 1 0 0 1 532.0605 337.4365 cm -0 0 m --0.903 5.702 -5.893 9.123 -11.547 9.123 c --20.432 9.123 -25.611 1.853 -25.611 -6.842 c --25.611 -15.538 -20.432 -22.808 -11.547 -22.808 c --4.942 -22.808 0.189 -16.916 0.57 -10.596 c -2.66 -10.596 l -1.9 -18.674 -4.087 -24.613 -11.547 -24.613 c --21.715 -24.613 -27.702 -16.773 -27.702 -6.842 c --27.702 3.088 -21.715 10.928 -11.547 10.928 c -0.475 10.928 2.043 0.475 2.091 0 c -h -f -Q -q 1 0 0 1 562.1406 315.4365 cm -0 0 m -0 -1.806 l --23.046 -1.806 l --23.046 32.121 l --0.238 32.121 l --0.238 30.315 l --20.955 30.315 l --20.955 16.726 l --1.474 16.726 l --1.474 14.92 l --20.955 14.92 l --20.955 0 l -h -f -Q -q 1 0 0 1 601.0596 337.8638 cm -0 0 m --0.237 5.797 -4.608 8.696 -10.881 8.696 c --14.729 8.696 -20.194 7.08 -20.194 1.473 c --20.194 -3.991 -14.397 -4.894 -8.647 -6.082 c --2.851 -7.27 2.946 -8.743 2.946 -15.49 c -2.946 -22.522 -3.801 -25.041 -8.98 -25.041 c --16.915 -25.041 -23.378 -21.762 -23.282 -13.019 c --21.192 -13.019 l --21.619 -20.432 -15.68 -23.235 -8.98 -23.235 c --4.894 -23.235 0.855 -21.382 0.855 -15.49 c -0.855 -9.741 -4.941 -8.743 -10.738 -7.555 c --16.488 -6.367 -22.285 -4.989 -22.285 1.473 c --22.285 7.983 -16.25 10.501 -10.881 10.501 c --3.801 10.501 1.758 7.46 2.091 0 c -h -f -Q -q 1 0 0 1 605.1963 345.7515 cm -0 0 m -0 1.806 l -25.991 1.806 l -25.991 0 l -14.017 0 l -14.017 -32.121 l -11.927 -32.121 l -11.927 0 l -h -f -Q -q 1 0 0 1 635.6084 347.5571 cm -0 0 m -0 -20.337 l -0 -24.423 0.855 -32.928 10.644 -32.928 c -18.959 -32.928 21.763 -28.034 21.763 -20.337 c -21.763 0 l -23.854 0 l -23.854 -20.337 l -23.854 -28.415 20.812 -34.734 10.644 -34.734 c --1.425 -34.734 -2.091 -24.851 -2.091 -20.337 c --2.091 0 l -h -f -Q -q 1 0 0 1 667.542 315.4365 cm -0 0 m -9.123 0 l -15.442 0 22.618 3.469 22.618 15.205 c -22.618 29.08 13.732 30.315 8.695 30.315 c -0 30.315 l -h --2.091 32.121 m -9.028 32.121 l -21.145 32.121 24.708 23.805 24.708 15.205 c -24.708 5.607 19.814 -1.806 8.934 -1.806 c --2.091 -1.806 l -h -f -Q -697.146 347.557 2.091 -33.926 re -f -q 1 0 0 1 719.8594 314.6289 cm -0 0 m -8.839 0 14.018 7.27 14.018 15.965 c -14.018 24.661 8.839 31.931 0 31.931 c --8.885 31.931 -14.064 24.661 -14.064 15.965 c --14.064 7.27 -8.885 0 0 0 c -0 -1.806 m --10.168 -1.806 -16.155 6.034 -16.155 15.965 c --16.155 25.896 -10.168 33.736 0 33.736 c -10.121 33.736 16.108 25.896 16.108 15.965 c -16.108 6.034 10.121 -1.806 0 -1.806 c -f -Q -0.298 0.337 0.416 RG -2 w -q 1 0 0 1 224.354 245.2334 cm -0 0 m -615.313 0 l -S -Q -q 1 0 0 1 224.354 354.7666 cm -0 0 m -615.313 0 l -S -Q -202.607 237.313 -125.373 125.373 re -S -q 1 0 0 1 144.5532 275.8838 cm -0 0 m -23.008 46.938 l -25.227 46.938 l -48.233 0 l -46.293 0 l -24.117 45.275 l -1.941 0 l -h -f -Q -q 1 0 0 1 133.9937 275.8838 cm -0 0 m --46.938 23.008 l --46.938 25.225 l -0 48.232 l -0 46.292 l --45.276 24.117 l -0 1.941 l -h -f -Q -EMC -Q - -endstream endobj 11 0 obj <>stream -8;Z\4>7uQ2&A+$2*_)0]ldU=abNMX?g96/ql!e)-+TMX2&-P91"@;r#HeXUd^U@!B -H,Fh'XNc^lpHV'KakE$/GUesD>VV,b@JS]W -q%0QX%%<-/6[25d#+qUd%C>fKhrrr67aAuQDj=F"'tPmYb'6GALT$K3#*JfhLS\>phB9JlD$ISE8P%?/W>317V1\%o%SQh_0i!Bl,_k]*kJrB08,LO -I40TckTqdFS8Yi+I9ua;`[(nB+:*QA#i[9s!rrNih3@~> -endstream endobj 12 0 obj [/Indexed/DeviceRGB 255 13 0 R] endobj 13 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> -endstream endobj 5 0 obj <> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 10 0 obj <> endobj 9 0 obj <> endobj 16 0 obj <> endobj 17 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (Unbenannt-1) -%%CreationDate: 8/20/2019 9:46 PM -%%Canvassize: 16383 -%%BoundingBox: 76 -364 840 -236 -%%HiResBoundingBox: 76.2339 -363.6865 839.667 -236.3135 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: 0 -600 888 0 -%AI3_TemplateBox: 444.5 -300.5 444.5 -300.5 -%AI3_TileBox: 23.04 -597.6602 864.96 -2.33984 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -272 193 1 1418 903 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:44 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 18 0 obj <>stream -%%BoundingBox: 76 -364 840 -236 -%%HiResBoundingBox: 76.2339 -363.6865 839.667 -236.3135 -%AI7_Thumbnail: 128 24 8 -%%BeginData: 5415 Hex Bytes -%0000330000660000990000CC0033000033330033660033990033CC0033FF -%0066000066330066660066990066CC0066FF009900009933009966009999 -%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 -%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 -%3333663333993333CC3333FF3366003366333366663366993366CC3366FF -%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 -%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 -%6600666600996600CC6600FF6633006633336633666633996633CC6633FF -%6666006666336666666666996666CC6666FF669900669933669966669999 -%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 -%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF -%9933009933339933669933999933CC9933FF996600996633996666996699 -%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 -%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF -%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 -%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 -%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF -%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC -%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 -%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 -%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 -%000011111111220000002200000022222222440000004400000044444444 -%550000005500000055555555770000007700000077777777880000008800 -%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB -%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF -%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF -%524C457EA8A884A8A8A884A8A8A884A8A8A884A8A8A884A8A8FD6AFF84FD -%13FFA8A8FFFFA8A884A87EA8A8A87EA8A8A87EA8A8A87EA884A884FD07A8 -%84A8A8A884FD0BA87EA8A8A87EA8A8A87EFD05A884A87EA8A8A884FD07A8 -%7EFD07A884FD05A884A87EA8A8A87EA8A8A87EA8A8A87EFD04A8FD14FFA8 -%FD15FFA8FFFFFFA8A8A8FFFFFF84A8A8FF84FD04A8FFFFA87DFD07FFA8A8 -%A8FFFD05A8FFFFFF84A8A8FF84FD04A8FFFFFFA8FFA8A8A8FD05FF84A8A8 -%FD12FF7EFD13FFA8A8FD15FF7D7EFF7D7E84A87DFF7DA8847EA8A8597EA8 -%7EA8A87DA87DA9FFFF7EFF7E7EA884A8A87DA87DA9FFFF7EA8A87EA8A859 -%7EA87EA8FFFFA87D7E84A87DFF7EFF7DA87E7EA8FD11FFA8FD14FFA8FD15 -%FF7DA8FFA8A8FFFFA87EA8FFFFA8A8FFA8A8FF7EA87EFFFFFF84FFFFA9A8 -%84FFFFFFA87DFD06FF84FFFFA8A9FFA8A8FF7DFFFFFF7EA8A8FFFFA8A8A8 -%7EFFFFFFA8A8FD11FF7EFD13FFA8A8FD14FF7EFFA8FF7EA8A8A87EA8A8FD -%05FF7EAFFFA87DFD07FFA8A8A8FD04FF847DA8A8FFFFFFA87E84FFFFFF7E -%AFFF84A8FFFFA87DA8FFFFA8847DA8FD04FF7DFD11FFA8FD14FFA8FD14FF -%7EFD04A87DA97DA884FD06FFA8A8FFA87EA8FFFFFFA8FFFFA87DA9FD04FF -%7DA8A8FD05FFA8A87DAFFFA8A8FF7EFFFFFFA8A8A8FFFFFF7DA8A8FD04FF -%A8FD11FF7DFD07FF7EA8FD05FF7EA8FFFFFFA8A8FD13FFA97DA9A8847DA9 -%FFFF7D7E7DFFFFA87DFF7EA8FFA87EA8FFFFA87EFFFFA8A87DFFFFFF7D84 -%FD06FF7DFFFFFF7DFF7EA8FF84A8FFFFA87EA8FFFF7DA87DA8A8FFFFA87D -%FD11FFA8FD05FFA97DA8FD05FFA953FD05FFA8FD13FF7EFFFFFFA87DA8FF -%FFFD04A8A97DFFFFA8A8FF7EFF7DA8A884A8FFFFA8FFA87EAF7DFF84FD04 -%A8FFFFA884AF7DAFFFA8A8FFA884A8A8A8AF7DA97EA8A8A8FF84A8A97DFD -%12FF7DFFFFFFA8847EFD07FF7DFF7DFFFFFFA8A8FD18FFA8FFFFFFA8FFA8 -%A87EFFFFFFA8FD05FF84A8A8FFFFFFA8FFFFA87EA8FFFF7EA87EFD04FFA8 -%7EA8FFFFA8FFFFFFA8A8A8FFFFA87EA9FFFFA8FFA8A87EFD13FFA8FFFF7E -%A8A8FD07FFA8A8FFA8A8FFFFFFA8FD6AFF84FF52A8FD09FF7EA8FFA87EFF -%FFA8A8FD0AFFA9FD27FFA9FD05FFA8FD1BFFA8FD15FFA8FFA97EA9FD08FF -%7EFFFFFF7EFFFFFFA8FD04FFA87EA87DFFA8A87DFD07FFA8FFFFFFA8A87E -%A87DFFFFA97DA87E84A8FFFFFF7EA87EA8A8A97EA87DFFA8A87DFFFFFF7E -%A87EFFA8A87EA8A8FFA8A87EA8A8A87DA87EFD04FFA87DA8FFFFA8A87EA8 -%FFA9A8FFFFFFA8A87EA8A8FFFFA87EA8A8FFFF7EFFFFFF7E84A8FD05FF7D -%FD05FF7DFFA8A8FD04FF7DA8A8FFA884FFFF7DA87EFFFFA97E7D7DFFFF7E -%A8A87DFFA8FFA8FF7DA9A87EFFFF7D8484FFA87E7DA9A8FFA884FFFF7DFF -%7DA8A8A87E8484FFA8A87DA87DFFA87EA8A87DFFA8FFFF7EA8FF7EA8A87D -%A8FF7DA87D7DFFFF7DA87DFFA8FFA8A87DFFA87DA8FFA8FD05FFA87DFFFF -%FFA8A8FD05FFA8A8FFA8FD04FFA8A9FFFFFF7DFFFFFFA8A8FFFFFD05A8FF -%7EFFA8A8FD05FFA8FFFFA8A8A8A9A8FFFFFF7D7EFD04FF7DFFFFFFA8A8FD -%04FF7EFFFFFFA8A884A8FFFF7DFFFFA8FFFFFFA97EFFFFFFA8A8FD04FF7E -%A87DA8FFA87EA8FFFFA9A87EFD06FF7DFD06FFA97DA8FFA8A8FD05FFFD04 -%A8FD04FF7D7E7DA8FFA87D84A8A87DFFFFA87DA8A87DA8A8FFFF7DFD05FF -%7DFFFFFF7D7DFFA87DA87DA87D7E7DA8FFA87D84A8A8A8FD04FF847DA859 -%A87EA859A87D7EFFFF7DFFFFFF84A8FD04FF7DFD04FFA87DFF7DFF7EA859 -%A87EA87DA8FFFFA8A8A8FFA8FD08FFAFFD0BFFA8FD04FFA8A8FD06FFA87E -%A9FFFFA8A8A8FFA8A8A8FFA8A8FD05FFA8FFFFFFA8A8FFA8A8A8FFFFA8A8 -%FD06FFA87DAFFD04FF7DA9FFFD06A8FFFFFFA9A8FFFFFFA8A8FFFFFFA884 -%FD04FF84A8FFFF84A8A8A8FFFFA9A884FFFFFFA8A8FF7DFD13FFA8A8FD04 -%FF7DFFA9FFA884FFFF7E7E7DFFFFA87DA8FFFF7D7DFFFF7DFD05FF7DFFFF -%FFA8A8FFA8A8FFFFFF7DFFA9FFA884FFFF7DA87DFFFFA87DA8A8FFFFA87D -%A87EFD05FF7DFFFFFFAF7DA8FFA884A8A8FFFF7DA8A8FFFFA853A87EFFFF -%FF84A8A8FFFF7E7DFFA8FD14FFA8FD04FFA87DA87DFFA8A87DA8A87E7DA8 -%7EA8A8FFFFFF7DFFFFA8FD05FFA8FD04FFA8FFA8FD04FFA87DA87DFFA8A8 -%7DA8FFFF7DA87DFFA8FFFFFFA8A8A8A9FD04FFA8A8FD04FFA8847EA8FFFF -%7EA87EA8FD05FF7EA8A9FFFFFFAFFFA87EA87DAFFF7EFD13FFA8A8FD04FF -%A8FFA8FFA9FFA8AFFFFFA8FFA8FD1BFFA8FFA8FFA8FFA8AFFD04FFA8FD07 -%FFAFFD0DFFA8A9A8FFFFFFA8FD11FFA8FFFFFFA8FD14FFA8FD6AFF84FD13 -%FFA9A8FFFFA8A87DA87EA87DA87EA87DA87EA87DA87EA87DA87EA87DA87E -%A87DA87EA87DA87EA87DA87EA87DA87EA87DA87EA87DA87EA87DA87EA87D -%A87EA87DA87EA87DA87EA87DA87EA87DA87EA87DA87EA87DA87EA87DA87E -%A87DA87EA87DA87EA87DA87EA87DA87EA87DA8A8FFFFA8FFA8FFA8FFA8FF -%A8FFA8FFA8FFA8FFA8A9A8FD6AFF7EA884A87EA884A87EA884A87EA884A8 -%7EA884A87DFD6AFFFF -%%EndData - -endstream endobj 19 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (Unbenannt-1) -%%CreationDate: 8/20/2019 9:46 PM -%%Canvassize: 16383 -%%BoundingBox: 76 -364 840 -236 -%%HiResBoundingBox: 76.2339 -363.6865 839.667 -236.3135 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%%DocumentFonts: HelveticaNeueLTStd-Th -%%DocumentNeededFonts: HelveticaNeueLTStd-Th -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: 0 -600 888 0 -%AI3_TemplateBox: 444.5 -300.5 444.5 -300.5 -%AI3_TileBox: 23.04 -597.6602 864.96 -2.33984 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -272 193 1 1418 903 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:44 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments -%%BeginProlog -%%EndProlog -%%BeginSetup -[ -39/quotesingle 96/grave 128/Euro 130/quotesinglbase/florin/quotedblbase/ellipsis -/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 145/quoteleft -/quoteright/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark -/scaron/guilsinglright/oe/dotlessi 159/Ydieresis /space 164/currency 166/brokenbar -168/dieresis/copyright/ordfeminine 172/logicalnot/hyphen/registered/macron/ring -/plusminus/twosuperior/threesuperior/acute/mu 183/periodcentered/cedilla -/onesuperior/ordmasculine 188/onequarter/onehalf/threequarters 192/Agrave -/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute -/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde -/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave -/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute -/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex -/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute -/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex -/udieresis/yacute/thorn/ydieresis -TE -%AI55J_Tsume: None -%AI3_BeginEncoding: _HelveticaNeueLTStd-Th HelveticaNeueLTStd-Th -[/_HelveticaNeueLTStd-Th/HelveticaNeueLTStd-Th 0 0 1 TZ %AI3_EndEncoding AdobeType -%AI5_Begin_NonPrinting -Np -%AI8_PluginGroupInfo -(Adobe Vectorized Object) (Nachgezeichnetes Bild) (Vectorize.aip) -%AI8_PluginGroupInfo -(Adobe Flare Plugin) (Flare) (flare.aip) -%AI8_PluginGroupInfo -(Adobe Deform Plugin) (Adobe H\374llen-Zusatzmodul) (Envelope and Warp.aip) -%AI8_PluginGroupInfo -(Adobe Planar Group) (Adobe-Zusatzmodul Interaktiv malen) (Live Paint.aip) -%AI8_PluginGroupInfo -(Adobe Perspective Plugin Group) (Adobe Perspective Plugin Group) (Perspective.aip) -%AI8_PluginGroupInfo -(Adobe Path Blends) (Adobe Angleichungen-Zusatzmodul) (Live Blends.aip) -%AI8_PluginGroupInfo -(Adobe Symbolism) (Adobe Symbolism) (Symbolism.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe Calligraphic Brush Tool) (Adobe Kalligrafiepinsel-Zusatzmodul) (Calligraphic Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Pattern Editor Plugin Group) (Adobe Pattern Editor Plugin Group) (Swatch Libraries.aip) -%AI8_PluginGroupInfo -(Pathfinder Suite) (Adobe Zusammengesetzte Form) (PathFinder Suite.aip) -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -9 Bn -%AI5_BeginGradient: (Blauer Himmel) -(Blauer Himmel) 0 2 Bd -[ -0.591974 -0 -0.148531 -0 -0.239216 -0.870588 -0.929412 -4 %_Br -[ -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 Bs -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Goldstaub) -(Goldstaub) 0 4 Bd -[ -< -21202121222122222323222323242324242524242525252526262626272727272728282929292929 -2A2A2A2A2B2B2B2B2B2B2B2C2C2C2C2D2D2D2D2D2E2E2F2F30303030303131313132313232323232 -333333333434 -> -< -2D2F30313234343637393B3C3D3E4041434345464749494B4C4D4E4F50525354555658595B5C5D5E -5F616164656768696B6B6D6E6F70727374767778797A7B7D7E8081828384858688888A8B8D8E8F91 -919394959698 -> -< -F4F4F4F5F5F5F5F5F6F6F6F7F7F7F7F7F8F8F8F9F9F9FAFAFAFBFBFBFBFBFCFCFCFCFDFDFEFEFEFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF -> -< -030404040404050506060606060707070708080808080808090909090A0A0A0B0B0B0B0C0C0D0D0D -0D0D0E0E0E0E0F0F0F0F0F1010101011111011111211121213131414141515161616161717171717 -181819191A19 -> -< -E5E5E4E4E3E3E2E2E1E1E1E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D8D8D8D7D7D6D6D5D5D4D4D4 -D3D3D2D2D1D1D0D0D0CFCFCECECDCDCCCCCCCBCBCACAC9C9C8C8C7C7C7C6C6C5C5C4C4C3C3C3C2C2 -C1C1C0C0BFBF -> -< -C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E -9D9C9B999897969594939291908F8E8D8C8B8A898887868584838281807F7E7D7C7B7A7978777675 -74737271706F -> -0 -4 %_Br -< -171717181818181818181919191A1A1A1A1B1B1B1B1B1C1C1D1D1D1D1D1D1E1E1E1F1F20202021 -> -< -69686765646261605E5D5B5A5856555352514F4C4B4948464543413F3E3C3A3837353332302F2D -> -< -FAFAFAFAFAFAF9FAFAFAFAF9F9F9F9F9F8F8F8F7F7F6F6F6F6F6F6F6F5F5F5F4F5F5F4F4F4F4F4 -> -< -030303030303030303030303030404040404040404040404040404040404040404040404040403 -> -0.898039 -< -9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5 -> -< -030303030303030202020202020202020202020201010101010101010101010100000000000000 -> -4 %_Br -< -00000000000000000000000000000000000000000000000000000000000000000000000102040406 -060808090A0C0E0E0F0F1111131414151517 -> -< -A5A5A5A4A4A3A3A3A3A2A1A0A09F9E9E9D9B9B9A99989796959594939191908F8E8C8B8B89888685 -848281817F7D7C7A7978767472706F6D6B69 -> -< -F0F0F0F1F1F1F1F1F1F1F2F2F2F3F3F3F4F4F4F4F4F5F5F6F6F6F7F7F7F8F8F9F9FAFAFAFAFAFAFA -FAFBFBFBFBFCFCFCFCFCFCFBFBFBFBFBFAFA -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -000000000000010101010101010102020203 -> -< -FFFFFFFEFEFEFEFDFDFDFCFCFCFBFBFBFAFAF9F9F9F8F8F7F7F6F6F5F5F4F4F3F3F2F2F1F1F0F0EF -EFEEEEEDEDECEBEBEAEAE9E9E8E7E7E6E6E5 -> -< -73737374747575767677777878797A7A7B7C7C7D7E7E7F808181828384848586878889898A8B8C8D -8E8F90909192939495969798999A9B9C9D9E -> -< -00000000000000000000000000000001010101010101010101010101010101010101020202020202 -020202020202020202020303030303030303 -> -4 %_Br -[ -0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 %_BS -%_0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 Bs -0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 %_BS -%_0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 Bs -0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 %_BS -%_0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 Bs -0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 %_BS -%_0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 1) -(Unnamed gradient 1) 0 2 Bd -[ -< -0000010304050608090B0C0D0F10111213141718191A1B1C1E1F21222324252728292A -> -< -00000102030405060708090A0A0B0C0C0D0E1011111213141516171819191A1B1B1C1D -> -< -000001020304050708090A0B0C0D0E0F101112131415161718191A1B1C1C1D1E1F2021 -> -< -0000000000000000000000000000000000000000000000000000000000000000000000 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -4 %_Br -[ -0.81 0 1 6 50 100 %_BS -%_0.81 0 1 6 50 100 Bs -1 0 1 6 50 0 %_BS -%_1 0 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 17) -(Unnamed gradient 17) 1 2 Bd -[ -< -26252423222121201E1D1B1A191716151413131211100F0D0C0B09080605050403010000 -> -< -1F1E1D1D1C1B1A19181716151413131211100F0E0D0C0C0B0A0A09070605040302010000 -> -< -2120201F1E1D1C1C1B1A1817161615141312100F0F0E0D0C0B0A09080605040302010000 -> -< -000000000000000000000000000000000000000000000000000000000000000000000000 -> -< -DFE0E1E2E3E4E4E5E6E7E8E9EAEBECEDEEEFEFF0F1F2F3F4F5F6F7F8F9FAFAFBFCFDFEFF -> -< -DCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -< -DBDCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -4 %_Br -[ -0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 %_BS -%_0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 Bs -0 0 0 0 1 1 1 2 0 6 50 100 %_BS -%_0 0 0 0 1 1 1 2 0 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 2) -(Unnamed gradient 2) 0 2 Bd -[ -< -B7B8B8B9B9BABBBBBCBDBDBEBEBFC0C0C1C1C2C2C3C3C4C4C5C6C6C7C7C7C8C8C9CACACBCBCCCCCD -CDCECECFCFD0D1D1D2D2D3D3D4D4D5D5D6D6D7D7D8D8D9D9DA -> -< -515251535253555455575657575859595A5C5B5C5B5D5E5D5F605F61606163626364636564656766 -6869686A696B6C6B6D6E6D6F6E6F7170727373747475777678 -> -0 -0 -0 -< -9D9C9C9B9B9A999998979796969594949392929191908F8F8E8D8D8C8C8B8A8A8988888787868585 -84838382828180807F7E7E7D7D7C7B7B7A7979787877767675 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDDDCDBDAD9D8D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBE -> -4 %_Br -[ -0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 %_BS -%_0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 Bs -0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 %_BS -%_0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 28) -(Unnamed gradient 28) 1 2 Bd -[ -< -0000010304050608090A0C0D0F10111314151617181A1B1C1D1E1F20212324262728292A2B2D2E30 -31323335363738393A3C3D3E404142434445464748494A4B4C4D4E4F5051525354565758595A -> -< -00000100010203040504060708090908090A0B0C0C0C0D0D0E0F100F101112131413141516171816 -1718191A1B1A1B1C1D1E1F1E1F20212223222324252627262728292A2B2A2B2C2D2E2F2E2F30 -> -< -0000000103040304050707080909090B0C0B0C0D0E0E0F100F10111312131415151717171818191A -1B1B1C1C1C1E1D1E1F20202122232223242425252625262829282829282A2B2C2B2D2E2F2F2F -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000001000101010101010202020202020203030303030404 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1 -> -< -FFFEFDFDFCFBFAF9F8F8F7F6F5F4F3F3F2F1F0EFEEEEEDECEBEAE9E9E8E7E6E5E4E4E3E2E1E0DFDF -DEDDDCDBDADAD9D8D7D6D5D5D4D3D2D1D0D0CFCECDCCCBCBCAC9C8C7C6C6C5C4C3C2C1C1C0BF -> -< -FFFEFEFDFCFBFBFAF9F8F8F7F6F6F5F4F3F3F2F1F0F0EFEEEEEDECEBEBEAE9E8E8E7E6E6E5E4E3E3 -E2E1E0E0DFDEDEDDDCDBDBDAD9D8D8D7D6D6D5D4D3D3D2D1D0D0CFCECECDCCCBCBCAC9C8C8C7 -> -4 %_Br -[ -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 %_BS -%_0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 3) -(Unnamed gradient 3) 0 2 Bd -[ -< -2C2D2E2F303132333435363738393B3C3D3E3F4142434445464748494A4B4C4D4F50505152535454 -5556575858595A5B5C5D5E5F606162636364656667686969 -> -< -00000000000000000000000000000000000000000000000001000000000100000000000000010000 -010002010002010201000201020101030204040305040606 -> -0 -0 -< -DAD9D8D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBB9B8B7B6B5B4B3B2 -B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A -> -< -F1F1F0F0EFEFEFEEEEEDEDEDECECEBEBEBEAEAE9E9E9E8E8E7E7E7E6E6E5E5E5E4E4E4E3E3E2E2E2 -E1E1E0E0E0DFDFDEDEDEDDDDDCDCDCDBDBDADADAD9D9D8D8 -> -1 -4 %_Br -[ -0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 %_BS -%_0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 Bs -0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 %_BS -%_0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 7) -(Unnamed gradient 7) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Weiß, Schwarz) -(Weiß, Schwarz) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI3_BeginPattern: (Jive) -(Jive) 47.5615 109.6396 155.9004 219.2813 -%_0 A -%_0 Xw -%_u -%_0 1 0 0 0 Xy -%_0 J 0 j 1 w 10 M []0 d %_0 XR -%_47.5615 219.2813 m -%_155.9004 219.2813 L -%_155.9004 109.6396 L -%_47.5615 109.6396 L -%_47.5615 219.2813 L -%_n -%_/ArtDictionary : -%_1 /Bool (AIPattern_Editor_Backing_Tile_Rect) , -%_; -%_ -%_u -%_*u -%_1 D -%_0 O -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_135.0352 74.9453 m -%_135.0566 75.0645 135.1602 75.1504 135.2813 75.1523 c -%_148.1875 75.2871 160.0352 78.4199 169.2529 86.667 C -%_161.2227 81.1094 146.3105 79.1563 137.7256 83.0488 c -%_137.6152 83.0986 137.5566 83.2188 137.584 83.3369 c -%_137.6104 83.4551 137.7168 83.5371 137.8379 83.5332 c -%_148.5176 83.2441 157.1172 86.54 163.8223 92.498 C -%_156.9531 92.9199 151.248 97.2383 151.2656 102.3428 c -%_151.2656 102.4619 151.3496 102.5645 151.4668 102.5898 c -%_151.583 102.6152 151.7012 102.5547 151.75 102.4463 c -%_152.8711 99.957 156.498 98.666 160.333 99.5664 c -%_164.5127 100.5469 167.333 103.7559 166.6338 106.7314 c -%_166.1621 108.7461 164.1973 110.1348 161.6816 110.5186 c -%_161.5547 110.5371 161.4619 110.6484 161.4648 110.7764 c -%_161.4688 110.9043 161.5674 111.0098 161.6953 111.0215 c -%_162.7637 111.124 163.875 111.1279 165.0127 111.0195 c -%_171.5029 110.4023 176.5264 106.4238 176.9619 101.8418 C -%_181.6748 102.3887 185.8467 104.998 187.3408 108.6152 c -%_187.3857 108.7236 187.501 108.7871 187.6162 108.7695 c -%_187.7314 108.75 187.8193 108.6553 187.8291 108.5391 c -%_188.2061 103.7871 186.5713 100.7002 182.8584 97.6846 C -%_188.2432 99.7441 194.3027 99.8496 200.1133 97.1465 c -%_200.2188 97.0977 200.2773 96.9824 200.2559 96.8672 c -%_200.2324 96.752 200.1328 96.668 200.0156 96.6641 c -%_195.1367 96.4736 191.5996 94.9082 188.2861 91.5918 C -%_206.5391 96.7256 221.3711 85.3906 216.2383 68.5391 c -%_216.2031 68.4238 216.0918 68.3486 215.9707 68.3613 c -%_215.8496 68.373 215.7539 68.4688 215.7441 68.5898 c -%_214.8262 78.3037 208.041 84.7051 197.8828 85.666 C -%_203.2695 83.6055 208.8828 78.6895 209.4395 70.1318 c -%_209.4473 70.0098 209.3672 69.8984 209.248 69.8691 c -%_209.1289 69.8398 209.0059 69.8984 208.9551 70.0098 c -%_206.1563 76.1641 200.6582 79.2754 194.7949 79.8223 C -%_201.1289 77.2422 205.1914 71.2207 206.3652 63.4023 c -%_206.3848 63.2793 206.3105 63.1602 206.1914 63.123 c -%_206.0742 63.084 205.9453 63.1387 205.8887 63.248 c -%_202.0234 70.8311 193.7324 76.042 183.4424 72.0605 c -%_172.8252 67.9512 168.168 55.6738 167.1387 47.0195 c -%_167.124 46.8984 167.0234 46.8047 166.9004 46.7969 c -%_166.7783 46.7891 166.668 46.8711 166.6396 46.9922 c -%_162.9199 62.6797 170.2227 78.9414 183.2764 85.832 C -%_176.1807 83.8291 169.8369 79.5723 166.249 72.4775 C -%_157.9551 71.459 152.2451 68.6152 149.3916 63.2383 c -%_149.335 63.1309 149.2109 63.0781 149.0957 63.1133 c -%_148.9805 63.1465 148.9043 63.2578 148.9141 63.3789 c -%_149.0967 65.4883 149.8555 69.709 152.9883 71.6494 C -%_146.0234 71.6387 140.4824 72.543 135.1895 74.6621 c -%_135.0781 74.708 135.0127 74.8262 135.0352 74.9453 c -%_f -%_0 D -%_164.5215 21.4746 m -%_164.4229 21.541 164.293 21.5293 164.2061 21.4492 c -%_164.1201 21.3672 164.1016 21.2383 164.1602 21.1367 c -%_165.7803 18.3398 164.3008 14.3223 161.1094 14.3223 c -%_155.3887 14.3223 152.6387 25.0918 153.5137 34.916 C -%_155.6768 29.1602 157.5469 26.8613 160.8613 24.1211 c -%_160.9551 24.043 161.0898 24.043 161.1836 24.1191 c -%_161.2773 24.1973 161.3047 24.3281 161.2471 24.4355 c -%_156.3906 33.5156 155.3496 40.502 155.3496 48.5215 C -%_156.8125 42.5625 158.5449 39.1992 163.4766 34.1406 c -%_163.5625 34.0527 163.6992 34.0391 163.8018 34.1074 c -%_163.9033 34.1777 163.9404 34.3105 163.8887 34.4238 c -%_158.5908 46.0137 158.9951 58.8711 162.9414 68.6875 c -%_162.9805 68.7852 162.9561 68.8965 162.8789 68.9688 c -%_162.8018 69.0391 162.6895 69.0566 162.5938 69.0098 c -%_157.3887 66.459 154.3301 64.7832 149.8418 58.6211 C -%_151.1992 51.2227 150.0703 47.5723 146.6699 41.4258 C -%_150.6074 51.3438 148.5117 65.3203 138.4824 71.0176 c -%_138.373 71.0791 138.2344 71.0518 138.1582 70.9531 c -%_138.0801 70.8535 138.0869 70.7119 138.1738 70.6211 c -%_141.9551 66.666 144.7051 59.9863 142.3301 52.6934 C -%_143.8594 63.082 134.7344 71.8086 124.5508 71.8086 c -%_114.9512 71.8086 108.4004 64.2988 108.9414 56.8672 c -%_109.4785 49.502 114.3848 45.8984 118.6133 44.3691 c -%_118.7246 44.3301 118.8496 44.3711 118.9131 44.4707 c -%_118.9766 44.5723 118.9629 44.7012 118.8799 44.7871 c -%_113.2695 50.4785 112.502 61.2793 122.4629 64.5469 C -%_116.6035 59.4902 118.7734 47.7168 128.1523 46.8223 c -%_128.2695 46.8105 128.3789 46.8809 128.417 46.9922 c -%_128.4551 47.1035 128.4121 47.2266 128.3135 47.2891 c -%_126.3047 48.5664 124.6348 51.0605 124.6348 53.8633 c -%_124.6348 58.5371 128.0566 60.373 130.3105 60.373 c -%_133.7324 60.373 136.5703 57.1172 136.5703 52.1934 c -%_136.5703 46.3496 131.3105 41.5098 124.5508 40.7578 c -%_117.9248 40.0234 111.7686 42.9121 108.8008 47.2168 c -%_108.7314 47.3184 108.5996 47.3555 108.4873 47.3047 c -%_108.375 47.2539 108.3164 47.1289 108.3467 47.0098 c -%_111.3652 35.3066 125.1426 30.1328 135.2344 37.5039 C -%_128.6211 30.002 118.2285 29.8984 109.5127 37.5898 c -%_109.4219 37.6699 109.2871 37.6738 109.1904 37.5996 c -%_109.0938 37.5273 109.0635 37.3945 109.1172 37.2871 c -%_111.7842 31.8789 118.3701 25.4668 127.7227 26.4023 c -%_136.2793 27.2578 141.2441 35.416 142.2461 42.0938 C -%_142.8027 33.5723 140.8525 27.5566 133.4922 21.9473 c -%_133.3955 21.873 133.3652 21.7402 133.4199 21.6309 c -%_133.4746 21.5234 133.5996 21.4688 133.7168 21.502 c -%_140.502 23.4629 145.9473 26.9277 148.7656 34.0469 C -%_148.7656 27.8848 146.627 21.6738 141.2402 17.5352 c -%_141.1426 17.4609 141.1133 17.3301 141.168 17.2207 c -%_141.2227 17.1113 141.3467 17.0566 141.4639 17.0898 c -%_144.917 18.0742 147.6348 19.5781 149.6016 22.2754 C -%_150.9121 11.1758 156.123 4.58398 162.127 4.58398 c -%_166.252 4.58398 169.332 7.61719 169.332 12.4551 c -%_169.332 15.2852 167.8438 19.2578 164.5215 21.4746 c -%_f -%_263.748 113.0938 m -%_260.5859 116.998 254.209 118.4863 247.3164 117.082 C -%_247.8262 121.3828 246.9824 125.873 245.7051 128.5664 c -%_245.6523 128.6758 245.5313 128.7334 245.4141 128.7051 c -%_245.2969 128.6758 245.2168 128.5684 245.2207 128.4473 c -%_245.5957 119.6807 240.5977 112.6035 231.7715 109.5371 C -%_238.6777 114.293 240.6973 123.7305 237.4102 128.6035 c -%_237.3418 128.7021 237.2148 128.7412 237.1035 128.6953 c -%_236.9922 128.6504 236.9277 128.5332 236.9492 128.416 c -%_237.3223 126.3555 236.3438 123.7314 234.2363 121.6895 c -%_231.3301 118.875 227.3867 118.2363 225.4258 120.2598 c -%_223.4648 122.2852 224.2285 126.207 227.1328 129.0215 c -%_228.1934 130.0488 229.3926 130.7832 230.582 131.2061 c -%_230.6953 131.2461 230.7637 131.3594 230.748 131.4775 c -%_230.7344 131.5967 230.6387 131.6885 230.5195 131.6982 c -%_224.1309 132.2529 219.75 128.4463 217.0039 123.8203 c -%_214.209 119.1152 209.4336 115.4102 203.793 116.1504 c -%_203.6738 116.166 203.5605 116.0957 203.5195 115.9824 c -%_203.4805 115.8691 203.5254 115.7422 203.6289 115.6807 c -%_206.4258 113.9961 209.5 113.2969 213.4922 114.6289 C -%_207.6973 109.7197 199.4453 106.8867 191.6523 109.4014 c -%_191.543 109.4375 191.4238 109.3945 191.3613 109.2979 c -%_191.2988 109.2012 191.3105 109.0752 191.3867 108.9902 c -%_197.2949 102.4258 209.0762 102.2949 216.4961 107.6172 C -%_213.459 103.3008 209.4277 100.1328 202.2031 99.1387 c -%_202.0879 99.123 201.998 99.0313 201.9844 98.916 c -%_201.9727 98.7998 202.0391 98.6904 202.1484 98.6504 c -%_210.4395 95.5723 218.748 98.6953 225.5938 106.8652 C -%_222.6016 100.4883 217.6875 95.3809 210.8262 92.8535 c -%_210.7109 92.8115 210.6426 92.6934 210.6641 92.5742 c -%_210.6836 92.4531 210.7871 92.3643 210.9082 92.3613 c -%_214.8516 92.2803 218.3945 93.2188 223.1738 95.9316 C -%_219.666 90.2422 220.4336 80.293 225.543 73.6738 c -%_225.6133 73.582 225.7383 73.5498 225.8457 73.5957 c -%_225.9512 73.6426 226.0137 73.7549 225.9941 73.8691 c -%_224.8145 81.0703 227.293 89.1992 231.6035 93.5117 C -%_229.4512 85.8799 231.5977 78.9355 237.5 73.8672 c -%_237.5703 73.8066 237.6699 73.79 237.7559 73.8232 c -%_237.8438 73.8564 237.9043 73.9355 237.918 74.0273 c -%_239.1523 83.4453 249.6875 93.002 258.5195 93.8027 c -%_258.6445 93.8135 258.7422 93.9141 258.75 94.0381 c -%_258.7578 94.1621 258.6758 94.2754 258.5527 94.3027 c -%_254.2734 95.2715 249.8613 94.793 246.1641 93.2715 C -%_248.8242 96.2051 252.1035 98.3828 255.7188 99.5176 c -%_255.8359 99.5537 255.9082 99.668 255.8945 99.7891 c -%_255.8809 99.9102 255.7813 100.0039 255.6602 100.0127 c -%_251.1504 100.3242 246.7363 99.0068 242.9297 96.4746 C -%_247.291 103.0957 253.9102 108.0195 262.3574 109.9805 c -%_262.4785 110.0088 262.5605 110.1191 262.5547 110.2432 c -%_262.5469 110.3672 262.4512 110.4668 262.3281 110.4805 c -%_250.4102 111.7822 240.582 107.1621 234.1074 98.5625 C -%_235.7559 103.4629 240.4727 108.3184 247.0527 111.1816 c -%_252.8984 113.7266 258.9023 114.1279 263.4746 112.6914 c -%_263.5801 112.6582 263.6973 112.6982 263.7598 112.791 c -%_263.8223 112.8828 263.8184 113.0059 263.748 113.0938 c -%_f -%_210.8438 37.5215 m -%_215.6504 48.0078 215.3086 56.207 211.4375 66.5762 c -%_211.3926 66.6934 211.2715 66.7607 211.1484 66.7363 c -%_211.0254 66.7109 210.9395 66.5996 210.9453 66.4746 c -%_211.5664 53.8535 208.1191 44.8203 200.6465 38.668 C -%_208.8965 48.5195 205 68.2275 191.8242 68.2275 c -%_182.2393 68.2275 174.3086 60.252 172.3691 50.7031 c -%_172.3447 50.582 172.4111 50.459 172.5273 50.416 c -%_172.6426 50.3711 172.7734 50.416 172.8359 50.5215 c -%_175.6787 55.2832 180.2451 58.373 185.2939 58.373 c -%_193.4277 58.373 195.834 51.9063 195.834 47.375 c -%_195.834 41.1875 190.9082 36.0313 187.1279 36.0313 c -%_183.6904 36.0313 182.0869 38.8555 182.0869 40.959 c -%_182.0869 44.8574 185.085 48.125 188.4639 49.123 c -%_188.583 49.1582 188.6611 49.2773 188.6436 49.4023 c -%_188.624 49.5273 188.5186 49.6191 188.3936 49.6211 c -%_184.2861 49.6465 180.8154 47.7656 178.7627 44.0527 C -%_178.4932 46.9277 178.4902 48.7383 179.4033 51.7754 c -%_179.4385 51.8926 179.3848 52.0176 179.2773 52.0742 c -%_179.168 52.1309 179.0352 52.1016 178.9609 52.0059 c -%_171.6045 42.6133 175.125 26.3809 180.9404 19.6484 C -%_175.4082 23.6309 170.5234 32.2813 170.6006 44.041 c -%_170.6016 44.1641 170.5156 44.2676 170.3955 44.291 c -%_170.2754 44.3164 170.1563 44.25 170.1113 44.1367 c -%_166.0029 33.8848 168.1826 14.8887 179.3926 4.28516 C -%_176.5088 3.88867 173.5254 3.93945 170.2676 4.97852 c -%_170.1523 5.01367 170.0273 4.96484 169.9688 4.85938 c -%_169.9102 4.75195 169.9336 4.61914 170.0273 4.54102 c -%_174.1191 1.08594 179.8418 0 185.2939 0 C -%_180.5967 5.5 182.1572 16.5547 189.6494 16.5547 c -%_194.9961 16.5547 197.4238 8.25586 193.2949 3.77344 c -%_193.2168 3.6875 193.207 3.55859 193.2695 3.46289 c -%_193.334 3.36523 193.4551 3.32227 193.5664 3.36133 c -%_198.3457 5.01563 203.5117 9.15039 203.5117 14.377 c -%_203.5117 19.4199 198.6992 23.7715 191.7109 23.4277 C -%_200.5293 25.9336 209.7617 23.1602 214.5918 17.1758 c -%_214.666 17.082 214.7969 17.0547 214.9023 17.1074 c -%_215.0098 17.1621 215.0645 17.2832 215.0352 17.3984 c -%_212.2441 28.1152 203.0684 32.5977 191.5957 31.1055 C -%_200.877 34.8613 214.8457 31.5859 221.0195 23.7949 c -%_221.0918 23.7031 221.2188 23.6738 221.3262 23.7227 c -%_221.4316 23.7734 221.4902 23.8906 221.4668 24.0039 c -%_220.0957 30.6191 216.6035 35.5664 210.8438 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 56.8086 m -%_237.2051 56.6895 237.1016 56.6016 236.9805 56.6016 c -%_224.0742 56.4648 212.2266 53.334 203.0098 45.0859 C -%_211.0391 50.6445 225.9512 52.5957 234.5371 48.7051 c -%_234.6465 48.6543 234.7051 48.5332 234.6777 48.416 c -%_234.6523 48.2988 234.5449 48.2168 234.4238 48.2188 c -%_223.7441 48.5098 215.1445 45.2129 208.4395 39.2559 C -%_215.3086 38.832 221.0137 34.5156 220.9961 29.4102 c -%_220.9961 29.291 220.9121 29.1875 220.7949 29.1621 c -%_220.6797 29.1387 220.5605 29.1973 220.5117 29.3066 c -%_219.3906 31.7949 215.7637 33.0879 211.9297 32.1875 c -%_207.75 31.2051 204.9297 27.998 205.6289 25.0215 c -%_206.0996 23.0078 208.0645 21.6191 210.5801 21.2344 c -%_210.707 21.2148 210.8008 21.1055 210.7969 20.9766 c -%_210.793 20.8496 210.6953 20.7441 210.5664 20.7305 c -%_209.498 20.6289 208.3867 20.625 207.25 20.7344 c -%_200.7598 21.3516 195.7363 25.3281 195.3008 29.9121 C -%_190.5889 29.3652 186.417 26.7539 184.9229 23.1387 c -%_184.8779 23.0293 184.7646 22.9668 184.6475 22.9844 c -%_184.5322 23.002 184.4443 23.0977 184.4346 23.2148 c -%_184.0576 27.9648 185.6924 31.0527 189.4053 34.0684 C -%_184.0205 32.0098 177.959 31.9043 172.1484 34.6055 c -%_172.043 34.6563 171.9844 34.7715 172.0059 34.8867 c -%_172.0293 35.002 172.1289 35.0859 172.2461 35.0898 c -%_177.125 35.2793 180.6631 36.8457 183.9795 40.1621 C -%_165.7227 35.0273 150.8906 46.3633 156.0234 63.2129 c -%_156.0586 63.3301 156.1699 63.4043 156.291 63.3926 c -%_156.4121 63.3809 156.5078 63.2852 156.5176 63.1641 c -%_157.4355 53.4492 164.2207 47.0469 174.3789 46.0879 C -%_168.9922 48.1465 163.3789 53.0625 162.8223 61.6211 c -%_162.8145 61.7441 162.8945 61.8535 163.0137 61.8848 c -%_163.1328 61.9141 163.2559 61.8535 163.3066 61.7422 c -%_166.1055 55.5879 171.6035 52.4785 177.4668 51.9297 C -%_171.1328 54.5117 167.0703 60.5332 165.8965 68.3516 c -%_165.877 68.4746 165.9512 68.5918 166.0703 68.6309 c -%_166.1875 68.668 166.3164 68.6152 166.373 68.5039 c -%_170.2383 60.9219 178.5293 55.7109 188.8213 59.6934 c -%_199.4375 63.8027 204.0938 76.0781 205.123 84.7324 c -%_205.1387 84.8555 205.2383 84.9492 205.3613 84.957 c -%_205.4844 84.9629 205.5938 84.8809 205.623 84.7617 c -%_209.3418 69.0723 202.0391 52.8125 188.9873 45.9219 C -%_196.082 47.9238 202.4258 52.1816 206.0137 59.2754 C -%_214.3066 60.293 220.0176 63.1387 222.8711 68.5156 c -%_222.9277 68.6211 223.0508 68.6738 223.166 68.6406 c -%_223.2813 68.6055 223.3574 68.4941 223.3477 68.375 c -%_223.166 66.2656 222.4063 62.0449 219.2734 60.1035 C -%_226.2383 60.1152 231.7793 59.2109 237.0723 57.0898 c -%_237.1836 57.0449 237.25 56.9277 237.2266 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 110.2773 m -%_207.8398 110.2129 207.9688 110.2227 208.0566 110.3047 c -%_208.1426 110.3848 208.1602 110.5137 208.1016 110.6172 c -%_206.4824 113.4141 207.9609 117.4297 211.1523 117.4297 c -%_216.873 117.4297 219.623 106.6602 218.748 96.8379 C -%_216.5859 102.5918 214.7148 104.8926 211.4004 107.6328 c -%_211.3066 107.709 211.1719 107.7109 211.0781 107.6328 c -%_210.9844 107.5566 210.957 107.4238 211.0156 107.3164 c -%_215.8711 98.2383 216.9121 91.252 216.9121 83.2324 C -%_215.4492 89.1895 213.7168 92.5527 208.7852 97.6133 c -%_208.6992 97.7012 208.5625 97.7148 208.4609 97.6445 c -%_208.3594 97.5742 208.3223 97.4414 208.373 97.3301 c -%_213.6719 85.7383 213.2676 72.8828 209.3203 63.0664 c -%_209.2813 62.9688 209.3066 62.8574 209.3828 62.7852 c -%_209.4609 62.7129 209.5723 62.6973 209.668 62.7422 c -%_214.873 65.293 217.9316 66.9688 222.4199 73.1328 C -%_221.0625 80.5313 222.1914 84.1797 225.5918 90.3262 C -%_221.6543 80.4102 223.75 66.4336 233.7793 60.7363 c -%_233.8887 60.6738 234.0273 60.7012 234.1035 60.8008 c -%_234.1816 60.9004 234.1758 61.041 234.0879 61.1328 c -%_230.3066 65.0879 227.5566 71.7676 229.9316 79.0586 C -%_228.4023 68.6699 237.5273 59.9453 247.7109 59.9453 c -%_257.3105 59.9453 263.8613 67.4531 263.3203 74.8848 c -%_262.7832 82.25 257.877 85.8555 253.6484 87.3828 c -%_253.5371 87.4238 253.4121 87.3809 253.3496 87.2813 c -%_253.2852 87.1816 253.2988 87.0508 253.3828 86.9668 c -%_258.9922 81.2734 259.7598 70.4746 249.7988 67.207 C -%_255.6582 72.2637 253.4883 84.0352 244.1094 84.9316 c -%_243.9922 84.9414 243.8828 84.8711 243.8457 84.7598 c -%_243.8066 84.6504 243.8496 84.5273 243.9492 84.4648 c -%_245.957 83.1855 247.627 80.6934 247.627 77.8906 c -%_247.627 73.2168 244.2051 71.3789 241.9512 71.3789 c -%_238.5293 71.3789 235.6914 74.6348 235.6914 79.5605 c -%_235.6914 85.4023 240.9512 90.2441 247.7109 90.9941 c -%_254.3379 91.7305 260.4941 88.8398 263.4609 84.5352 c -%_263.5313 84.4336 263.6621 84.3984 263.7754 84.4492 c -%_263.8867 84.5 263.9453 84.623 263.916 84.7422 c -%_260.8965 96.4453 247.1191 101.6191 237.0273 94.25 C -%_243.6406 101.75 254.0332 101.8555 262.75 94.1641 c -%_262.8398 94.084 262.9746 94.0781 263.0723 94.1523 c -%_263.168 94.2266 263.1992 94.3574 263.1445 94.4668 c -%_260.4785 99.873 253.8926 106.2852 244.5391 105.3516 c -%_235.9824 104.4961 231.0176 96.3359 230.0156 89.6602 C -%_229.459 98.1816 231.4102 104.1953 238.7695 109.8047 c -%_238.8672 109.8789 238.8965 110.0117 238.8418 110.1211 c -%_238.7871 110.2305 238.6621 110.2852 238.5449 110.25 c -%_231.7598 108.291 226.3145 104.8262 223.4961 97.707 C -%_223.4961 103.8672 225.6348 110.0781 231.0215 114.2168 c -%_231.1191 114.291 231.1484 114.4238 231.0938 114.5332 c -%_231.0391 114.6406 230.916 114.6953 230.7988 114.6621 c -%_227.3457 113.6797 224.627 112.1738 222.6602 109.4785 C -%_221.3496 120.5781 216.1387 127.168 210.1348 127.168 c -%_206.0098 127.168 202.9297 124.1348 202.9297 119.2988 c -%_202.9297 116.4688 204.418 112.4961 207.7402 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 18.6602 m -%_111.6758 14.7559 118.0527 13.2676 124.9453 14.6719 C -%_124.4355 10.3691 125.2793 5.88086 126.5566 3.18555 c -%_126.6094 3.07813 126.7305 3.01953 126.8477 3.04883 c -%_126.9648 3.07813 127.0449 3.18555 127.041 3.30664 c -%_126.666 12.0723 131.6641 19.1484 140.4902 22.2148 C -%_133.584 17.459 131.5645 8.02148 134.8516 3.15039 c -%_134.9199 3.05078 135.0469 3.01172 135.1582 3.05664 c -%_135.2695 3.10156 135.334 3.21875 135.3125 3.33789 c -%_134.9395 5.39844 135.918 8.02148 138.0254 10.0625 c -%_140.9316 12.877 144.875 13.5156 146.8359 11.4922 c -%_148.7969 9.4668 148.0332 5.54492 145.1289 2.73242 c -%_144.0684 1.70508 142.8691 0.96875 141.6797 0.546875 c -%_141.5664 0.505859 141.498 0.392578 141.5137 0.275391 c -%_141.5273 0.15625 141.623 0.064453 141.7422 0.054688 c -%_148.1309 -0.5 152.5117 3.30664 155.2578 7.93164 c -%_158.0527 12.6367 162.8281 16.3438 168.4688 15.6035 c -%_168.5879 15.5879 168.7012 15.6582 168.7422 15.7715 c -%_168.7813 15.8848 168.7363 16.0098 168.6328 16.0723 c -%_165.8359 17.7559 162.7617 18.4551 158.7695 17.125 C -%_164.5645 22.0332 172.8164 24.8652 180.6104 22.3516 c -%_180.7197 22.3164 180.8389 22.3594 180.9014 22.4551 c -%_180.9639 22.5508 180.9541 22.6777 180.876 22.7637 c -%_174.9668 29.3281 163.1855 29.459 155.7656 24.1348 C -%_158.8027 28.4512 162.834 31.6211 170.0586 32.6133 c -%_170.1738 32.6289 170.2637 32.7227 170.2773 32.8379 c -%_170.2891 32.9531 170.2227 33.0625 170.1133 33.1035 c -%_161.8223 36.1797 153.5137 33.0586 146.668 24.8867 C -%_149.6602 31.2656 154.5742 36.373 161.4355 38.9004 c -%_161.5508 38.9414 161.6191 39.0586 161.5977 39.1797 c -%_161.5781 39.3008 161.4746 39.3887 161.3535 39.3906 c -%_157.4102 39.4727 153.8672 38.5332 149.0879 35.8203 C -%_152.5957 41.5117 151.8281 51.459 146.7188 58.0801 c -%_146.6484 58.1719 146.5234 58.2031 146.416 58.1582 c -%_146.3105 58.1113 146.248 57.998 146.2676 57.8828 c -%_147.4473 50.6836 144.9688 42.5547 140.6582 38.2422 C -%_142.8105 45.873 140.6641 52.8184 134.7617 57.8848 c -%_134.6914 57.9453 134.5918 57.9629 134.5059 57.9297 c -%_134.418 57.8965 134.3574 57.8184 134.3438 57.7266 c -%_133.1094 48.3086 122.5742 38.752 113.7422 37.9512 c -%_113.6172 37.9395 113.5195 37.8398 113.5117 37.7148 c -%_113.5039 37.5898 113.5859 37.4785 113.709 37.4512 c -%_117.9883 36.4824 122.4004 36.9609 126.0977 38.4805 C -%_123.4375 35.5488 120.1582 33.3711 116.543 32.2363 c -%_116.4258 32.1992 116.3535 32.0859 116.3672 31.9648 c -%_116.3809 31.8438 116.4805 31.748 116.6016 31.7402 c -%_121.1113 31.4297 125.5254 32.7461 129.332 35.2793 C -%_124.9707 28.6582 118.3516 23.7344 109.9043 21.7715 c -%_109.7832 21.7441 109.7012 21.6328 109.707 21.5098 c -%_109.7148 21.3867 109.8105 21.2871 109.9336 21.2734 c -%_121.8516 19.9707 131.6797 24.5918 138.1543 33.1914 C -%_136.5059 28.2891 131.7891 23.4355 125.209 20.5723 c -%_119.3633 18.0273 113.3594 17.625 108.7871 19.0625 c -%_108.6816 19.0957 108.5645 19.0547 108.502 18.9629 c -%_108.4395 18.8691 108.4434 18.7461 108.5137 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 94.2324 m -%_156.6113 83.7461 156.9531 75.5469 160.8242 65.1777 c -%_160.8691 65.0605 160.9902 64.9922 161.1133 65.0176 c -%_161.2363 65.043 161.3223 65.1543 161.3164 65.2773 c -%_160.6953 77.9004 164.1426 86.9316 171.6152 93.0859 C -%_163.3652 83.2324 167.2617 63.5254 180.4385 63.5254 c -%_190.0244 63.5254 197.9531 71.502 199.8926 81.0508 c -%_199.918 81.1719 199.8516 81.293 199.7344 81.3379 c -%_199.6191 81.3828 199.4883 81.3379 199.4258 81.2305 c -%_196.584 76.4688 192.0176 73.3789 186.9697 73.3789 c -%_178.834 73.3789 176.4277 79.8457 176.4277 84.3789 c -%_176.4277 90.5645 181.3545 95.7207 185.1357 95.7207 c -%_188.5732 95.7207 190.1768 92.8984 190.1768 90.7949 c -%_190.1768 86.8965 187.1787 83.6289 183.8018 82.6309 c -%_183.6807 82.5938 183.6045 82.4766 183.6221 82.3516 c -%_183.6396 82.2266 183.7451 82.1328 183.8721 82.1328 c -%_187.9775 82.1074 191.4473 83.9863 193.5 87.7012 C -%_193.7695 84.8262 193.7715 83.0156 192.8594 79.9766 c -%_192.8242 79.8594 192.877 79.7344 192.9844 79.6777 c -%_193.0938 79.623 193.2266 79.6504 193.3008 79.748 c -%_200.6582 89.1406 197.1367 105.3711 191.3223 112.1055 C -%_196.8535 108.123 201.7383 99.4707 201.6621 87.7109 c -%_201.6602 87.5898 201.7461 87.4844 201.8672 87.4609 c -%_201.9863 87.4375 202.1055 87.502 202.1504 87.6152 c -%_206.2598 97.8691 204.0801 116.8633 192.8691 127.4668 C -%_195.7539 127.8652 198.7363 127.8145 201.9941 126.7754 c -%_202.1094 126.7383 202.2344 126.7891 202.293 126.8945 c -%_202.3516 127 202.3281 127.1328 202.2344 127.2109 c -%_198.1426 130.666 192.4199 131.752 186.9697 131.752 C -%_191.666 126.252 190.1064 115.1992 182.6162 115.1992 c -%_177.2656 115.1992 174.8379 123.498 178.9668 127.9805 c -%_179.0449 128.0664 179.0547 128.1934 178.9922 128.291 c -%_178.9277 128.3887 178.8066 128.4297 178.6953 128.3926 c -%_173.916 126.7363 168.75 122.6035 168.75 117.375 c -%_168.75 112.334 173.5625 107.9805 180.5537 108.3242 C -%_171.7324 105.8203 162.5 108.5918 157.6699 114.5781 c -%_157.5957 114.6699 157.4648 114.6992 157.3594 114.6445 c -%_157.252 114.5918 157.1973 114.4707 157.2266 114.3535 c -%_160.0176 103.6387 169.1934 99.1543 180.667 100.6484 C -%_171.3848 96.8906 157.416 100.166 151.2422 107.957 c -%_151.1699 108.0488 151.043 108.0801 150.9355 108.0293 c -%_150.8301 107.9805 150.7715 107.8633 150.7949 107.748 c -%_152.166 101.1328 155.6582 96.1875 161.418 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 74.9453 m -%_26.7178 75.0645 26.8213 75.1504 26.9424 75.1523 c -%_39.8486 75.2871 51.6963 78.4199 60.9141 86.667 C -%_52.8838 81.1094 37.9717 79.1563 29.3867 83.0488 c -%_29.2764 83.0986 29.2178 83.2188 29.2451 83.3369 c -%_29.2715 83.4551 29.3779 83.5371 29.499 83.5332 c -%_40.1787 83.2441 48.7783 86.54 55.4834 92.498 C -%_48.6143 92.9199 42.9092 97.2383 42.9268 102.3428 c -%_42.9268 102.4619 43.0107 102.5645 43.1279 102.5898 c -%_43.2441 102.6152 43.3623 102.5547 43.4111 102.4463 c -%_44.5322 99.957 48.1592 98.666 51.9941 99.5664 c -%_56.1738 100.5469 58.9941 103.7559 58.2949 106.7314 c -%_57.8232 108.7461 55.8584 110.1348 53.3428 110.5186 c -%_53.2158 110.5371 53.123 110.6484 53.126 110.7764 c -%_53.1299 110.9043 53.2285 111.0098 53.3564 111.0215 c -%_54.4248 111.124 55.5361 111.1279 56.6738 111.0195 c -%_63.1641 110.4023 68.1875 106.4238 68.623 101.8418 C -%_73.3359 102.3887 77.5078 104.998 79.002 108.6152 c -%_79.0469 108.7236 79.1621 108.7871 79.2773 108.7695 c -%_79.3926 108.75 79.4805 108.6553 79.4902 108.5391 c -%_79.8672 103.7871 78.2324 100.7002 74.5195 97.6846 C -%_79.9043 99.7441 85.9648 99.8496 91.7754 97.1465 c -%_91.8809 97.0977 91.9395 96.9824 91.918 96.8672 c -%_91.8945 96.752 91.7949 96.668 91.6777 96.6641 c -%_86.7988 96.4736 83.2617 94.9082 79.9473 91.5918 C -%_98.2012 96.7256 113.0332 85.3906 107.9004 68.5391 c -%_107.8652 68.4238 107.7539 68.3486 107.6328 68.3613 c -%_107.5117 68.373 107.416 68.4688 107.4063 68.5898 c -%_106.4883 78.3037 99.7031 84.7051 89.5449 85.666 C -%_94.9316 83.6055 100.5449 78.6895 101.1016 70.1318 c -%_101.1094 70.0098 101.0293 69.8984 100.9102 69.8691 c -%_100.791 69.8398 100.668 69.8984 100.6172 70.0098 c -%_97.8184 76.1641 92.3203 79.2754 86.457 79.8223 C -%_92.791 77.2422 96.8535 71.2207 98.0273 63.4023 c -%_98.0469 63.2793 97.9727 63.1602 97.8535 63.123 c -%_97.7363 63.084 97.6074 63.1387 97.5508 63.248 c -%_93.6855 70.8311 85.3945 76.042 75.1035 72.0605 c -%_64.4863 67.9512 59.8291 55.6738 58.7998 47.0195 c -%_58.7852 46.8984 58.6846 46.8047 58.5615 46.7969 c -%_58.4395 46.7891 58.3291 46.8711 58.3008 46.9922 c -%_54.5811 62.6797 61.8838 78.9414 74.9375 85.832 C -%_67.8418 83.8291 61.498 79.5723 57.9102 72.4775 C -%_49.6162 71.459 43.9063 68.6152 41.0527 63.2383 c -%_40.9961 63.1309 40.8721 63.0781 40.7568 63.1133 c -%_40.6416 63.1465 40.5654 63.2578 40.5752 63.3789 c -%_40.7578 65.4883 41.5166 69.709 44.6494 71.6494 C -%_37.6846 71.6387 32.1436 72.543 26.8506 74.6621 c -%_26.7393 74.708 26.6738 74.8262 26.6963 74.9453 c -%_f -%_0 D -%_56.1826 21.4746 m -%_56.084 21.541 55.9541 21.5293 55.8672 21.4492 c -%_55.7813 21.3672 55.7627 21.2383 55.8213 21.1367 c -%_57.4414 18.3398 55.9619 14.3223 52.7705 14.3223 c -%_47.0498 14.3223 44.2998 25.0918 45.1748 34.916 C -%_47.3379 29.1602 49.208 26.8613 52.5225 24.1211 c -%_52.6162 24.043 52.751 24.043 52.8447 24.1191 c -%_52.9385 24.1973 52.9658 24.3281 52.9082 24.4355 c -%_48.0518 33.5156 47.0107 40.502 47.0107 48.5215 C -%_48.4736 42.5625 50.2061 39.1992 55.1377 34.1406 c -%_55.2236 34.0527 55.3604 34.0391 55.4629 34.1074 c -%_55.5645 34.1777 55.6016 34.3105 55.5498 34.4238 c -%_50.252 46.0137 50.6563 58.8711 54.6025 68.6875 c -%_54.6416 68.7852 54.6172 68.8965 54.54 68.9688 c -%_54.4629 69.0391 54.3506 69.0566 54.2549 69.0098 c -%_49.0498 66.459 45.9912 64.7832 41.5029 58.6211 C -%_42.8604 51.2227 41.7314 47.5723 38.3311 41.4258 C -%_42.2686 51.3438 40.1729 65.3203 30.1436 71.0176 c -%_30.0342 71.0791 29.8955 71.0518 29.8193 70.9531 c -%_29.7412 70.8535 29.748 70.7119 29.835 70.6211 c -%_33.6162 66.666 36.3662 59.9863 33.9912 52.6934 C -%_35.5205 63.082 26.3955 71.8086 16.2119 71.8086 c -%_6.6123 71.8086 0.061523 64.2988 0.602539 56.8672 c -%_1.13965 49.502 6.0459 45.8984 10.2744 44.3691 c -%_10.3857 44.3301 10.5107 44.3711 10.5742 44.4707 c -%_10.6377 44.5723 10.624 44.7012 10.541 44.7871 c -%_4.93066 50.4785 4.16309 61.2793 14.124 64.5469 C -%_8.26465 59.4902 10.4346 47.7168 19.8135 46.8223 c -%_19.9307 46.8105 20.04 46.8809 20.0781 46.9922 c -%_20.1162 47.1035 20.0732 47.2266 19.9746 47.2891 c -%_17.9658 48.5664 16.2959 51.0605 16.2959 53.8633 c -%_16.2959 58.5371 19.7178 60.373 21.9717 60.373 c -%_25.3936 60.373 28.2314 57.1172 28.2314 52.1934 c -%_28.2314 46.3496 22.9717 41.5098 16.2119 40.7578 c -%_9.58594 40.0234 3.42969 42.9121 0.461914 47.2168 c -%_0.392578 47.3184 0.260742 47.3555 0.148438 47.3047 c -%_0.036133 47.2539 -0.022461 47.1289 0.007813 47.0098 c -%_3.02637 35.3066 16.8037 30.1328 26.8955 37.5039 C -%_20.2822 30.002 9.88965 29.8984 1.17383 37.5898 c -%_1.08301 37.6699 0.948242 37.6738 0.851563 37.5996 c -%_0.754883 37.5273 0.724609 37.3945 0.77832 37.2871 c -%_3.44531 31.8789 10.0313 25.4668 19.3838 26.4023 c -%_27.9404 27.2578 32.9053 35.416 33.9072 42.0938 C -%_34.4639 33.5723 32.5137 27.5566 25.1533 21.9473 c -%_25.0566 21.873 25.0264 21.7402 25.0811 21.6309 c -%_25.1357 21.5234 25.2607 21.4688 25.3779 21.502 c -%_32.1631 23.4629 37.6084 26.9277 40.4268 34.0469 C -%_40.4268 27.8848 38.2881 21.6738 32.9014 17.5352 c -%_32.8037 17.4609 32.7744 17.3301 32.8291 17.2207 c -%_32.8838 17.1113 33.0078 17.0566 33.125 17.0898 c -%_36.5781 18.0742 39.2959 19.5781 41.2627 22.2754 C -%_42.5732 11.1758 47.7842 4.58398 53.7881 4.58398 c -%_57.9131 4.58398 60.9932 7.61719 60.9932 12.4551 c -%_60.9932 15.2852 59.5049 19.2578 56.1826 21.4746 c -%_f -%_155.4102 113.0938 m -%_152.248 116.998 145.8711 118.4863 138.9785 117.082 C -%_139.4883 121.3828 138.6445 125.873 137.3672 128.5664 c -%_137.3145 128.6758 137.1934 128.7334 137.0762 128.7051 c -%_136.959 128.6758 136.8789 128.5684 136.8828 128.4473 c -%_137.2578 119.6807 132.2598 112.6035 123.4336 109.5371 C -%_130.3398 114.293 132.3594 123.7305 129.0723 128.6035 c -%_129.0039 128.7021 128.877 128.7412 128.7656 128.6953 c -%_128.6543 128.6504 128.5898 128.5332 128.6113 128.416 c -%_128.9844 126.3555 128.0059 123.7314 125.8984 121.6895 c -%_122.9922 118.875 119.0488 118.2363 117.0879 120.2598 c -%_115.127 122.2852 115.8906 126.207 118.7949 129.0215 c -%_119.8555 130.0488 121.0547 130.7832 122.2441 131.2061 c -%_122.3574 131.2461 122.4258 131.3594 122.4102 131.4775 c -%_122.3965 131.5967 122.3008 131.6885 122.1816 131.6982 c -%_115.793 132.2529 111.4121 128.4463 108.666 123.8203 c -%_105.8711 119.1152 101.0957 115.4102 95.4551 116.1504 c -%_95.3359 116.166 95.2227 116.0957 95.1816 115.9824 c -%_95.1426 115.8691 95.1875 115.7422 95.291 115.6807 c -%_98.0879 113.9961 101.1621 113.2969 105.1543 114.6289 C -%_99.3594 109.7197 91.1074 106.8867 83.3145 109.4014 c -%_83.2051 109.4375 83.0859 109.3945 83.0234 109.2979 c -%_82.9609 109.2012 82.9727 109.0752 83.0488 108.9902 c -%_88.957 102.4258 100.7383 102.2949 108.1582 107.6172 C -%_105.1211 103.3008 101.0898 100.1328 93.8652 99.1387 c -%_93.75 99.123 93.6602 99.0313 93.6465 98.916 c -%_93.6348 98.7998 93.7012 98.6904 93.8105 98.6504 c -%_102.1016 95.5723 110.4102 98.6953 117.2559 106.8652 C -%_114.2637 100.4883 109.3496 95.3809 102.4883 92.8535 c -%_102.373 92.8115 102.3047 92.6934 102.3262 92.5742 c -%_102.3457 92.4531 102.4492 92.3643 102.5703 92.3613 c -%_106.5137 92.2803 110.0566 93.2188 114.8359 95.9316 C -%_111.3281 90.2422 112.0957 80.293 117.2051 73.6738 c -%_117.2754 73.582 117.4004 73.5498 117.5078 73.5957 c -%_117.6133 73.6426 117.6758 73.7549 117.6563 73.8691 c -%_116.4766 81.0703 118.9551 89.1992 123.2656 93.5117 C -%_121.1133 85.8799 123.2598 78.9355 129.1621 73.8672 c -%_129.2324 73.8066 129.332 73.79 129.418 73.8232 c -%_129.5059 73.8564 129.5664 73.9355 129.5801 74.0273 c -%_130.8145 83.4453 141.3496 93.002 150.1816 93.8027 c -%_150.3066 93.8135 150.4043 93.9141 150.4121 94.0381 c -%_150.4199 94.1621 150.3379 94.2754 150.2148 94.3027 c -%_145.9355 95.2715 141.5234 94.793 137.8262 93.2715 C -%_140.4863 96.2051 143.7656 98.3828 147.3809 99.5176 c -%_147.498 99.5537 147.5703 99.668 147.5566 99.7891 c -%_147.543 99.9102 147.4434 100.0039 147.3223 100.0127 c -%_142.8125 100.3242 138.3984 99.0068 134.5918 96.4746 C -%_138.9531 103.0957 145.5723 108.0195 154.0195 109.9805 c -%_154.1406 110.0088 154.2227 110.1191 154.2168 110.2432 c -%_154.209 110.3672 154.1133 110.4668 153.9902 110.4805 c -%_142.0723 111.7822 132.2441 107.1621 125.7695 98.5625 C -%_127.418 103.4629 132.1348 108.3184 138.7148 111.1816 c -%_144.5605 113.7266 150.5645 114.1279 155.1367 112.6914 c -%_155.2422 112.6582 155.3594 112.6982 155.4219 112.791 c -%_155.4844 112.8828 155.4805 113.0059 155.4102 113.0938 c -%_f -%_102.5059 37.5215 m -%_107.3125 48.0078 106.9707 56.207 103.0996 66.5762 c -%_103.0547 66.6934 102.9336 66.7607 102.8105 66.7363 c -%_102.6875 66.7109 102.6016 66.5996 102.6074 66.4746 c -%_103.2285 53.8535 99.7813 44.8203 92.3086 38.668 C -%_100.5586 48.5195 96.6621 68.2275 83.4863 68.2275 c -%_73.9004 68.2275 65.9697 60.252 64.0303 50.7031 c -%_64.0059 50.582 64.0723 50.459 64.1885 50.416 c -%_64.3037 50.3711 64.4346 50.416 64.4971 50.5215 c -%_67.3398 55.2832 71.9063 58.373 76.9551 58.373 c -%_85.0898 58.373 87.4961 51.9063 87.4961 47.375 c -%_87.4961 41.1875 82.5703 36.0313 78.7891 36.0313 c -%_75.3516 36.0313 73.748 38.8555 73.748 40.959 c -%_73.748 44.8574 76.7461 48.125 80.125 49.123 c -%_80.2441 49.1582 80.3223 49.2773 80.3047 49.4023 c -%_80.2852 49.5273 80.1797 49.6191 80.0547 49.6211 c -%_75.9473 49.6465 72.4766 47.7656 70.4238 44.0527 C -%_70.1543 46.9277 70.1514 48.7383 71.0645 51.7754 c -%_71.0996 51.8926 71.0459 52.0176 70.9385 52.0742 c -%_70.8291 52.1309 70.6963 52.1016 70.6221 52.0059 c -%_63.2656 42.6133 66.7861 26.3809 72.6016 19.6484 C -%_67.0693 23.6309 62.1846 32.2813 62.2617 44.041 c -%_62.2627 44.1641 62.1768 44.2676 62.0566 44.291 c -%_61.9365 44.3164 61.8174 44.25 61.7725 44.1367 c -%_57.6641 33.8848 59.8438 14.8887 71.0537 4.28516 C -%_68.1699 3.88867 65.1865 3.93945 61.9287 4.97852 c -%_61.8135 5.01367 61.6885 4.96484 61.6299 4.85938 c -%_61.5713 4.75195 61.5947 4.61914 61.6885 4.54102 c -%_65.7803 1.08594 71.5029 0 76.9551 0 C -%_72.2578 5.5 73.8184 16.5547 81.3105 16.5547 c -%_86.6582 16.5547 89.0859 8.25586 84.957 3.77344 c -%_84.8789 3.6875 84.8691 3.55859 84.9316 3.46289 c -%_84.9961 3.36523 85.1172 3.32227 85.2285 3.36133 c -%_90.0078 5.01563 95.1738 9.15039 95.1738 14.377 c -%_95.1738 19.4199 90.3613 23.7715 83.373 23.4277 C -%_92.1914 25.9336 101.4238 23.1602 106.2539 17.1758 c -%_106.3281 17.082 106.459 17.0547 106.5645 17.1074 c -%_106.6719 17.1621 106.7266 17.2832 106.6973 17.3984 c -%_103.9063 28.1152 94.7305 32.5977 83.2578 31.1055 C -%_92.5391 34.8613 106.5078 31.5859 112.6816 23.7949 c -%_112.7539 23.7031 112.8809 23.6738 112.9883 23.7227 c -%_113.0938 23.7734 113.1523 23.8906 113.1289 24.0039 c -%_111.7578 30.6191 108.2656 35.5664 102.5059 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 56.8086 m -%_128.8672 56.6895 128.7637 56.6016 128.6426 56.6016 c -%_115.7363 56.4648 103.8887 53.334 94.6719 45.0859 C -%_102.7012 50.6445 117.6133 52.5957 126.1992 48.7051 c -%_126.3086 48.6543 126.3672 48.5332 126.3398 48.416 c -%_126.3145 48.2988 126.207 48.2168 126.0859 48.2188 c -%_115.4063 48.5098 106.8066 45.2129 100.1016 39.2559 C -%_106.9707 38.832 112.6758 34.5156 112.6582 29.4102 c -%_112.6582 29.291 112.5742 29.1875 112.457 29.1621 c -%_112.3418 29.1387 112.2227 29.1973 112.1738 29.3066 c -%_111.0527 31.7949 107.4258 33.0879 103.5918 32.1875 c -%_99.4121 31.2051 96.5918 27.998 97.291 25.0215 c -%_97.7617 23.0078 99.7266 21.6191 102.2422 21.2344 c -%_102.3691 21.2148 102.4629 21.1055 102.459 20.9766 c -%_102.4551 20.8496 102.3574 20.7441 102.2285 20.7305 c -%_101.1602 20.6289 100.0488 20.625 98.9121 20.7344 c -%_92.4219 21.3516 87.3984 25.3281 86.9629 29.9121 C -%_82.25 29.3652 78.0781 26.7539 76.584 23.1387 c -%_76.5391 23.0293 76.4258 22.9668 76.3086 22.9844 c -%_76.1934 23.002 76.1055 23.0977 76.0957 23.2148 c -%_75.7188 27.9648 77.3535 31.0527 81.0664 34.0684 C -%_75.6816 32.0098 69.6201 31.9043 63.8096 34.6055 c -%_63.7041 34.6563 63.6455 34.7715 63.667 34.8867 c -%_63.6904 35.002 63.79 35.0859 63.9072 35.0898 c -%_68.7861 35.2793 72.3242 36.8457 75.6406 40.1621 C -%_57.3838 35.0273 42.5518 46.3633 47.6846 63.2129 c -%_47.7197 63.3301 47.8311 63.4043 47.9521 63.3926 c -%_48.0732 63.3809 48.1689 63.2852 48.1787 63.1641 c -%_49.0967 53.4492 55.8818 47.0469 66.04 46.0879 C -%_60.6533 48.1465 55.04 53.0625 54.4834 61.6211 c -%_54.4756 61.7441 54.5557 61.8535 54.6748 61.8848 c -%_54.7939 61.9141 54.917 61.8535 54.9678 61.7422 c -%_57.7666 55.5879 63.2646 52.4785 69.1279 51.9297 C -%_62.7939 54.5117 58.7314 60.5332 57.5576 68.3516 c -%_57.5381 68.4746 57.6123 68.5918 57.7314 68.6309 c -%_57.8486 68.668 57.9775 68.6152 58.0342 68.5039 c -%_61.8994 60.9219 70.1904 55.7109 80.4824 59.6934 c -%_91.0996 63.8027 95.7559 76.0781 96.7852 84.7324 c -%_96.8008 84.8555 96.9004 84.9492 97.0234 84.957 c -%_97.1465 84.9629 97.2559 84.8809 97.2852 84.7617 c -%_101.0039 69.0723 93.7012 52.8125 80.6484 45.9219 C -%_87.7441 47.9238 94.0879 52.1816 97.6758 59.2754 C -%_105.9688 60.293 111.6797 63.1387 114.5332 68.5156 c -%_114.5898 68.6211 114.7129 68.6738 114.8281 68.6406 c -%_114.9434 68.6055 115.0195 68.4941 115.0098 68.375 c -%_114.8281 66.2656 114.0684 62.0449 110.9355 60.1035 C -%_117.9004 60.1152 123.4414 59.2109 128.7344 57.0898 c -%_128.8457 57.0449 128.9121 56.9277 128.8887 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 110.2773 m -%_99.502 110.2129 99.6309 110.2227 99.7188 110.3047 c -%_99.8047 110.3848 99.8223 110.5137 99.7637 110.6172 c -%_98.1445 113.4141 99.623 117.4297 102.8145 117.4297 c -%_108.5352 117.4297 111.2852 106.6602 110.4102 96.8379 C -%_108.248 102.5918 106.377 104.8926 103.0625 107.6328 c -%_102.9688 107.709 102.834 107.7109 102.7402 107.6328 c -%_102.6465 107.5566 102.6191 107.4238 102.6777 107.3164 c -%_107.5332 98.2383 108.5742 91.252 108.5742 83.2324 C -%_107.1113 89.1895 105.3789 92.5527 100.4473 97.6133 c -%_100.3613 97.7012 100.2246 97.7148 100.123 97.6445 c -%_100.0215 97.5742 99.9844 97.4414 100.0352 97.3301 c -%_105.334 85.7383 104.9297 72.8828 100.9824 63.0664 c -%_100.9434 62.9688 100.9688 62.8574 101.0449 62.7852 c -%_101.123 62.7129 101.2344 62.6973 101.3301 62.7422 c -%_106.5352 65.293 109.5938 66.9688 114.082 73.1328 C -%_112.7246 80.5313 113.8535 84.1797 117.2539 90.3262 C -%_113.3164 80.4102 115.4121 66.4336 125.4414 60.7363 c -%_125.5508 60.6738 125.6895 60.7012 125.7656 60.8008 c -%_125.8438 60.9004 125.8379 61.041 125.75 61.1328 c -%_121.9688 65.0879 119.2188 71.7676 121.5938 79.0586 C -%_120.0645 68.6699 129.1895 59.9453 139.373 59.9453 c -%_148.9727 59.9453 155.5234 67.4531 154.9824 74.8848 c -%_154.4453 82.25 149.5391 85.8555 145.3105 87.3828 c -%_145.1992 87.4238 145.0742 87.3809 145.0117 87.2813 c -%_144.9473 87.1816 144.9609 87.0508 145.0449 86.9668 c -%_150.6543 81.2734 151.4219 70.4746 141.4609 67.207 C -%_147.3203 72.2637 145.1504 84.0352 135.7715 84.9316 c -%_135.6543 84.9414 135.5449 84.8711 135.5078 84.7598 c -%_135.4688 84.6504 135.5117 84.5273 135.6113 84.4648 c -%_137.6191 83.1855 139.2891 80.6934 139.2891 77.8906 c -%_139.2891 73.2168 135.8672 71.3789 133.6133 71.3789 c -%_130.1914 71.3789 127.3535 74.6348 127.3535 79.5605 c -%_127.3535 85.4023 132.6133 90.2441 139.373 90.9941 c -%_146 91.7305 152.1563 88.8398 155.123 84.5352 c -%_155.1934 84.4336 155.3242 84.3984 155.4375 84.4492 c -%_155.5488 84.5 155.6074 84.623 155.5781 84.7422 c -%_152.5586 96.4453 138.7813 101.6191 128.6895 94.25 C -%_135.3027 101.75 145.6953 101.8555 154.4121 94.1641 c -%_154.502 94.084 154.6367 94.0781 154.7344 94.1523 c -%_154.8301 94.2266 154.8613 94.3574 154.8066 94.4668 c -%_152.1406 99.873 145.5547 106.2852 136.2012 105.3516 c -%_127.6445 104.4961 122.6797 96.3359 121.6777 89.6602 C -%_121.1211 98.1816 123.0723 104.1953 130.4316 109.8047 c -%_130.5293 109.8789 130.5586 110.0117 130.5039 110.1211 c -%_130.4492 110.2305 130.3242 110.2852 130.207 110.25 c -%_123.4219 108.291 117.9766 104.8262 115.1582 97.707 C -%_115.1582 103.8672 117.2969 110.0781 122.6836 114.2168 c -%_122.7813 114.291 122.8105 114.4238 122.7559 114.5332 c -%_122.7012 114.6406 122.5781 114.6953 122.4609 114.6621 c -%_119.0078 113.6797 116.2891 112.1738 114.3223 109.4785 C -%_113.0117 120.5781 107.8008 127.168 101.7969 127.168 c -%_97.6719 127.168 94.5918 124.1348 94.5918 119.2988 c -%_94.5918 116.4688 96.0801 112.4961 99.4023 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 18.6602 m -%_3.33691 14.7559 9.71387 13.2676 16.6064 14.6719 C -%_16.0967 10.3691 16.9404 5.88086 18.2178 3.18555 c -%_18.2705 3.07813 18.3916 3.01953 18.5088 3.04883 c -%_18.626 3.07813 18.7061 3.18555 18.7021 3.30664 c -%_18.3271 12.0723 23.3252 19.1484 32.1514 22.2148 C -%_25.2451 17.459 23.2256 8.02148 26.5127 3.15039 c -%_26.5811 3.05078 26.708 3.01172 26.8193 3.05664 c -%_26.9307 3.10156 26.9951 3.21875 26.9736 3.33789 c -%_26.6006 5.39844 27.5791 8.02148 29.6865 10.0625 c -%_32.5928 12.877 36.5361 13.5156 38.4971 11.4922 c -%_40.458 9.4668 39.6943 5.54492 36.79 2.73242 c -%_35.7295 1.70508 34.5303 0.96875 33.3408 0.546875 c -%_33.2275 0.505859 33.1592 0.392578 33.1748 0.275391 c -%_33.1885 0.15625 33.2842 0.064453 33.4033 0.054688 c -%_39.792 -0.5 44.1729 3.30664 46.9189 7.93164 c -%_49.7139 12.6367 54.4893 16.3438 60.1299 15.6035 c -%_60.249 15.5879 60.3623 15.6582 60.4033 15.7715 c -%_60.4424 15.8848 60.3975 16.0098 60.2939 16.0723 c -%_57.4971 17.7559 54.4229 18.4551 50.4307 17.125 C -%_56.2256 22.0332 64.4775 24.8652 72.2715 22.3516 c -%_72.3809 22.3164 72.5 22.3594 72.5625 22.4551 c -%_72.625 22.5508 72.6152 22.6777 72.5371 22.7637 c -%_66.6279 29.3281 54.8467 29.459 47.4268 24.1348 C -%_50.4639 28.4512 54.4951 31.6211 61.7197 32.6133 c -%_61.835 32.6289 61.9248 32.7227 61.9385 32.8379 c -%_61.9502 32.9531 61.8838 33.0625 61.7744 33.1035 c -%_53.4834 36.1797 45.1748 33.0586 38.3291 24.8867 C -%_41.3213 31.2656 46.2354 36.373 53.0967 38.9004 c -%_53.2119 38.9414 53.2803 39.0586 53.2588 39.1797 c -%_53.2393 39.3008 53.1357 39.3887 53.0146 39.3906 c -%_49.0713 39.4727 45.5283 38.5332 40.749 35.8203 C -%_44.2568 41.5117 43.4893 51.459 38.3799 58.0801 c -%_38.3096 58.1719 38.1846 58.2031 38.0771 58.1582 c -%_37.9717 58.1113 37.9092 57.998 37.9287 57.8828 c -%_39.1084 50.6836 36.6299 42.5547 32.3193 38.2422 C -%_34.4717 45.873 32.3252 52.8184 26.4229 57.8848 c -%_26.3525 57.9453 26.2529 57.9629 26.167 57.9297 c -%_26.0791 57.8965 26.0186 57.8184 26.0049 57.7266 c -%_24.7705 48.3086 14.2354 38.752 5.40332 37.9512 c -%_5.27832 37.9395 5.18066 37.8398 5.17285 37.7148 c -%_5.16504 37.5898 5.24707 37.4785 5.37012 37.4512 c -%_9.64941 36.4824 14.0615 36.9609 17.7588 38.4805 C -%_15.0986 35.5488 11.8193 33.3711 8.2041 32.2363 c -%_8.08691 32.1992 8.01465 32.0859 8.02832 31.9648 c -%_8.04199 31.8438 8.1416 31.748 8.2627 31.7402 c -%_12.7725 31.4297 17.1865 32.7461 20.9932 35.2793 C -%_16.6318 28.6582 10.0127 23.7344 1.56543 21.7715 c -%_1.44434 21.7441 1.3623 21.6328 1.36816 21.5098 c -%_1.37598 21.3867 1.47168 21.2871 1.59473 21.2734 c -%_13.5127 19.9707 23.3408 24.5918 29.8154 33.1914 C -%_28.167 28.2891 23.4502 23.4355 16.8701 20.5723 c -%_11.0244 18.0273 5.02051 17.625 0.448242 19.0625 c -%_0.342773 19.0957 0.225586 19.0547 0.163086 18.9629 c -%_0.100586 18.8691 0.104492 18.7461 0.174805 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 94.2324 m -%_48.2725 83.7461 48.6143 75.5469 52.4854 65.1777 c -%_52.5303 65.0605 52.6514 64.9922 52.7744 65.0176 c -%_52.8975 65.043 52.9834 65.1543 52.9775 65.2773 c -%_52.3564 77.9004 55.8037 86.9316 63.2764 93.0859 C -%_55.0264 83.2324 58.9229 63.5254 72.0996 63.5254 c -%_81.6855 63.5254 89.6152 71.502 91.5547 81.0508 c -%_91.5801 81.1719 91.5137 81.293 91.3965 81.3379 c -%_91.2813 81.3828 91.1504 81.3379 91.0879 81.2305 c -%_88.2461 76.4688 83.6797 73.3789 78.6309 73.3789 c -%_70.4951 73.3789 68.0889 79.8457 68.0889 84.3789 c -%_68.0889 90.5645 73.0156 95.7207 76.7969 95.7207 c -%_80.2344 95.7207 81.8379 92.8984 81.8379 90.7949 c -%_81.8379 86.8965 78.8398 83.6289 75.4629 82.6309 c -%_75.3418 82.5938 75.2656 82.4766 75.2832 82.3516 c -%_75.3008 82.2266 75.4063 82.1328 75.5332 82.1328 c -%_79.6387 82.1074 83.1094 83.9863 85.1621 87.7012 C -%_85.4316 84.8262 85.4336 83.0156 84.5215 79.9766 c -%_84.4863 79.8594 84.5391 79.7344 84.6465 79.6777 c -%_84.7559 79.623 84.8887 79.6504 84.9629 79.748 c -%_92.3203 89.1406 88.7988 105.3711 82.9844 112.1055 C -%_88.5156 108.123 93.4004 99.4707 93.3242 87.7109 c -%_93.3223 87.5898 93.4082 87.4844 93.5293 87.4609 c -%_93.6484 87.4375 93.7676 87.502 93.8125 87.6152 c -%_97.9219 97.8691 95.7422 116.8633 84.5313 127.4668 C -%_87.416 127.8652 90.3984 127.8145 93.6563 126.7754 c -%_93.7715 126.7383 93.8965 126.7891 93.9551 126.8945 c -%_94.0137 127 93.9902 127.1328 93.8965 127.2109 c -%_89.8047 130.666 84.082 131.752 78.6309 131.752 C -%_83.3281 126.252 81.7676 115.1992 74.2773 115.1992 c -%_68.9268 115.1992 66.499 123.498 70.6279 127.9805 c -%_70.7061 128.0664 70.7158 128.1934 70.6533 128.291 c -%_70.5889 128.3887 70.4678 128.4297 70.3564 128.3926 c -%_65.5771 126.7363 60.4111 122.6035 60.4111 117.375 c -%_60.4111 112.334 65.2236 107.9805 72.2148 108.3242 C -%_63.3936 105.8203 54.1611 108.5918 49.3311 114.5781 c -%_49.2568 114.6699 49.126 114.6992 49.0205 114.6445 c -%_48.9131 114.5918 48.8584 114.4707 48.8877 114.3535 c -%_51.6787 103.6387 60.8545 99.1543 72.3281 100.6484 C -%_63.0459 96.8906 49.0771 100.166 42.9033 107.957 c -%_42.8311 108.0488 42.7041 108.0801 42.5967 108.0293 c -%_42.4912 107.9805 42.4326 107.8633 42.4561 107.748 c -%_43.8271 101. -endstream endobj 20 0 obj <>stream -1328 47.3193 96.1875 53.0791 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_135.0352 184.5869 m -%_135.0566 184.7061 135.1602 184.792 135.2813 184.7939 c -%_148.1875 184.9287 160.0352 188.0615 169.2529 196.3086 C -%_161.2227 190.751 146.3105 188.7979 137.7256 192.6904 c -%_137.6152 192.7402 137.5566 192.8604 137.584 192.9785 c -%_137.6104 193.0967 137.7168 193.1787 137.8379 193.1748 c -%_148.5176 192.8857 157.1172 196.1816 163.8223 202.1396 C -%_156.9531 202.5615 151.248 206.8799 151.2656 211.9844 c -%_151.2656 212.1035 151.3496 212.2061 151.4668 212.2314 c -%_151.583 212.2568 151.7012 212.1963 151.75 212.0879 c -%_152.8711 209.5986 156.498 208.3076 160.333 209.208 c -%_164.5127 210.1885 167.333 213.3975 166.6338 216.373 c -%_166.1621 218.3877 164.1973 219.7764 161.6816 220.1602 c -%_161.5547 220.1787 161.4619 220.29 161.4648 220.418 c -%_161.4688 220.5459 161.5674 220.6514 161.6953 220.6631 c -%_162.7637 220.7656 163.875 220.7695 165.0127 220.6611 c -%_171.5029 220.0439 176.5264 216.0654 176.9619 211.4834 C -%_181.6748 212.0303 185.8467 214.6396 187.3408 218.2568 c -%_187.3857 218.3652 187.501 218.4287 187.6162 218.4111 c -%_187.7314 218.3916 187.8193 218.2969 187.8291 218.1807 c -%_188.2061 213.4287 186.5713 210.3418 182.8584 207.3262 C -%_188.2432 209.3857 194.3027 209.4912 200.1133 206.7881 c -%_200.2188 206.7393 200.2773 206.624 200.2559 206.5088 c -%_200.2324 206.3936 200.1328 206.3096 200.0156 206.3057 c -%_195.1367 206.1152 191.5996 204.5498 188.2861 201.2334 C -%_206.5391 206.3672 221.3711 195.0322 216.2383 178.1807 c -%_216.2031 178.0654 216.0918 177.9902 215.9707 178.0029 c -%_215.8496 178.0146 215.7539 178.1104 215.7441 178.2314 c -%_214.8262 187.9453 208.041 194.3467 197.8828 195.3076 C -%_203.2695 193.2471 208.8828 188.3311 209.4395 179.7734 c -%_209.4473 179.6514 209.3672 179.54 209.248 179.5107 c -%_209.1289 179.4814 209.0059 179.54 208.9551 179.6514 c -%_206.1563 185.8057 200.6582 188.917 194.7949 189.4639 C -%_201.1289 186.8838 205.1914 180.8623 206.3652 173.0439 c -%_206.3848 172.9209 206.3105 172.8018 206.1914 172.7646 c -%_206.0742 172.7256 205.9453 172.7803 205.8887 172.8896 c -%_202.0234 180.4727 193.7324 185.6836 183.4424 181.7021 c -%_172.8252 177.5928 168.168 165.3154 167.1387 156.6611 c -%_167.124 156.54 167.0234 156.4463 166.9004 156.4385 c -%_166.7783 156.4307 166.668 156.5127 166.6396 156.6338 c -%_162.9199 172.3213 170.2227 188.583 183.2764 195.4736 C -%_176.1807 193.4707 169.8369 189.2139 166.249 182.1191 C -%_157.9551 181.1006 152.2451 178.2568 149.3916 172.8799 c -%_149.335 172.7725 149.2109 172.7197 149.0957 172.7549 c -%_148.9805 172.7881 148.9043 172.8994 148.9141 173.0205 c -%_149.0967 175.1299 149.8555 179.3506 152.9883 181.291 C -%_146.0234 181.2803 140.4824 182.1846 135.1895 184.3037 c -%_135.0781 184.3496 135.0127 184.4678 135.0352 184.5869 c -%_f -%_0 D -%_164.5215 131.1162 m -%_164.4229 131.1826 164.293 131.1709 164.2061 131.0908 c -%_164.1201 131.0088 164.1016 130.8799 164.1602 130.7783 c -%_165.7803 127.9814 164.3008 123.9639 161.1094 123.9639 c -%_155.3887 123.9639 152.6387 134.7334 153.5137 144.5576 C -%_155.6768 138.8018 157.5469 136.5029 160.8613 133.7627 c -%_160.9551 133.6846 161.0898 133.6846 161.1836 133.7607 c -%_161.2773 133.8389 161.3047 133.9697 161.2471 134.0771 c -%_156.3906 143.1572 155.3496 150.1436 155.3496 158.1631 C -%_156.8125 152.2041 158.5449 148.8408 163.4766 143.7822 c -%_163.5625 143.6943 163.6992 143.6807 163.8018 143.749 c -%_163.9033 143.8193 163.9404 143.9521 163.8887 144.0654 c -%_158.5908 155.6553 158.9951 168.5127 162.9414 178.3291 c -%_162.9805 178.4268 162.9561 178.5381 162.8789 178.6104 c -%_162.8018 178.6807 162.6895 178.6982 162.5938 178.6514 c -%_157.3887 176.1006 154.3301 174.4248 149.8418 168.2627 C -%_151.1992 160.8643 150.0703 157.2139 146.6699 151.0674 C -%_150.6074 160.9854 148.5117 174.9619 138.4824 180.6592 c -%_138.373 180.7207 138.2344 180.6934 138.1582 180.5947 c -%_138.0801 180.4951 138.0869 180.3535 138.1738 180.2627 c -%_141.9551 176.3076 144.7051 169.6279 142.3301 162.335 C -%_143.8594 172.7236 134.7344 181.4502 124.5508 181.4502 c -%_114.9512 181.4502 108.4004 173.9404 108.9414 166.5088 c -%_109.4785 159.1436 114.3848 155.54 118.6133 154.0107 c -%_118.7246 153.9717 118.8496 154.0127 118.9131 154.1123 c -%_118.9766 154.2139 118.9629 154.3428 118.8799 154.4287 c -%_113.2695 160.1201 112.502 170.9209 122.4629 174.1885 C -%_116.6035 169.1318 118.7734 157.3584 128.1523 156.4639 c -%_128.2695 156.4521 128.3789 156.5225 128.417 156.6338 c -%_128.4551 156.7451 128.4121 156.8682 128.3135 156.9307 c -%_126.3047 158.208 124.6348 160.7021 124.6348 163.5049 c -%_124.6348 168.1787 128.0566 170.0146 130.3105 170.0146 c -%_133.7324 170.0146 136.5703 166.7588 136.5703 161.835 c -%_136.5703 155.9912 131.3105 151.1514 124.5508 150.3994 c -%_117.9248 149.665 111.7686 152.5537 108.8008 156.8584 c -%_108.7314 156.96 108.5996 156.9971 108.4873 156.9463 c -%_108.375 156.8955 108.3164 156.7705 108.3467 156.6514 c -%_111.3652 144.9482 125.1426 139.7744 135.2344 147.1455 C -%_128.6211 139.6436 118.2285 139.54 109.5127 147.2314 c -%_109.4219 147.3115 109.2871 147.3154 109.1904 147.2412 c -%_109.0938 147.1689 109.0635 147.0361 109.1172 146.9287 c -%_111.7842 141.5205 118.3701 135.1084 127.7227 136.0439 c -%_136.2793 136.8994 141.2441 145.0576 142.2461 151.7354 C -%_142.8027 143.2139 140.8525 137.1982 133.4922 131.5889 c -%_133.3955 131.5146 133.3652 131.3818 133.4199 131.2725 c -%_133.4746 131.165 133.5996 131.1104 133.7168 131.1436 c -%_140.502 133.1045 145.9473 136.5693 148.7656 143.6885 C -%_148.7656 137.5264 146.627 131.3154 141.2402 127.1768 c -%_141.1426 127.1025 141.1133 126.9717 141.168 126.8623 c -%_141.2227 126.7529 141.3467 126.6982 141.4639 126.7314 c -%_144.917 127.7158 147.6348 129.2197 149.6016 131.917 C -%_150.9121 120.8174 156.123 114.2256 162.127 114.2256 c -%_166.252 114.2256 169.332 117.2588 169.332 122.0967 c -%_169.332 124.9268 167.8438 128.8994 164.5215 131.1162 c -%_f -%_263.748 222.7354 m -%_260.5859 226.6396 254.209 228.1279 247.3164 226.7236 C -%_247.8262 231.0244 246.9824 235.5146 245.7051 238.208 c -%_245.6523 238.3174 245.5313 238.375 245.4141 238.3467 c -%_245.2969 238.3174 245.2168 238.21 245.2207 238.0889 c -%_245.5957 229.3223 240.5977 222.2451 231.7715 219.1787 C -%_238.6777 223.9346 240.6973 233.3721 237.4102 238.2451 c -%_237.3418 238.3438 237.2148 238.3828 237.1035 238.3369 c -%_236.9922 238.292 236.9277 238.1748 236.9492 238.0576 c -%_237.3223 235.9971 236.3438 233.373 234.2363 231.3311 c -%_231.3301 228.5166 227.3867 227.8779 225.4258 229.9014 c -%_223.4648 231.9268 224.2285 235.8486 227.1328 238.6631 c -%_228.1934 239.6904 229.3926 240.4248 230.582 240.8477 c -%_230.6953 240.8877 230.7637 241.001 230.748 241.1191 c -%_230.7344 241.2383 230.6387 241.3301 230.5195 241.3398 c -%_224.1309 241.8945 219.75 238.0879 217.0039 233.4619 c -%_214.209 228.7568 209.4336 225.0518 203.793 225.792 c -%_203.6738 225.8076 203.5605 225.7373 203.5195 225.624 c -%_203.4805 225.5107 203.5254 225.3838 203.6289 225.3223 c -%_206.4258 223.6377 209.5 222.9385 213.4922 224.2705 C -%_207.6973 219.3613 199.4453 216.5283 191.6523 219.043 c -%_191.543 219.0791 191.4238 219.0361 191.3613 218.9395 c -%_191.2988 218.8428 191.3105 218.7168 191.3867 218.6318 c -%_197.2949 212.0674 209.0762 211.9365 216.4961 217.2588 C -%_213.459 212.9424 209.4277 209.7744 202.2031 208.7803 c -%_202.0879 208.7646 201.998 208.6729 201.9844 208.5576 c -%_201.9727 208.4414 202.0391 208.332 202.1484 208.292 c -%_210.4395 205.2139 218.748 208.3369 225.5938 216.5068 C -%_222.6016 210.1299 217.6875 205.0225 210.8262 202.4951 c -%_210.7109 202.4531 210.6426 202.335 210.6641 202.2158 c -%_210.6836 202.0947 210.7871 202.0059 210.9082 202.0029 c -%_214.8516 201.9219 218.3945 202.8604 223.1738 205.5732 C -%_219.666 199.8838 220.4336 189.9346 225.543 183.3154 c -%_225.6133 183.2236 225.7383 183.1914 225.8457 183.2373 c -%_225.9512 183.2842 226.0137 183.3965 225.9941 183.5107 c -%_224.8145 190.7119 227.293 198.8408 231.6035 203.1533 C -%_229.4512 195.5215 231.5977 188.5771 237.5 183.5088 c -%_237.5703 183.4482 237.6699 183.4316 237.7559 183.4648 c -%_237.8438 183.498 237.9043 183.5771 237.918 183.6689 c -%_239.1523 193.0869 249.6875 202.6436 258.5195 203.4443 c -%_258.6445 203.4551 258.7422 203.5557 258.75 203.6797 c -%_258.7578 203.8037 258.6758 203.917 258.5527 203.9443 c -%_254.2734 204.9131 249.8613 204.4346 246.1641 202.9131 C -%_248.8242 205.8467 252.1035 208.0244 255.7188 209.1592 c -%_255.8359 209.1953 255.9082 209.3096 255.8945 209.4307 c -%_255.8809 209.5518 255.7813 209.6455 255.6602 209.6543 c -%_251.1504 209.9658 246.7363 208.6484 242.9297 206.1162 C -%_247.291 212.7373 253.9102 217.6611 262.3574 219.6221 c -%_262.4785 219.6504 262.5605 219.7607 262.5547 219.8848 c -%_262.5469 220.0088 262.4512 220.1084 262.3281 220.1221 c -%_250.4102 221.4238 240.582 216.8037 234.1074 208.2041 C -%_235.7559 213.1045 240.4727 217.96 247.0527 220.8232 c -%_252.8984 223.3682 258.9023 223.7695 263.4746 222.333 c -%_263.5801 222.2998 263.6973 222.3398 263.7598 222.4326 c -%_263.8223 222.5244 263.8184 222.6475 263.748 222.7354 c -%_f -%_210.8438 147.1631 m -%_215.6504 157.6494 215.3086 165.8486 211.4375 176.2178 c -%_211.3926 176.335 211.2715 176.4023 211.1484 176.3779 c -%_211.0254 176.3525 210.9395 176.2412 210.9453 176.1162 c -%_211.5664 163.4951 208.1191 154.4619 200.6465 148.3096 C -%_208.8965 158.1611 205 177.8691 191.8242 177.8691 c -%_182.2393 177.8691 174.3086 169.8936 172.3691 160.3447 c -%_172.3447 160.2236 172.4111 160.1006 172.5273 160.0576 c -%_172.6426 160.0127 172.7734 160.0576 172.8359 160.1631 c -%_175.6787 164.9248 180.2451 168.0146 185.2939 168.0146 c -%_193.4277 168.0146 195.834 161.5479 195.834 157.0166 c -%_195.834 150.8291 190.9082 145.6729 187.1279 145.6729 c -%_183.6904 145.6729 182.0869 148.4971 182.0869 150.6006 c -%_182.0869 154.499 185.085 157.7666 188.4639 158.7646 c -%_188.583 158.7998 188.6611 158.9189 188.6436 159.0439 c -%_188.624 159.1689 188.5186 159.2607 188.3936 159.2627 c -%_184.2861 159.2881 180.8154 157.4072 178.7627 153.6943 C -%_178.4932 156.5693 178.4902 158.3799 179.4033 161.417 c -%_179.4385 161.5342 179.3848 161.6592 179.2773 161.7158 c -%_179.168 161.7725 179.0352 161.7432 178.9609 161.6475 c -%_171.6045 152.2549 175.125 136.0225 180.9404 129.29 C -%_175.4082 133.2725 170.5234 141.9229 170.6006 153.6826 c -%_170.6016 153.8057 170.5156 153.9092 170.3955 153.9326 c -%_170.2754 153.958 170.1563 153.8916 170.1113 153.7783 c -%_166.0029 143.5264 168.1826 124.5303 179.3926 113.9268 C -%_176.5088 113.5303 173.5254 113.5811 170.2676 114.6201 c -%_170.1523 114.6553 170.0273 114.6064 169.9688 114.501 c -%_169.9102 114.3936 169.9336 114.2607 170.0273 114.1826 c -%_174.1191 110.7275 179.8418 109.6416 185.2939 109.6416 C -%_180.5967 115.1416 182.1572 126.1963 189.6494 126.1963 c -%_194.9961 126.1963 197.4238 117.8975 193.2949 113.415 c -%_193.2168 113.3291 193.207 113.2002 193.2695 113.1045 c -%_193.334 113.0068 193.4551 112.9639 193.5664 113.0029 c -%_198.3457 114.6572 203.5117 118.792 203.5117 124.0186 c -%_203.5117 129.0615 198.6992 133.4131 191.7109 133.0693 C -%_200.5293 135.5752 209.7617 132.8018 214.5918 126.8174 c -%_214.666 126.7236 214.7969 126.6963 214.9023 126.749 c -%_215.0098 126.8037 215.0645 126.9248 215.0352 127.04 c -%_212.2441 137.7568 203.0684 142.2393 191.5957 140.7471 C -%_200.877 144.5029 214.8457 141.2275 221.0195 133.4365 c -%_221.0918 133.3447 221.2188 133.3154 221.3262 133.3643 c -%_221.4316 133.415 221.4902 133.5322 221.4668 133.6455 c -%_220.0957 140.2607 216.6035 145.208 210.8438 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 166.4502 m -%_237.2051 166.3311 237.1016 166.2432 236.9805 166.2432 c -%_224.0742 166.1064 212.2266 162.9756 203.0098 154.7275 C -%_211.0391 160.2861 225.9512 162.2373 234.5371 158.3467 c -%_234.6465 158.2959 234.7051 158.1748 234.6777 158.0576 c -%_234.6523 157.9404 234.5449 157.8584 234.4238 157.8604 c -%_223.7441 158.1514 215.1445 154.8545 208.4395 148.8975 C -%_215.3086 148.4736 221.0137 144.1572 220.9961 139.0518 c -%_220.9961 138.9326 220.9121 138.8291 220.7949 138.8037 c -%_220.6797 138.7803 220.5605 138.8389 220.5117 138.9482 c -%_219.3906 141.4365 215.7637 142.7295 211.9297 141.8291 c -%_207.75 140.8467 204.9297 137.6396 205.6289 134.6631 c -%_206.0996 132.6494 208.0645 131.2607 210.5801 130.876 c -%_210.707 130.8564 210.8008 130.7471 210.7969 130.6182 c -%_210.793 130.4912 210.6953 130.3857 210.5664 130.3721 c -%_209.498 130.2705 208.3867 130.2666 207.25 130.376 c -%_200.7598 130.9932 195.7363 134.9697 195.3008 139.5537 C -%_190.5889 139.0068 186.417 136.3955 184.9229 132.7803 c -%_184.8779 132.6709 184.7646 132.6084 184.6475 132.626 c -%_184.5322 132.6436 184.4443 132.7393 184.4346 132.8564 c -%_184.0576 137.6064 185.6924 140.6943 189.4053 143.71 C -%_184.0205 141.6514 177.959 141.5459 172.1484 144.2471 c -%_172.043 144.2979 171.9844 144.4131 172.0059 144.5283 c -%_172.0293 144.6436 172.1289 144.7275 172.2461 144.7314 c -%_177.125 144.9209 180.6631 146.4873 183.9795 149.8037 C -%_165.7227 144.6689 150.8906 156.0049 156.0234 172.8545 c -%_156.0586 172.9717 156.1699 173.0459 156.291 173.0342 c -%_156.4121 173.0225 156.5078 172.9268 156.5176 172.8057 c -%_157.4355 163.0908 164.2207 156.6885 174.3789 155.7295 C -%_168.9922 157.7881 163.3789 162.7041 162.8223 171.2627 c -%_162.8145 171.3857 162.8945 171.4951 163.0137 171.5264 c -%_163.1328 171.5557 163.2559 171.4951 163.3066 171.3838 c -%_166.1055 165.2295 171.6035 162.1201 177.4668 161.5713 C -%_171.1328 164.1533 167.0703 170.1748 165.8965 177.9932 c -%_165.877 178.1162 165.9512 178.2334 166.0703 178.2725 c -%_166.1875 178.3096 166.3164 178.2568 166.373 178.1455 c -%_170.2383 170.5635 178.5293 165.3525 188.8213 169.335 c -%_199.4375 173.4443 204.0938 185.7197 205.123 194.374 c -%_205.1387 194.4971 205.2383 194.5908 205.3613 194.5986 c -%_205.4844 194.6045 205.5938 194.5225 205.623 194.4033 c -%_209.3418 178.7139 202.0391 162.4541 188.9873 155.5635 C -%_196.082 157.5654 202.4258 161.8232 206.0137 168.917 C -%_214.3066 169.9346 220.0176 172.7803 222.8711 178.1572 c -%_222.9277 178.2627 223.0508 178.3154 223.166 178.2822 c -%_223.2813 178.2471 223.3574 178.1357 223.3477 178.0166 c -%_223.166 175.9072 222.4063 171.6865 219.2734 169.7451 C -%_226.2383 169.7568 231.7793 168.8525 237.0723 166.7314 c -%_237.1836 166.6865 237.25 166.5693 237.2266 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 219.9189 m -%_207.8398 219.8545 207.9688 219.8643 208.0566 219.9463 c -%_208.1426 220.0264 208.1602 220.1553 208.1016 220.2588 c -%_206.4824 223.0557 207.9609 227.0713 211.1523 227.0713 c -%_216.873 227.0713 219.623 216.3018 218.748 206.4795 C -%_216.5859 212.2334 214.7148 214.5342 211.4004 217.2744 c -%_211.3066 217.3506 211.1719 217.3525 211.0781 217.2744 c -%_210.9844 217.1982 210.957 217.0654 211.0156 216.958 c -%_215.8711 207.8799 216.9121 200.8936 216.9121 192.874 C -%_215.4492 198.8311 213.7168 202.1943 208.7852 207.2549 c -%_208.6992 207.3428 208.5625 207.3564 208.4609 207.2861 c -%_208.3594 207.2158 208.3223 207.083 208.373 206.9717 c -%_213.6719 195.3799 213.2676 182.5244 209.3203 172.708 c -%_209.2813 172.6104 209.3066 172.499 209.3828 172.4268 c -%_209.4609 172.3545 209.5723 172.3389 209.668 172.3838 c -%_214.873 174.9346 217.9316 176.6104 222.4199 182.7744 C -%_221.0625 190.1729 222.1914 193.8213 225.5918 199.9678 C -%_221.6543 190.0518 223.75 176.0752 233.7793 170.3779 c -%_233.8887 170.3154 234.0273 170.3428 234.1035 170.4424 c -%_234.1816 170.542 234.1758 170.6826 234.0879 170.7744 c -%_230.3066 174.7295 227.5566 181.4092 229.9316 188.7002 C -%_228.4023 178.3115 237.5273 169.5869 247.7109 169.5869 c -%_257.3105 169.5869 263.8613 177.0947 263.3203 184.5264 c -%_262.7832 191.8916 257.877 195.4971 253.6484 197.0244 c -%_253.5371 197.0654 253.4121 197.0225 253.3496 196.9229 c -%_253.2852 196.8232 253.2988 196.6924 253.3828 196.6084 c -%_258.9922 190.915 259.7598 180.1162 249.7988 176.8486 C -%_255.6582 181.9053 253.4883 193.6768 244.1094 194.5732 c -%_243.9922 194.583 243.8828 194.5127 243.8457 194.4014 c -%_243.8066 194.292 243.8496 194.1689 243.9492 194.1064 c -%_245.957 192.8271 247.627 190.335 247.627 187.5322 c -%_247.627 182.8584 244.2051 181.0205 241.9512 181.0205 c -%_238.5293 181.0205 235.6914 184.2764 235.6914 189.2021 c -%_235.6914 195.0439 240.9512 199.8857 247.7109 200.6357 c -%_254.3379 201.3721 260.4941 198.4814 263.4609 194.1768 c -%_263.5313 194.0752 263.6621 194.04 263.7754 194.0908 c -%_263.8867 194.1416 263.9453 194.2646 263.916 194.3838 c -%_260.8965 206.0869 247.1191 211.2607 237.0273 203.8916 C -%_243.6406 211.3916 254.0332 211.4971 262.75 203.8057 c -%_262.8398 203.7256 262.9746 203.7197 263.0723 203.7939 c -%_263.168 203.8682 263.1992 203.999 263.1445 204.1084 c -%_260.4785 209.5146 253.8926 215.9268 244.5391 214.9932 c -%_235.9824 214.1377 231.0176 205.9775 230.0156 199.3018 C -%_229.459 207.8232 231.4102 213.8369 238.7695 219.4463 c -%_238.8672 219.5205 238.8965 219.6533 238.8418 219.7627 c -%_238.7871 219.8721 238.6621 219.9268 238.5449 219.8916 c -%_231.7598 217.9326 226.3145 214.4678 223.4961 207.3486 C -%_223.4961 213.5088 225.6348 219.7197 231.0215 223.8584 c -%_231.1191 223.9326 231.1484 224.0654 231.0938 224.1748 c -%_231.0391 224.2822 230.916 224.3369 230.7988 224.3037 c -%_227.3457 223.3213 224.627 221.8154 222.6602 219.1201 C -%_221.3496 230.2197 216.1387 236.8096 210.1348 236.8096 c -%_206.0098 236.8096 202.9297 233.7764 202.9297 228.9404 c -%_202.9297 226.1104 204.418 222.1377 207.7402 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 128.3018 m -%_111.6758 124.3975 118.0527 122.9092 124.9453 124.3135 C -%_124.4355 120.0107 125.2793 115.5225 126.5566 112.8271 c -%_126.6094 112.7197 126.7305 112.6611 126.8477 112.6904 c -%_126.9648 112.7197 127.0449 112.8271 127.041 112.9482 c -%_126.666 121.7139 131.6641 128.79 140.4902 131.8564 C -%_133.584 127.1006 131.5645 117.6631 134.8516 112.792 c -%_134.9199 112.6924 135.0469 112.6533 135.1582 112.6982 c -%_135.2695 112.7432 135.334 112.8604 135.3125 112.9795 c -%_134.9395 115.04 135.918 117.6631 138.0254 119.7041 c -%_140.9316 122.5186 144.875 123.1572 146.8359 121.1338 c -%_148.7969 119.1084 148.0332 115.1865 145.1289 112.374 c -%_144.0684 111.3467 142.8691 110.6104 141.6797 110.1885 c -%_141.5664 110.1475 141.498 110.0342 141.5137 109.917 c -%_141.5273 109.7979 141.623 109.7061 141.7422 109.6963 c -%_148.1309 109.1416 152.5117 112.9482 155.2578 117.5732 c -%_158.0527 122.2783 162.8281 125.9854 168.4688 125.2451 c -%_168.5879 125.2295 168.7012 125.2998 168.7422 125.4131 c -%_168.7813 125.5264 168.7363 125.6514 168.6328 125.7139 c -%_165.8359 127.3975 162.7617 128.0967 158.7695 126.7666 C -%_164.5645 131.6748 172.8164 134.5068 180.6104 131.9932 c -%_180.7197 131.958 180.8389 132.001 180.9014 132.0967 c -%_180.9639 132.1924 180.9541 132.3193 180.876 132.4053 c -%_174.9668 138.9697 163.1855 139.1006 155.7656 133.7764 C -%_158.8027 138.0928 162.834 141.2627 170.0586 142.2549 c -%_170.1738 142.2705 170.2637 142.3643 170.2773 142.4795 c -%_170.2891 142.5947 170.2227 142.7041 170.1133 142.7451 c -%_161.8223 145.8213 153.5137 142.7002 146.668 134.5283 C -%_149.6602 140.9072 154.5742 146.0146 161.4355 148.542 c -%_161.5508 148.583 161.6191 148.7002 161.5977 148.8213 c -%_161.5781 148.9424 161.4746 149.0303 161.3535 149.0322 c -%_157.4102 149.1143 153.8672 148.1748 149.0879 145.4619 C -%_152.5957 151.1533 151.8281 161.1006 146.7188 167.7217 c -%_146.6484 167.8135 146.5234 167.8447 146.416 167.7998 c -%_146.3105 167.7529 146.248 167.6396 146.2676 167.5244 c -%_147.4473 160.3252 144.9688 152.1963 140.6582 147.8838 C -%_142.8105 155.5146 140.6641 162.46 134.7617 167.5264 c -%_134.6914 167.5869 134.5918 167.6045 134.5059 167.5713 c -%_134.418 167.5381 134.3574 167.46 134.3438 167.3682 c -%_133.1094 157.9502 122.5742 148.3936 113.7422 147.5928 c -%_113.6172 147.5811 113.5195 147.4814 113.5117 147.3564 c -%_113.5039 147.2314 113.5859 147.1201 113.709 147.0928 c -%_117.9883 146.124 122.4004 146.6025 126.0977 148.1221 C -%_123.4375 145.1904 120.1582 143.0127 116.543 141.8779 c -%_116.4258 141.8408 116.3535 141.7275 116.3672 141.6064 c -%_116.3809 141.4854 116.4805 141.3896 116.6016 141.3818 c -%_121.1113 141.0713 125.5254 142.3877 129.332 144.9209 C -%_124.9707 138.2998 118.3516 133.376 109.9043 131.4131 c -%_109.7832 131.3857 109.7012 131.2744 109.707 131.1514 c -%_109.7148 131.0283 109.8105 130.9287 109.9336 130.915 c -%_121.8516 129.6123 131.6797 134.2334 138.1543 142.833 C -%_136.5059 137.9307 131.7891 133.0771 125.209 130.2139 c -%_119.3633 127.6689 113.3594 127.2666 108.7871 128.7041 c -%_108.6816 128.7373 108.5645 128.6963 108.502 128.6045 c -%_108.4395 128.5107 108.4434 128.3877 108.5137 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 203.874 m -%_156.6113 193.3877 156.9531 185.1885 160.8242 174.8193 c -%_160.8691 174.7021 160.9902 174.6338 161.1133 174.6592 c -%_161.2363 174.6846 161.3223 174.7959 161.3164 174.9189 c -%_160.6953 187.542 164.1426 196.5732 171.6152 202.7275 C -%_163.3652 192.874 167.2617 173.167 180.4385 173.167 c -%_190.0244 173.167 197.9531 181.1436 199.8926 190.6924 c -%_199.918 190.8135 199.8516 190.9346 199.7344 190.9795 c -%_199.6191 191.0244 199.4883 190.9795 199.4258 190.8721 c -%_196.584 186.1104 192.0176 183.0205 186.9697 183.0205 c -%_178.834 183.0205 176.4277 189.4873 176.4277 194.0205 c -%_176.4277 200.2061 181.3545 205.3623 185.1357 205.3623 c -%_188.5732 205.3623 190.1768 202.54 190.1768 200.4365 c -%_190.1768 196.5381 187.1787 193.2705 183.8018 192.2725 c -%_183.6807 192.2354 183.6045 192.1182 183.6221 191.9932 c -%_183.6396 191.8682 183.7451 191.7744 183.8721 191.7744 c -%_187.9775 191.749 191.4473 193.6279 193.5 197.3428 C -%_193.7695 194.4678 193.7715 192.6572 192.8594 189.6182 c -%_192.8242 189.501 192.877 189.376 192.9844 189.3193 c -%_193.0938 189.2646 193.2266 189.292 193.3008 189.3896 c -%_200.6582 198.7822 197.1367 215.0127 191.3223 221.7471 C -%_196.8535 217.7646 201.7383 209.1123 201.6621 197.3525 c -%_201.6602 197.2314 201.7461 197.126 201.8672 197.1025 c -%_201.9863 197.0791 202.1055 197.1436 202.1504 197.2568 c -%_206.2598 207.5107 204.0801 226.5049 192.8691 237.1084 C -%_195.7539 237.5068 198.7363 237.4561 201.9941 236.417 c -%_202.1094 236.3799 202.2344 236.4307 202.293 236.5361 c -%_202.3516 236.6416 202.3281 236.7744 202.2344 236.8525 c -%_198.1426 240.3076 192.4199 241.3936 186.9697 241.3936 C -%_191.666 235.8936 190.1064 224.8408 182.6162 224.8408 c -%_177.2656 224.8408 174.8379 233.1396 178.9668 237.6221 c -%_179.0449 237.708 179.0547 237.835 178.9922 237.9326 c -%_178.9277 238.0303 178.8066 238.0713 178.6953 238.0342 c -%_173.916 236.3779 168.75 232.2451 168.75 227.0166 c -%_168.75 221.9756 173.5625 217.6221 180.5537 217.9658 C -%_171.7324 215.4619 162.5 218.2334 157.6699 224.2197 c -%_157.5957 224.3115 157.4648 224.3408 157.3594 224.2861 c -%_157.252 224.2334 157.1973 224.1123 157.2266 223.9951 c -%_160.0176 213.2803 169.1934 208.7959 180.667 210.29 C -%_171.3848 206.5322 157.416 209.8076 151.2422 217.5986 c -%_151.1699 217.6904 151.043 217.7217 150.9355 217.6709 c -%_150.8301 217.6221 150.7715 217.5049 150.7949 217.3896 c -%_152.166 210.7744 155.6582 205.8291 161.418 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 184.5869 m -%_26.7178 184.7061 26.8213 184.792 26.9424 184.7939 c -%_39.8486 184.9287 51.6963 188.0615 60.9141 196.3086 C -%_52.8838 190.751 37.9717 188.7979 29.3867 192.6904 c -%_29.2764 192.7402 29.2178 192.8604 29.2451 192.9785 c -%_29.2715 193.0967 29.3779 193.1787 29.499 193.1748 c -%_40.1787 192.8857 48.7783 196.1816 55.4834 202.1396 C -%_48.6143 202.5615 42.9092 206.8799 42.9268 211.9844 c -%_42.9268 212.1035 43.0107 212.2061 43.1279 212.2314 c -%_43.2441 212.2568 43.3623 212.1963 43.4111 212.0879 c -%_44.5322 209.5986 48.1592 208.3076 51.9941 209.208 c -%_56.1738 210.1885 58.9941 213.3975 58.2949 216.373 c -%_57.8232 218.3877 55.8584 219.7764 53.3428 220.1602 c -%_53.2158 220.1787 53.123 220.29 53.126 220.418 c -%_53.1299 220.5459 53.2285 220.6514 53.3564 220.6631 c -%_54.4248 220.7656 55.5361 220.7695 56.6738 220.6611 c -%_63.1641 220.0439 68.1875 216.0654 68.623 211.4834 C -%_73.3359 212.0303 77.5078 214.6396 79.002 218.2568 c -%_79.0469 218.3652 79.1621 218.4287 79.2773 218.4111 c -%_79.3926 218.3916 79.4805 218.2969 79.4902 218.1807 c -%_79.8672 213.4287 78.2324 210.3418 74.5195 207.3262 C -%_79.9043 209.3857 85.9648 209.4912 91.7754 206.7881 c -%_91.8809 206.7393 91.9395 206.624 91.918 206.5088 c -%_91.8945 206.3936 91.7949 206.3096 91.6777 206.3057 c -%_86.7988 206.1152 83.2617 204.5498 79.9473 201.2334 C -%_98.2012 206.3672 113.0332 195.0322 107.9004 178.1807 c -%_107.8652 178.0654 107.7539 177.9902 107.6328 178.0029 c -%_107.5117 178.0146 107.416 178.1104 107.4063 178.2314 c -%_106.4883 187.9453 99.7031 194.3467 89.5449 195.3076 C -%_94.9316 193.2471 100.5449 188.3311 101.1016 179.7734 c -%_101.1094 179.6514 101.0293 179.54 100.9102 179.5107 c -%_100.791 179.4814 100.668 179.54 100.6172 179.6514 c -%_97.8184 185.8057 92.3203 188.917 86.457 189.4639 C -%_92.791 186.8838 96.8535 180.8623 98.0273 173.0439 c -%_98.0469 172.9209 97.9727 172.8018 97.8535 172.7646 c -%_97.7363 172.7256 97.6074 172.7803 97.5508 172.8896 c -%_93.6855 180.4727 85.3945 185.6836 75.1035 181.7021 c -%_64.4863 177.5928 59.8291 165.3154 58.7998 156.6611 c -%_58.7852 156.54 58.6846 156.4463 58.5615 156.4385 c -%_58.4395 156.4307 58.3291 156.5127 58.3008 156.6338 c -%_54.5811 172.3213 61.8838 188.583 74.9375 195.4736 C -%_67.8418 193.4707 61.498 189.2139 57.9102 182.1191 C -%_49.6162 181.1006 43.9063 178.2568 41.0527 172.8799 c -%_40.9961 172.7725 40.8721 172.7197 40.7568 172.7549 c -%_40.6416 172.7881 40.5654 172.8994 40.5752 173.0205 c -%_40.7578 175.1299 41.5166 179.3506 44.6494 181.291 C -%_37.6846 181.2803 32.1436 182.1846 26.8506 184.3037 c -%_26.7393 184.3496 26.6738 184.4678 26.6963 184.5869 c -%_f -%_0 D -%_56.1826 131.1162 m -%_56.084 131.1826 55.9541 131.1709 55.8672 131.0908 c -%_55.7813 131.0088 55.7627 130.8799 55.8213 130.7783 c -%_57.4414 127.9814 55.9619 123.9639 52.7705 123.9639 c -%_47.0498 123.9639 44.2998 134.7334 45.1748 144.5576 C -%_47.3379 138.8018 49.208 136.5029 52.5225 133.7627 c -%_52.6162 133.6846 52.751 133.6846 52.8447 133.7607 c -%_52.9385 133.8389 52.9658 133.9697 52.9082 134.0771 c -%_48.0518 143.1572 47.0107 150.1436 47.0107 158.1631 C -%_48.4736 152.2041 50.2061 148.8408 55.1377 143.7822 c -%_55.2236 143.6943 55.3604 143.6807 55.4629 143.749 c -%_55.5645 143.8193 55.6016 143.9521 55.5498 144.0654 c -%_50.252 155.6553 50.6563 168.5127 54.6025 178.3291 c -%_54.6416 178.4268 54.6172 178.5381 54.54 178.6104 c -%_54.4629 178.6807 54.3506 178.6982 54.2549 178.6514 c -%_49.0498 176.1006 45.9912 174.4248 41.5029 168.2627 C -%_42.8604 160.8643 41.7314 157.2139 38.3311 151.0674 C -%_42.2686 160.9854 40.1729 174.9619 30.1436 180.6592 c -%_30.0342 180.7207 29.8955 180.6934 29.8193 180.5947 c -%_29.7412 180.4951 29.748 180.3535 29.835 180.2627 c -%_33.6162 176.3076 36.3662 169.6279 33.9912 162.335 C -%_35.5205 172.7236 26.3955 181.4502 16.2119 181.4502 c -%_6.6123 181.4502 0.061523 173.9404 0.602539 166.5088 c -%_1.13965 159.1436 6.0459 155.54 10.2744 154.0107 c -%_10.3857 153.9717 10.5107 154.0127 10.5742 154.1123 c -%_10.6377 154.2139 10.624 154.3428 10.541 154.4287 c -%_4.93066 160.1201 4.16309 170.9209 14.124 174.1885 C -%_8.26465 169.1318 10.4346 157.3584 19.8135 156.4639 c -%_19.9307 156.4521 20.04 156.5225 20.0781 156.6338 c -%_20.1162 156.7451 20.0732 156.8682 19.9746 156.9307 c -%_17.9658 158.208 16.2959 160.7021 16.2959 163.5049 c -%_16.2959 168.1787 19.7178 170.0146 21.9717 170.0146 c -%_25.3936 170.0146 28.2314 166.7588 28.2314 161.835 c -%_28.2314 155.9912 22.9717 151.1514 16.2119 150.3994 c -%_9.58594 149.665 3.42969 152.5537 0.461914 156.8584 c -%_0.392578 156.96 0.260742 156.9971 0.148438 156.9463 c -%_0.036133 156.8955 -0.022461 156.7705 0.007813 156.6514 c -%_3.02637 144.9482 16.8037 139.7744 26.8955 147.1455 C -%_20.2822 139.6436 9.88965 139.54 1.17383 147.2314 c -%_1.08301 147.3115 0.948242 147.3154 0.851563 147.2412 c -%_0.754883 147.1689 0.724609 147.0361 0.77832 146.9287 c -%_3.44531 141.5205 10.0313 135.1084 19.3838 136.0439 c -%_27.9404 136.8994 32.9053 145.0576 33.9072 151.7354 C -%_34.4639 143.2139 32.5137 137.1982 25.1533 131.5889 c -%_25.0566 131.5146 25.0264 131.3818 25.0811 131.2725 c -%_25.1357 131.165 25.2607 131.1104 25.3779 131.1436 c -%_32.1631 133.1045 37.6084 136.5693 40.4268 143.6885 C -%_40.4268 137.5264 38.2881 131.3154 32.9014 127.1768 c -%_32.8037 127.1025 32.7744 126.9717 32.8291 126.8623 c -%_32.8838 126.7529 33.0078 126.6982 33.125 126.7314 c -%_36.5781 127.7158 39.2959 129.2197 41.2627 131.917 C -%_42.5732 120.8174 47.7842 114.2256 53.7881 114.2256 c -%_57.9131 114.2256 60.9932 117.2588 60.9932 122.0967 c -%_60.9932 124.9268 59.5049 128.8994 56.1826 131.1162 c -%_f -%_155.4102 222.7354 m -%_152.248 226.6396 145.8711 228.1279 138.9785 226.7236 C -%_139.4883 231.0244 138.6445 235.5146 137.3672 238.208 c -%_137.3145 238.3174 137.1934 238.375 137.0762 238.3467 c -%_136.959 238.3174 136.8789 238.21 136.8828 238.0889 c -%_137.2578 229.3223 132.2598 222.2451 123.4336 219.1787 C -%_130.3398 223.9346 132.3594 233.3721 129.0723 238.2451 c -%_129.0039 238.3438 128.877 238.3828 128.7656 238.3369 c -%_128.6543 238.292 128.5898 238.1748 128.6113 238.0576 c -%_128.9844 235.9971 128.0059 233.373 125.8984 231.3311 c -%_122.9922 228.5166 119.0488 227.8779 117.0879 229.9014 c -%_115.127 231.9268 115.8906 235.8486 118.7949 238.6631 c -%_119.8555 239.6904 121.0547 240.4248 122.2441 240.8477 c -%_122.3574 240.8877 122.4258 241.001 122.4102 241.1191 c -%_122.3965 241.2383 122.3008 241.3301 122.1816 241.3398 c -%_115.793 241.8945 111.4121 238.0879 108.666 233.4619 c -%_105.8711 228.7568 101.0957 225.0518 95.4551 225.792 c -%_95.3359 225.8076 95.2227 225.7373 95.1816 225.624 c -%_95.1426 225.5107 95.1875 225.3838 95.291 225.3223 c -%_98.0879 223.6377 101.1621 222.9385 105.1543 224.2705 C -%_99.3594 219.3613 91.1074 216.5283 83.3145 219.043 c -%_83.2051 219.0791 83.0859 219.0361 83.0234 218.9395 c -%_82.9609 218.8428 82.9727 218.7168 83.0488 218.6318 c -%_88.957 212.0674 100.7383 211.9365 108.1582 217.2588 C -%_105.1211 212.9424 101.0898 209.7744 93.8652 208.7803 c -%_93.75 208.7646 93.6602 208.6729 93.6465 208.5576 c -%_93.6348 208.4414 93.7012 208.332 93.8105 208.292 c -%_102.1016 205.2139 110.4102 208.3369 117.2559 216.5068 C -%_114.2637 210.1299 109.3496 205.0225 102.4883 202.4951 c -%_102.373 202.4531 102.3047 202.335 102.3262 202.2158 c -%_102.3457 202.0947 102.4492 202.0059 102.5703 202.0029 c -%_106.5137 201.9219 110.0566 202.8604 114.8359 205.5732 C -%_111.3281 199.8838 112.0957 189.9346 117.2051 183.3154 c -%_117.2754 183.2236 117.4004 183.1914 117.5078 183.2373 c -%_117.6133 183.2842 117.6758 183.3965 117.6563 183.5107 c -%_116.4766 190.7119 118.9551 198.8408 123.2656 203.1533 C -%_121.1133 195.5215 123.2598 188.5771 129.1621 183.5088 c -%_129.2324 183.4482 129.332 183.4316 129.418 183.4648 c -%_129.5059 183.498 129.5664 183.5771 129.5801 183.6689 c -%_130.8145 193.0869 141.3496 202.6436 150.1816 203.4443 c -%_150.3066 203.4551 150.4043 203.5557 150.4121 203.6797 c -%_150.4199 203.8037 150.3379 203.917 150.2148 203.9443 c -%_145.9355 204.9131 141.5234 204.4346 137.8262 202.9131 C -%_140.4863 205.8467 143.7656 208.0244 147.3809 209.1592 c -%_147.498 209.1953 147.5703 209.3096 147.5566 209.4307 c -%_147.543 209.5518 147.4434 209.6455 147.3223 209.6543 c -%_142.8125 209.9658 138.3984 208.6484 134.5918 206.1162 C -%_138.9531 212.7373 145.5723 217.6611 154.0195 219.6221 c -%_154.1406 219.6504 154.2227 219.7607 154.2168 219.8848 c -%_154.209 220.0088 154.1133 220.1084 153.9902 220.1221 c -%_142.0723 221.4238 132.2441 216.8037 125.7695 208.2041 C -%_127.418 213.1045 132.1348 217.96 138.7148 220.8232 c -%_144.5605 223.3682 150.5645 223.7695 155.1367 222.333 c -%_155.2422 222.2998 155.3594 222.3398 155.4219 222.4326 c -%_155.4844 222.5244 155.4805 222.6475 155.4102 222.7354 c -%_f -%_102.5059 147.1631 m -%_107.3125 157.6494 106.9707 165.8486 103.0996 176.2178 c -%_103.0547 176.335 102.9336 176.4023 102.8105 176.3779 c -%_102.6875 176.3525 102.6016 176.2412 102.6074 176.1162 c -%_103.2285 163.4951 99.7813 154.4619 92.3086 148.3096 C -%_100.5586 158.1611 96.6621 177.8691 83.4863 177.8691 c -%_73.9004 177.8691 65.9697 169.8936 64.0303 160.3447 c -%_64.0059 160.2236 64.0723 160.1006 64.1885 160.0576 c -%_64.3037 160.0127 64.4346 160.0576 64.4971 160.1631 c -%_67.3398 164.9248 71.9063 168.0146 76.9551 168.0146 c -%_85.0898 168.0146 87.4961 161.5479 87.4961 157.0166 c -%_87.4961 150.8291 82.5703 145.6729 78.7891 145.6729 c -%_75.3516 145.6729 73.748 148.4971 73.748 150.6006 c -%_73.748 154.499 76.7461 157.7666 80.125 158.7646 c -%_80.2441 158.7998 80.3223 158.9189 80.3047 159.0439 c -%_80.2852 159.1689 80.1797 159.2607 80.0547 159.2627 c -%_75.9473 159.2881 72.4766 157.4072 70.4238 153.6943 C -%_70.1543 156.5693 70.1514 158.3799 71.0645 161.417 c -%_71.0996 161.5342 71.0459 161.6592 70.9385 161.7158 c -%_70.8291 161.7725 70.6963 161.7432 70.6221 161.6475 c -%_63.2656 152.2549 66.7861 136.0225 72.6016 129.29 C -%_67.0693 133.2725 62.1846 141.9229 62.2617 153.6826 c -%_62.2627 153.8057 62.1768 153.9092 62.0566 153.9326 c -%_61.9365 153.958 61.8174 153.8916 61.7725 153.7783 c -%_57.6641 143.5264 59.8438 124.5303 71.0537 113.9268 C -%_68.1699 113.5303 65.1865 113.5811 61.9287 114.6201 c -%_61.8135 114.6553 61.6885 114.6064 61.6299 114.501 c -%_61.5713 114.3936 61.5947 114.2607 61.6885 114.1826 c -%_65.7803 110.7275 71.5029 109.6416 76.9551 109.6416 C -%_72.2578 115.1416 73.8184 126.1963 81.3105 126.1963 c -%_86.6582 126.1963 89.0859 117.8975 84.957 113.415 c -%_84.8789 113.3291 84.8691 113.2002 84.9316 113.1045 c -%_84.9961 113.0068 85.1172 112.9639 85.2285 113.0029 c -%_90.0078 114.6572 95.1738 118.792 95.1738 124.0186 c -%_95.1738 129.0615 90.3613 133.4131 83.373 133.0693 C -%_92.1914 135.5752 101.4238 132.8018 106.2539 126.8174 c -%_106.3281 126.7236 106.459 126.6963 106.5645 126.749 c -%_106.6719 126.8037 106.7266 126.9248 106.6973 127.04 c -%_103.9063 137.7568 94.7305 142.2393 83.2578 140.7471 C -%_92.5391 144.5029 106.5078 141.2275 112.6816 133.4365 c -%_112.7539 133.3447 112.8809 133.3154 112.9883 133.3643 c -%_113.0938 133.415 113.1523 133.5322 113.1289 133.6455 c -%_111.7578 140.2607 108.2656 145.208 102.5059 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 166.4502 m -%_128.8672 166.3311 128.7637 166.2432 128.6426 166.2432 c -%_115.7363 166.1064 103.8887 162.9756 94.6719 154.7275 C -%_102.7012 160.2861 117.6133 162.2373 126.1992 158.3467 c -%_126.3086 158.2959 126.3672 158.1748 126.3398 158.0576 c -%_126.3145 157.9404 126.207 157.8584 126.0859 157.8604 c -%_115.4063 158.1514 106.8066 154.8545 100.1016 148.8975 C -%_106.9707 148.4736 112.6758 144.1572 112.6582 139.0518 c -%_112.6582 138.9326 112.5742 138.8291 112.457 138.8037 c -%_112.3418 138.7803 112.2227 138.8389 112.1738 138.9482 c -%_111.0527 141.4365 107.4258 142.7295 103.5918 141.8291 c -%_99.4121 140.8467 96.5918 137.6396 97.291 134.6631 c -%_97.7617 132.6494 99.7266 131.2607 102.2422 130.876 c -%_102.3691 130.8564 102.4629 130.7471 102.459 130.6182 c -%_102.4551 130.4912 102.3574 130.3857 102.2285 130.3721 c -%_101.1602 130.2705 100.0488 130.2666 98.9121 130.376 c -%_92.4219 130.9932 87.3984 134.9697 86.9629 139.5537 C -%_82.25 139.0068 78.0781 136.3955 76.584 132.7803 c -%_76.5391 132.6709 76.4258 132.6084 76.3086 132.626 c -%_76.1934 132.6436 76.1055 132.7393 76.0957 132.8564 c -%_75.7188 137.6064 77.3535 140.6943 81.0664 143.71 C -%_75.6816 141.6514 69.6201 141.5459 63.8096 144.2471 c -%_63.7041 144.2979 63.6455 144.4131 63.667 144.5283 c -%_63.6904 144.6436 63.79 144.7275 63.9072 144.7314 c -%_68.7861 144.9209 72.3242 146.4873 75.6406 149.8037 C -%_57.3838 144.6689 42.5518 156.0049 47.6846 172.8545 c -%_47.7197 172.9717 47.8311 173.0459 47.9521 173.0342 c -%_48.0732 173.0225 48.1689 172.9268 48.1787 172.8057 c -%_49.0967 163.0908 55.8818 156.6885 66.04 155.7295 C -%_60.6533 157.7881 55.04 162.7041 54.4834 171.2627 c -%_54.4756 171.3857 54.5557 171.4951 54.6748 171.5264 c -%_54.7939 171.5557 54.917 171.4951 54.9678 171.3838 c -%_57.7666 165.2295 63.2646 162.1201 69.1279 161.5713 C -%_62.7939 164.1533 58.7314 170.1748 57.5576 177.9932 c -%_57.5381 178.1162 57.6123 178.2334 57.7314 178.2725 c -%_57.8486 178.3096 57.9775 178.2568 58.0342 178.1455 c -%_61.8994 170.5635 70.1904 165.3525 80.4824 169.335 c -%_91.0996 173.4443 95.7559 185.7197 96.7852 194.374 c -%_96.8008 194.4971 96.9004 194.5908 97.0234 194.5986 c -%_97.1465 194.6045 97.2559 194.5225 97.2852 194.4033 c -%_101.0039 178.7139 93.7012 162.4541 80.6484 155.5635 C -%_87.7441 157.5654 94.0879 161.8232 97.6758 168.917 C -%_105.9688 169.9346 111.6797 172.7803 114.5332 178.1572 c -%_114.5898 178.2627 114.7129 178.3154 114.8281 178.2822 c -%_114.9434 178.2471 115.0195 178.1357 115.0098 178.0166 c -%_114.8281 175.9072 114.0684 171.6865 110.9355 169.7451 C -%_117.9004 169.7568 123.4414 168.8525 128.7344 166.7314 c -%_128.8457 166.6865 128.9121 166.5693 128.8887 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 219.9189 m -%_99.502 219.8545 99.6309 219.8643 99.7188 219.9463 c -%_99.8047 220.0264 99.8223 220.1553 99.7637 220.2588 c -%_98.1445 223.0557 99.623 227.0713 102.8145 227.0713 c -%_108.5352 227.0713 111.2852 216.3018 110.4102 206.4795 C -%_108.248 212.2334 106.377 214.5342 103.0625 217.2744 c -%_102.9688 217.3506 102.834 217.3525 102.7402 217.2744 c -%_102.6465 217.1982 102.6191 217.0654 102.6777 216.958 c -%_107.5332 207.8799 108.5742 200.8936 108.5742 192.874 C -%_107.1113 198.8311 105.3789 202.1943 100.4473 207.2549 c -%_100.3613 207.3428 100.2246 207.3564 100.123 207.2861 c -%_100.0215 207.2158 99.9844 207.083 100.0352 206.9717 c -%_105.334 195.3799 104.9297 182.5244 100.9824 172.708 c -%_100.9434 172.6104 100.9688 172.499 101.0449 172.4268 c -%_101.123 172.3545 101.2344 172.3389 101.3301 172.3838 c -%_106.5352 174.9346 109.5938 176.6104 114.082 182.7744 C -%_112.7246 190.1729 113.8535 193.8213 117.2539 199.9678 C -%_113.3164 190.0518 115.4121 176.0752 125.4414 170.3779 c -%_125.5508 170.3154 125.6895 170.3428 125.7656 170.4424 c -%_125.8438 170.542 125.8379 170.6826 125.75 170.7744 c -%_121.9688 174.7295 119.2188 181.4092 121.5938 188.7002 C -%_120.0645 178.3115 129.1895 169.5869 139.373 169.5869 c -%_148.9727 169.5869 155.5234 177.0947 154.9824 184.5264 c -%_154.4453 191.8916 149.5391 195.4971 145.3105 197.0244 c -%_145.1992 197.0654 145.0742 197.0225 145.0117 196.9229 c -%_144.9473 196.8232 144.9609 196.6924 145.0449 196.6084 c -%_150.6543 190.915 151.4219 180.1162 141.4609 176.8486 C -%_147.3203 181.9053 145.1504 193.6768 135.7715 194.5732 c -%_135.6543 194.583 135.5449 194.5127 135.5078 194.4014 c -%_135.4688 194.292 135.5117 194.1689 135.6113 194.1064 c -%_137.6191 192.8271 139.2891 190.335 139.2891 187.5322 c -%_139.2891 182.8584 135.8672 181.0205 133.6133 181.0205 c -%_130.1914 181.0205 127.3535 184.2764 127.3535 189.2021 c -%_127.3535 195.0439 132.6133 199.8857 139.373 200.6357 c -%_146 201.3721 152.1563 198.4814 155.123 194.1768 c -%_155.1934 194.0752 155.3242 194.04 155.4375 194.0908 c -%_155.5488 194.1416 155.6074 194.2646 155.5781 194.3838 c -%_152.5586 206.0869 138.7813 211.2607 128.6895 203.8916 C -%_135.3027 211.3916 145.6953 211.4971 154.4121 203.8057 c -%_154.502 203.7256 154.6367 203.7197 154.7344 203.7939 c -%_154.8301 203.8682 154.8613 203.999 154.8066 204.1084 c -%_152.1406 209.5146 145.5547 215.9268 136.2012 214.9932 c -%_127.6445 214.1377 122.6797 205.9775 121.6777 199.3018 C -%_121.1211 207.8232 123.0723 213.8369 130.4316 219.4463 c -%_130.5293 219.5205 130.5586 219.6533 130.5039 219.7627 c -%_130.4492 219.8721 130.3242 219.9268 130.207 219.8916 c -%_123.4219 217.9326 117.9766 214.4678 115.1582 207.3486 C -%_115.1582 213.5088 117.2969 219.7197 122.6836 223.8584 c -%_122.7813 223.9326 122.8105 224.0654 122.7559 224.1748 c -%_122.7012 224.2822 122.5781 224.3369 122.4609 224.3037 c -%_119.0078 223.3213 116.2891 221.8154 114.3223 219.1201 C -%_113.0117 230.2197 107.8008 236.8096 101.7969 236.8096 c -%_97.6719 236.8096 94.5918 233.7764 94.5918 228.9404 c -%_94.5918 226.1104 96.0801 222.1377 99.4023 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 128.3018 m -%_3.33691 124.3975 9.71387 122.9092 16.6064 124.3135 C -%_16.0967 120.0107 16.9404 115.5225 18.2178 112.8271 c -%_18.2705 112.7197 18.3916 112.6611 18.5088 112.6904 c -%_18.626 112.7197 18.7061 112.8271 18.7021 112.9482 c -%_18.3271 121.7139 23.3252 128.79 32.1514 131.8564 C -%_25.2451 127.1006 23.2256 117.6631 26.5127 112.792 c -%_26.5811 112.6924 26.708 112.6533 26.8193 112.6982 c -%_26.9307 112.7432 26.9951 112.8604 26.9736 112.9795 c -%_26.6006 115.04 27.5791 117.6631 29.6865 119.7041 c -%_32.5928 122.5186 36.5361 123.1572 38.4971 121.1338 c -%_40.458 119.1084 39.6943 115.1865 36.79 112.374 c -%_35.7295 111.3467 34.5303 110.6104 33.3408 110.1885 c -%_33.2275 110.1475 33.1592 110.0342 33.1748 109.917 c -%_33.1885 109.7979 33.2842 109.7061 33.4033 109.6963 c -%_39.792 109.1416 44.1729 112.9482 46.9189 117.5732 c -%_49.7139 122.2783 54.4893 125.9854 60.1299 125.2451 c -%_60.249 125.2295 60.3623 125.2998 60.4033 125.4131 c -%_60.4424 125.5264 60.3975 125.6514 60.2939 125.7139 c -%_57.4971 127.3975 54.4229 128.0967 50.4307 126.7666 C -%_56.2256 131.6748 64.4775 134.5068 72.2715 131.9932 c -%_72.3809 131.958 72.5 132.001 72.5625 132.0967 c -%_72.625 132.1924 72.6152 132.3193 72.5371 132.4053 c -%_66.6279 138.9697 54.8467 139.1006 47.4268 133.7764 C -%_50.4639 138.0928 54.4951 141.2627 61.7197 142.2549 c -%_61.835 142.2705 61.9248 142.3643 61.9385 142.4795 c -%_61.9502 142.5947 61.8838 142.7041 61.7744 142.7451 c -%_53.4834 145.8213 45.1748 142.7002 38.3291 134.5283 C -%_41.3213 140.9072 46.2354 146.0146 53.0967 148.542 c -%_53.2119 148.583 53.2803 148.7002 53.2588 148.8213 c -%_53.2393 148.9424 53.1357 149.0303 53.0146 149.0322 c -%_49.0713 149.1143 45.5283 148.1748 40.749 145.4619 C -%_44.2568 151.1533 43.4893 161.1006 38.3799 167.7217 c -%_38.3096 167.8135 38.1846 167.8447 38.0771 167.7998 c -%_37.9717 167.7529 37.9092 167.6396 37.9287 167.5244 c -%_39.1084 160.3252 36.6299 152.1963 32.3193 147.8838 C -%_34.4717 155.5146 32.3252 162.46 26.4229 167.5264 c -%_26.3525 167.5869 26.2529 167.6045 26.167 167.5713 c -%_26.0791 167.5381 26.0186 167.46 26.0049 167.3682 c -%_24.7705 157.9502 14.2354 148.3936 5.40332 147.5928 c -%_5.27832 147.5811 5.18066 147.4814 5.17285 147.3564 c -%_5.16504 147.2314 5.24707 147.1201 5.37012 147.0928 c -%_9.64941 146.124 14.0615 146.6025 17.7588 148.1221 C -%_15.0986 145.1904 11.8193 143.0127 8.2041 141.8779 c -%_8.08691 141.8408 8.01465 141.7275 8.02832 141.6064 c -%_8.04199 141.4854 8.1416 141.3896 8.2627 141.3818 c -%_12.7725 141.0713 17.1865 142.3877 20.9932 144.9209 C -%_16.6318 138.2998 10.0127 133.376 1.56543 131.4131 c -%_1.44434 131.3857 1.3623 131.2744 1.36816 131.1514 c -%_1.37598 131.0283 1.47168 130.9287 1.59473 130.915 c -%_13.5127 129.6123 23.3408 134.2334 29.8154 142.833 C -%_28.167 137.9307 23.4502 133.0771 16.8701 130.2139 c -%_11.0244 127.6689 5.02051 127.2666 0.448242 128.7041 c -%_0.342773 128.7373 0.225586 128.6963 0.163086 128.6045 c -%_0.100586 128.5107 0.104492 128.3877 0.174805 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 203.874 m -%_48.2725 193.3877 48.6143 185.1885 52.4854 174.8193 c -%_52.5303 174.7021 52.6514 174.6338 52.7744 174.6592 c -%_52.8975 174.6846 52.9834 174.7959 52.9775 174.9189 c -%_52.3564 187.542 55.8037 196.5732 63.2764 202.7275 C -%_55.0264 192.874 58.9229 173.167 72.0996 173.167 c -%_81.6855 173.167 89.6152 181.1436 91.5547 190.6924 c -%_91.5801 190.8135 91.5137 190.9346 91.3965 190.9795 c -%_91.2813 191.0244 91.1504 190.9795 91.0879 190.8721 c -%_88.2461 186.1104 83.6797 183.0205 78.6309 183.0205 c -%_70.4951 183.0205 68.0889 189.4873 68.0889 194.0205 c -%_68.0889 200.2061 73.0156 205.3623 76.7969 205.3623 c -%_80.2344 205.3623 81.8379 202.54 81.8379 200.4365 c -%_81.8379 196.5381 78.8398 193.2705 75.4629 192.2725 c -%_75.3418 192.2354 75.2656 192.1182 75.2832 191.9932 c -%_75.3008 191.8682 75.4063 191.7744 75.5332 191.7744 c -%_79.6387 191.749 83.1094 193.6279 85.1621 197.3428 C -%_85.4316 194.4678 85.4336 192.6572 84.5215 189.6182 c -%_84.4863 189.501 84.5391 189.376 84.6465 189.3193 c -%_84.7559 189.2646 84.8887 189.292 84.9629 189.3896 c -%_92.3203 198.7822 88.7988 215.0127 82.9844 221.7471 C -%_88.5156 217.7646 93.4004 209.1123 93.3242 197.3525 c -%_93.3223 197.2314 93.4082 197.126 93.5293 197.1025 c -%_93.6484 197.0791 93.7676 197.1436 93.8125 197.2568 c -%_97.9219 207.5107 95.7422 226.5049 84.5313 237.1084 C -%_87.416 237.5068 90.3984 237.4561 93.6563 236.417 c -%_93.7715 236.3799 93.8965 236.4307 93.9551 236.5361 c -%_94.0137 236.6416 93.9902 236.7744 93.8965 236.8525 c -%_89.8047 240.3076 84.082 241.3936 78.6309 241.3936 C -%_83.3281 235.8936 81.7676 224.8408 74.2773 224.8408 c -%_68.9268 224.8408 66.499 233.1396 70.6279 237.6221 c -%_70.7061 237.708 70.7158 237.835 70.6533 237.9326 c -%_70.5889 238.0303 70.4678 238.0713 70.3564 238.0342 c -%_65.5771 236.3779 60.4111 232.2451 60.4111 227.0166 c -%_60.4111 221.9756 65.2236 217.6221 72.2148 217.9658 C -%_63.3936 215.4619 54.1611 218.2334 49.3311 224.2197 c -%_49.2568 224.3115 49.126 224.3408 49.0205 224.2861 c -%_48.9131 224.2334 48.8584 224.1123 48.8877 223.9951 c -%_51.6787 213.2803 60.8545 208.7959 72.3281 210.29 C -%_63.0459 206.5322 49.0771 209.8076 42.9033 217.5986 c -%_42.8311 217.6904 42.7041 217.7217 42.5967 217.6709 c -%_42.4912 217.6221 42.4326 217.5049 42.4561 217.3896 c -%_43.8271 210.7744 47.3193 205.8291 53.0791 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_; -%_ -%_9 () XW -%_U -%_/ArtDictionary : -%_108.3384 /Real (AIPattern_Editor_Tile_Width) , -%_5 /Int (AIPattern_Editor_Preview_Cols) , -%_1 /Bool (AIPattern_Editor_Dim_Copies_Key) , -%_1 /Bool (AIPattern_Editor_Left_in_Front) , -%_1 /Bool (AIPattern_Editor_Top_in_Front) , -%_109.6416 /Real (AIPattern_Editor_Tile_Height) , -%_5 /Int (AIPattern_Editor_Preview_Rows) , -%_50 /Real (AIPattern_Editor_Dim_Percent_Key) , -%_4 /Int (AIPattern_Editor_Editable_Copy_Loc_Key) , -%_; -%_ -%_9 () XW -E -%AI3_EndPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginBrushPattern -(Unnamed 6) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --3874.5 4018.5 m --3773.1816 4018.5 L --3773.1816 4010.7832 L --3874.5 4010.7832 L --3874.5 4018.5 L -n -u -0 O -0.720851 0.673426 0.586358 0.790768 0.137255 0.121569 0.12549 Xa --3773.3 4012.2073 m --3773.1504 4012.2439 -3773.2041 4011.8247 -3773.1816 4011.7495 C --3773.4319 4011.8423 -3773.2937 4012.3159 -3773.3 4012.2073 C -f --3775.7693 4013.1582 m --3775.7256 4012.9871 L --3776.0896 4013.4063 L --3775.7693 4013.1582 L -f --3778.0784 4013.1504 m --3777.8601 4013.8643 -3777.2417 4013.0352 -3776.8303 4013.2888 C --3776.7625 4013.4524 L --3776.5769 4012.8772 L --3777.0769 4012.9683 -3777.7263 4013.3499 -3778.0784 4013.1504 C -f --3779.3096 4011.6072 m --3779.2336 4011.8843 -3779.5759 4011.8455 -3779.0225 4011.6936 C --3779.0503 4011.6631 -3779.0583 4011.6455 -3779.0745 4011.6233 C --3779.1243 4011.6272 -3779.1929 4011.6262 -3779.3096 4011.6072 C -f --3779.0745 4011.6233 m --3778.8313 4011.6033 -3779.2336 4011.3904 -3779.0745 4011.6233 C --3779.0745 4011.6233 L -f --3780.1975 4011.7822 m --3779.8772 4011.5342 L --3779.9441 4011.3704 -3780.2292 4011.3333 -3780.1233 4011.2134 C --3780.4519 4011.3496 -3780.3843 4011.5127 -3780.1975 4011.7822 C -f --3780.5012 4012.3032 m --3780.3352 4012.1982 L --3780.3643 4012.1294 -3780.4082 4012.1052 -3780.5012 4012.3032 C -f --3779.9832 4011.9768 m --3780.3352 4012.1982 L --3780.2888 4012.3132 -3780.2839 4012.5447 -3780.1736 4012.1184 C --3780.2024 4012.3296 -3780.1328 4012.1262 -3779.9832 4011.9768 C -f --3779.7839 4012.0852 m --3779.6042 4012.24 -3779.3721 4012.3384 -3779.6936 4012.5852 C --3779.0808 4012.4871 -3779.1711 4011.9856 -3779.7839 4012.0852 C -f --3778.1963 4013.8887 m --3777.9561 4014.0984 L --3777.7483 4013.8584 L --3777.8521 4013.9771 -3778.2112 4013.6653 -3778.1963 4013.8887 C -f --3782.1929 4011.4126 m --3782.2129 4011.5647 -3782.0852 4011.8174 -3782.0613 4012.0122 C --3781.8247 4011.8374 L --3781.9463 4011.7334 -3782.1768 4011.6375 -3782.1929 4011.4126 C -f --3782.0613 4012.0122 m --3782.4153 4012.2727 L --3782.0991 4012.3032 -3782.0413 4012.1792 -3782.0613 4012.0122 C -f --3780.5583 4013.0955 m --3779.9768 4012.5479 L --3780.6704 4013.1033 L --3780.5583 4013.0955 L -f --3783.5449 4011.3936 m --3783.3442 4011.0422 L --3783.7017 4011.5735 L --3783.5449 4011.3936 L -f --3784.4417 4011.4551 m --3784.2932 4011.1638 -3784.6453 4010.9624 -3784.4883 4010.7832 C --3784.7319 4010.8352 -3784.9399 4011.0852 -3785.1272 4011.3103 C --3784.9282 4011.1848 -3784.7161 4011.2168 -3784.4417 4011.4551 C -f --3785.4417 4011.6375 m --3785.3423 4011.5679 -3785.2393 4011.4431 -3785.1272 4011.3103 C --3785.2329 4011.3772 -3785.3369 4011.4744 -3785.4417 4011.6375 C -f --3783.0183 4012.1975 m --3783.0457 4012.1055 -3783.0984 4011.8655 -3783.2969 4011.7639 C --3783.1577 4012.1912 L --3783.1152 4012.1936 -3783.0671 4012.1951 -3783.0183 4012.1975 C -f --3783.1528 4012.2046 m --3783.1577 4012.1912 L --3783.3088 4012.1814 -3783.4136 4012.1719 -3783.4585 4012.1672 c --3783.4199 4012.1707 -3783.3279 4012.1824 -3783.1528 4012.2046 C -f --3782.9832 4012.1992 m --3782.9961 4012.1982 -3783.0056 4012.1975 -3783.0183 4012.1975 C --3783.0049 4012.24 -3782.9968 4012.2534 -3782.9832 4012.1992 C -f --3781.4863 4012.7092 m --3781.6943 4012.9482 -3782.1279 4013.2039 -3781.7083 4013.5686 C --3781.5591 4013.2759 -3781.7993 4013.0686 -3781.4863 4012.7092 c -f --3782.8103 4012.7334 m --3782.4343 4012.8311 L --3782.4417 4012.7183 -3782.5095 4012.5535 -3782.4065 4012.4351 C --3782.8103 4012.7334 L -f --3782.9944 4012.8694 m --3782.8103 4012.7334 L --3782.9497 4012.6975 L --3782.9944 4012.8694 L -f --3784.7976 4012.0376 m --3784.96 4012.2239 -3785.1377 4012.2393 -3785.3384 4012.2693 C --3785.1233 4012.3533 -3784.9009 4012.3992 -3784.6897 4012.3972 C --3784.6599 4012.2632 -3784.5671 4012.0222 -3784.7976 4012.0376 C -f --3783.9983 4012.1563 m --3784.0095 4012.1663 -3784.0239 4012.1707 -3784.0344 4012.1807 C --3784.0122 4012.2173 -3783.9944 4012.2283 -3783.9983 4012.1563 C -f --3787.3142 4012.2664 m --3787.3032 4012.2896 -3787.2937 4012.3196 -3787.2825 4012.3442 C --3787.28 4012.3196 -3787.2783 4012.2952 -3787.2751 4012.27 C --3787.3142 4012.2664 L -f --3784.6536 4012.4771 m --3784.4919 4012.5598 -3784.3953 4012.4551 -3784.3032 4012.3242 C --3784.4241 4012.3662 -3784.5522 4012.3943 -3784.6897 4012.3972 C --3784.7031 4012.4583 -3784.7056 4012.4983 -3784.6536 4012.4771 C -f --3785.9929 4011.8374 m --3785.9087 4011.927 -3785.8132 4012.0032 -3785.7129 4012.0723 C --3785.7952 4011.9373 -3785.9631 4011.7263 -3785.9929 4011.8374 C -f --3784.0889 4012.0623 m --3784.0808 4012.0559 -3784.0735 4012.0479 -3784.0647 4012.0432 C --3784.1177 4011.9524 -3784.1111 4011.9966 -3784.0889 4012.0623 C -f --3784.0889 4012.0623 m --3784.1721 4012.1243 -3784.2375 4012.2295 -3784.3032 4012.3242 C --3784.2048 4012.2896 -3784.1135 4012.2439 -3784.0344 4012.1807 C --3784.0544 4012.1504 -3784.0745 4012.1042 -3784.0889 4012.0623 C -f --3787.9128 4015.0093 m --3787.8843 4014.6133 -3787.4592 4014.2471 -3787.0923 4014.6719 C --3786.7312 4014.3752 -3786.9673 4013.0723 -3787.2825 4012.3442 C --3787.2937 4012.5166 -3787.2937 4012.6763 -3787.6653 4012.9104 C --3787.5352 4013.1262 -3786.8408 4013.4163 -3787.1543 4013.7747 C --3787.6465 4013.9783 -3787.5576 4013.6343 -3787.7969 4013.4253 C --3787.5935 4013.9182 -3788.4231 4014.1431 -3788.3159 4014.8687 C --3787.8843 4014.6133 L --3787.8762 4014.7263 -3788.0327 4014.9063 -3787.9128 4015.0093 C -f --3786.5745 4012.3843 m --3786.4216 4012.3352 L --3786.5959 4012.2664 -3786.7207 4012.1079 -3786.9504 4011.7976 C --3787.2048 4011.9915 -3787.2576 4012.1382 -3787.2751 4012.27 C --3786.5222 4012.3252 L --3786.5745 4012.3843 L -f --3785.7351 4012.3335 m --3785.8545 4012.7644 -3786.2217 4012.9482 -3785.9968 4013.4143 C --3785.5481 4013.3843 -3785.6824 4013.0542 -3785.4143 4012.8672 C --3786.1384 4012.9744 -3785.2063 4012.6272 -3785.7295 4012.3831 C --3785.5872 4012.3096 -3785.4592 4012.2871 -3785.3384 4012.2693 C --3785.4688 4012.2173 -3785.5945 4012.1519 -3785.7129 4012.0723 C --3785.7063 4012.0823 -3785.7017 4012.0896 -3785.6963 4012.0984 C --3785.6929 4012.0984 L --3785.6929 4012.1006 -3785.6936 4012.1016 -3785.6936 4012.1042 C --3785.6624 4012.1582 -3785.6521 4012.1912 -3785.6873 4012.1604 C --3785.6897 4012.1653 -3785.6985 4012.1672 -3785.7024 4012.1692 C --3785.7073 4012.2283 -3785.7207 4012.2808 -3785.7351 4012.3311 C --3785.9448 4012.2422 -3785.7681 4012.22 -3785.7024 4012.1692 C --3785.7 4012.1472 -3785.6943 4012.1272 -3785.6936 4012.1042 C --3785.6943 4012.1023 -3785.6953 4012.1006 -3785.6963 4012.0984 C --3786.4216 4012.3352 L --3786.2681 4012.3953 -3786.0759 4012.3831 -3785.7351 4012.3335 C -f --3782.0952 4014.4951 m --3782.1177 4014.4573 -3782.1167 4014.4263 -3782.1184 4014.3953 C --3782.1653 4014.4482 -3782.1831 4014.4839 -3782.0952 4014.4951 C -f --3782.3936 4014.2351 m --3782.3408 4014.1753 -3782.2969 4014.0032 -3782.1255 4014.0471 C --3781.9768 4014.1763 -3782.1262 4014.2534 -3782.1184 4014.3953 C --3782.0151 4014.2808 -3781.7568 4014.0862 -3782.0808 4013.876 C --3782.1321 4013.9351 L --3782.4241 4013.7871 -3782.7993 4013.2495 -3782.7483 4013.1902 C --3782.6631 4013.5784 -3782.5879 4013.8542 -3782.3936 4014.2351 C -f --3784.0852 4013.3943 m --3784.6892 4013.6055 L --3784.3816 4013.9783 L --3784.3972 4013.7544 L --3784.0537 4013.8423 -3784.1279 4013.5667 -3784.0852 4013.3943 C -f --3787.3833 4012.0522 m --3787.3032 4011.5967 L --3787.6521 4012.24 L --3787.3833 4012.0522 L -f --3788.1682 4012.1062 m --3788.1392 4011.7112 L --3788.3464 4011.9495 L --3788.1682 4012.1062 L -f --3832.4617 4017.0166 m --3832.6392 4017.1287 L --3832.5552 4017.0942 -3832.5012 4017.0564 -3832.4617 4017.0166 C -f --3831.1768 4017.0435 m --3831.1453 4016.8484 L --3831.2048 4016.9558 -3831.2292 4017.0352 -3831.1768 4017.0435 C -f --3807.4456 4012.1504 m --3807.7041 4011.7815 -3807.9929 4011.2083 -3807.9617 4011.6536 C --3807.8823 4012.0872 L --3807.7017 4012.0093 -3807.5632 4012.0576 -3807.4456 4012.1504 C -f --3820.6479 4014.7415 m --3820.6233 4014.7832 -3820.5977 4014.8286 -3820.5723 4014.8728 C --3820.5095 4014.7246 -3820.4504 4014.5872 -3820.3977 4014.4583 C --3820.4729 4014.5471 -3820.5583 4014.6416 -3820.6479 4014.7415 C -f --3820.8303 4016.5364 m --3821.1711 4016.2566 L --3821.0945 4016.3542 -3820.9849 4016.4482 -3820.8303 4016.5364 C -f --3839.4792 4017.4768 m --3839.6863 4017.9182 L --3839.3623 4017.9163 -3839.5049 4017.6936 -3839.4792 4017.4768 C -f --3796.2073 4012.2664 m --3796.4304 4012.0967 -3796.6079 4012.0254 -3796.7639 4012.0044 C --3796.4951 4012.2534 -3796.2783 4012.6272 -3796.2073 4012.2664 C -f --3831.9561 4012.4126 m --3832.0647 4012.4912 -3832.1111 4012.5796 -3832.1079 4012.6763 C --3831.9961 4012.6023 -3831.9329 4012.5193 -3831.9561 4012.4126 C -f --3797.4082 4012.0059 m --3797.3689 4012.0496 -3797.3303 4012.0713 -3797.2903 4012.1079 C --3797.1272 4012.0352 -3796.9631 4011.9768 -3796.7639 4012.0044 C --3796.9624 4011.8196 -3797.1897 4011.7046 -3797.4082 4012.0059 C -f --3864.9297 4017.1172 m --3864.9482 4017.0984 -3864.9705 4017.0884 -3864.9873 4017.0652 C --3864.9929 4017.1243 -3864.9673 4017.1272 -3864.9297 4017.1172 C -f --3872.3442 4012.74 m --3872.2712 4012.7124 -3872.1521 4012.7119 -3872.0398 4012.7063 C --3872.0945 4012.6763 -3872.1863 4012.6792 -3872.3442 4012.74 c -f --3791.3264 4011.9172 m --3791.1599 4011.8887 -3791.3 4011.8694 -3791.3264 4011.9172 C --3791.3264 4011.9172 L -f --3790.5168 4013.6331 m --3790.5522 4013.6814 -3790.5791 4013.7439 -3790.5833 4013.8442 C --3790.5696 4013.74 -3790.5464 4013.6736 -3790.5168 4013.6331 c -f --3799.0664 4014.7063 m --3799.0713 4014.7063 -3799.0752 4014.7046 -3799.0808 4014.7046 C --3799.0313 4014.7896 -3799.0398 4014.7732 -3799.0664 4014.7063 C -f --3791.0759 4012.1143 m --3791.1384 4012.0613 -3791.2104 4012.0166 -3791.2888 4011.9856 C --3791.2544 4012.0193 -3791.1897 4012.0613 -3791.0759 4012.1143 C -f --3791.1096 4011.9092 m --3791.0522 4011.9287 -3791.0071 4011.9395 -3790.9641 4011.9512 C --3790.9431 4011.8792 -3790.9617 4011.8335 -3791.1096 4011.9092 C -f --3791.5583 4011.9407 m --3791.4631 4011.9336 -3791.3743 4011.9539 -3791.2888 4011.9856 C --3791.3215 4011.9558 -3791.3352 4011.9319 -3791.3264 4011.9172 C --3791.3752 4011.9236 -3791.4441 4011.9326 -3791.5583 4011.9407 c -f --3851.2932 4015.9558 m --3851.3042 4015.9424 -3851.3169 4015.9336 -3851.3289 4015.9153 C --3851.4968 4016.0952 -3851.4231 4016.0667 -3851.2932 4015.9558 C -f --3811.7783 4016.6563 m --3811.7705 4016.6519 -3811.7664 4016.6404 -3811.7593 4016.6362 C --3811.7671 4016.6311 -3811.7769 4016.6252 -3811.7839 4016.6199 C --3811.7783 4016.6563 L -f --3812.3762 4016.9792 m --3812.1216 4016.4392 -3811.9768 4016.5056 -3811.7839 4016.6199 C --3811.9817 4015.3694 L --3812.3762 4016.9792 L -f -*u --3835.5383 4017.1416 m --3835.1184 4017.5322 L --3835.6252 4018.1736 -3835.9919 4017.9524 -3835.5977 4018.5 C --3835.5383 4017.1416 -3833.9656 4018.3616 -3833.9072 4017.0039 C --3833.6304 4017.2896 L --3833.7097 4017.2766 -3833.7224 4017.3562 -3833.8008 4017.3433 C --3833.2625 4017.9934 -3833.4009 4016.3616 -3832.7073 4016.5542 C --3832.4656 4016.6582 -3832.2969 4016.8552 -3832.4617 4017.0166 C --3831.9231 4016.6807 L --3831.7664 4016.7073 -3831.8047 4016.9431 -3831.9607 4016.9172 C --3831.1392 4016.8086 L --3831.1453 4016.8484 L --3831.0281 4016.6362 -3830.7625 4016.3064 -3830.6328 4016.1663 C --3830.4241 4016.3616 -3830.7375 4016.3103 -3830.6841 4016.4792 C --3830.2292 4016.1504 L --3830.0439 4016.5032 -3830.4209 4016.8442 -3830.7351 4016.7935 C --3830.3103 4018.1494 -3830.3577 4016.4524 -3829.4409 4017.2444 C --3829.8704 4017.4163 L --3829.5935 4018.1863 -3829.2583 4017.907 -3828.7727 4018.3875 C --3828.8879 4018.1367 -3829.7449 4017.1775 -3829.2512 4016.8391 C --3829.1121 4016.9414 -3828.9287 4016.99 -3828.6624 4016.7168 C --3828.6599 4017.2 -3828.3999 4017.0811 -3828.0745 4017.0535 C --3828.0967 4017.6936 L --3827.7449 4017.5088 -3827.7727 4017.1831 -3827.5657 4016.8953 C --3827.1736 4016.9583 -3827.0923 4017.4536 -3827 4017.8711 C --3826.3721 4017.9727 -3827.4336 4017.0767 -3826.6904 4016.9558 C --3826.1682 4017.2007 -3825.8015 4016.9392 -3825.1768 4016.5564 C --3824.8113 4016.7776 -3825.2407 4016.9482 -3825.1096 4017.1311 C --3824.7856 4016.6206 L --3824.7063 4016.6331 -3824.7319 4016.7896 -3824.7449 4016.8687 C --3824.4719 4016.6707 -3824.7224 4016.2292 -3824.2932 4016.0559 C --3824.1775 4015.3511 -3823.4121 4017.0852 -3822.8809 4016.2854 C --3822.75 4016.4673 -3822.9441 4016.6775 -3822.9041 4016.9253 C --3822.1753 4016.3999 -3822.2793 4016.5435 -3821.6809 4015.8367 C --3821.1711 4016.2566 L --3821.5457 4015.7766 -3821.0671 4015.2083 -3820.6479 4014.7415 C --3820.7808 4014.5093 -3820.8943 4014.3064 -3820.9705 4014.2095 C --3820.3015 4013.8662 L --3820.2207 4013.9712 -3820.2881 4014.1912 -3820.3977 4014.4583 C --3820.3521 4014.4055 -3820.3088 4014.3533 -3820.2751 4014.3047 C --3820.0359 4014.5413 -3820.1599 4014.9104 -3820.3313 4015.2676 C --3820.4128 4015.1416 -3820.4937 4015.0071 -3820.5723 4014.8728 C --3820.7375 4015.2615 -3820.8921 4015.6919 -3820.8577 4016.0667 C --3820.8142 4015.9927 -3820.7305 4015.9292 -3820.6384 4015.8936 C --3820.6816 4015.9993 -3820.7092 4016.0935 -3820.6892 4016.1575 c --3820.6665 4016.2246 -3820.5967 4016.0833 -3820.4873 4015.9192 C --3820.3352 4016.6331 L --3820.2983 4016.3499 L --3819.4231 4016.7959 L --3818.7969 4016.0784 -3818.2522 4015.0212 -3817.2583 4014.7271 C --3817.5049 4015.25 -3817.3113 4015.5811 -3817.3247 4016.2007 C --3817.5959 4015.5447 -3818.0945 4016.4792 -3818.6096 4016.3462 c --3818.3408 4016.4153 -3818.3999 4016.7112 -3818.4683 4016.8132 C --3817.5496 4016.2168 L --3817.5703 4016.7239 -3817.3545 4016.5967 -3817.1145 4016.8064 C --3817.2959 4015.8047 -3816.4297 4016.1392 -3816.0559 4015.8323 C --3816.0327 4016.1682 -3816.1223 4016.5122 -3816.5784 4016.4304 C --3816.0752 4017.1848 -3815.9282 4015.2544 -3815.4343 4015.8953 C --3815.5457 4015.9031 -3815.6057 4015.8518 -3815.6497 4016.0232 C --3815.3896 4015.7239 -3814.7537 4015.9612 -3814.9033 4016.2534 C --3815.0144 4016.2603 L --3814.2751 4016.3792 -3812.7639 4016.2676 -3812.6536 4015.4172 C --3812.6462 4015.5276 -3812.7505 4016.4424 -3812.7952 4016.6143 C --3811.4761 4013.7527 L --3811.5923 4014.4832 -3811.1462 4016.2224 -3811.7593 4016.6362 C --3811.5833 4016.74 -3811.3655 4016.8616 -3810.9944 4016.6033 C --3811.1145 4016.4993 -3811.2937 4015.5471 -3811.1296 4015.48 C --3810.6792 4016.2932 -3810.8169 4015.9153 -3810.2617 4016.6084 C --3810.4417 4016.4524 -3810.2417 4015.3064 -3809.9573 4015.3433 C --3810.0017 4015.5144 -3809.9336 4016.4734 -3810.0376 4016.5928 C --3809.3296 4015.4683 L --3809.5063 4015.6707 -3809.3608 4016.4214 -3809.2024 4016.74 C --3809.2759 4016.5193 -3808.5903 4016.76 -3808.4016 4016.6487 C --3808.7017 4016.3875 L --3807.9023 4016.5579 -3807.9121 4014.8064 -3807.1191 4014.8655 C --3807.2151 4015.0974 -3807.3562 4016.2952 -3806.9529 4016.4363 C --3806.7681 4015.8606 -3806.1345 4013.6663 -3805.4329 4013.2227 C --3805.2983 4013.5522 L --3804.76 4013.1768 L --3805.0952 4014.0435 -3806.0359 4015.8672 -3806.5496 4016.5767 C --3806.2505 4016.8374 -3806.4663 4016.9656 -3806.0183 4016.9351 C --3805.8601 4017.2439 -3806.2625 4017.4031 -3806.3943 4017.4214 C --3805.3513 4017.6206 L --3805.3977 4016.9482 -3804.5537 4016.9463 -3804.5935 4016.3862 C --3805.7263 4017.0833 L --3805.7722 4016.4119 -3805.0713 4015.1753 -3804.3323 4015.2932 C --3804.1443 4015.5613 -3804.4729 4016.49 -3804.4575 4016.7144 C --3804.3616 4016.4832 -3803.7561 4016.2722 -3803.6882 4016.4363 C --3804.0017 4016.7959 L --3803.5903 4017.0486 -3803.3303 4015.9048 -3802.8359 4016.5464 C --3802.6653 4016.5896 -3802.3264 4017.4119 -3802.2969 4017.0144 C --3802.5752 4016.2471 -3802.6296 4013.8743 -3802.4441 4013.2979 C --3802.3843 4013.3499 -3801.5481 4014.0313 -3801.3533 4014.4104 C --3801.0723 4015.0122 -3801.7751 4015.8442 -3801.5359 4016.3606 C --3801.5256 4016.1768 -3801.3704 4015.9502 -3801.3057 4015.8772 C --3801.1265 4016.0342 -3801.3799 4016.4463 -3800.9905 4016.3633 C --3800.9255 4015.6824 -3800.1985 4016.4207 -3800.8064 4015.7871 C --3800.4255 4015.5923 -3800.4016 4015.928 -3799.9543 4015.8975 C --3800.0967 4015.4573 -3799.5527 4014.3992 -3799.1711 4014.2039 C --3799.1936 4014.3772 -3799.1079 4014.6033 -3799.0664 4014.7063 C --3798.2856 4014.7676 -3797.8665 4015.0774 -3797.1384 4015.0833 C --3797.0713 4015.2483 -3796.72 4015.4482 -3796.8696 4015.7415 C --3796.7649 4015.6206 -3796.6687 4015.3894 -3796.4441 4015.3733 C --3796.0095 4015.9624 -3796.9448 4015.4646 -3796.6135 4016.1736 C --3796.5852 4015.7776 -3796.0327 4015.6262 -3795.7129 4015.3792 C --3795.8113 4014.7671 -3796.4519 4015.2615 -3796.7722 4015.5088 C --3796.7737 4014.6653 -3796.2161 4013.7815 -3795.4551 4013.3911 C --3794.8503 4013.1814 -3795.1929 4013.9363 -3795.0879 4013.8167 C --3793.9519 4013.9639 -3794.1201 4012.3433 -3793.1768 4012.9524 C --3792.8025 4013.4895 -3793.1599 4014.0212 -3793.0769 4014.4092 C --3793.5696 4014.6128 -3793.8333 4014.0679 -3794.1672 4014.0896 C --3793.7561 4014.3442 L --3793.9128 4014.5232 -3794.2417 4014.6582 -3794.4209 4014.5032 C --3794.1072 4014.9856 -3792.5017 4014.5952 -3791.6252 4015.0413 C --3791.4695 4014.8616 -3791.2007 4014.6743 -3791.3279 4014.4583 C --3791.6052 4014.5332 L --3791.8601 4014.0999 -3791.0833 4013.9336 -3791.4343 4013.7312 C --3791.0623 4013.4263 -3790.6453 4012.9473 -3790.1216 4013.1924 C --3790.0232 4013.8054 L --3790.0344 4013.6262 -3790.3655 4013.4407 -3790.5127 4013.6272 c --3790.2944 4013.3552 -3789.7097 4014.4573 -3789.4705 4013.6543 C --3789.8376 4013.2295 L --3789.4641 4012.9214 -3789.0024 4012.2703 -3788.5383 4012.4639 C --3788.7495 4011.8584 -3788.6453 4012.5332 -3788.9751 4011.8247 C --3788.6892 4012.7063 -3790.1624 4011.7876 -3789.7031 4012.7134 C --3790.0415 4011.8916 -3790.2888 4012.3655 -3790.7312 4011.6638 C --3790.7175 -endstream endobj 21 0 obj <>stream - 4011.8662 -3790.5745 4012.0513 -3790.9641 4011.9512 C --3790.9817 4012.0103 -3791.0232 4012.0852 -3791.0496 4012.1294 C --3791.0615 4012.1243 -3791.0657 4012.1206 -3791.0759 4012.1143 C --3791.0681 4012.1223 -3791.0623 4012.1311 -3791.0544 4012.1382 C --3791.0713 4012.1687 -3791.0728 4012.1753 -3791.0464 4012.1462 C --3790.9536 4012.2356 -3790.8784 4012.3416 -3790.8479 4012.4539 C --3791.0413 4012.9182 -3791.6609 4012.9038 -3791.8704 4013.1443 C --3792.1016 4013.0479 -3791.7737 4012.9119 -3791.8999 4012.6963 C --3792.2129 4013.0559 L --3792.2439 4012.6072 -3792.8271 4012.3096 -3792.2825 4012.0464 C --3792.7727 4012.0264 L --3793.0613 4011.7747 -3793.4583 4011.6743 -3793.7031 4011.8633 C --3793.9343 4011.7664 -3794.2871 4012.3606 -3794.0857 4012.0088 C --3794.8545 4012.2871 L --3794.8616 4012.1753 L --3795.6201 4012.1184 -3796.4231 4012.9192 -3797.2903 4012.1079 C --3797.5457 4012.2212 -3797.8096 4012.3599 -3798.2368 4012.2327 C --3798.3201 4011.8442 L --3798.6479 4011.9792 -3799.3047 4011.4551 -3799.4456 4011.8599 C --3799.7993 4010.8142 -3801.0369 4011.6316 -3801.6135 4011.4463 C --3801.6353 4011.9536 L --3802.0322 4011.9253 -3802.4128 4012.0696 -3802.9055 4012.2727 C --3802.8752 4012.7207 L --3803.3 4013.0884 -3803.9673 4012.4019 -3804.6392 4012.4482 C --3804.5935 4012.2766 -3804.4231 4012.3213 -3804.3025 4012.4253 C --3805.1052 4011.4119 -3805.9961 4013.1614 -3806.7241 4012.4236 C --3806.9055 4012.5872 -3807.0369 4012.5313 -3807.1641 4012.4192 C --3807.1472 4012.4175 -3807.1321 4012.4092 -3807.1191 4012.3953 C --3807.1377 4012.3904 -3807.1653 4012.3887 -3807.1936 4012.3894 C --3807.2737 4012.3123 -3807.3562 4012.2227 -3807.4456 4012.1504 C --3807.3696 4012.26 -3807.2969 4012.3496 -3807.2336 4012.3911 C --3807.3735 4012.4004 -3807.5857 4012.4558 -3807.7937 4012.5686 C --3807.8823 4012.0872 L --3807.8992 4012.0935 -3807.9128 4012.0923 -3807.9304 4012.1006 C --3808.1345 4011.9231 -3808.0945 4012.3286 -3807.9856 4012.6912 C --3808.0903 4012.77 -3808.1863 4012.8655 -3808.2607 4012.9812 C --3808.4265 4012.2039 -3808.8064 4013.2432 -3809.0327 4012.4143 C --3809.1729 4012.8184 -3810.0784 4012.7183 -3810.1892 4013.5696 C --3810.1963 4013.4583 -3810.2576 4013.4055 -3810.1453 4013.3982 C --3810.3772 4013.3015 -3810.6089 4013.2046 -3810.8169 4013.4446 C --3810.9153 4012.8323 L --3811.4216 4013.6553 L --3811.7292 4013.2822 -3811.8567 4013.0652 -3811.5513 4012.5942 C --3812.2888 4013.3196 -3812.1497 4012.8672 -3812.7769 4013.5852 C --3812.7463 4013.1895 L --3812.9705 4013.2046 -3813.3289 4013.7356 -3813.4641 4013.4082 C --3813.9656 4012.6553 -3815.9456 4013.3042 -3817.2329 4012.6042 C --3816.9832 4013.77 -3817.8313 4012.0823 -3817.8823 4012.9856 C --3817.9573 4012.7102 -3818.1367 4012.5542 -3817.9282 4012.3152 C --3818.5852 4012.5852 -3818.9153 4011.8772 -3819.3689 4012.6392 C --3819.4441 4012.3623 -3819.2283 4012.2356 -3819.2952 4012.0713 C --3819.3479 4012.1311 -3819.5039 4012.3113 -3819.5723 4012.1462 c --3819.6392 4011.9822 -3819.4761 4011.9153 -3819.3721 4011.7952 C --3820.0432 4011.8416 -3820.1111 4012.6912 -3820.1599 4013.4883 C --3820.5 4013.1111 -3820.6697 4013.1638 -3820.9153 4013.6873 C --3821.0337 4013.4263 -3821.2312 4013.1536 -3820.8142 4013.0598 C --3821.0488 4013.0215 -3822.2473 4012.6775 -3822.2712 4013.3167 C --3822.3447 4013.1543 -3822.5991 4013.2693 -3822.6609 4013.3433 C --3823.1873 4013.3047 -3823.2336 4013.2471 -3823.7505 4013.3079 C --3823.6072 4013.4119 L --3823.8113 4014.1831 -3824.0369 4013.5842 -3824.4536 4013.6768 C --3824.4417 4013.5984 L --3825.3972 4013.0415 -3824.8542 4013.8643 -3825.7969 4013.2292 C --3825.7456 4013.7092 L --3825.8335 4014.74 -3826.5808 4013.1006 -3827.1279 4013.4951 C --3826.9304 4013.7693 L --3827.2292 4014.1223 -3827.7656 4012.3662 -3828.0657 4012.2371 C --3828.1311 4012.1472 -3827.9624 4012.0935 -3827.8711 4012.0276 C --3828.6567 4011.4182 -3827.9729 4012.6553 -3828.5583 4012.8015 C --3828.6663 4012.4624 -3828.4192 4011.9392 -3828.8132 4011.8762 C --3829.0095 4011.6023 -3829.9561 4012.9768 -3830.4937 4012.3267 C --3830.3752 4012.5879 -3830.2576 4012.8484 -3830.5295 4013.0447 C --3830.9463 4013.1382 -3831.6563 4012.0579 -3832.0327 4012.8816 C --3832.0857 4012.8096 -3832.1057 4012.7415 -3832.1079 4012.6763 C --3832.4265 4012.8887 -3833.1433 4013.0291 -3833.3352 4013.4756 C --3833.6296 4011.8191 -3835.3159 4014.2815 -3835.3088 4012.7534 C --3836.2888 4012.8352 L --3836.2632 4012.6792 L --3836.8896 4012.5784 -3837.1111 4012.9446 -3837.3313 4013.3113 C --3837.4761 4013.2073 -3837.3704 4013.0642 -3837.3584 4012.9846 C --3838.2737 4012.6763 -3838.3647 4012.7415 -3839.1321 4013.5032 C --3839.2119 4013.0071 L --3839.4199 4013.2952 -3840.5352 4012.2295 -3841.4329 4012.8079 C --3841.4241 4012.7512 -3841.4055 4012.6553 -3841.3342 4012.5852 C --3842.3442 4013.1672 -3843.7522 4011.2112 -3844.1223 4013.0159 C --3844.7888 4013.4607 L --3843.9265 4013.6006 -3844.9172 4014.2444 -3844.5625 4014.5435 C --3844.9016 4014.6494 -3845.4392 4013.9993 -3845.0225 4013.9063 C --3844.9573 4013.9966 L --3844.8042 4013.0559 -3846.0288 4013.6631 -3846.0056 4013.0222 C --3847.7024 4013.0696 -3849.3562 4012.5479 -3850.9456 4012.5078 C --3850.7625 4013.2393 L --3851.3169 4013.1975 L --3851.4624 4013.0276 -3851.5122 4012.6252 -3851.1167 4012.6553 C --3851.3247 4012.24 -3851.78 4013.0032 -3851.7913 4013.1614 C --3852.5657 4012.8655 -3851.4888 4012.3086 -3851.7263 4012.2913 C --3852.0488 4012.3455 L --3851.9761 4012.4312 L --3852.2375 4012.73 -3852.2607 4013.0471 -3852.7361 4013.011 C --3853.0369 4012.8643 -3852.8904 4012.5598 -3853.0088 4012.5322 C --3853.0081 4012.4792 -3853.0481 4012.4551 -3853.1904 4012.5103 C --3853.8889 4012.4482 L --3853.6096 4013.0254 L --3853.9192 4013.3103 -3854.2664 4012.9951 -3853.9441 4013.6494 c --3854.4172 4012.6404 -3856.5496 4013.2871 -3856.8401 4012.9744 C --3857.2737 4013.3953 -3857.7017 4013.3875 -3858.2319 4013.3367 C --3858.1001 4013.4573 -3858.0212 4014.1062 -3858.4785 4014.0271 C --3858.3113 4012.6873 -3859.3159 4013.4456 -3859.6855 4012.4812 C --3859.3552 4013.1206 -3860.9856 4012.6392 -3860.4673 4013.5471 C --3860.8489 4013.4382 -3860.4905 4013.0454 -3860.78 4012.73 C --3861.6882 4013.2493 -3862.7815 4012.3926 -3863.9041 4012.5679 C --3863.9216 4012.7444 -3863.7336 4013.0127 -3863.9744 4013.2747 C --3864.5671 4012.3953 L --3864.7888 4012.4812 -3864.7712 4013.4104 -3865.1763 4012.8 C --3865.1191 4012.9482 -3865.0337 4013.1707 -3865.1824 4013.2271 C --3867.3816 4012.3704 -3869.6763 4013.9292 -3871.9097 4012.3191 C --3871.6072 4012.6604 -3871.8088 4012.6936 -3872.0398 4012.7063 C --3871.8896 4012.7876 -3872.0432 4013.1404 -3872.0137 4013.3792 C --3872.9487 4012.7168 L --3873.1191 4013.3784 -3873.9512 4012.7615 -3874.0488 4013.3943 C --3873.7527 4013.28 L --3874.1465 4014.0271 -3873.2017 4014.9395 -3873.2593 4015.8975 C --3872.8184 4015.0486 -3872.0967 4017.1543 -3871.3733 4015.9395 C --3871.2136 4016.1353 -3871.5095 4016.2483 -3871.4241 4016.4702 C --3871.2407 4016.0598 -3871.0193 4015.9744 -3870.6089 4016.1582 C --3870.6553 4016.26 L --3869.5024 4016.1599 -3869.0081 4016.5647 -3867.7129 4016.8342 C --3867.8088 4016.3606 L --3867.5305 4016.4236 -3867.4719 4016.5723 -3867.3416 4016.6912 C --3867.0222 4015.9727 -3868.1233 4016.6504 -3867.8323 4015.8584 C --3867.4631 4016.8223 -3865.8696 4015.8728 -3865.6201 4016.9683 C --3865.1919 4016.9744 -3865.7456 4016.4192 -3865.3176 4016.4263 C --3865.2041 4016.7227 L --3865.0959 4016.3408 L --3864.8152 4016.4038 -3864.6736 4016.7747 -3864.6631 4017.0254 C --3864.7312 4016.9956 -3864.8567 4017.0955 -3864.9297 4017.1172 C --3864.5657 4017.4663 -3863.9033 4016.9983 -3863.7783 4017.1118 C --3864.1897 4016.9292 L --3863.0212 4016.6519 -3861.5945 4017.0413 -3860.4656 4016.4382 C --3860.5513 4016.2151 L --3859.6892 4015.8015 -3859.8608 4016.4607 -3858.9143 4016.2693 C --3858.9487 4016.3223 L --3858.7593 4016.0999 -3858.5063 4015.9871 -3858.2473 4016.0127 C --3858.4863 4016.2747 -3857.7976 4016.5212 -3858.1111 4016.8113 C --3857.1763 4016.3672 -3857.6487 4016.4624 -3857.0313 4015.6316 C --3856.8889 4016.0032 L --3856.6785 4015.6672 -3856.6609 4015.49 -3856.1882 4015.3943 C --3856.5759 4015.7124 -3855.8865 4015.9592 -3856.3208 4016.3799 C --3855.3289 4017.1912 -3854.8479 4015.5613 -3854.3928 4016.7471 C --3853.9373 4015.7207 -3855.2512 4016.1775 -3854.9961 4015.9575 C --3855.2097 4015.6223 -3854.6201 4015.1902 -3854.3088 4015.2932 C --3853.9919 4015.3167 -3853.77 4016.6072 -3852.9729 4016.5872 C --3853.0522 4016.5823 -3853.0576 4016.6604 -3853.1367 4016.6553 C --3852.8384 4016.9172 -3852.5522 4016.3008 -3852.1863 4016.7263 C --3851.9812 4016.1052 -3851.7112 4016.7615 -3851.6521 4015.9702 C --3852.3833 4016.1536 L --3851.9688 4015.9463 -3851.5801 4015.02 -3850.8972 4015.4695 C --3850.9504 4015.6287 -3851.1536 4015.8391 -3851.2932 4015.9558 C --3851.0935 4016.1895 -3850.9087 4015.8015 -3850.7017 4016.0413 C --3850.7607 4016.8335 -3851.5903 4016.2134 -3852.0344 4016.8174 C --3851.8201 4017.1519 -3851.1943 4016.2439 -3851.4175 4017.1016 c --3851.0967 4016.011 -3850.6321 4017.24 -3850.0923 4016.4063 C --3850.1279 4016.8806 L --3850.0425 4016.8064 -3849.8655 4016.5823 -3849.7083 4016.5942 C --3849.9929 4017.2095 L --3849.5559 4016.6848 -3849.1504 4017.6692 -3848.7312 4017.3831 C --3849.6089 4017.3975 -3848.9282 4016.8113 -3849.2993 4016.4646 C --3848.2168 4015.8296 -3848.6768 4017.7063 -3847.4648 4017.4783 C --3847.6289 4017.5454 -3848.0808 4017.1936 -3847.8242 4016.9734 C --3847.5935 4017.0713 -3847.2888 4017.2534 -3847.1472 4017.5032 C --3846.3442 4017.4038 -3847.2705 4017.0144 -3846.9287 4016.7224 C --3846.6553 4017.3008 -3846.5344 4016.4871 -3846.1824 4016.3022 C --3846.1799 4016.7847 L --3845.2649 4017.0942 -3845.9373 4015.7791 -3845.1135 4016.1536 C --3845.4617 4016.8223 L --3845.0322 4016.6494 L --3845.1208 4017.1982 L --3844.6536 4016.7913 -3844.5081 4016.8962 -3844.0503 4017.0503 C --3844.1567 4016.7112 -3843.9905 4016.1753 -3843.5852 4016.1599 C --3843.3088 4016.4463 -3843.74 4016.6184 -3843.1655 4016.5496 C --3843.2952 4016.8511 -3843.4373 4017.23 -3843.6873 4016.7864 C --3843.7129 4016.9436 -3843.8152 4017.0884 -3843.8416 4017.2444 C --3843.5439 4017.5735 -3843.0935 4017.3191 -3842.8855 4017.3142 C --3842.9656 4017.2964 -3843.0613 4017.2703 -3843.1104 4017.2024 C --3842.2776 4016.5332 L --3842.1465 4016.7144 -3842.2505 4016.8599 -3842.3535 4017.0032 C --3842.1848 4016.9502 -3842.0681 4016.7283 -3841.8201 4016.6873 C --3841.8843 4017.0791 -3841.8689 4017.4839 -3842.22 4017.6687 C --3841.4265 4017.2334 L --3841.3735 4017.4038 -3841.0193 4017.7024 -3841.1223 4017.8462 C --3840.6824 4018.0767 -3840.0432 4017.0852 -3839.46 4017.3894 C --3839.4297 4017.3135 -3839.3689 4017.24 -3839.2449 4017.1848 C --3838.6968 4017.2732 -3838.2112 4017.7544 -3837.5615 4017.2173 C --3837.1929 4017.9192 L --3836.6841 4017.7603 -3837.6919 4017.0342 -3836.8447 4016.7693 C --3836.2449 4016.5447 -3836.6208 4017.3687 -3836.4104 4017.5642 C --3836.1121 4017.2102 -3835.5935 4016.4888 -3835.0425 4017.0613 C --3835.2249 4017.1936 -3835.3679 4017.0896 -3835.5383 4017.1416 C -f -1 D --3829.2632 4016.8296 m --3829.3848 4016.9312 -3829.6272 4017.2439 -3829.7161 4016.9592 C --3829.5776 4016.4063 -3829.4705 4016.6707 -3829.2632 4016.8296 C -f --3819.7241 4015.6692 m --3819.8145 4015.8279 -3819.9543 4015.7493 -3820.1121 4015.5667 C --3819.9976 4015.5271 -3819.8679 4015.5447 -3819.7241 4015.6692 C -f --3793.1511 4012.3096 m --3793.1563 4012.3174 -3793.1599 4012.323 -3793.1641 4012.3333 C --3793.4353 4012.1453 -3793.3391 4012.22 -3793.1511 4012.3096 C -f -0 D --3792.5879 4012.5193 m --3792.5313 4012.4524 -3792.5352 4012.3848 -3792.5591 4012.3174 C --3792.5984 4012.4392 -3792.7249 4012.4482 -3792.8689 4012.4136 C --3792.8289 4012.5398 -3792.7561 4012.6272 -3792.5879 4012.5193 C -f -1 D --3853.0713 4012.7092 m --3852.9617 4012.8352 L --3853.2092 4012.9744 -3853.1399 4012.8484 -3853.0713 4012.7092 C -f -*U -0 D --3820.8057 4016.3286 m --3820.8401 4016.2471 -3820.8496 4016.1575 -3820.8577 4016.0667 C --3820.9055 4016.1475 -3820.9065 4016.2415 -3820.8057 4016.3286 C -f --3839.4409 4017.3953 m --3839.4473 4017.3911 -3839.4536 4017.3926 -3839.46 4017.3894 C --3839.4705 4017.4182 -3839.4761 4017.4482 -3839.4792 4017.4768 C --3839.4409 4017.3953 L -f --3801.3123 4016.6096 m --3801.4282 4016.5398 -3801.4929 4016.4524 -3801.5359 4016.3606 C --3801.5422 4016.4783 -3801.4895 4016.5784 -3801.3123 4016.6096 C -f --3789.6033 4011.6992 m --3789.9641 4011.8247 L --3789.7896 4011.8008 -3789.7273 4011.9063 -3789.6392 4011.9832 C --3789.6472 4011.8704 -3789.7161 4011.7073 -3789.6033 4011.6992 C -f --3786.4719 4014.6848 m --3786.4192 4014.6255 -3786.3601 4014.6782 -3786.3081 4014.6184 C --3786.3225 4014.3943 L --3786.5471 4014.4087 -3786.7041 4014.5896 -3786.4719 4014.6848 C -f --3789.2693 4013.3022 m --3789.2407 4013.7083 -3789.0144 4013.5703 -3788.7617 4013.4951 C --3788.7769 4013.4966 -3788.7913 4013.5 -3788.8064 4013.4951 C --3788.7319 4012.928 -3789.0012 4013.115 -3789.2693 4013.3022 C -f --3788.7031 4013.4812 m --3788.6252 4013.4624 -3788.5457 4013.4524 -3788.4695 4013.4712 C --3788.4399 4013.2439 -3788.5642 4013.4236 -3788.7031 4013.4812 C -f --3791.8735 4012.25 m --3791.7537 4012.3542 -3791.7983 4011.7312 -3791.7305 4011.8962 C --3791.5967 4011.3799 -3792.5295 4012.5212 -3791.8735 4012.25 C -f --3789.0647 4014.6392 m --3789.1553 4014.1382 L --3789.2969 4014.5422 L --3789.0647 4014.6392 L -f --3791.0601 4014.2712 m --3790.6563 4014.4104 L --3790.6624 4014.3264 -3790.6111 4014.2776 -3790.5481 4014.24 C --3790.7969 4014.2224 -3791.0696 4014.1233 -3791.0601 4014.2712 C -f --3790.5481 4014.24 m --3790.4185 4014.2493 -3790.2952 4014.2383 -3790.2231 4014.1563 C --3790.2932 4014.1614 -3790.4441 4014.1782 -3790.5481 4014.24 C -f --3789.6167 4014.7896 m --3789.7361 4014.6851 L --3790.0212 4014.6487 L --3789.6167 4014.7896 L -f --3795.4009 4014.1753 m --3795.8416 4014.3184 L --3795.8865 4014.49 -3795.7664 4014.5952 -3795.6023 4014.5271 C --3795.4968 4014.407 -3795.3333 4014.3408 -3795.4009 4014.1753 C -f --3794.0681 4015.5471 m --3794.1873 4015.4431 -3794.1953 4015.3311 -3794.2625 4015.1663 C --3794.2759 4015.7871 L --3794.0681 4015.5471 L -f --3795.3533 4015.6919 m --3795.3972 4015.8643 -3795.9929 4016.1863 -3795.4343 4016.1475 C --3795.3896 4015.9768 -3794.9482 4015.8335 -3795.3533 4015.6919 C -f --3801.9937 4014.9063 m --3801.8816 4014.8982 L --3801.8977 4013.8799 L --3801.9937 4014.9063 L -f --3807.8464 4017.3433 m --3807.3242 4017.5872 -3807.7224 4016.7144 -3807.2505 4017.0193 C --3807.1279 4016.7783 -3807.6362 4016.7703 -3807.5105 4016.5623 C --3807.8257 4016.8167 -3807.9912 4016.6736 -3807.8464 4017.3433 C -f --3807.5105 4016.5623 m --3807.46 4016.5222 -3807.4065 4016.4734 -3807.3496 4016.4082 C --3807.4409 4016.4712 -3807.4839 4016.52 -3807.5105 4016.5623 C -f --3873.5745 4012.1924 m --3873.9104 4011.98 L --3873.6936 4012.3223 L --3873.5745 4012.1924 L -f --3874.2192 4012.9482 m --3874.2983 4012.2991 L --3874.5 4012.8862 L --3874.4241 4012.8572 -3874.2769 4012.8015 -3874.2192 4012.9482 C -f --3828.3303 4018.1375 m --3828.3047 4017.9812 L --3828.3567 4017.8123 -3828.4353 4017.8 -3828.5928 4017.7732 C --3828.3303 4018.1375 L -f --3832.8848 4017.6519 m --3832.8064 4017.6653 L --3832.9529 4017.0784 L --3832.8848 4017.6519 L -f --3836.7073 4018.4004 m --3836.5513 4018.4253 -3836.3679 4018.2942 -3836.2112 4018.3196 C --3836.5513 4018.4253 -3836.7495 4017.6692 -3836.7073 4018.4004 C -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 45) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7746 7859.3877 L --7721.1748 7859.3877 L --7721.1748 7890 L --7746 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7746 7881.4985 m --7721.1738 7881.4985 L --7721.1738 7880.5142 L --7746 7880.5142 L --7746 7881.4985 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7746 7880.5176 m --7721.1738 7880.5176 L --7721.1738 7873.7935 L --7746 7873.7935 L --7746 7880.5176 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7746 7873.7959 m --7721.1738 7873.7959 L --7721.1738 7872.6367 L --7746 7872.6367 L --7746 7873.7959 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7721.1738 7872.6367 m --7721.1738 7860.5278 L --7746 7860.5278 L --7746 7872.6367 L --7721.1738 7872.6367 L -f -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 47) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7746 7859.3877 L --7715.3848 7859.3877 L --7715.3848 7890 L --7746 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7715.3848 7880.5142 m --7724.8672 7880.5142 L --7724.8711 7889.9985 L --7723.8896 7889.9985 L --7723.8896 7881.4951 L --7715.3848 7881.4951 L --7715.3848 7880.5142 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7715.3848 7873.7935 m --7731.5928 7873.7915 L --7731.5928 7890 L --7724.8672 7890 L --7724.8672 7880.5132 L --7715.3848 7880.5132 L --7715.3848 7873.7935 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7715.3848 7872.6357 m --7732.7485 7872.6357 L --7732.7485 7889.9995 L --7731.5957 7889.9995 L --7731.5957 7873.7915 L --7715.3848 7873.7915 L --7715.3848 7872.6357 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7715.3848 7860.5244 m --7744.8594 7860.5244 L --7744.8594 7889.9985 L --7732.7495 7890 L --7732.7495 7872.6357 L --7715.3848 7872.6357 L --7715.3848 7860.5244 L -f -0 0 0 0 1 1 1 Xa --7731.5918 7874.1533 m --7732.7207 7872.6733 l --7731.5918 7873.7959 l --7731.5918 7874.1533 l -f --7723.8896 7881.8096 m --7724.8232 7880.5615 l --7723.8896 7881.4951 l --7723.8896 7881.8096 l -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 49) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7715.3335 7890 L --7715.3335 7859.3345 L --7746 7859.3345 L --7746 7890 L -n -u -u -u -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7737.4219 7889.9688 m --7736.5039 7889.9688 L --7736.5039 7868.8013 L --7715.3389 7868.8013 L --7715.3389 7867.8853 L --7737.4219 7867.8853 L --7737.4219 7889.9688 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa -0 XR --7736.5039 7889.9688 m --7729.7539 7889.9688 L --7729.7539 7875.5527 L --7715.3389 7875.5527 L --7715.3389 7876.7173 L --7715.3389 7876.7173 L --7715.3389 7868.8013 L --7736.5039 7868.8013 L --7736.5039 7889.9688 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7715.3389 7876.7173 m --7715.3389 7875.5527 L --7729.7539 7875.5527 L --7729.7539 7889.9688 L --7728.5889 7889.9688 L --7728.5889 7876.7173 L --7715.3389 7876.7173 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa -0 XR --7728.5889 7876.7173 m --7728.5889 7889.9688 L --7716.5039 7889.9688 L --7716.5352 7888.8135 L --7715.3389 7888.8135 L --7715.3389 7876.7173 L --7728.5889 7876.7173 L -f -U -9 () XW -1 Ap -1 XR --7746 7890 m --7746 7859.3345 L --7715.3335 7859.3345 L --7715.3335 7890 L --7746 7890 L -n -U -9 () XW -0 Ap -0 O -0 0 0 0 1 1 1 Xa -0 XR --7728.5986 7877.0796 m --7729.7285 7875.6016 l --7728.5986 7876.7212 L --7728.5986 7877.0796 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ --7736.5 7869.1255 m --7737.3848 7867.9287 l --7736.5 7868.8101 L --7736.5 7869.1255 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ -U -9 () XW -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSVGFilter -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_AbgeflachteKanteMitSchatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color:white) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20000) /UnicodeString (xmlnode-nodevalue) , -(z) /UnicodeString (xmlnode-nodename) , -; (z) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10000) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5000) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(fePointLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.1) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_7) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Holzmaserung) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offset) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(flood-color:black; flood-opacity:0.4) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFlood) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(shadowColor) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , - -endstream endobj 22 0 obj <>stream -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.5) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncR) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.7 0 ) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncG) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.1 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncB) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComponentTransfer) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(MergeAll) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(110%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-40%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_KühleBrise) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.2) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(freeze) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(stdDeviation) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(spline) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 1;20 15;200 200; 15 20;1 1 ) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50;20 20;50 50) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow;green;blue;indigo;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(red) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indigo;green;yellow;blue;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(130%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /I -endstream endobj 23 0 obj <>stream -nt (xmlnode-nodetype) , -(AI_Statisch) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.7) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(baseFrequency) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_5) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.4) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -%AI10_EndSVGFilter -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI14_BeginSymbol -(Kombinationsfeld) 0 A -0 Xw -u -u -0 O -9 0.7 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -6.5 -10 m -6.5 -10 L --10.5 -10 L --10.5 10 L -6.5 10 L -6.5 10 L -8.15625 10 9.5 8.6582 9.5 7 C -9.5 -7 L -9.5 -8.65625 8.15625 -10 6.5 -10 C -Bb -1 (Unnamed gradient 1) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -24 0.000001 -7735.5 7901 Xm --0.000001 -23.5 -24 0.000001 -7735.5 7924.5 Bc --0.000001 -20 -24 0.000001 -7735.5 7901 Bm --0.000001 -23.5 -24 0.000001 -7735.5 7881 Bc -f -0 BB -0 1 0 0 0 Xy -6.5 -11 m -6.5 -11 L --10.5 -11 L --10.5 -10 L -6.5 -10 L -6.5 -10 L -8.15625 -10 9.5 -8.65625 9.5 -7 C -9.5 7 L -9.5 8.6582 8.15625 10 6.5 10 C -6.5 10 L --9.5 10 L --10.5 10 L --10.5 11 L -6.5 11 L -6.5 11 L -8.70898 11 10.5 9.20898 10.5 7 C -10.5 -7 L -10.5 -9.20898 8.70898 -11 6.5 -11 C -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -25 0.000001 -7734.5 7902 Xm --0.000001 -25 -25 0.000001 -7734.5 7927 Bc --0.000001 -22 -25 0.000001 -7734.5 7902 Bm --0.000001 -25 -25 0.000001 -7734.5 7880 Bc -f -0 BB -U -9 () XW -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa --3.5 -2 m -2.5 -2 L --0.5 2 l --3.5 -2 L -f -U -%_/ArtDictionary : -%_2 /Int (AI13PatternExportType) , -%_1 /Bool (AI13PatternEnableGuides) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 17 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Schaltfläche) 0 A -0 Xw -u -*u -1 D -0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -0 g -28.0005 -11 m -28 -11 L --28 -11 L --30.21 -11 -32 -9.20898 -32 -7 C --32 7 L --32 9.20801 -30.21 10.999 -28 11 C -28 11 L -28.0005 11 L -30.2085 11 32 9.20898 32 7 C -32 -7 L -32 -9.20898 30.2085 -11 28.0005 -11 C -f -0 D -31 7 m -31 8.6582 29.6563 10 28.0005 10 C -28 10 L --28 10 L --29.6572 9.99902 -31 8.65625 -31 7 C --31 -7 L --31 -8.65527 -29.6572 -10 -28 -10 C -28 -10 L -28.0005 -10 L -29.6563 -10 31 -8.65625 31 -7 C -31 7 L -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -68 0.000003 -7713 7902 Xm --0.000001 -25 -68 0.000003 -7713 7927 Bc --0.000001 -22 -68 0.000003 -7713 7902 Bm --0.000001 -25 -68 0.000003 -7713 7880 Bc -f -0 BB -*U -9 0.85 0 0 0 Xy -28.0005 -10 m -28 -10 L -28 -10 L --28 -10 L --28 -10 L --29.6572 -10 -31 -8.65527 -31 -7 C --31 7 L --31 8.65625 -29.6572 9.99902 -28 10 C --28 10 L -28 10 L -28 10 L -28.0005 10 l -29.6563 10 31 8.6582 31 7 C -31 -7 L -31 -8.65625 29.6563 -10 28.0005 -10 c -Bb -1 (Unnamed gradient 3) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -66 0.000003 -7714 7901 Xm --0.000001 -23 -66 0.000003 -7714 7924 Bc --0.000001 -20 -66 0.000003 -7714 7901 Bm --0.000001 -23 -66 0.000003 -7714 7881 Bc -f -0 BB -U -%_/ArtDictionary : -%_2 /Int (AI13PatternExportType) , -%_1 /Bool (AI13PatternEnableGuides) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_5 /Int (AI13PatternRegistrationType) , -%_4 60 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Suchen) 0 A -0 Xw -u -1 Ap -0 O -1 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -31 21.5322 m -31 24.0166 17.1211 26.0303 0 26.0303 c --17.1191 26.0303 -31 24.0166 -31 21.5322 c --31 19.0459 -17.1191 17.0303 0 17.0303 c -17.1211 17.0303 31 19.0459 31 21.5322 c -Bb -0 0 0 0 Bh -1 (Unnamed gradient 17) 0 0 0 1 1.4762 0 0 0.2143 -3789.1475 6144.7451 1 Bg -30.9986 0 0 -4.50006 -7747 7869.4692 Bm -f -0 BB -%_/ArtDictionary : -%_/Dictionary : /NotRecorded , -%_1.4762 0 0 0.2143 -3789.1475 6144.7451 /RealMatrix -%_ (CAIGradientTformMatrix) , -%_; (Adobe_AI9_ArtStyle_Dictionary) , -%_; -%_ -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 17) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -6 () XW -u -0 Ap -0 1 0 0 0 Xy -10 M -18.4502 21.9706 m --18.7514 21.9706 -19.0387 21.8438 -19.2384 21.6228 C --23.965 16.396 L --24.1564 16.1854 -24.2537 15.9123 -24.2398 15.6264 c --24.2259 15.3403 -24.1025 15.0776 -23.8923 14.8867 C --10.655 2.8613 L --10.4594 2.68388 -10.205 2.58601 -9.93892 2.58601 c --9.63749 2.58601 -9.35004 2.7128 -9.15027 2.93386 C --4.42351 8.15868 L --4.23263 8.36885 -4.13573 8.64198 -4.15001 8.92848 c --4.16429 9.21497 -4.28761 9.47757 -4.49724 9.66792 C --17.7366 21.6953 L --17.9317 21.873 -18.1849 21.9706 -18.4502 21.9706 C -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -18.1731 0 0 -18.1731 -7764.2183 7866.1729 Bm -f -0 BB -u -*u -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 Xa --9.93896 3.08594 m --9.84473 3.08594 -9.66504 3.10986 -9.521 3.26953 C --4.79297 8.49561 L --4.65771 8.64453 -4.64502 8.81494 -4.64941 8.90381 C --4.65723 9.05713 -4.72217 9.19678 -4.8335 9.29785 C --18.0737 21.3262 L --18.1763 21.4194 -18.3096 21.4707 -18.4502 21.4707 C --18.5444 21.4707 -18.7236 21.4468 -18.8677 21.2871 C --23.5957 16.0591 L --23.8022 15.8315 -23.7842 15.4639 -23.5562 15.2568 C --10.3193 3.23193 L --10.2158 3.1377 -10.0806 3.08594 -9.93896 3.08594 C -F -1 D --9.93896 2.08594 m --10.3145 2.08594 -10.6919 2.21973 -10.9912 2.49121 C --24.2285 14.5166 L --24.8672 15.0967 -24.916 16.0928 -24.3359 16.7314 C --19.6094 21.958 L --19.3022 22.2979 -18.877 22.4707 -18.4502 22.4707 C --18.0747 22.4707 -17.6982 22.3369 -17.4004 22.0654 C --4.16113 10.0381 L --3.52441 9.45996 -3.47266 8.46191 -4.05273 7.82324 C --8.7793 2.59863 L --9.08643 2.25879 -9.51172 2.08594 -9.93896 2.08594 C --9.93896 2.08594 L -f -*U -U -0 0 Xd -6 () XW -U -0 0 Xd -6 () XW -%_0 D -%_-24.3359 16.7314 m -%_-24.916 16.0928 -24.8672 15.0967 -24.2285 14.5166 c -%_-10.9912 2.49121 l -%_-10.3516 1.91113 -9.35645 1.95996 -8.7793 2.59863 c -%_-4.05273 7.82324 l -%_-3.47266 8.46191 -3.52441 9.45996 -4.16113 10.0381 c -%_-17.4004 22.0654 l -%_-18.0371 22.6455 -19.0322 22.5967 -19.6094 21.958 c -%_-24.3359 16.7314 l -%_n -1 (Anon) XW -*u -0 O -0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -4 M 0 g -7.40234 -25.5303 m -9.28125 -25.5303 11.1943 -25.2197 13.0703 -24.5713 C -22.1172 -21.4404 26.9102 -11.5713 23.7832 -2.52441 C -21.3018 4.64551 14.5879 9.14551 7.40234 9.14551 C -5.52344 9.14551 3.61328 8.83496 1.73438 8.18652 C --7.3125 5.05762 -12.1084 -4.81348 -8.97852 -13.8584 C --6.49707 -21.0283 0.219727 -25.5303 7.40234 -25.5303 C -B -1 D -7.40234 -20.374 m -2.21582 -20.374 -2.40918 -17.0791 -4.1084 -12.1729 C --5.1709 -9.09863 -4.97363 -5.7959 -3.55176 -2.86816 C --2.12988 0.055664 0.34668 2.25293 3.42188 3.31738 C -4.71191 3.76465 6.05176 3.99121 7.40234 3.99121 C -12.5889 3.99121 17.2139 0.696289 18.9131 -4.20801 C -19.9756 -7.28223 19.7783 -10.5869 18.3564 -13.5127 C -16.9346 -16.4404 14.458 -18.6377 11.3857 -19.7002 C -11.3857 -19.7002 L -10.0898 -20.1475 8.75 -20.374 7.40234 -20.374 C -7.40234 -20.374 L -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) 0.007548 0.433959 0 1.40083 1 0 0 1 0 0 1 Bg -17.0658 0 0 -17.0658 -7739.3364 7884.1445 Bm -b -2 BB -*U -u -0 D -10 M -8.90137 7.71973 m --8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C --9.96973 4.26465 L --22.5664 15.708 L --20.3691 18.1377 L --8.90137 7.71973 L -Bb -1 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -17.6244 -20.6243 -16.0703 -13.7328 -7766.499 7901.1626 Xm -33.9039 -39.6748 -16.0703 -13.7328 -7800.4028 7940.8374 Bc -17.6244 -20.6243 -16.0703 -13.7328 -7766.499 7901.1626 Bm -33.9039 -39.6748 -16.0703 -13.7328 -7748.8745 7880.5381 Bc -f -0 BB -U -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-8.90137 7.71973 m -%_-8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-20.3691 18.1377 L -%_-8.90137 7.71973 L -%_n -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -1 (Anon 437) XW -0 O -4 M 12.5801 -23.1553 m -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.3125 -8.30762 -8.32813 -2.95605 -5.40723 1.08691 C --5.00293 -0.069336 -4.43066 -1.18066 -3.72559 -2.23926 C --3.80273 -2.38379 -3.88965 -2.52051 -3.96191 -2.66895 c --5.43652 -5.70605 -5.6416 -9.13379 -4.53906 -12.3232 c --2.77637 -17.4111 2.02148 -20.8291 7.40234 -20.8291 c -8.80078 -20.8291 10.1904 -20.5947 11.5352 -20.1299 c -14.7217 -19.0283 17.291 -16.749 18.7666 -13.7119 c -19.0146 -13.2021 19.2129 -12.6787 19.3887 -12.1494 C -19.7041 -12.1279 20.0215 -12.1143 20.3359 -12.0811 c -21.1885 -11.9932 22.0146 -11.8623 22.8184 -11.7021 C -21.6367 -16.8506 17.9277 -21.3037 12.5801 -23.1553 c -Bb -1 (Unnamed gradient 7) -0.837511 0 -63.554 2.1927 1 0 0 1 0 0 1 Bg -19.0977 -38.3947 -33.1435 -16.4857 -7737.2896 7936.3179 Xm -20.434 -41.0812 -33.1435 -16.4857 -7757.7231 7977.3994 Bc -19.0977 -38.3947 -33.1435 -16.4857 -7737.2896 7936.3179 Bm -20.434 -41.0812 -33.1435 -16.4857 -7718.1919 7897.9233 Bc -f -0 BB --6.4707 -11.915 m --4.26367 -18.292 1.75 -22.5752 8.49316 -22.5752 c -10.251 -22.5752 11.9922 -22.2822 13.6709 -21.7021 c -16.4521 -20.7393 18.7813 -19.0635 20.5557 -16.9619 C -18.7041 -19.7471 15.9766 -21.9795 12.5801 -23.1553 c -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.45313 -7.90137 -8.14941 -2.10254 -4.66309 2.02637 C --7.30762 -1.9502 -8.14941 -7.06348 -6.4707 -11.915 c -Bb -1 (Unnamed gradient 7) -0.284451 0 -62.8867 1.31311 1 0 0 1 0 0 1 Bg -11.6282 -22.7105 -32.3312 -16.5542 -7733.5737 7926.2744 Xm -13.8263 -27.0035 -32.3312 -16.5542 -7747.3999 7953.2778 Bc -11.6282 -22.7105 -32.3312 -16.5542 -7733.5737 7926.2744 Bm -13.8263 -27.0035 -32.3312 -16.5542 -7721.9453 7903.564 Bc -f -0 BB -u -0 1 0 0 0 Xy -10 M -9.12402 5.19824 m --9.96973 4.26465 L --22.5664 15.708 L --21.7207 16.6436 L --9.12402 5.19824 L -Bb -1 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -3.53784 -7.91375 -18.7709 -8.3915 -7755.1191 7888.4551 Xm -11.3559 -25.4018 -18.7709 -8.3915 -7766.4751 7913.8569 Bc -3.53784 -7.91375 -18.7709 -8.3915 -7755.1191 7888.4551 Bm -11.3559 -25.4018 -18.7709 -8.3915 -7751.5815 7880.541 Bc -f -0 BB -U -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-9.12402 5.19824 m -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-21.7207 16.6436 L -%_-9.12402 5.19824 L -%_n -1 (Anon 438) XW -U -%_/ArtDictionary : -%_2 /Int (AI13PatternExportType) , -%_0 /Bool (AI13PatternEnableGuides) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_5 /Int (AI13PatternRegistrationType) , -%_15.5 46.5 39.0454 13.0151 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Textbereich) 0 A -0 Xw -u -1 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 0.991358 w 4 M []0 d 0 XR -77.5 45.5 m --77.5 45.5 L --77.5 -45.5 L -77.5 -45.5 L -77.5 45.5 L -s -0 0.6 0 0 0 Xy -1.00864 w 78.5 46.5 m --78.5 46.5 L --78.5 -46.5 L -78.5 -46.5 L -78.5 46.5 L -s -U -%_/ArtDictionary : -%_2 /Int (AI13PatternExportType) , -%_1 /Bool (AI13PatternEnableGuides) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_5 /Int (AI13PatternRegistrationType) , -%_2.0811 156.0811 91.4609 2.4609 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Texteingabe) 0 A -0 Xw -u -0 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -77.5 11.5 m --77.5 11.5 L --77.5 -11.5 L -77.5 -11.5 L -77.5 11.5 L -s -0 0.6 0 0 0 Xy -78.5 12.5 m --78.5 12.5 L --78.5 -12.5 L -78.5 -12.5 L -78.5 12.5 L -s -U -%_/ArtDictionary : -%_2 /Int (AI13PatternExportType) , -%_1 /Bool (AI13PatternEnableGuides) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_5 /Int (AI13PatternRegistrationType) , -%_1.7002 155.7002 24 2 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Brush Manager Order) -(Adobe Brush Manager Order) -( Adobe Calligraphic Brush Tool/ Rund - 3 Pt./ Adobe Calligraph) - -(ic Brush Tool/ Rund - 10 Pt./ Adobe Calligraphic Brush Tool/ O) - -(val - 3 Pt./ Adobe ArtOnPath Brush Tool/ Kohle - Feder/ Adobe ) - -(dBrush Brush Tool/ Stupfpinsel/ Adobe PatternOnPath Brush Tool) - -(/ Silber/) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe dBrush Brush Tool) -(Stupfpinsel) -(0 4 0.75 0.75 0.33 0.75 1 3 AI_BristleBrushLibary_CS5 02_Round) - -(_Blunt) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Oval - 3 Pt.) -(1 3 3 26 74 15 15 0 1 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 10 Pt.) -(1 10 10 100 100 0 0 1 0 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 3 Pt.) -(1 3 3 100 100 0 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe ArtOnPath Brush Tool) -(Kohle - Feder) -(2 / Unnamed 6/ / / / / 0 1 / 1 1 1 0 1 0 0 0 1 1 0 0 0 0 1) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe PatternOnPath Brush Tool) -(Silber) -(2 / Unnamed Brush Pattern 45/ Unnamed Brush Pattern 49/ Unname) - -(d Brush Pattern 47/ / / 5 0.623529 0.67451 0.737255 / 1 0 1 0) - -( 1 0 0 0 1 1 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyles -/KnownStyle : -(Anon) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -1 0 Xd -/Def ; - (StrokeStyle) , -(Inside) /String (DisplayString) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 437) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -(Inside) /String (DisplayString) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 438) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -(Inside) /String (DisplayString) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 710) /Name , -/SimpleStyle : -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Paint ; - /Def ; -/KnownStyle : -(Jive_GS) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -(Jive) 0 0 1 1 0 0 0 0 0 [0 1.47 -1.47 0 3549.7441 19033.0313] p -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0.389013 0.068635 0.08426 0 0.65098 0.815686 0.894118 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schein nach außen - 5 Pt.) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Outer Glow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schein nach au\337en) /Title , -/Dictionary : /NotRecorded , -2 /Int (blnd) , -5 /Real (blur) , -0.75 /Real (opac) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -1 /Bool (usePSLBlur) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schlagschatten) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Drop Shadow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schlagschatten) /Title , -/Dictionary : /NotRecorded , -1 /Int (csrc) , -7 /Real (horz) , -50 /Real (dark) , -7 /Real (vert) , -1 /Bool (pair) , -1 /Int (blnd) , -5 /Real (blur) , -0.75 /Real (opac) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -1 /Bool (usePSLBlur) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -([Standard]) /Name , -/SimpleStyle : -0 O -0 0 0 0 1 1 1 Xa -0 R -0.912474 0.787625 0.619837 0.97467 0 0 0 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -1 1 Xd -/Paint ; - /Def ; -%AI9_EndArtStyles -%AI5_End_NonPrinting-- -%AI5_BeginPalette -0 0 Pb -0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz -([Passermarken]) -Pc -0 0 0 0 1 1 1 Xa -(Weiß) -Pc -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(Schwarz) -Pc -0 0.94641 0.916289 0 1 0 0 Xa -(RGB Rot) -Pc -0.096254 0 0.951965 0 1 1 0 Xa -(RGB Gelb) -Pc -0.647547 0 1 0 0 1 0 Xa -(RGB Grün) -Pc -0.570733 0 0.153567 0 0 1 1 Xa -(RGB Cyan) -Pc -0.934081 0.745846 0 0 0 0 1 Xa -(RGB Blau) -Pc -0.409979 0.77676 0 0 1 0 1 Xa -(RGB Magenta) -Pc -0.168978 0.950286 0.823636 0.068666 0.756863 0.152941 0.176471 Xa -(R=193 G=39 B=45) -Pc -0 0.946624 0.85211 0 0.929412 0.109804 0.141176 Xa -(R=237 G=28 B=36) -Pc -0 0.752956 0.887388 0 0.945098 0.352941 0.141176 Xa -(R=241 G=90 B=36) -Pc -0 0.501823 0.907988 0 0.968627 0.576471 0.117647 Xa -(R=247 G=147 B=30) -Pc -0 0.365637 0.819852 0 0.984314 0.690196 0.231373 Xa -(R=251 G=176 B=59) -Pc -0.065736 0 0.852628 0 0.988235 0.933333 0.129412 Xa -(R=252 G=238 B=33) -Pc -0.231907 0 0.892332 0 0.85098 0.878431 0.129412 Xa -(R=217 G=224 B=33) -Pc -0.524254 0 0.880919 0 0.54902 0.776471 0.247059 Xa -(R=140 G=198 B=63) -Pc -0.718288 0 0.876951 0 0.223529 0.709804 0.290196 Xa -(R=57 G=181 B=74) -Pc -0.842954 0.14374 0.926757 0.021576 0 0.572549 0.270588 Xa -(R=0 G=146 B=69) -Pc -0.899077 0.322972 0.925994 0.247654 0 0.407843 0.215686 Xa -(R=0 G=104 B=55) -Pc -0.735958 0 0.689784 0 0.133333 0.709804 0.45098 Xa -(R=34 G=181 B=115) -Pc -0.766171 0.045533 0.450782 0 0 0.662745 0.615686 Xa -(R=0 G=169 B=157) -Pc -0.709987 0.132143 0.001953 0 0.160784 0.670588 0.886275 Xa -(R=41 G=171 B=226) -Pc -0.866178 0.492958 0 0 0 0.443137 0.737255 Xa -(R=0 G=113 B=188) -Pc -0.975586 0.89572 0 0.000824 0.180392 0.192157 0.572549 Xa -(R=46 G=49 B=146) -Pc -1 0.970001 0.322484 0.218753 0.105882 0.078431 0.392157 Xa -(R=27 G=20 B=100) -Pc -0.755703 0.923125 0 0.000031 0.4 0.176471 0.568627 Xa -(R=102 G=45 B=145) -Pc -0.5393 0.930297 0 0 0.576471 0.152941 0.560784 Xa -(R=147 G=39 B=143) -Pc -0.323583 1 0.236301 0.1673 0.619608 0 0.364706 Xa -(R=158 G=0 B=93) -Pc -0.097993 0.983551 0.407263 0.020691 0.831373 0.078431 0.352941 Xa -(R=212 G=20 B=90) -Pc -0 0.935058 0.142763 0 0.929412 0.117647 0.47451 Xa -(R=237 G=30 B=121) -Pc -0.220859 0.272648 0.389227 0.061189 0.780392 0.698039 0.6 Xa -(R=199 G=178 B=153) -Pc -0.354864 0.386694 0.466072 0.211734 0.6 0.52549 0.458824 Xa -(R=153 G=134 B=117) -Pc -0.446387 0.47068 0.52636 0.380346 0.45098 0.388235 0.341176 Xa -(R=115 G=99 B=87) -Pc -0.535302 0.542443 0.552728 0.542199 0.32549 0.278431 0.254902 Xa -(R=83 G=71 B=65) -Pc -0.204685 0.376715 0.593042 0.084871 0.776471 0.611765 0.427451 Xa -(R=198 G=156 B=109) -Pc -0.280308 0.462287 0.671046 0.207126 0.65098 0.486275 0.321569 Xa -(R=166 G=124 B=82) -Pc -0.324376 0.536675 0.760494 0.329229 0.54902 0.384314 0.223529 Xa -(R=140 G=98 B=57) -Pc -0.359228 0.605188 0.857359 0.451545 0.458824 0.298039 0.141176 Xa -(R=117 G=76 B=36) -Pc -0.391424 0.683131 0.943023 0.57116 0.376471 0.219608 0.07451 Xa -(R=96 G=56 B=19) -Pc -0.474617 0.7467 0.825315 0.730831 0.258824 0.129412 0.043137 Xa -(R=66 G=33 B=11) -Pc -Bb -2 (Weiß, Schwarz) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Weiß, Schwarz) -Pc -Bb -2 (Goldstaub) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Goldstaub) -Pc -Bb -2 (Blauer Himmel) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Blauer Himmel) -Pc -(Jive) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p -(Jive) -Pc -1 (Kalt) 1 Pg -0.584497 0 0.222965 0 0.396078 0.784314 0.815686 Xa -(C=56 M=0 Y=20 K=0) -Pc -0.55404 0.445533 0 0 0.513726 0.545098 0.772549 Xa -(C=51 M=43 Y=0 K=0) -Pc -0.313512 0.439063 0.001465 0 0.729412 0.607843 0.788235 Xa -(C=26 M=41 Y=0 K=0) -Pc -1 (Graustufen) 1 Pg -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(R=0 G=0 B=0) -Pc -0.762295 0.667414 0.60705 0.828763 0.101961 0.101961 0.101961 Xa -(R=26 G=26 B=26) -Pc -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa -(R=51 G=51 B=51) -Pc -0.620386 0.5234 0.503532 0.47776 0.301961 0.301961 0.301961 Xa -(R=77 G=77 B=77) -Pc -0.559442 0.453803 0.448554 0.326848 0.4 0.4 0.4 Xa -(R=102 G=102 B=102) -Pc -0.492378 0.386633 0.38529 0.202182 0.501961 0.501961 0.501961 Xa -(R=128 G=128 B=128) -Pc -0.410864 0.319738 0.323857 0.110109 0.6 0.6 0.6 Xa -(R=153 G=153 B=153) -Pc -0.32575 0.244968 0.255344 0.043549 0.701961 0.701961 0.701961 Xa -(R=179 G=179 B=179) -Pc -0.231479 0.170962 0.180972 0.008301 0.8 0.8 0.8 Xa -(R=204 G=204 B=204) -Pc -0.11664 0.082246 0.092653 0 0.901961 0.901961 0.901961 Xa -(R=230 G=230 B=230) -Pc -0.062196 0.043153 0.05127 0 0.94902 0.94902 0.94902 Xa -(R=242 G=242 B=242) -Pc -PB -%AI5_EndPalette -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyleList -([Standard]) -(Schlagschatten) -(Schein nach außen - 5 Pt.) -(Jive_GS) -%AI9_EndArtStyleList -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSymbolList -(Textbereich) -(Schaltfläche) -(Kombinationsfeld) -(Texteingabe) -(Suchen) -%AI10_EndSymbolList -%AI5_End_NonPrinting-- -%AI9_BeginDocumentData -%_/Document : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(none) /String (xmlnode-nodevalue) , -%_(locked) /String (xmlnode-nodename) , -%_; (locked) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(binding1) /String (xmlnode-nodevalue) , -%_(varSetName) /String (xmlnode-nodename) , -%_; (varSetName) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variables) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns:v) /String (xmlnode-nodename) , -%_; (xmlns:v) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_custom;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(v:sampleDataSets) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSet) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSets) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_sfw;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(slices) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_763.4331 /Real (xmlnode-nodevalue) , -%_(width) /String (xmlnode-nodename) , -%_; (width) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_127.373 /Real (xmlnode-nodevalue) , -%_(height) /String (xmlnode-nodename) , -%_; (height) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_-363.6865 /Real (xmlnode-nodevalue) , -%_(y) /String (xmlnode-nodename) , -%_; (y) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_76.2339 /Real (xmlnode-nodevalue) , -%_(x) /String (xmlnode-nodename) , -%_; (x) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_1 /Bool (xmlnode-nodevalue) , -%_(bottomLeftOrigin) /String (xmlnode-nodename) , -%_; (bottomLeftOrigin) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sliceSourceBounds) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sfw) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(metadata) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_9 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(#document) /String (xmlnode-nodename) , -%_; (#document) , -%_0 /Real (BleedLeftValue) , -%_0 /Int (CropAreaActive) , -%_/Array : -%_/Dictionary : -%_7747 7891 /RealPoint -%_ (RulerOrigin) , -%_0 /Int (DisplayMark) , -%_(Zeichenfläche 1) /UnicodeString (Name) , -%_1 /Real (PAR) , -%_888 -600 /RealPointRelToROrigin -%_ (PositionPoint2) , -%_0 0 /RealPointRelToROrigin -%_ (PositionPoint1) , -%_1 /Bool (IsArtboardDefaultName) , -%_; , -%_; (ArtboardArray) , -%_0 /Bool (AI11 document knockout group) , -%_0 /Bool (AI11 document isolate blending) , -%_0 /Bool (AI9 paper simulation) , -%_2 /Int (AI9 transparency grid size) , -%_1 /Int (AI9 artboard color) , -%_52428 /Int (AI9 artboard color 2 blue) , -%_52428 /Int (AI9 artboard color 2 green) , -%_52428 /Int (AI9 artboard color 2 red) , -%_65535 /Int (AI9 artboard color 1 blue) , -%_65535 /Int (AI9 artboard color 1 green) , -%_65535 /Int (AI9 artboard color 1 red) , -%_16383 /Int (AIDocumentCanvasSize) , -%_1 /Bool (AI11 Preserve Text Editability) , -%_([Mittlere Auflösung]) /UnicodeString (AI11 Document Setup Flattener Preset Name) , -%_150 /Real (AI9 Mesh Rasterization Resolution) , -%_300 /Real (AI9 Output Rasterization Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_/Dictionary : -%_36 /Real (padd) , -%_0 /Bool (mask) , -%_1 /Bool (spot) , -%_0 /Bool (alis) , -%_72 /Int (dpi.) , -%_4 /Int (colr) , -%_; (AI Auto Rasterize) , -%_0 /Real (BleedTopValue) , -%_0 /Real (BleedRightValue) , -%_5 /Real (GlobalRepulsion) , -%_1 /Bool (kAIParametersPDFCompatibility) , -%_0 /Int (kAIParametersEmbedProfileKey) , -%_0 /Bool (kAIParametersCompression) , -%_2 /Int (kAIParametersWhichProfileKey) , -%_/Dictionary : -%_/Array : -%_; (SelHatDocLocalNamesArray) , -%_/Array : -%_; (SelHatDocInterIDsArray) , -%_; (SelHatDocTableDict) , -%_0 /Real (BleedBottomValue) , -%_32767 /Int (PerspectiveGrid_RightGreen) , -%_(14.0.0) /String (kAIFullDocumentVersionStr) , -%_50 /Real (PerspectiveGrid_FloorOpacity) , -%_32767 /Int (PerspectiveGrid_FloorRed) , -%_32767 /Int (PerspectiveGrid_FloorBlue) , -%_2 /Int (PerspectiveGrid_Type) , -%_45874 /Int (PerspectiveGrid_FloorGreen) , -%_580 /Real (PerspectiveGrid_LeftExtent) , -%_250 /Real (PerspectiveGrid_HorizonHeight) , -%_30 /Real (PerspectiveGrid_CellSize) , -%_580 /Real (PerspectiveGrid_RightExtent) , -%_1 /Int (AI12_SpotColorMode) , -%_4 /Int (AI9 Flattening Quality Level) , -%_15 /Real (PerspectiveGrid_CellCount) , -%_0 /Int (PerspectiveGrid_Unit) , -%_0 /Bool (AI10 flattener outline text) , -%_1 1 /RealPoint -%_ (PerspectiveGrid_Scale) , -%_1 /Bool (AI10 flattener outline strokes) , -%_0 /Bool (AI16 flattener anti alias) , -%_0 /Real (PerspectiveGrid_FloorOffset) , -%_50 /Real (PerspectiveGrid_LeftOpacity) , -%_6553 /Int (PerspectiveGrid_LeftRed) , -%_58981 /Int (PerspectiveGrid_LeftBlue) , -%_26214 /Int (PerspectiveGrid_LeftGreen) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_StationPoint) , -%_480 /Real (PerspectiveGrid_ViewingDistance) , -%_45 /Real (PerspectiveGrid_LeftFaceAngle) , -%_45 /Real (PerspectiveGrid_RightFaceAngle) , -%_50 /Real (PerspectiveGrid_RightOpacity) , -%_65535 /Int (PerspectiveGrid_RightRed) , -%_0 /Int (PerspectiveGrid_RightBlue) , -%_100 /Real (kAIParametersSubsetFontsRatioKey) , -%_75 /Int (AI10 flattener raster-vector balance) , -%_1 /Bool (AI10 flattener clip complex regions) , -%_1 /Bool (AI10 flattener preserve overprints) , -%_7711 8191 /RealPoint -%_ (PerspectiveGrid_LeftVanishingPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_LeftPlaneBottomPoint) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_LeftPlaneTopPoint) , -%_0 /Int (PerspectiveGrid_LeftPlaneVisibilityState) , -%_0 /Int (PerspectiveGrid_FloorPlaneVisibilityState) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexFirst) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexSecond) , -%_7951 8316 /RealPoint -%_ (PerspectiveGrid_LeftPlaneCellExtent) , -%_8671 8191 /RealPoint -%_ (PerspectiveGrid_RightVanishingPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_RightPlaneBottomPoint) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_RightPlaneTopPoint) , -%_0 /Int (PerspectiveGrid_RightPlaneVisibilityState) , -%_8431 8316 /RealPoint -%_ (PerspectiveGrid_RightPlaneCellExtent) , -%_0 -500 /RealPoint -%_ (PerspectiveGrid_RelativeFloorVanishingPoint) , -%_; /Recorded , -%_/Dictionary : /NotRecorded , -%_1 /Int (LastArtboardID) , -%_1 /Bool (AI12 AI Outline Strokes) , -%_1 /Int (AI11 EPS Overprints) , -%_1 /Bool (AI11 EPS Clip Complex Regions) , -%_1 /Bool (AI12 AI Clip Complex Regions) , -%_([Medium Resolution]) /String (AI11 EPS Flattener Preset Name) , -%_1 /Bool (AI11 EPS Outline Strokes) , -%_1 /Int (AI12 AI Overprints) , -%_/Dictionary : /NotRecorded , -%_ /String (/attributes/job.pagerange) , -%_1 /Int (/attributes/job.printall) , -%_1 /Int (/attributes/job.skipblank) , -%_0 /Int (/attributes/job.reverseorder) , -%_0 /Int (/attributes/job.collate) , -%_() /UnicodeString (/attributes/job.artboardrange) , -%_1 /Int (/attributes/job.printallartboards) , -%_; (AI11 Print JobInfo Dict) , -%_0 /Bool (AI12 AI Outline Text) , -%_0 /Bool (AI11 EPS Outline Text) , -%_75 /Int (AI12 AI Raster/Vector Balance) , -%_0 /Bool (AI16 EPS Anti Aliasing) , -%_75 /Int (AI11 EPS Raster/Vector Balance) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/job.bitmapresolution) , -%_0 /Real (/attributes/pgmk.bleedoff.bottom) , -%_6 /Real (/attributes/pgmk.marksoff.bottom) , -%_1 /Int (/attributes/pgmk.bleedoff.useDocBleeds) , -%_([Standard]) /UnicodeString (/attributes/collectionName) , -%_1 /Int (/attributes/stl.defaultprinter) , -%_() /UnicodeString (/attributes/stl.printername) , -%_() /UnicodeString (/attributes/stl.ppdmodelname) , -%_1 /Int (/attributes/stl.defaultppd) , -%_() /UnicodeString (/attributes/stl.customppd) , -%_0 /Int (/attributes/ppr.custom) , -%_1 /Int (/attributes/ppr.default) , -%_595.32 /Real (/attributes/ppr.width) , -%_841.92 /Real (/attributes/ppr.height) , -%_0 /Real (/attributes/ppr.image.left) , -%_0 /Real (/attributes/ppr.image.top) , -%_595.32 /Real (/attributes/ppr.image.right) , -%_841.92 /Real (/attributes/ppr.image.bottom) , -%_(Durch Treiber definiert) /UnicodeString (/attributes/ppr.name) , -%_0 /Real (/attributes/cppr.width) , -%_0 /Real (/attributes/cppr.height) , -%_0 /Real (/attributes/cppr.woffset) , -%_0 /Real (/attributes/cppr.hoffset) , -%_0 /Int (/attributes/cppr.trans) , -%_0 /Int (/attributes/job.designation) , -%_2 /Int (/attributes/job.printbounds) , -%_0 /Int (/attributes/job.printofile) , -%_0 /Int (/attributes/job.printasbitmap) , -%_() /UnicodeString (/attributes/job.name) , -%_0 /Int (/attributes/clr.mode) , -%_0 /Int (/attributes/clr.convertspots) , -%_0 /Int (/attributes/clr.overprintblack) , -%_720 /Int (/attributes/crd.orientation) , -%_0 /Int (/attributes/crd.fliphorz) , -%_5 /Int (/attributes/crd.position) , -%_0 /Real (/attributes/crd.org.h) , -%_0 /Real (/attributes/crd.org.v) , -%_100 /Real (/attributes/crd.scale.h) , -%_100 /Real (/attributes/crd.scale.v) , -%_0 /Int (/attributes/crd.scplcy) , -%_1 /Int (/attributes/crd.sccnst) , -%_0 /Int (/attributes/crd.tiling) , -%_0 /Real (/attributes/crd.overlap.h) , -%_0 /Real (/attributes/crd.overlap.v) , -%_0 /Int (/attributes/pgmk.enabled) , -%_0 /Int (/attributes/pgmk.style) , -%_() /UnicodeString (/attributes/pgmk.customfile) , -%_() /UnicodeString (/attributes/pgmk.jobtitle) , -%_0.25 /Real (/attributes/pgmk.deflinewidth) , -%_0 /Int (/attributes/pgmk.bleed) , -%_0 /Int (/attributes/pgmk.crop) , -%_0 /Int (/attributes/pgmk.pageinfo) , -%_0 /Int (/attributes/pgmk.registration) , -%_0 /Int (/attributes/pgmk.colorbars) , -%_0 /Real (/attributes/pgmk.bleedoff.left) , -%_0 /Real (/attributes/pgmk.bleedoff.top) , -%_0 /Real (/attributes/pgmk.bleedoff.right) , -%_6 /Real (/attributes/pgmk.marksoff.left) , -%_6 /Real (/attributes/pgmk.marksoff.top) , -%_6 /Real (/attributes/pgmk.marksoff.right) , -%_1 /Int (/attributes/fnt.dlmode) , -%_0 /Int (/attributes/fnt.dlprfonts) , -%_0 /Int (/attributes/fnt.subst) , -%_3 /Int (/attributes/ps.level) , -%_1 /Int (/attributes/ps.binary) , -%_0 /Int (/attributes/ps.negative) , -%_0 /Int (/attributes/ps.compression) , -%_0 /Int (/attributes/ps.contone) , -%_0 /Int (/attributes/ps.l1compat) , -%_300 /Real (/attributes/ps.shaderes) , -%_0 /Int (/attributes/ps.setflatness) , -%_1 /Real (/attributes/ps.flatness) , -%_75 /Int (/attributes/xp.balance) , -%_300 /Int (/attributes/xp.rresolution) , -%_150 /Int (/attributes/xp.gresolution) , -%_0 /Int (/attributes/xp.converttext) , -%_1 /Int (/attributes/xp.convertstroke) , -%_1 /Int (/attributes/xp.clip) , -%_0 /Int (/attributes/xp.antialiasing) , -%_0 /Int (/attributes/xp.opco) , -%_0 /Int (/attributes/xp.opse) , -%_0 /Int (/attributes/xp.opdu) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/xp.name) , -%_0 /Int (/attributes/rdrs.enabled) , -%_0 /Int (/attributes/rdrs.func) , -%_1 /Real (/attributes/rdrs.flatteness) , -%_() /UnicodeString (/attributes/rdrs.annot) , -%_ /String (/attributes/rdrs.custom) , -%_1 /Int (/attributes/cm.mode) , -%_(Coated FOGRA39 \(ISO 12647-2:2004\)) /UnicodeString (/attributes/cm.profile) , -%_2 /Int (/attributes/cm.inteint) , -%_1 /Int (/attributes/cm.preservecmyk) , -%_0 /Int (/attributes/cm.preserveother) , -%_; (AI11 Print Attribute Dict) , -%_0 /Bool (AI15 Document PixelPerfect) , -%_150 /Real (AI12 AI Gradient and Mesh Resolution) , -%_300 /Real (AI12 AI Line Art and Text Resolution) , -%_150 /Real (AI11 EPS Gradient and Mesh Resolution) , -%_300 /Real (AI11 EPS Line Art and Text Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_1 /Bool (AI9 no overprint in composite) , -%_([Medium Resolution]) /String (AI12 AI Flattener Preset Name) , -%_0 /Bool (AI16 AI Anti Aliasing) , -%_/Binary : /ASCII85Decode , -%4?O&[+M4?:L\'M@ruc7FE2M8%144#00sDjDg,0$@;^.*@<,ps@sK2/ -%@;L!r%144#00sJtBgHQL@<4eSCi=>cD..'gF!,('Cia.s$6UHE6#LdY6#:7DF%:7ZGtDj]B4Z-,AmoLsAISth+>6#uFD4$WBjl'W -%Df0JbD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC.VCi=>cD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC:]@6#sC^g^o+>6&qDIdI!B-8j$AS-#n$6UHE6Xadu -%9j(+cEc5Q(Ch4_;VJ#h;ccak>VJ#i+EfLh%144#010/a7ri$`:i^JdBl%?'-r+\uALS&q+7Co^+n%,`+>6*#Ci=>[6W6Qn@:s.>Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+6>`77Rdo+6*#Ci=>cD..'g -%6tp.Q+?Vaq$6UH6+>68a@;Tt"ATJtu%144#+F<4+6S]@:OCt -%EZd%g2`OB5+n%,`+?hsu$6UHE -%6Z6dZE_1+VB4XJLGA_J1D/a<&<+p;`F(fK.A06*#Ci=>cD..'g6uR9eF(&p)Ch6RkE+L.F:2b#]%144#010Yo -%DfSEd@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+6*#Ci=>cD..'g9keKC -%ATMd+F`_>9DBLYk0F\@3+>6*#Ci=>cD..'g9keKCATMd+F`_>9DGY7fBk)E202G4M$6UHE6Z6dZE_1+VB4XtPF)Pl;FD5Z2+>G`- -%%144#010YoDfScfFED57B6-OVCh4_;.1HV,+>6*#D/`p*BjtdmBlnVoAThX$+>GK+%144#010YpE,oN2F&-7[ARfh'+>6]&B6+Lh -%+6*#DK]T3F@g=XB4Z-`Db4hWAU%cs+EVXHAISth+>6*&ART[l8jl-6*&ART[l8oJ06/Y0K1a@0K(dB0JY=90K1gB0K(mE -%0K(dB0JY=90K(aA0K(dB0K(gC0K(X>0K1jC0K)9P0K1gB0JY=90K1dA0K(dB0K1gB0K1gB0K(pF0K)?R0K(jD0K1dA0JY=90K1pE -%0K(mE0K(dB0K)?R0JY=90K1dA0K(X>0K1mD0K(pF0K)?R0K(jD0JY=90K(X>0K)?R0JY=90JkdD0K)9P0K)9P0K1jC0K1dA0K1gB -%0K1a@0K(X>0K1gB0K)BS0K1a@0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(X>0K1dA0JY=90K(X>0K)?R0JY=90JkL<0K(aA0K)BS -%0K([?0K(dB0JY=90JtO<0JkU?0Jk[A0JY=90K(aA0K)BS0K(^@0K1jC0K)0K)9P0K(X>0K)?R0JY=90K)BS0K)?R0JY=90K(dB0K(aA0K(pF0K1gB0K(pF0K)?R0K(jD -%0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(X>0K(jD0K(X>0K(pF0K)?R0JY=90K(pF0K)?R0JY=90JkdD -%0K)9P0K)9P0K1jC0K1dA0K1gB0K1a@0K(X>0K1gB0K)BS0K1a@0JZ!L0JY=90K)BS0K1a@0JY=90K1pE0K(mE0K(dB0K)?R0JY=9 -%0K2!G0K)BS0K1jC0JY=90K)?R0K(dB0K(dB0K(aA0JY=90K1gB0K)BS0JY=90K1[>0K)9P0K(X>0K(^@0K(dB0JY=90K(pF0K1gB -%0JY=90K(pF0K)?R0JY=90K(X>0JY=90K)9P0K(X>0K2!G0K)BS0K1jC0K1gB0JY=90K(X>0K1[>0K1[>0K)9P0K(pF0K(^@0K(X> -%0K1gB0K(pF0K)BS0K)?R0JY=90K1dA0K1jC0K(^@0K(mE0JY=90K(X>0K1dA0JY=90JkdD0K)?R0JkU?0K(dB0K1dA0K(pF0K(jD -%0K)?R0JZ!L0JY=90K)BS0K1a@0JY=90K1pE0K(mE0K(dB0K)?R0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)?R0K(X>0K)9P -%0JY=90K1jC0K1dA0K(dB0JY=90K)BS0K(gC0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(pF0K1dA0JY=9 -%0K1jC0K)?R0K)6O0K)?R0K)BS0K1pE0K)?R0JZ'\%144#5!BD_+6-$<+pDk@W#UgCi^_@Eckq&$6UHE6uR9eF(&p)Ch5tPCi=>cD..'gF!,('Cia.s$6UHE6uR9eF(&p)Ch6+W@60#@V'(9ChuRZDKKqBFE2M8%144#01B_eARnDO@S^rb -%Bl@m1+D,%uF(Gdf+60$@rGmh9lFof8SqmKATJu9Eckq&$6UHE7;cX4@:s-o/MR\A+Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+68a@;Tt"ATJtu%144#+F<4+6S]@:OCt -%EZd%g2`OB5+n%,`+?hsu$6UHE -%7ri$`8SqmKAOLH\DKB6'E,9)bBQ@[*BQ%]t+>GK+0JG17%144#01U%kGtDj]B4XJLGA_J1D/a<&<-`Fo+>6K.DIj7a+66*@G`-%144#01U%kGtDj]B4XeODGk%eDesQ66*@9DBLYk0F\@3+>6<' -%@:s.GASl@+Gp"gq1cR?O2@U!9+>6>`77T*e0JGk4Ci=>[6W6Qn@:s.>Bk)6-4?O&[+G__$6UH6+>6].Ch6.K -%BkM+$+>Pf4%144#+Pf4%144#5!BD_+6].Ch6[^A9;K-1,Us!$6UHT4q.iA -%+>6E,@r"JHF*),4Ch7W`@<,dnF!,RFF_)!h+6H-DJr*` -%@:s.>Bk)6-4?O&[+0b"I4+?hsu$6UHE9lFof8SqmKAOLH\DKB6'E,9)bBQ@[*BQ%]t+>GK+0JG17%144#026A&Db4eS -%B4XJLGA_J1D/a<&<-`Fo+>6K.DIj7a+9DGY7fBk)E202G4M$6UHE9lFof8SqmKAQ!)\DesQ..1HV,+C,E`+7Co^+6$%;Is9IATC^gEb/ZiF!,('Cia.s$6UH6+6f)Ec+0\A4(9QFD5W8AISth+63#@6#sCi=MhD..'g6?6XGCNCV?Eckq&$6UH6+r![Ch5qRART@q+EVXHAISth+60.E+*Wp -%:gn!J+D,%uF(Gdf+Io+D,%uF(Gdf+6<(@r-9uAOpB@A7]dNDf9`/EZet&Cia.s$6UH6+=63+6H#FCA]gFC@gRH$=1IA9/kA.1HV,+6H#FCA]gFCA*j@VTIaF6H#FE2)*:gn!J;e^Ph+Bo9^+n%,`+6H#FE2)*7GH -%@qZ;Y+6JuD.Rd-@:Njk>7Co^+5AmoLsAISth+6Q"B4XkZ -%Bk;1(@6]7ART[JDes?4F$Xji025khDG>%eBln966Z6dZEcVZs+p#FE2M8%144#+U4EA5-KQCNCV1@;L!r%144#+63#@63&Ec"6]ASl!rFE8RHEckq&$6UH6+MFCfK$@ruF.AKYSnCia.s$6UH6+sZ9+qmATMg! -%@q?ce%144#+6W2D..6E"@n%,`+>6PZ7T_un -%AS#C=Dg56"<,u\i6>q*EAnH*qF=63+6PZ7T`W1@;p0sA0=63+6Q"EcYe[;aWoj -%D/Ej%FE9oiE^XhU8T&-Y+EVXHAISth+>6Q"EcYe`6UO[jDe<^"ATLF\6Z6gYASuU2+EVXHAISth+>6Q"F)t;oEc6)5BM))i7nIQ+ -%B4Z-,AmoLsAISth+>6Q3ATMF'G%F$ZE-Y8gB4W3-Eckq&$6UHE:i^,gATDs*6qKa?=\De(Cis<1+EVXHAISth+>6Q3ATMF'G%F*= -%;b:k=D]iY#Cia.s$6UHE:i^,gATDs*7VlLTDImm1+EVXHAISth+>6Q3ATMF'G%F3QCh@d-DIlCWAoAf(@;L!r%144#02Q\#F(KB8 -%APZ,o6Z6gYASuU2+D,%uF(Gdf+6Z8@<-Hd@:s-o0b"I4+>6Z9@WQ+& -%7W30dF!,RFF_)!h+6_^;IOHR6:XUbAoAeF;Is]`G%D*i+H-@;U&p$9UE[$9gWr -%F(KH4@:s.^AThctAISt~> -%_; (AI12 Job Options Data) , -%_77 -endstream endobj 24 0 obj <>stream -75 /Int (AI12 Job Options Size) , -%_(Adobe PDF Preset.joboptions) /String (AI12 Job Options Name) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/inklst.count) , -%_; (AI11 Ink List Dict) , -%_0 /Bool (AISaveMultipleArtboards) , -%_1 /Int (AI9 Document Setup panel) , -%_/Dictionary : /NotRecorded , -%_([Illustrator-Standard]) /UnicodeString (/attributes/collectionName) , -%_0 /Int (/attributes/AI11PDF_TrimMarks) , -%_1 /Int (/attributes/AI12PDF_Standard) , -%_0 /Real (/attributes/AI11PDF_BleedLeft) , -%_1 /Int (/attributes/AI14PDF_DocBleed) , -%_0 /Int (/attributes/AI12PDF_Trapped) , -%_0 /Int (/attributes/AI11PDF_ColorBars) , -%_1 /Int (/attributes/AI11PDF_Overprint) , -%_1 /Int (/attributes/AI11PDF_BleedLink) , -%_0 /Int (/attributes/AI11PDF_FastWebView) , -%_(Dies sind die Standardeinstellungen beim Speichern einer Illustrator-Datei als PDF-Dokument. Verwenden Sie diese Einstellungen, wenn Sie die Datei später in Illustrator oder in einem Layoutprogramm wie z. B. InDesign bearbeiten möchten oder der endgültige Verwendungszweck der Datei unbekannt ist.) /UnicodeString (/attributes/AI12PDF_Description) , -%_0 /Real (/attributes/AI11PDF_BleedRight) , -%_1 /Int (/attributes/AI11PDF_CompressArt) , -%_0 /Int (/attributes/AI11PDF_RegMarks) , -%_0 /Real (/attributes/AI11PDF_BleedBottom) , -%_0 /Real (/attributes/AI11PDF_BleedTop) , -%_0 /Int (/attributes/AI11PDF_PageInfo) , -%_75 /Int (/attributes/AI10 flattener raster-vector balance) , -%_1 /Int (/attributes/AI12PDF_OutputIntentProfileNamePolicy) , -%_1 /Int (/attributes/AI11PDF_PreserveIllustratorEditingCapabilities) , -%_300 /Int (/attributes/AI11PDF_MonochromeDownsampleResolution) , -%_1 /Int (/attributes/AI12PDF_ProfileInclusionPolicy) , -%_1 /Int (/attributes/AI10 flattener outline strokes) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkBottom) , -%_1 /Int (/attributes/AI11PDF_GrayCompressionQuality) , -%_300 /Real (/attributes/AI9 Output Rasterization Resolution) , -%_150 /Int (/attributes/AI11PDF_ColorDownsampleResolution) , -%_1 /Int (/attributes/AI11PDF_MonochromeDownsampleKind) , -%_1 /Int (/attributes/AI12PDF_ColorConversionPolicy) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkLeft) , -%_450 /Int (/attributes/AI11PDF_MonoDownsampleImageAbove) , -%_150 /Real (/attributes/AI9 Mesh Rasterization Resolution) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/AI11PDF_FlatteningPresetName) , -%_6 /Int (/attributes/AI11PDF_ColorCompressionKind) , -%_150 /Int (/attributes/AI11PDF_GrayDownsampleResolution) , -%_1 /Int (/attributes/AI10 flattener clip complex regions) , -%_() /UnicodeString (/attributes/AI12PDF_OutputConditionIdentifier) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkRight) , -%_1 /Int (/attributes/AI11PDF_ColorCompressionQuality) , -%_225 /Int (/attributes/AI11PDF_GrayDownsampleImageAbove) , -%_4 /Int (/attributes/AI11PDF_MonochromeCompressionKind) , -%_1 /Int (/attributes/AI11PDF_PreserveAcrobatLayers) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkTop) , -%_225 /Int (/attributes/AI11PDF_ColorDownsampleImageAbove) , -%_() /UnicodeString (/attributes/AI12PDF_OutputIntentProfileName) , -%_256 /Int (/attributes/AI11PDF_ColorTileSize) , -%_0 /Int (/attributes/AI10 flattener outline text) , -%_3 /Int (/attributes/AI11PDF_Compatibility) , -%_1 /Int (/attributes/AI11PDF_GrayDownsampleKind) , -%_100 /Int (/attributes/AI11PDF_SubsetFontRatio) , -%_256 /Int (/attributes/AI11PDF_GrayTileSize) , -%_0 /Int (/attributes/AI12PDF_UsePrintTiling) , -%_0 /Int (/attributes/AI11PDF_FlattenTransparency) , -%_1 /Int (/attributes/AI11PDF_GenerateThumbnails) , -%_6 /Int (/attributes/AI11PDF_GrayCompressionKind) , -%_0 /Int (/attributes/AI16 flattener anti alias) , -%_0 /Int (/attributes/AI11PDF_PrinterMarkType) , -%_() /UnicodeString (/attributes/AI12PDF_RegistryName) , -%_() /UnicodeString (/attributes/AI12PDF_DestinationName) , -%_1 /Int (/attributes/AI12PDF_DestinationPolicy) , -%_() /UnicodeString (/attributes/AI12PDF_OutputCondition) , -%_0.25 /Real (/attributes/AI11PDF_TrimMarkWeight) , -%_1 /Int (/attributes/AI11PDF_ColorDownsampleKind) , -%_; (PDFPresetCollection) , -%_0 /Bool (PerspectiveGrid_ShowHide) , -%_1 /Bool (PerspectiveGrid_Snap) , -%_; /NotRecorded , -%_; -%AI9_EndDocumentData -%AI11_BeginTextDocument -/AI11TextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24k&!+c.Q!+c.(!)rqs!-A3O!%e1M!,*f(0/=Y(+?ht35!C)Q4s2sM+>5Dk4?O`>3B8386Z6mZ<-`Fo7W30d+>5Dk -%4?O`>0H_eCrr>anGlVjbB`MQAA,oF+EWC"X/HAZKAH6?CFT?4X@/t5Jm0H`PC+?ht35!C)O4kJ.3L9!+>=p%4s3$Q+?ht34?O`>0H`J?+>5`8 -%+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H5lbEqDZF5HAH5:%D?+h[B`N2S7K@?,D?+c-+>5Jm0H`PC+?ht35!C)p+>5Gl>9H$j -%+>5Dk0d&YD+C-*R4s2L6+?Vb/0/+MQ+?Vb/0/+M24 -%0H_eCs8FtV2^ok&0d&1n5!C)O4G!&4s2sM+>5Dk./s8G48q;j+>5Gl0d&YD+?Vb/0/+Lsrr;s\r]M\Q -%0/4S(+?ht34?O`>0H_eCs8G7^5:I^.0d&1n5!C)O4G!&4s2sM+>5Dk./s8G6iKG%+>5Gl0d&YD+?Vb/ -%0/+Lsrr0H_eCs8P1\4"2:*0d&1n5!C)O4G!&4s2sM+>5Dk./s5h(a'YE -%+>5Gl0d&YD+?Vb/0/+Lsrr4)\+<2gQ0/4S(+?ht34?O`>0H_eCs"F^4#UplL0d&1n5!C)O4G!&4s2sM -%+>5Dk./s6#$nr)=+>5Gl0d&YD+?Vb/0/+Lsrr4Y^0FfNS0/4S(+?ht34?O`>0H_eCs"G!<&1J_T0d&1n5!C)O4G!&4s2sM+>5Dk./s8G2Z>T`+>5Gl1*AbE+?Vb/0/+Lsrr;sWr\u>L0/4S)+?ht34?O`>0H_eCs8G(Y3[l1)0d&4o5!C)O -%4P''4s2sM+>5Dk./s8G55m_p+>5Gl1*AbE+?Vb/0/+Lsrr;s_r]hnT0/4S)+?ht34?O`>0H_eCs8G@a -%67F$10d&4o5!C)O4P''4s2sM+>5Dk./s8H$3(;\+>5Gl1*AbE+?Vb/0/+Lsrr0H_eCs8QC)>q$mL0d&4o5!C)O4.3L8u+>P''4s2sM+>5Dk./s5h*?Z@O+>5Gl1*AbE+?Vb/0/+Lsrr4YY -%0F90N0/4S)+?ht34?O`>0H_eCs"Fg7$Rm2O0d&4o5!C)O4P''4s2sM+>5Dk./s6#%knMC+>5Gl1*AbE -%+?Vb/0/+Lsrr4Ya0G,`V0/4S)+?ht34?O`>0H_eCs"G0A'e(7Y0d&4o5!C)O4Y-(4s2sM+>5Dk./s8H -%?N4=\+>5Gl1E\kF+?Vb/0/+Lsrr4Z<0L7-10/4S*+?ht34?O`>0H_eCs"Heo6Ra-20d&7p5!C)O4Y-( -%4s2sM+>5Dk./s6#7kdF^+>5Gl1E\kF+?Vb/0/+Lsrr4ZD0M*]90/4S*+?ht34?O`>0H_eCs"Iq:@jrNR0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#KeS30+>5Gl1E\kF+?Vb/0/+Lsrr4[-0S_)"0/4S*+?ht34?O`>0H_eCs"KHeN[Z)(0d&7p -%5!C)O4Y-(4s2sM+>5Dk./s6#ShQ`b+>5Gl1E\kF+?Vb/0/+Lsrr4[G0VKp<0/4S*+?ht34?O`>0H_eC -%s"L3%UF@<=0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#V_G"t+>5Gl1E\kF+?Vb/0/+Lsrr4[O0W?KD0/4S* -%+?ht34?O`>0H_eCs"M>E_^Q]]0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#jY5dF+>5Gl1E\kF+?Vb/0/+Ls -%rr4\80]sl-0/4S*+?ht34?O`>0H_eCs"NjpmO9830d&7p5!C)O4Y-(4s2sM+>5Dk./s6#r%S+!+>5Gl -%1E\kF+?Vb/0/+Lsrr4YU0EimJ0/4S*+?ht34?O`>0H_eCs8N-"!@]-E0d&:q5!C)O4b3)4s2sM+>5Dk -%./s8H)ZLa*+>5Gl2'>(H+?Vb/0/+Lsrr4\L0`*:A0/4S,+?ht34?O`>0H_eCru_jq&1J_T0d&=r5!C)O4t?+4s2sM+>5Dk./s6#!\a[)+>5Gl2BY1I+?Vb/0/+Lsrr!0/4S.+?ht34?O`>0H_eCs"FI-!@]-E0d&Ct5!C)O45Dk./s5h,p4N`+>5Gl3$:CK+?Vb/0/+Lsrr0H_eCrrAeoUF@<= -%0d&J!5!C)O45Dk./s8H"oe`T+>5Gl0ea_64s2sM+>5Dk./s5HU&^o:+>5Gl0ea_64s2sM -%+>5Dk./s5HYQ1mV+>5Gl0ea_64s2sM+>5Dk./s5h0H`%u+>5Gl0ea_64s2sM+>5Dk./s5h1*AD&+>5Gl0ea_64s2sM+>5Dk./s6# -%!&+C%+>5Gl0eje74s2sM+>5Dk./s6#681_T+>5Gl0esk84s2sM+>5Dk./s6#6nh"X+>5Gl0esk84s2sM+>5Dk./s6#7PI:\+>5Gl -%0esk84s2sM+>5Dk./s6#82*R`+>5Gl0esk84s2sM+>5Dk./s6#8ha^'+>5Gl0esk84s2sM+>5Dk./s6#A2&Zc+>5Gl0esk84s2sM -%+>5Dk./s6#L+n?2+>5Gl0esk84s2sM+>5Dk./s6#LbOf;+>5Gl0esk84s2sM+>5Dk./s6#O"cbH+>5Gl0esk84s2sM+>5Dk./s8H -%&H5Gl0f'q94s2sM+>5Dk./s6#U+i;j+>5Gl0f1":4s2sM+>5Dk./s6#UbJSn+>5Gl0f1":4s2sM+>5Dk./s6#VD+kr+>5Gl -%0f1":4s2sM+>5Dk./s6#W%b/!+>5Gl0f1":4s2sM+>5Dk./s6#W\D:=+>5Gl0f1":4s2sM+>5Dk./s6#`%^7$+>5Gl0f1":4s2sM -%+>5Dk./s6#jtPpH+>5Gl0f1":4s2sM+>5Dk./s6#kV2BQ+>5Gl0f1":4s2sM+>5Dk./s6#mkF>^+>5Gl0f1":4s2sM+>5Dk./s6% -%+>Q;5+>5Gl0f1":4s2sM+>5Dk./s6%J24>X+>5Gl0f1":4s2sM+>5Dk./s6%cnbSL+>5Gl0f1":4s2sM+>5Dk./s6&!&I\*+>5Gl -%0f1":4s2sM+>5Dk./s6&EAMbe+>5Gl0f1":4s2sM+>5Dk./s6&J2?"1+>5Gl0f1":4s2sM+>5Dk./s6A!2$):+>5Gl0f1":4s2sM -%+>5Dk./s5H0E=*^+>5Gl0f:(;4s2sM+>5Dk./s5H+TQs?+>5Gl0fC.<4s2sM+>5Dk./s5HT`G*A+>5Gl0fC.<4s4,R5!C)Q4s3$Q -%+C-*C0d'[C4?O`>0H`%l5!C)p+?ht30/F_54kC!-J9Y!,hjT!,hj.!+>kF!,DRC!,DRW -%.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB4?O`>0H_r"2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n' -%0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`.-+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[ -%4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3' -%+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n'0/=Xurr4Yd.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR -%5!C)O4#3'+>5Jm./s8H>q$m[4s2sM+>5Gl/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&&# -%2'=P-+=R6h0F90N5!C)O4#3'+>5Jm./s6#$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4 -%+?ht34?O`>0d&'=P-+=R6h0G,`V5!C)O4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6hrsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9 -%+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM -%+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h&1J_c4s4,R5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C -%0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/ -%0/+MQ+>P&r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G[D2]uBK0/4S34>E%+>>E%+>>E%+C-*C -%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>P'!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*AS">p(dT+?Vb/0/+M245Dk>9G[D0ea_U+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o0d'aE0/4S34>E%+>>E%+>>E%+C-*C0d&7p -%5!C)Q4s3$Q+?Vb/0/+MQ+>P&o1*BjF0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;- -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Dk>9G[D0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q -%4s3$Q+?Vb/0/+MQ+>P&o2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht3>p)5Gl -%>9H$j+>5Dk>9G^E0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1E\Ir>p(dT+?Vb/ -%0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1E\D1+C-*C0d&S@ -%+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GaF0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1a"Xu>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk -%>9GaF0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S3 -%4p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GdG0d'aE0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8s+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB2'=[t>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2'?0I0/4S34>E%+>,Mo/i=bW+>5Gl0d&YD+?ht35!C)O4t?J+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG2]uBK0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9$+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=n%>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GPm>p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O4GSn>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GVo>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GYp>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O4G_r>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Gbs>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)p+?ht34?O`>0H`7r0/4SR+?Vb/0/+MQ+>t>s+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u* -%+C-*R4s3$Q+?ht34?O`>0HaRB2BXh!>p(dT+?Vb/0/+M24t?"+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`> -%0HaRB2BY"&>p(dT+?Vb/0/+M24t>s0HaXD0/4S34>E%+>>E%+>,Mo>p)GSn>p(dT+?Vb/0/+M24t>s1*BjF0/4S34>E%+>>E%+>,Mo>p)GYp>p(dT+?Vb/0/+M24t>s1a$'H0/4S34>E%+>>E%+>,Mo>p)G_r>p(dT+?Vb/0/+M245Dk>9GgH0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk2]sb.+BosN4G!E+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(E!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl -%1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(E# -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q -%4s3$Q+?Vb/0/+MQ+?(E'+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1*AbE+?ht35!C)O4GPm>p(dT -%+?Vb/0/+M245Dk>9GjI0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&% -%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt1E]sG0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]sh3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/ -%0/+M245Dk>9GjI0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u* -%+C-*C0d&4o5!C)Q4s3$Q+C-*R4s2sM+>5Dk3$9k/+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+?1K"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)k9I -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GmJ2]uBK0/4S34>E% -%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?1K'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GmJ0f1"Y+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2'?0I0/4S34>E%+>>E%+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB3$9q6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`> -%0H`@u0/4SR+?Vb/0/+MQ+?:Q!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3?U7'>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q)+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GpK0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

G_r>p(dT+?Vb/0/4S345Dk>9GpK0fC.[ -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0ea_'0d'[C4?O`>0HaRB0ea_)+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GXS+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXS+?1KL+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1*BjF -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0ea_)2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_)2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl -%1*AbE+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB -%0eje*2BZ9J0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0esk)0d'[C4?O`>0HaRB -%0esk++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GXU+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0esk+1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0esk+2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f'q.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S3 -%45Dk>9GXV+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0eskW+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp -%0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0fC.[+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f1"+0d'[C4?O`>0HaRB0f1"-+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXW+?(EK+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXW+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0f1"-0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0f1"-1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1, -%2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4G_r0/4SR+?Vb/0/+MQ+>G_r0d'aE0/4S34>E%+>>E%+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G_r1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>k9I+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G_r3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM -%+>5Dk0fC.-0d'[C4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`> -%0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht3 -%5!C)Q4s2sM+>5Dk>9GXY+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Mn0d&YD+?ht35!C)O4kC!-J9Y!,hjT!,hj.!+>kF!,DRC!,DRW.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB -%4?O`>0H_r"2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n'0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b) -%1*A"Eru`.-+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf< -%+?Vb/0/+M#/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3'+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n' -%0/=Xurr4Yd.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR5!C)O4#3'+>5Jm./s8H>q$m[ -%4s2sM+>5Gl/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&'=P-+=R6h0F90N5!C)O4#3' -%+>5Jm./s6#$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4+?ht34?O`>0d&'=P-+=R6h0G,`V -%5!C)O4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&&# -%2'=P-+=R6hrsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9 -%+>5Gl/M8e9+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h -%&1J_c4s4,R5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S34>E%+>,Mo/i=bW -%+>5Gl1E\kF+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk -%>9G[D1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD -%+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G[D3$;KL -%0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;*+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9G[D0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0eskW+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*A;/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0fC.[+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G^E0d'aE0/4S34>E% -%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>Y,t+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S3 -%45Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD -%5!C)Q4s3$Q+?Vb/0/+MQ+>Y-#+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT -%+?Vb/0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/ -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht3 -%5!C)p+?ht34?O`>0H`1p0/4SR+?Vb/0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9GaF2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>b3"+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1a"M1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E, -%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2BZ9J0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s4,R -%5!C)O4k8p0d'[C4?O`>0HaRB2'=Ur>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB2'=b!>p(dT+?Vb/0/+M24k9" -%+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=h#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG3?VTM0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0HaXD -%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0d'aE0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1*BjF0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>k8r1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1a$'H -%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2'?0I0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2BZ9J0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk2BXY-+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB2BXdu>p(dT+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S3 -%4>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM0/4S34>E%+>,Mo/i=bW+?ht3 -%5!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GSn>p(dT+?Vb/ -%0/+M240HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q -%4s3$Q+?Vb/0/+MQ+>t>s1E]sG0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G_r>p(dT+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`:s -%0/4SR+?Vb/0/+MQ+?(Dt+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1E]sG0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0eskW -%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+?1K$+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3$:.&>p(dT -%+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1K(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GmJ0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB3$9q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GmJ0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q -%5!C)Q4s3$Q+C-*R4s2sM+>5Dk3?Tt0+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%% -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3?U:(>p(dT+?Vb/0/4S345Dk>9GpK -%3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk -%>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht3 -%5!C)O4Gbs>p(dT+?Vb/0/4S34GPm0/4SR -%+?Vb/0/+MQ+>GPm0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/ -%0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I -%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXS+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk -%>9GXS+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0ea_)1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_) -%2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3) -%4s3$Q+?ht34?O`>0HaRB0eje*2BZ9J0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk -%0esk)0d'[C4?O`>0HaRB0esk++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXU+>Y-G -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E%+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q -%+?Vb/0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`> -%0HaRB0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C4?O`> -%0HaRB0f'q,+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXV+>Y-G+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GYp -%3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`),+>5Gl>9H$j+>5Dk>9GXW+>G!E+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S3 -%45Dk>9GXW+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q -%0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q -%5!C)Q4s3$Q+?Vb/0/+MQ+>G_r1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX -%+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q -%5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(. -%0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+= -%+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk0fC.-0d'[C4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q -%4s2sM+>5Dk>9GXY+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT -%+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB0fC.6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT -%+?Vb/0/4S345Dk>9GXY+>GPm>p(dT+?Vb/0/4S34Gbs0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM -%+>5Dk>9GXY+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht3>p)5Dk4?O`>0H_eCrr>OhGlVa_D#duEF9$@^FT>PE@/t'CFT?7YDZFYTDZEr@AH6TJCB.cCCB/K++>5Sp4?O`>0H`%l -%0/4S34#3'+>5Jm./s8H#Upl[4s2sM+>5Dk/M8n'0/=Xurr0H_r"2'=P-+=R6h+;cOM5!C)O4#3'+>5Jm./s5h*%5Dk/M8n'0/=Xurr4YX.3Lf<+?Vb/0/+M#/i=b) -%1*A"Es"Fd/+?ht34?O`>0H_r"2'=P-+=R6h0FTBQ5!C)O4#3'+>5Jm./s6#%OiMa4s2sM+>5Dk/M8n'0/=Xurr4Y`.3Lf< -%+?Vb/0/+M#/i=b)1*A"Es"G-9+?ht34?O`>0d&'=P-+=R6hrs:+s5!C)O4#3'+>5Jm./s8H4XhL;4s2sM+>5Gl/M8n' -%0/=Xurr<"(.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`1.+?ht34?O`>0d&'=P-+=R6h+<;mR5!C)O4#3'+>5Jm./s6##q6u\ -%4s2sM+>5Gl/M8n'0/=Xurr4Y[.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fm2+?ht34?O`>0d&'=P-+=R6h0FoTT5!C)O4#3' -%+>5Jm./s6#&Lehd4s2sM+>5Gl/M8n'0/=Xurr4Ye.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NQX+?ht34?O`>0d&'=P-+=R6h0EN[G -%5!C)O4#3'+>5Jm./s8H$n3;_4s2sM+>5Gl/M8n'0/=Xurr4YQ.3Lf<+?Vb/0/+M#/i#:,0/4S$/i#:,0/=XurrFul0d'[C4?O`>0HaRB0d&=r>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)p+?ht34?O`>0H`+n0/4SR+?Vb/0/+MQ+>P&o+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1*BjF0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q -%4s3$Q+?Vb/0/+MQ+>P&q+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1a$'H0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M, -%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G[D2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/ -%0/+MQ+>P'!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D3?VTM0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GPm>p(dT+?Vb/0/+M24P&o0d'aE0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o -%1*BjF0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GYp>p(dT+?Vb/0/+M24P&o1a$'H0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4G_r>p(dT+?Vb/0/+M24P&o2BZ9J0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Get>p(dT+?Vb/0/+M24p)5Gl>9H$j+>5Dk>9G^E0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF -%+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,t+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>Y-#+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>Y,p1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG -%+?ht35!C)O4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`1p -%0/4SR+?Vb/0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GaF2'?0I0/4S3 -%4>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>b3"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1a"M1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q -%+?Vb/0/+MQ+>b2q2BZ9J0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4k8p0d'[C -%4?O`>0HaRB2'=Ur>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4P'F+>5Gl4?O`> -%0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1E]sG0/4S34>E%+>,E,+>,E, -%+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB2'=b!>p(dT+?Vb/0/+M24k9"+C-*C0d&S@+>5Dk4?O`> -%0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=h#>p(dT+?Vb/0/+M245Gl -%0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG -%3?VTM0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0HaXD0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0d'aE0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1*BjF0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r -%1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2BZ9J0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk -%2BXY-+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT -%+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E% -%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH -%0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GSn>p(dT+?Vb/0/+M240HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s -%1E]sG0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p)G_r>p(dT+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1a"tG+?ht35!C)O4Get>p(dT+?Vb/0/+M24p)5Gl>9H$j+>5Dk>9GjI0d'aE0/4S34>E%+>,Mo -%/i=bW+>5Gl1*AbE+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`> -%0HaRB2]sq">p(dT+?Vb/0/+M245Dk4?O`> -%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl -%1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]t+' -%>p(dT+?Vb/0/+M24>E% -%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4G\q>p(dT+?Vb/ -%0/+M24>E%+>,Mo/i=bW -%+>5Gl1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O40HaRB3$9pu>p(dT -%+?Vb/0/4S345Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk -%>9GmJ2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?1K'+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+?1Ju0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q2+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GmJ0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2'?0I0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3$9q6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`@u0/4SR+?Vb/0/+MQ+?:Q!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9GpK1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U1% -%>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GpK3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U=)>p(dT+?Vb/0/4S345Dk>9GpK0ea_U+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB3?U%4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/ -%0/4S345Dk>9GpK0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34GPm -%1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0ea_/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB0ea_0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/ -%0/4S345Dk>9GXS+>GPm>p(dT+?Vb/0/4S345Dk>9GXS+>GVo>p(dT+?Vb/0/4S345Dk>9GXS+>GYp -%>p(dT+?Vb/0/4S345Dk>9GXS+>G\q>p(dT+?Vb/0/4S345Dk>9GXS+>G_r>p(dT+?Vb/0/4S345Dk>9GXS+>Gbs>p(dT+?Vb/0/4S34GSn0/4SR+?Vb/ -%0/+MQ+>GSn2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GSn2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S++?ht35!C)Q4s2sM+>5Dk>9GXT+>Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p -%+?ht34?O`>0H`)*+>5Gl>9H$j+>5Dk>9GXU+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`> -%0HaRB0esk-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl -%1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+?:QM -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>GVo0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f1"Y+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht3 -%5!C)Q4s2sM+>5Dk>9GXU+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)+ -%+>5Gl>9H$j+>5Dk>9GXV+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f'q.+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%4p(dT+?Vb/0/4S345Dk>9GXV+?:QM+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f'qX+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>GYp0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f1"+0d'[C4?O`>0HaRB -%0f1"-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXW+>Y-G+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>G\q2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3$;KL -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f1"-2BZ9J0/4S3 -%4,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f:(,0d'[C4?O`>0HaRB0f:(.+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXX+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1, -%1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB0f:(2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f:(4+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f:(5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXX+>GPm>p(dT+?Vb/0/4S34G_r0eskW+>5Gl4?O`>0d&S@ -%+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`).+>5Gl>9H$j+>5Dk>9GXY+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB0fC.1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>k9I+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXY+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD -%0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXY+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC./0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3) -%4s3$Q+?ht34?O`>0HaRB0fC./1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s4,R5!C)Q -%4s2L7+>b3)4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H=TDk1CB/JWD#eJSD?+ST=o`+6D?+GP@/t'CFX\Fd2'>"D+>5Dk0H`#'+?Vb/ -%0/+MQ+?Vb/0/+M#/i=b)1*A"Es8N?R+?ht34?O`>0H_r"2'=P-+=R6hs#VYP5!C)O4#3'+>5Jm./s8H>:C[Y4s2sM+>5Dk -%/M8n'0/=Xurr4)X.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`:1+?ht34?O`>0H_r"2'=P-+=R6h0F0*M5!C)O4#3'+>5Jm./s6# -%$7R)]4s2sM+>5Dk/M8n'0/=Xurr4Y\.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fp3+?ht34?O`>0H_r"2'=P-+=R6h0G#ZU5!C)O4#3'+>5Jm./s6#'Ib.g4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6h -%s'7&r5!C)O4#3'+>5Jm./s5h)(?[l4s2sM+>5Gl/M8n'0/=Xurr4)].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fa.+?ht34?O`> -%0d&'=P-+=R6h0FK#3'+>5Jm./s6#%4ND`4s2sM+>5Gl/M8n'0/=Xurr4Y_.3Lf<+?Vb/0/4S$/i=b)1*A"E -%s"G$6+?ht34?O`>0d&'=P-+=R6h0GQ#Z5!C)O4#3'+>5Jm./s8H%OiMa4s2sM+>5Gl/M8n'0/=Xurr4YR.3Lf<+?Vb/ -%0/4S$/i=b)1*A"Es8NKV+?ht34?O`>0d&'=P-+=R6h0EEUF5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru*=/5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru3C05!C)O4#3$2'=P,+>#3$2'=P-+=R6h0`*:A5!C)O4#3$2'=P,+>#3$2'=P- -%+=R6h+:otE5!C)p+?ht30/=Y445Gl>9H$j+>5Dk>9GXC2'?0I0/4S34,E, -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk1*A5)+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O -%4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*ACr>p(dT+?Vb/0/+M2 -%4P&s+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB1*ALu>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AS">p(dT+?Vb/0/+M24P&o0HaXD0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4GSn>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4GVo>p(dT -%+?Vb/0/+M24P&o1E]sG0/4S34>E%+>,Mo -%/i=bW+>5Gl1E\kF+?ht35!C)O4G\q>p(dT+?Vb/0/+M24P&o2'?0I0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Gbs>p(dT+?Vb/0/+M2 -%4P&o2]uBK0/4S34,Mo/i=b(2'?0I5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk1E\>*+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB1E\Ir>p(dT+?Vb/0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E -%0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB1E\D1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j -%+>5Dk>9GaF0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C -%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk -%>9GaF0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ -%+>k8r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S( -%+?ht35!C)Q4s2sM+>5Dk>9GdG1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9! -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E, -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB2'=k$>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0fL4\+>5Gl -%4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I5!C)Q4s3$Q+C-*R4s2sM+>5Dk2BXY-+BosN4G!E+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M2 -%45Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD -%0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM -%0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p)GSn>p(dT+?Vb/0/+M240HaRB2BX_0+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1E]sG0/4S34>E%+>,Mo/i=bW -%+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G_r>p(dT -%+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo -%/i=bW+>5Gl1a"tG+?ht35!C)O4Get>p(dT+?Vb/0/+M24,Mo>p) -%0H`:s0/4SR+?Vb/0/+MQ+?(Dt+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1E]sG -%0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O -%45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI -%0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh6+C-*C0d&S@+>5Dk4?O`>0HaRB/i=b(2'=M/ -%+C-*R4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF -%+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1K$+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3$:.&>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+?1K(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GmJ0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+?1Ju1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q4+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GmJ0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk3?Tt0 -%+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/ -%0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%3?U:(>p(dT+?Vb/0/4S345Dk>9GpK3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U%6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/ -%0/4S34GPm0/4SR+?Vb/0/+MQ+>GPm0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXS -%+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXS+?1KL+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)2'?0I -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_)2BZ9J0/4S34>E% -%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht3 -%5!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0eje*2BZ9J -%0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0esk)0d'[C4?O`>0HaRB0esk++C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXU+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C4?O`>0HaRB0f'q,+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXV+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2]uBK -%0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GYp3$;KL0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`),+>5Gl>9H$j+>5Dk>9GXW+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q -%0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ -%1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG -%+?ht35!C)p+?ht34?O`>0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r1a$'H -%0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht3 -%5!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3?VTM -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.0HaXD0/4S34>E% -%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0fC.-0d'[C -%4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXY+>Y-G+>5Gl4?O`> -%0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3 -%4?O`>0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0fC.6+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXY+>G -endstream endobj 25 0 obj <>stream -Pm>p(dT+?Vb/0/4S34Gbs0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>G\q>p(dT+?Vb/0/4S3 -%45Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)/+>5Gl>9H$j+>5Dk>9GXZ+>G!E+>5Gl4?O`>0d&S@ -%+>5Dk>9GOU+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O4Ghu0/4SR+?Vb/0/+MQ+>Ghu0d'aE0/4S34,Mo -%/i=b(2'?0I5!C)Q4s3$Q+C-*R4s4,R5!C)Q4s2L7+>P''4s3$Q+?ht3>p(dT+BosN4=p%4s2sM+>5Dk0d&YD+?Vb/0/+M( -%+?ht34?O`>0H`.o5!C)p+?ht30/Oe64kJ!+[N$0/Xk74I.0(n!/c[p4 -%3rhJF>l]9QU*(-m)'BqB0HgNA#quB6!\ad3#qu`@%58;H&MOqR5qkY[75.4c8MFX.K.r!5LG4`BRkU?dSM6WhTeN5qV(ef$WA)4D -%j"TRKk:l5Gl./s5H>UTSV!.+^@!2gqV+<3'@0FBKB0FfcJ0G6&Rrr`9( -%rs8WIs#^6bs5b[P0/=Xurr4)T+=/-W.3L9"+=R6h0EEj/rs\o;.3L9#+>G!&4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H;ZL_9AcQp% -%+>5Sp4?O`>0H_eCru`1%*A@LJ!\ad3#qu`@%58;H&MOqRSM6Whq_7t&rr3$!$3(G6%f[II)uh#[4o\e:+>5Gl./s5h(a'eP#VZT> -%$nr/F&24gu#ld!d>:C[J1*A"Eru`!u,p4N`+>5Mn./s6#!AFTT%0$ed+>5Po1*AbE+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+?Vb/ -%0/+M'+?ht3>p)5Sp4?O`>0HaRB4?O`>0H`J?+>5Dk./s5H>6%CuDZFeXD#duEC]J#HEr[<_=o`+6B`MWCBE2TDD?+8KDZFeX -%D#duEF9#Sq+>5Vq4?O`>0H`+n0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr0eP.&0/t(. -%+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0+D,%uF(HII -%1,'hmEckq90/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C-AmoLsAKWW]2BZU?Cia/10/>I/FE2M8+>5K0 -%+D,%uF(HII1-$Ih@;L!r+>5N)+>=ok1GL"a@;L!r+>5N++D,%uF(HII1G^.c@;L!r+>5N-+D,%uF(HII1Gp:0+>5N/+>>E%+>5N0 -%+>P&m1H6L61*A5+3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b84s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#* -%3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ -%0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD -%5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%uF(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9 -%Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q -%0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)f -%Ch6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p -%+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kL!*q#r0/Xk74=ok0d&/&0H`#(+>>E%+>5Mn0J5%%0/Oe*/heD$2'=S*0H`#,+>Ful2]sh-1*A50+>=ok -%3?WEaF_)[K0ea_.+>5H(+>P&m0esk,+>5H*+>=ok0f1"/2D-[+0/5=,FE2M8+>5H-+>,Mo0/5C.>9GOX+>GK&+>GK)1E]sG0/5F/ -%>9GUP0H`&%0H`&%0HaXD0/5I0>9GXQ0H`)&0H`)&0HaXD0/>4(2BXY.0d((:Cia/10/>:*0H`#(1E^:@,0H`#(2'=Rq -%0/>I/05bK?+>5K.+D,%uF(HII1,pC0DJO1AmoLsAKWW^0H`J?+?ht30/G=*1H$j>+>5N++?Vb/5!C)B1G^.-+>5N-+>=ok -%1Gp:/+>5N/+>7VHC`kAe2]sds0/GR1AmoLsAKWW^3?U!u0/P@*1*AbE+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L<+?Vb/ -%0/+MQ+?Vb/0/+M242E3BK2BXt60ek::3AWNM+?);@2_I'I0f:j3 -%3&*-B/i,LD2)QL83B9#N3&NEJ2BXt60ek::3AWNM+?);@2_I'I0f:j33&*-B/i,LD2)QL83B9#N3&NEJ2BXt60ek::3AWNM+?);@ -%2_I'I0f:j33&!9J/iYdH0JXb03B9#N3&NEJ2BXt52`*-H2`*3D+?);@2_I'I0f:j33&!9J/iYdH0JXb03B9#N3&NEJ2BXt52`*-H -%2`*3D+?2241bL[G0K(g33&!9J/iYdH0JXb11bgg>2E3BK2BXt52`*-H2`*3D+?2241bL[G0K(g33&!9J/iYdH0JXb11bgg>2E3BK -%2BXt52`*-H2`*3D+?2241bL[G0K(g33&*-B/i,LD2)QL91bgg>2E3BK2BXt60ek::3AWNM+C-*R4s2L6+?Vb/0/+M'+>5Jm>9GXQ -%0H`&%0H`&%0H`)&0H`;0/iPUD0f1"23%d'H2Dd-2>p(dZ+>Gi.0H`#.+>Gi.0H`PC+?ht35!C)O42BXt62DZsE2)R0K+?);>3%cp>0f:j33&*2BXt62DZsE2)R0K+?);>3%cp>0f:j33&*2BXt61,gg@1Gh'L+?);>3%cp> -%0f:j33&*0I/i#4>3&Vm<3B&oM0eb=>2BXt61,gg@1Gh'L+?);>3%cp>0f:j33&*0I/i#4>3&Vm=2)dNJ2_[0E1E\Y31,gg@1Gh'L -%+?25;3A*6E2_[$13&*0I/i#4>3&Vm=2)dNJ2_[0E1E\Y31,gg@1Gh'L+?25;3A*6E2_[$13&*0I/i#4>3&Vm=2)dNJ2_[0E1E\Y3 -%2DZsE2)R0K+?25;3A*6E2_[$13&*Ful1*BdD0eP.&0J5%%0J5%%0eP.&/ho%<1c6C63%d'H -%2*!E7>p(dZ+>Gi.0H`#.+>Gi.0H`PC+?ht35!C)p+?ht35!C)B0d&S@+>5Dk4?O`>0H`J?+>5Dk1E\>*+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl -%./s5H1FXG14s4,R5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`> -%0H`%l0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+F -%ru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl -%./s5HX!o/E1*A"ErrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9# -%+=R6h+;cOM5!C)O4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok -%0/=Xurr2u1.3L9"+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1. -%+?ht34?O`>0H`=t0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H -%]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM -%+>5Dk0f'q*0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a -%1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%0fC.-0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+F -%ru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+ -%0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nD -%s"GHB+>5Jm./s6#*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a -%1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%0fL4.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+F -%ru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n) -%0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+,0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/ -%+>5Po./s5h)(?[l4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nD -%ru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h)(?[l4s2sM+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3 -%+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm -%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l -%4s2sM+>5Dk1H6L10d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H -%]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM -%+>5Dk1bg++0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%1c-=.0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+F -%ru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4 -%D?+_XDuaGLC]J9#+?ht30/5@-AmoLsAKX0#+>5Gl>9H$j+>5Dk4?O`>0H_eCrr>=b;?0&a;ufJi6NA5/8H;*X70"G1;ZKbs<<,De -%8H;Nd%4NDQ2'>"D+>5Dk>9H$j+>5Dk4?O`>0H`J?+>5Dk./s5q+>5Sp4?O`>0d&/&0H`#(+>>E%+>5Mn0J5%%0/Oe*/heD$2'=S* -%0H`#)0H`J?+?ht30/G=*1,COA2BXY/1E\@o0/GI.0H`PC+>5Vq0H`PC+?ht30/4S(3$:CK+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M2 -%45Vq4?O`>0H`%l0/4S+2_HsC+>5Vq0eP.&00(.//heD$2)?@;4Ful0d'[C0eP.&/i#FH0Jjn)1G^sF2'=M.0f:jL+C-*R4s3$Q+>5T1+EVXH -%AKWWa1a"M,/heD$2`W!C45Dk0d&,(+BosC/heD&/heD&/heD%/heDR+?ht35!C)B3&VmA -%4p)5H'+?Vb/0/+M*+>5JmFE2M8+?ht35!C)B -%0d&S@+>5Dk>9H$j+>5Dk0H`PC+C-*C1*BdD4?O`>3B838:dZ?Y2'=Rq0/aqW+?Vb/00)$801I';0ea_(+>5Dk4?O`>0HaRB2`WlW -%/iY^C2)ZR:0K1g@3&`ZJ1*BjF5!C)B0d'[C0J5%%0J5%%1bgm@3&3KK+>Yo.2).*K1E]sG0/Xk-+>5Vq>9H$j+>5`8+>6V80/4SR -%+>>E%+>>E%+>bf2/iYUH0d&81/i>@D2)?@\+>5Vq>9H$j+>5`8+>6V80/4SR+>>E%+>>E%+>bf2/iYUH0d&81/i>@D2)?@\+>5Sp -%1*A5.+BosN45H'+>Yf+3ANQQ2]sb.1a"A+3A*-F0fV090/5=,0eb472E5Dk4?O`>0HaRB0J5%%1G^XD1,q3O -%+C-*R4s2L5+BosB/heD"1H@'E1bgmK+>bf2/iYUH0d&2)/ho7E1cZ[a+>5Vq>9H$j+>5`8+>6Y90/5=,4?O`>0H`)0+>5Jm0H`#+ -%+D,%uF(HIX4s2L:+BosN45Gl>9GUP0H_r'3A*-F0fD$71bgd=3&EQP2BX_./ho7E1cZ[a+>5Sp>9G^Y+>kkr1H$@5 -%1E\M0+>Ynu0d&;.+>Ynu1H6L3+>kns2)?@41a"S5+>bhr1cQU4+C-*C3$;EJ2`WlW/i#C@2`)X:0K(pD1H$pH1a"b70ek:=3B8iM -%+?2)13%d3M1,1^1>p(d\+BosI3B9#N1,q!I1a"b32E5H(+EVXHAKWW\1*A/) -%3A*-F0fD$70/57*0eb472E5K(+>=p%4s4,R5!C)p+?ht3>p)p)0H`J?+>5Dk -%./s5H70$6d9E7Wa:&n5n+95@@=TD7u70$6d6NC!a8H;Qe;ue$@6NBm^:&m``8H;6\%4NDQ2'>"D+>5Dk>9H$j+>5Dk4?O`>0H`J? -%+>5Dk./s5q+>5Sp4?O`>0d&/&0H`#(+>>E%+>5Mn0J5%%0/Oe*/heD$2'=S*0H`#)0H`J?+?ht30/G=*1,COA2BXY/1E\@o0/GI. -%0H`PC+>5Vq0H`PC+?ht30/4S)2'>(H+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M245Vq4?O`>0H`%l -%0/4S+2_HsC+>5Vq0eP.&00(.//heD$2)?@;4Ful0d'[C0eP.&/i#FH0Jjn)1G^sF2'=M.0f:jL+C-*R4s3$Q+>5T1+EVXHAKWWa1a"M,/heD$2`W!C45Dk0d&,(+BosC/heD&/heD&/heD%/heDR+?ht35!C)B3&VmA4p)5H'+?Vb/0/+M*+>5JmFE2M8+?ht35!C)B0d&S@+>5Dk>9H$j+>5Dk0d&YD+C-*C1*BdD4?O`> -%3B838:dZ?Y2'=Rq0/aqW+?Vb/00)$801I';0ea_)+>5Dk4?O`>0HaRB2`WfV/ho%72)ZR:0et[?1,CaH2BZ9J5!C)B0d'[C0J5%% -%0J5%%2D?j<2D@!F2]sn7/i>C<2)-4Z+>5Sp1*A5.+BosN45Gl>9GUP0H`&%0H`8-0eP@<2)I671H$jC1,(R?+C-*C -%2BZ3H4?O`>3B838;BRVI+BosB/heD%/heD+0JP1<0Jt[G+>Yo.2)6jC0d'aE0/Xk-+>5Vq>9H$j+>5`8+>6D20/5.'1G^XD1,q3O -%+>5H++>#B0/i5C>3&r*70f:(.0J5(<3A``=0/+M24p)5Gl>9GUP0H_r'3A*-F0fD$72D?j< -%2D@!F2]sh//ho7E1cZ[a+>5Vq>9H$j+>5`8+>6Y90/5=,4?O`>0H`,.+>5Jm0H`#++D,%uF(HIX4s2L:+BosN45Gl -%>9GUP0H_r'3A*-F0fD$72D?j<0K1mE2]sh//ho7E1cZ[a+>5Sp>9G^]+>kns1c6C41*AD4+>kqt0d&>0+>l,$1cZ[73$:(6+>Ynu -%2)-411*AD6+>kqt0d&81+>ccHO53?U.6+>bbp0d'aE0/t(Y+?);>3%cp>0f:j33&*0C/iPO?2E2g=2)dNJ0fM$M1E\Y32_cp@ -%1G^^>+C-*C3?VNK2`WfV/ho%72)ZR:0etI92_m*G3$:1<3B/WH1GUdB+?2)70eP7<1GCO+>p(dT0d(RYF_)[K0esk'1H@'E1bgmK -%+>5H*+>GQ&0fD$K3?Tt10H`%l5!C)p+?ht3>p)p)5Dk1*A5)+>GW( -%0H`#(+D,%uF(HII1E^:=ok3?U".0H`#'0H`&%0H`#'0d&1n0/54) -%0H`#'1E\@o0/5:+0H`#'2'=Rq0/5@-0H`#'2]se,0H`#'3$<<`F_)[K0f^@g@;L!r+>5K(+EVXHAKWW]0d((:Cia/10/>:*AmoLs -%AKWW]1E^:@,AmoLsAKWW]2'?L>Cia/10/>F.AmoLsAKWW]2^!3_F_)[K1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N* -%+D,%uF(HII1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful1H$@0/heD$1H-F3+>5N1+>bhr0/GU20H`#*0Hat9Cia/1 -%0/PC+1*A5,1*A7n0/PI-4?O`>0H_u*+?ht30/PL.1*A5,2'=Xs0/PR02]sb12]sds0/PX20H`#*3?Tn./heD$2)$.)0eP.&0/YI, -%0H`#+1*C1;Cia/10/YO.4?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0J5%%0J5%%0J5%%>p)3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0J5%%0J5%%0J5%%>p)3B8386U=:CAU&;` -%Ch7KpATAnW4s2L92B[*^F_)[K2)cXi@;L!r+>5T3+EVXHAKWW`3?VpBCia/10/bL,AmoLsAKWWa0d&.m0/bR.0H`#,1E\D)0H`#, -%1a"V-0H`#,2'=S*0H`#,2BZ3H>p(dY2]up(dY3$9mt0/bg50H`#-0H`%l0/kU.1a"G11*A8'0H`#-1E\A(0H`#-1a$C=Cia/1 -%0/ka2AmoLsAKWWb2BZU?Cia/10/kg4FE2M8+>5Z5+EVXHAKWWb3?UFH+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ -%0H`)&0H`)&0H`&%0HaXD5!C)Q4s2L<0Hat9Cia/10/t[/0H`#.1*AA*0H`#.1E\J+0H`#.1a$C=Cia/10/tg30H`#.2BY+E+>5`8 -%+>6Z-D/a<&6ZmHlDf%sT@5]5+>GQ(/heD$3&i%&Eckq95!C)B1E\eB+>5Dk0H`#'+>>E%+>5Jm0J5%%0/F_)/heD$ -%1a"J)0H`#++>>E%+>5Vq0d&,.+>GK(+>5\s0H`#/+EVXHAKWW\0H`7r0/51(1*A5)1*A=p0/57*0H`#'1a"S4/heD$0f:(qEckq9 -%0/5@-/i=b)0fL4Z+>,Vr0eP.&0eP7<+C-*C0fU:[+>>E%+>>E%+>>E%+C-*C0f^@\+>GK&+>GK&+>GK&+C-*C1,'h/+>5K)+D,%u -%F(HII1,9t++>5K++D,%uF(HII1,L+-+>5K-+>=ok1,g=/DJF.AmoLsAKWW]3$9klBl"nF1-$Ih@;L!r+>5N)+?Vb/5!C)B -%1GL".2D-[+0/G@+4?O`M4s2L71E\@o0/GF-0H`#)2'=Rq0/GL/05bK?+>5N0+>=ok1H6Lh@;L!r+>5N2+>=ok1b^%-+?ht35!A~> -7747 7891 /RulerOrigin , -; -/AI11UndoFreeTextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H9`TG= -%EWBeR@/sg5Jm0H`PC+?ht35!C)p+?ht30/Xk74kD -%!$D8/!,)@@!-/'J!+Q"N!+c.N!$D8?!-A3d!,MXH!*q#r0/aq84Ful0d&2+/heD$1*C1;Cia/10/F__@;L!r+>5PoFE2M8 -%+>5Sp1,gg>+>5Vq0eP.&0/k"./heD$3$9mt00(.//heD$0ea_(/heD$0eje*+>5H)+>=ok0f'q++>5H++>=ok0f:(-+>5H-+>=ok -%0fL4//heD$0fU:tEckq90/5I0AmoLsAKWW]0Hat9Cia/10/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C- -%AmoLsAKWW]2BZU?Cia/10/>I/AmoLsAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l0/G=*AmoLsAKWW^1*C1;Cia/10/GC,AmoLs -%AKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR10H`#)3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b8 -%4s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#*3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z- -%D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%u -%F(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3 -%>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_ -%F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B -%3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kH!,)?T!)il>!-nQ\!+c.9.3L9$+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#* -%+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K -%0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLs -%AKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L7 -%0d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ0H`%l5!C)p+?ht35!C)B0d&S@+>5Dk4?O`>0H`J?+>5Dk0H`#'+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R -%5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\ -%.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h -%)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"E -%rrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O -%4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9" -%+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t -%0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nD -%ru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2 -%+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm -%./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l18 -%4s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6# -%*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1 -%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm -%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+,0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l -%4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h -%*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nDru`@3+>5Jm./s5h*%5Po./s5h)(?[l4s2sM -%+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L1 -%0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1 -%+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nD -%rrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K -%+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9# -%+?ht30/5@-AmoLsAKX0#+>5Jm4?O`>0H`(m0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr -%0eP.&0/t(.+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0 -%+D,%uF(HII1,'h_@;L!r+>5K)+D,%uF(HII1,9ta@;L!r+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/ -%+D,%uF(HII1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful -%1H$@0/heD$1H-F3+>5N1+>=ok1H?R3+>5Q*+D,%uF(HII1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8 -%+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4-+>5T-+D,%uF(HII2)?@;45Dk -%0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF<45Dk0d&,(+BosC/heD%/heD% -%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%u -%F(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z- -%+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/ -%00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW( -%+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$802lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z -%4s2L7+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q -%0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%% -%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLsAKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e -%@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L70d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ -; -%AI11_EndTextDocument -%%EndSetup -%AI5_BeginLayer -1 1 0 1 0 0 1 0 79 128 255 0 50 0 Lb -(repository-hero) Ln -%_/ArtDictionary : -%_/XMLUID : (repository-hero) ; (AI10_ArtUID) , -%_; -%_ -1 A -0 Xw -0 A -u -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -1 /StoryIndex , -/Art : -X= -0 A -0 Xw -1 Ap -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -832.8135 -341.3213 m -231.208 -341.3213 L -231.208 -304.8008 L -832.8135 -304.8008 L -832.8135 -341.3213 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (text-eslint-src) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -257.2466 -336.9238 m -257.2466 -338.7295 L -234.2017 -338.7295 L -234.2017 -304.8027 L -257.0093 -304.8027 L -257.0093 -306.6094 L -236.292 -306.6094 L -236.292 -320.1982 L -255.7739 -320.1982 L -255.7739 -322.0039 L -236.292 -322.0039 L -236.292 -336.9238 L -257.2466 -336.9238 l -f -*U -*u -282.9551 -314.4961 m -282.7178 -308.6992 278.3462 -305.8008 272.0742 -305.8008 c -268.2251 -305.8008 262.7607 -307.416 262.7607 -313.0234 c -262.7607 -318.4883 268.5581 -319.3906 274.3071 -320.5781 c -280.1045 -321.7656 285.9014 -323.2393 285.9014 -329.9863 c -285.9014 -337.0195 279.1538 -339.5371 273.9746 -339.5371 c -266.0396 -339.5371 259.5776 -336.2588 259.6724 -327.5156 c -261.7632 -327.5156 L -261.3354 -334.9277 267.2749 -337.7314 273.9746 -337.7314 c -278.061 -337.7314 283.8105 -335.8789 283.8105 -329.9863 c -283.8105 -324.2373 278.0137 -323.2393 272.2168 -322.0508 c -266.4673 -320.8633 260.6704 -319.4854 260.6704 -313.0234 c -260.6704 -306.5137 266.7046 -303.9961 272.0742 -303.9961 c -279.1538 -303.9961 284.7134 -307.0371 285.0459 -314.4961 C -282.9551 -314.4961 l -f -*U -*u -290.75 -304.8027 m -292.8403 -304.8027 L -292.8403 -336.9238 L -312.0845 -336.9238 L -312.0845 -338.7295 L -290.75 -338.7295 L -290.75 -304.8027 l -f -*U -*u -314.5098 -304.8027 m -316.6001 -304.8027 L -316.6001 -338.7295 L -314.5098 -338.7295 L -314.5098 -304.8027 l -f -*U -*u -322.5879 -304.8027 m -325.2012 -304.8027 L -346.6309 -335.9258 L -346.7256 -335.9258 L -346.7256 -304.8027 L -348.8164 -304.8027 L -348.8164 -338.7295 L -346.3457 -338.7295 L -324.7734 -307.3691 L -324.6782 -307.3691 L -324.6782 -338.7295 L -322.5879 -338.7295 L -322.5879 -304.8027 l -f -*U -*u -351.1475 -306.6094 m -351.1475 -304.8027 L -377.1387 -304.8027 L -377.1387 -306.6094 L -365.1646 -306.6094 L -365.1646 -338.7295 L -363.0737 -338.7295 L -363.0737 -306.6094 L -351.1475 -306.6094 l -f -*U -*u -389.0205 -306.6094 m -389.0205 -304.8027 L -415.0117 -304.8027 L -415.0117 -306.6094 L -403.0376 -306.6094 L -403.0376 -338.7295 L -400.9468 -338.7295 L -400.9468 -306.6094 L -389.0205 -306.6094 l -f -*U -*u -440.292 -304.8027 m -442.6201 -304.8027 L -428.9829 -324.5225 L -428.9829 -338.7295 L -426.8926 -338.7295 L -426.8926 -324.5225 L -413.3501 -304.8027 L -415.7261 -304.8027 L -427.9854 -322.7637 L -440.292 -304.8027 l -f -*U -*u -444.6177 -304.8027 m -459.0625 -304.8027 L -462.9111 -304.8027 468.9453 -306.1816 468.9453 -314.3066 c -468.9453 -320.2461 465.0498 -323.6191 458.3018 -323.6191 c -446.708 -323.6191 L -446.708 -338.7295 L -444.6177 -338.7295 L -444.6177 -304.8027 l -f -1 D -446.708 -321.8145 m -458.6348 -321.8145 L -464.7646 -321.8145 466.8545 -317.7754 466.8545 -314.2588 c -466.8545 -311.7402 465.7148 -306.6094 458.9199 -306.6094 c -446.708 -306.6094 L -446.708 -321.8145 l -f -*U -*u -0 D -495.7471 -336.9238 m -495.7471 -338.7295 L -472.7012 -338.7295 L -472.7012 -304.8027 L -495.5088 -304.8027 L -495.5088 -306.6094 L -474.792 -306.6094 L -474.792 -320.1982 L -494.2734 -320.1982 L -494.2734 -322.0039 L -474.792 -322.0039 L -474.792 -336.9238 L -495.7471 -336.9238 l -f -*U -*u -521.4551 -314.4961 m -521.2178 -308.6992 516.8467 -305.8008 510.5742 -305.8008 c -506.7256 -305.8008 501.2607 -307.416 501.2607 -313.0234 c -501.2607 -318.4883 507.0576 -319.3906 512.8076 -320.5781 c -518.6045 -321.7656 524.4014 -323.2393 524.4014 -329.9863 c -524.4014 -337.0195 517.6543 -339.5371 512.4746 -339.5371 c -504.54 -339.5371 498.0771 -336.2588 498.1729 -327.5156 c -500.2627 -327.5156 L -499.8359 -334.9277 505.7754 -337.7314 512.4746 -337.7314 c -516.5615 -337.7314 522.3105 -335.8789 522.3105 -329.9863 c -522.3105 -324.2373 516.5137 -323.2393 510.7168 -322.0508 c -504.9668 -320.8633 499.1699 -319.4854 499.1699 -313.0234 c -499.1699 -306.5137 505.2051 -303.9961 510.5742 -303.9961 c -517.6543 -303.9961 523.2129 -307.0371 523.5459 -314.4961 C -521.4551 -314.4961 l -f -*U -*u -555.6689 -314.9238 m -554.7666 -309.2227 549.7773 -305.8008 544.123 -305.8008 c -535.2373 -305.8008 530.0576 -313.0703 530.0576 -321.7656 c -530.0576 -330.4619 535.2373 -337.7314 544.123 -337.7314 c -550.7275 -337.7314 555.8594 -331.8398 556.2393 -325.5195 c -558.3301 -325.5195 L -557.5693 -333.5977 551.583 -339.5371 544.123 -339.5371 c -533.9541 -339.5371 527.9678 -331.6973 527.9678 -321.7656 c -527.9678 -311.8359 533.9541 -303.9961 544.123 -303.9961 c -556.1445 -303.9961 557.7119 -314.4492 557.7598 -314.9238 C -555.6689 -314.9238 l -f -*U -*u -562.7041 -304.8027 m -576.8643 -304.8027 L -582.8037 -304.8027 587.6025 -306.9883 587.6025 -313.5459 c -587.6025 -318.1074 584.8467 -321.4814 580.333 -322.2422 c -580.333 -322.3359 L -585.3691 -322.9063 586.6045 -326.0898 586.9375 -329.6064 c -587.2705 -333.123 586.7002 -336.9238 588.0781 -338.7295 c -585.75 -338.7295 L -584.4668 -336.4014 585.2266 -332.5049 584.8467 -329.2266 c -584.4189 -325.9473 582.8037 -323.2871 576.8643 -323.2871 c -564.7949 -323.2871 L -564.7949 -338.7295 L -562.7041 -338.7295 L -562.7041 -304.8027 l -f -1 D -576.8643 -321.4814 m -581.8057 -321.4814 585.5117 -319.1523 585.5117 -313.6885 c -585.5117 -308.5566 581.4258 -306.6094 576.8643 -306.6094 c -564.7949 -306.6094 L -564.7949 -321.4814 L -576.8643 -321.4814 l -f -*U -*u -0 D -592.6416 -304.8027 m -594.7324 -304.8027 L -594.7324 -338.7295 L -592.6416 -338.7295 L -592.6416 -304.8027 l -f -*U -*u -600.7197 -304.8027 m -615.165 -304.8027 L -619.0137 -304.8027 625.0479 -306.1816 625.0479 -314.3066 c -625.0479 -320.2461 621.1523 -323.6191 614.4043 -323.6191 c -602.8105 -323.6191 L -602.8105 -338.7295 L -600.7197 -338.7295 L -600.7197 -304.8027 l -f -1 D -602.8105 -321.8145 m -614.7373 -321.8145 L -620.8672 -321.8145 622.957 -317.7754 622.957 -314.2588 c -622.957 -311.7402 621.8174 -306.6094 615.0225 -306.6094 c -602.8105 -306.6094 L -602.8105 -321.8145 l -f -*U -*u -0 D -625.1455 -306.6094 m -625.1455 -304.8027 L -651.1367 -304.8027 L -651.1367 -306.6094 L -639.1621 -306.6094 L -639.1621 -338.7295 L -637.0723 -338.7295 L -637.0723 -306.6094 L -625.1455 -306.6094 l -f -*U -*u -693.0967 -314.9238 m -692.1943 -309.2227 687.2051 -305.8008 681.5508 -305.8008 c -672.665 -305.8008 667.4854 -313.0703 667.4854 -321.7656 c -667.4854 -330.4619 672.665 -337.7314 681.5508 -337.7314 c -688.1553 -337.7314 693.2871 -331.8398 693.667 -325.5195 c -695.7578 -325.5195 L -694.9971 -333.5977 689.0107 -339.5371 681.5508 -339.5371 c -671.3818 -339.5371 665.3955 -331.6973 665.3955 -321.7656 c -665.3955 -311.8359 671.3818 -303.9961 681.5508 -303.9961 c -693.5723 -303.9961 695.1396 -314.4492 695.1875 -314.9238 C -693.0967 -314.9238 l -f -*U -*u -714.7666 -339.5371 m -704.5986 -339.5371 698.6113 -331.6973 698.6113 -321.7656 c -698.6113 -311.8359 704.5986 -303.9961 714.7666 -303.9961 c -724.8877 -303.9961 730.875 -311.8359 730.875 -321.7656 c -730.875 -331.6973 724.8877 -339.5371 714.7666 -339.5371 c -f -1 D -714.7666 -337.7314 m -723.6055 -337.7314 728.7842 -330.4619 728.7842 -321.7656 c -728.7842 -313.0703 723.6055 -305.8008 714.7666 -305.8008 c -705.8818 -305.8008 700.7021 -313.0703 700.7021 -321.7656 c -700.7021 -330.4619 705.8818 -337.7314 714.7666 -337.7314 c -f -*U -*u -0 D -735.3438 -304.8027 m -737.957 -304.8027 L -759.3867 -335.9258 L -759.4824 -335.9258 L -759.4824 -304.8027 L -761.5732 -304.8027 L -761.5732 -338.7295 L -759.1016 -338.7295 L -737.5303 -307.3691 L -737.4346 -307.3691 L -737.4346 -338.7295 L -735.3438 -338.7295 L -735.3438 -304.8027 l -f -*U -*u -769.6533 -322.0039 m -769.6533 -338.7295 L -767.5625 -338.7295 L -767.5625 -304.8027 L -788.8496 -304.8027 L -788.8496 -306.6094 L -769.6533 -306.6094 L -769.6533 -320.1982 L -786.9492 -320.1982 L -786.9492 -322.0039 L -769.6533 -322.0039 l -f -*U -*u -791.9873 -304.8027 m -794.0781 -304.8027 L -794.0781 -338.7295 L -791.9873 -338.7295 L -791.9873 -304.8027 l -f -*U -*u -829.5254 -322.0996 m -829.5254 -338.7295 L -827.7197 -338.7295 L -827.7197 -331.5078 L -827.625 -331.5078 L -825.9619 -336.4492 820.7822 -339.5371 814.7959 -339.5371 c -804.5322 -339.5371 798.8301 -331.6973 798.8301 -321.957 c -798.8301 -312.3584 804.627 -303.9961 814.8428 -303.9961 c -821.8281 -303.9961 827.7676 -308.2246 828.9551 -315.3047 c -826.96 -315.3047 L -825.3916 -309.459 821.0674 -305.8008 814.8906 -305.8008 c -805.7197 -305.8008 800.9209 -313.498 800.9209 -321.957 c -800.9209 -330.6045 805.5771 -337.7314 814.8906 -337.7314 c -822.9688 -337.7314 828.0527 -332.2197 827.7197 -323.9043 c -815.2236 -323.9043 L -815.2236 -322.0996 L -829.5254 -322.0996 l -f -*U -U -%_/ArtDictionary : -%_/XMLUID : (text-eslint) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -0 /StoryIndex , -/Art : -X= -0 A -0 Xw -1 Ap -740.4248 -288.96 m -323.5957 -288.96 L -323.5957 -252.4404 L -740.4248 -252.4404 L -740.4248 -288.96 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (text-arcticicestudio-src) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -338.9434 -252.4429 m -352.3428 -286.3691 L -350.1094 -286.3691 L -345.833 -275.4878 L -329.5825 -275.4878 L -325.2588 -286.3691 L -323.0254 -286.3691 L -336.6626 -252.4429 L -338.9434 -252.4429 l -f -1 D -345.168 -273.6826 m -337.8979 -254.4858 L -337.8027 -254.4858 L -330.248 -273.6826 L -345.168 -273.6826 l -f -*U -*u -0 D -354.7681 -252.4429 m -368.9277 -252.4429 L -374.8672 -252.4429 379.666 -254.6284 379.666 -261.1855 c -379.666 -265.7471 376.9102 -269.1211 372.3965 -269.8813 c -372.3965 -269.9761 L -377.4331 -270.5464 378.6685 -273.73 379.001 -277.2461 c -379.3335 -280.7622 378.7637 -284.5635 380.1416 -286.3691 c -377.813 -286.3691 L -376.5303 -284.041 377.2905 -280.1445 376.9102 -276.8662 c -376.4824 -273.5874 374.8672 -270.9263 368.9277 -270.9263 c -356.8584 -270.9263 L -356.8584 -286.3691 L -354.7681 -286.3691 L -354.7681 -252.4429 l -f -1 D -368.9277 -269.1211 m -373.8691 -269.1211 377.5757 -266.7925 377.5757 -261.3281 c -377.5757 -256.1968 373.4893 -254.2485 368.9277 -254.2485 c -356.8584 -254.2485 L -356.8584 -269.1211 L -368.9277 -269.1211 l -f -*U -*u -0 D -411.1235 -262.5635 m -410.2207 -256.8618 405.2319 -253.4404 399.5771 -253.4404 c -390.6919 -253.4404 385.5127 -260.7104 385.5127 -269.4058 c -385.5127 -278.1016 390.6919 -285.3711 399.5771 -285.3711 c -406.1821 -285.3711 411.314 -279.4795 411.6938 -273.1597 c -413.7847 -273.1597 L -413.0244 -281.2373 407.0376 -287.1768 399.5771 -287.1768 c -389.4092 -287.1768 383.4219 -279.3369 383.4219 -269.4058 c -383.4219 -259.4751 389.4092 -251.6353 399.5771 -251.6353 c -411.5991 -251.6353 413.167 -262.0884 413.2144 -262.5635 C -411.1235 -262.5635 l -f -*U -*u -414.5 -254.2485 m -414.5 -252.4429 L -440.4912 -252.4429 L -440.4912 -254.2485 L -428.5171 -254.2485 L -428.5171 -286.3691 L -426.4263 -286.3691 L -426.4263 -254.2485 L -414.5 -254.2485 l -f -*U -*u -442.8213 -252.4429 m -444.9116 -252.4429 L -444.9116 -286.3691 L -442.8213 -286.3691 L -442.8213 -252.4429 l -f -*U -*u -477.3184 -262.5635 m -476.415 -256.8618 471.4258 -253.4404 465.7715 -253.4404 c -456.8867 -253.4404 451.707 -260.7104 451.707 -269.4058 c -451.707 -278.1016 456.8867 -285.3711 465.7715 -285.3711 c -472.377 -285.3711 477.5078 -279.4795 477.8887 -273.1597 c -479.9785 -273.1597 L -479.2188 -281.2373 473.2324 -287.1768 465.7715 -287.1768 c -455.6035 -287.1768 449.6162 -279.3369 449.6162 -269.4058 c -449.6162 -259.4751 455.6035 -251.6353 465.7715 -251.6353 c -477.793 -251.6353 479.3613 -262.0884 479.4082 -262.5635 C -477.3184 -262.5635 l -f -*U -*u -497.5635 -252.4429 m -499.6543 -252.4429 L -499.6543 -286.3691 L -497.5635 -286.3691 L -497.5635 -252.4429 l -f -*U -*u -532.0605 -262.5635 m -531.1572 -256.8618 526.168 -253.4404 520.5137 -253.4404 c -511.6289 -253.4404 506.4492 -260.7104 506.4492 -269.4058 c -506.4492 -278.1016 511.6289 -285.3711 520.5137 -285.3711 c -527.1182 -285.3711 532.25 -279.4795 532.6309 -273.1597 c -534.7207 -273.1597 L -533.9609 -281.2373 527.9736 -287.1768 520.5137 -287.1768 c -510.3457 -287.1768 504.3584 -279.3369 504.3584 -269.4058 c -504.3584 -259.4751 510.3457 -251.6353 520.5137 -251.6353 c -532.5352 -251.6353 534.1035 -262.0884 534.1514 -262.5635 C -532.0605 -262.5635 l -f -*U -*u -562.1406 -284.5635 m -562.1406 -286.3691 L -539.0947 -286.3691 L -539.0947 -252.4429 L -561.9023 -252.4429 L -561.9023 -254.2485 L -541.1855 -254.2485 L -541.1855 -267.8379 L -560.667 -267.8379 L -560.667 -269.6436 L -541.1855 -269.6436 L -541.1855 -284.5635 L -562.1406 -284.5635 l -f -*U -*u -601.0596 -262.1362 m -600.8223 -256.3389 596.4512 -253.4404 590.1787 -253.4404 c -586.3301 -253.4404 580.8652 -255.0562 580.8652 -260.6631 c -580.8652 -266.1274 586.6621 -267.0303 592.4121 -268.2183 c -598.209 -269.4058 604.0059 -270.8789 604.0059 -277.626 c -604.0059 -284.6587 597.2588 -287.1768 592.0791 -287.1768 c -584.1445 -287.1768 577.6816 -283.8984 577.7773 -275.1553 c -579.8672 -275.1553 L -579.4404 -282.5679 585.3799 -285.3711 592.0791 -285.3711 c -596.166 -285.3711 601.915 -283.5181 601.915 -277.626 c -601.915 -271.877 596.1182 -270.8789 590.3213 -269.6909 c -584.5713 -268.5029 578.7744 -267.125 578.7744 -260.6631 c -578.7744 -254.1533 584.8096 -251.6353 590.1787 -251.6353 c -597.2588 -251.6353 602.8174 -254.6763 603.1504 -262.1362 C -601.0596 -262.1362 l -f -*U -*u -605.1963 -254.2485 m -605.1963 -252.4429 L -631.1875 -252.4429 L -631.1875 -254.2485 L -619.2129 -254.2485 L -619.2129 -286.3691 L -617.123 -286.3691 L -617.123 -254.2485 L -605.1963 -254.2485 l -f -*U -*u -635.6084 -252.4429 m -635.6084 -272.7798 L -635.6084 -276.8662 636.4639 -285.3711 646.252 -285.3711 c -654.5674 -285.3711 657.3711 -280.4771 657.3711 -272.7798 c -657.3711 -252.4429 L -659.4619 -252.4429 L -659.4619 -272.7798 L -659.4619 -280.8574 656.4209 -287.1768 646.252 -287.1768 c -634.1836 -287.1768 633.5176 -277.2935 633.5176 -272.7798 c -633.5176 -252.4429 L -635.6084 -252.4429 l -f -*U -*u -665.4512 -252.4429 m -676.5703 -252.4429 L -688.6865 -252.4429 692.25 -260.7583 692.25 -269.3584 c -692.25 -278.9565 687.3564 -286.3691 676.4756 -286.3691 c -665.4512 -286.3691 L -665.4512 -252.4429 l -f -1 D -667.542 -284.5635 m -676.665 -284.5635 L -682.9844 -284.5635 690.1602 -281.0947 690.1602 -269.3584 c -690.1602 -255.4839 681.2744 -254.2485 676.2373 -254.2485 c -667.542 -254.2485 L -667.542 -284.5635 l -f -*U -*u -0 D -697.1465 -252.4429 m -699.2373 -252.4429 L -699.2373 -286.3691 L -697.1465 -286.3691 L -697.1465 -252.4429 l -f -*U -*u -719.8594 -287.1768 m -709.6914 -287.1768 703.7041 -279.3369 703.7041 -269.4058 c -703.7041 -259.4751 709.6914 -251.6353 719.8594 -251.6353 c -729.9805 -251.6353 735.9678 -259.4751 735.9678 -269.4058 c -735.9678 -279.3369 729.9805 -287.1768 719.8594 -287.1768 c -f -1 D -719.8594 -285.3711 m -728.6982 -285.3711 733.877 -278.1016 733.877 -269.4058 c -733.877 -260.7104 728.6982 -253.4404 719.8594 -253.4404 c -710.9746 -253.4404 705.7949 -260.7104 705.7949 -269.4058 c -705.7949 -278.1016 710.9746 -285.3711 719.8594 -285.3711 c -f -*U -U -%_/ArtDictionary : -%_/XMLUID : (text-arcticicestudio) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -0 D -0 R -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 XA -2 w 224.354 -354.7666 m -839.667 -354.7666 L -S -%_/ArtDictionary : -%_/XMLUID : (bottom) ; (AI10_ArtUID) , -%_; -%_ -224.354 -245.2334 m -839.667 -245.2334 L -S -%_/ArtDictionary : -%_/XMLUID : (top) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (lines) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -U -%_/ArtDictionary : -%_/XMLUID : (title) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -u -1 Ap -202.6069 -362.6865 m -77.2339 -362.6865 L -77.2339 -237.3135 L -202.6069 -237.3135 L -202.6069 -362.6865 L -s -%_/ArtDictionary : -%_/XMLUID : (frame) ; (AI10_ArtUID) , -%_; -%_ -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -1 w 144.5532 -324.1162 m -167.561 -277.1777 L -169.7798 -277.1777 L -192.7866 -324.1162 L -190.8462 -324.1162 L -168.6704 -278.8408 L -146.4946 -324.1162 L -144.5532 -324.1162 l -f -%_/ArtDictionary : -%_(-1.570796) /String (BBAccumRotation) , -%_; -%_ -*U -%_/ArtDictionary : -%_/XMLUID : (character) ; (AI10_ArtUID) , -%_; -%_ -*u -133.9937 -324.1162 m -87.0552 -301.1084 L -87.0552 -298.8916 L -133.9937 -275.8838 L -133.9937 -277.8242 L -88.7173 -299.999 L -133.9937 -322.1748 L -133.9937 -324.1162 l -f -*U -%_/ArtDictionary : -%_/XMLUID : (code) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (box) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -LB -%AI5_EndLayer-- -%%PageTrailer -gsave annotatepage grestore showpage -%%Trailer -%%EOF - -endstream endobj 6 0 obj [5 0 R] endobj 26 0 obj <> endobj xref -0 27 -0000000000 65535 f -0000000016 00000 n -0000000144 00000 n -0000040208 00000 n -0000000000 00000 f -0000052028 00000 n -0000490271 00000 n -0000040259 00000 n -0000040593 00000 n -0000052335 00000 n -0000052222 00000 n -0000050948 00000 n -0000051466 00000 n -0000051514 00000 n -0000052106 00000 n -0000052137 00000 n -0000052408 00000 n -0000052692 00000 n -0000053741 00000 n -0000059364 00000 n -0000124953 00000 n -0000190542 00000 n -0000256131 00000 n -0000321720 00000 n -0000387309 00000 n -0000452898 00000 n -0000490294 00000 n -trailer -<]>> -startxref -490512 -%%EOF diff --git a/assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.svg b/assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.svg deleted file mode 100644 index 7b58216..0000000 --- a/assets/images/packages/@arcticicestudio/eslint-config-typescript/repository-hero.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/assets/images/packages/@arcticicestudio/eslint-config/repository-hero.ai b/assets/images/packages/@arcticicestudio/eslint-config/repository-hero.ai deleted file mode 100644 index b3089ae..0000000 --- a/assets/images/packages/@arcticicestudio/eslint-config/repository-hero.ai +++ /dev/null @@ -1,12887 +0,0 @@ -%PDF-1.5 % -1 0 obj <>/OCGs[5 0 R 27 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - repository-hero - - - - - Arctic Ice Studio - - - - - Copyright (C) 2018-present Arctic Ice Studio (https://www.arcticicestudio.com) Copyright (C) 2018-present Sven Greb (https://www.svengreb.de) - - - - - Adobe Illustrator CS6 (Windows) - 2019-08-15T16:56:29+02:00 - 2019-08-15T17:02:21+02:00 - 2019-08-15T17:02:21+02:00 - - - - 256 - 44 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgALAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9A+V/K/lmXyzpEkmkWTy PZW7O7W8RZmMSkkkruTkpSNoATP/AAn5V/6s1j/0jQ/804OIrQd/hPyr/wBWax/6Rof+aceIrQd/ hPyr/wBWax/6Rof+aceIrQd/hPyr/wBWax/6Rof+aceIrQQtppWl6f5oQWFnBaCSxkMggjSMMRMl K8AK0rhvZeqP1O11uaRDp+oRWaAUdZLf1yxr1B9SOmBKC/Rnm/8A6vlv/wBIP/X/AB2V36M83/8A V8t/+kH/AK/47K79Geb/APq+W/8A0g/9f8dlS/WLvXdIW1a+8wQILydLWGmnlvjepqaT7KApLMdh hAtBWate+Z9Oura0bVPrVzdRyyxxW2meoeEBjV2b/SBQAzLiAtqdpq+tzNcpPraafLaRG5njvdMa CkA6yhmn4sopuQdu+NLagde8yJCt3PfS2+mMR/uRl0sLCFPR3X6z6yJv9p4wB1NBh4UW661zzRbX CQPdXBaWRoYWXSarIyqz/AfrO/wozfLGk2qx6zrX1W7ubnW0s1sgn1mO400rIplJEahBOxZn/ZA3 NRgpbWpq/mdZYFvL6SwhuXWO3ubnTFWNnc8UVuFy7RljsPUC77dcaW0yvk8z2McTz67AFmmit0pY V+OZwif7v6cmwBUvl1bzN9ZuILLUG1L6oxjupbXTVMcci/aj5SXUYd1r8SpyI6HfDS2sk17W/Ss5 LbWPrpvhKYY7fS2aQfV2Cyh0adGQozcSDuDh4VtG6ZJ5vv2kH19rT0wDW50z0w1a/Z/0g1wGlQ93 qPmqK+msra/bUJ7YKboW2nIViLryVWeS6iUsV34qSaEeIxpbQ03mPXY7Jr5NSkntY1ka4ePSW/cm EkSpKrTqyMnE1FMPCi1a01fzLcXFpA+oSWpvZPStnuNL4K7+jJPQH6wf2IWOCk2mlzB5ptmgWXXI AbiQQx0sK/GQW3/f+CnAqRw+ZtektVvfr862DLz+ufod2jCfznhO7ce9aZLhRaYyX+sRtL6nmW0W GG1S+kuDZD0vq8hYK4f16GvA4KTaCOveY44lubq+ltNPcil/PpfGIAkANIouTLEpr9qRFA70w8KL T79G+bz/ANLy3/6Qf+v+R2ZO/Rnm/wD6vlv/ANIP/X/HZXfozzf/ANXy3/6Qf+v+Oyu/Rnm//q+W /wD0g/8AX/HZUR5T/wCUV0b/AJgbb/kyuMuaByTUkAEk0A6nAlAadrml6lLNHYTfWVt6CSeNWaHk SQVWanpuwp8QVjTvhIpbRV3d29nazXdzIIra3RpZpW6KiDkzH5AYFW2N9a39nDe2kgltrhBJDIAR VWFRsQCD7HcYkKgX/wCUqh/5gZf+T0eHojqmuBLsVdirsVYbqldZ17UYX0241DTrO1fTQ0DW6gTX Sq9yf30sW6x+kqkA0PIZMbBigrDUNe1HVNAMLwwaxbafqdrqYukaQCWC4sY5fhikXdmAcHkRxOEg bqo+ZF1NL25bXWhnMcFpMj2qukIsItQgfUBJG5dq8FBJ5UK7UG9UeSlnOqXunW+kXV5eMj6ekDyT E0ZWi41I8DyH35ABkgLxg0vlphCbcG6qLdgA0f8AuPufgIG1V6Ye9DHtWaKPzY09xtYw6pp7XTH7 I52c8cDN7C5eL6ckOSOrKvMN5p9ppUkl9ELiFnjRLailpZXcCJFDUBYvSmQASUL5u/3j0/8A7adh /wBRKYYqVnkNl/wpp8J2ubdDDfqftC7jYi45e5l5H6cZc1HJJp5f0h5msW0F47Aq+ppJdPCJY5nj NssrqqvHX46ryr1U4em6GVaZbaxD6v6RvYrzlx9L0oDBxpXlWskvKu3hkTSUqSzmm1bVLnQtS+q3 PrompWlxD68BnSCMK4UNDIpaH0xUPQ0G2H3qhbi9e48qeaop7aG3vbRLuC9e2/u5pPqiyCUEgNUx yIDy3BFKmmHqEdETq7rHJ5Smc8Y0v1DsegMun3MKf8FJIq/TgHVKM8wTKt3okPWSa/ARR1+C3mdj 8gFwBSo+S5Y4vJelyyuI4o7RGd2ICqoWpJJ6AYZc1HJgtvwhjtJ5l4aXHFp1zIpBULZHVLh4Cy9k RTGxB6KN8mxemaxcafb6TeT6jxOnpC5ug24MXE8h71G1MrDMqHlaK8h8saRFe1F7HZW6XIb7XqrE oevvyrjLmgJngS7FXYqw638ynSPLPly3jgDz3tlbrFcXEgt7ONhEgpLOwajNy+FFUs3bJ1ZLG01X y5LfUk8wXX6Rrv8AUY1MViPnDVml/wCerMO4UYL7k0naIkaKiKFRRRVUUAA7ADIpSPXVGp6jZ6EN 4KrfamO3oRN+6ib/AIzTL9Ko4yQ23QWtNb9Ga/daQ3w2t8H1DTvAMWH1uIfKRhL/ALM+GJ3Col/+ Uqh/5gZf+T0eDovVNcCXYq7FXYqo2tnbWqOlvGI1kkeZwO8krF3Y+5Y1xVSi0nTYr99Qjt0W9k5h 5x9o+oI1f/ghbx1/1RhtXTDSheCeZohdJG0PJmAYRuVZloT0JUYqlY8u+T7RIbho4o7WKT1LaKSd vqiSA1DRws/oKwI24rt2w2UUE5ZbS4+rznhKI29S2kBBAZkZOSkeKOwyKVObTtNf6z68EbrfBY7p ZAGWUAcQrBtjsaUw2qDsvLWg280NzBCZHt6i1Mkss6w1qD6KyO6x7VHwAbbYklFIu7OlzBI7p4m9 ORZUV2ApJE3JW69VZcUoKfy75d1C4muRHWacBbp7aaSH1RSg9b0HQPsKfFXGyim9Q0vy1HDZx3aw 2sVqpisgJPq4RSACicWTaijbEEqirHStPsS0lsGXmPiZpZJBQb/tswxJShJdK8t6tdNeRssl2qiO S5s53ikK9kd7d0ZgK7BjjZCEXbaRpMWmvp9vBGLCUSJLEu4f1KiTkerFiTyJNTjaXX9tpFzYtZXy wyWkg4GGQjieBHSp6qQPkcRaobTdG0C3uhdWv767VDGk0s8lzIqGlVRpXkKg0FQuJJRSGby55Nil hs5YYCQQYbKaUutR9mkDsVPt8OGytBOHsLJ5pJnhRpJohbylhXlECxCEHYj4z9+RtKXQ+T/LsLQl LQtHbsHt7eSWWSCNl3UxwO7RIVp8PFdu2HiKKTjAl2KuxV2KpP5Yhim8o6RFMiyRPYWyvG4DKwMK 1BB2Iwy5oHJSXy3Np3xeX7o2aDf9HTVmsz7IhIeH29Ngo/lOG+9aRum6jfTmWK/0+SyngALMGE0E gNd4ZFozdOjIre2AhUP5Ztrr6vPqd9GYr/VJPXkhb7UUQHGCE+BSMDkP5y3jiVC/zHY3E9lHd2ac 9R06QXdkvQsyAq8Vf+LY2aP6a9sQVKxJBL5ktpArKH092CuCrCssZowPQ49FTjAl2KuxV2KuxV2K sHs2Qavr4by1Nqx/SB/0qMWBUf6NB8H+kzwvt/q0yZ6bsUTNp0yavDqo0H61afU0t00ytqLiyk9W SSVljMn1c+sHXkUkr8A6435qo2X6GF5GumpLZk6nDJdaVNGYfQkaCQckjpQLLxrVSVJBPWuJtU58 3f7x6f8A9tOw/wColMEUlj/kuR9Es7JpHJ0fV5ZAC24t715WAFe0dx+En+vkpboCnc6dp8vkfVJ5 baJ5xqWogSsil6fpeYfaIrje69GdW1jZWgYWtvHAHpyESKladK8QMrtkx7yrpen6hZy6zfQR3eoa jLMZZZlWQpEsrxx26ch8KRotKdzUnc5KR6ICCl0fTBrNp5YSYSaPI91fz6aCPTT0lt/Ts2Uf7qLX BmEZ2ptTjhva0UjfNWl2Gn2UWs2EEdpqGnywmKWFVjLxNKiSQPxA5JIjU4noaEbgYInokpV5Vd9D iW8JY6Rqt7dR3dTVbe7N5JHFLv0Sb4Ubwbie7HJS3QEHAVHmG25aVJq49TzB/o0YtyV/3IWvx/6T JClB02au/Trj0+SorX79tOWDVLbR20m5tLbU5ktpVtuTtDac0b/RpJkIrtu1fbEBSm8mieXNL0ZI LvTm1T6wALqdLZruaeQrVpZWRWap/m7dsjZJTSY+VJ4ZtBtvRuJbpITJb+tcI0cxNvK0JWRX+Lmp TiSepFcEuahNsCXYq7FXYq7FUq8p/wDKK6N/zA23/JlcMuaByTXAl2KuxV2KpU//AClUP/MDL/ye jw9EdU1wJdirsVdirsVdiqSRaNrVpd30tjf2yQ31x9ZaOe1klZWMaRkB1uIgR+7H7OSsIpa2h60l 9+kbbUYYr2aNYr9WtWe2lEbMYmWL11kR1V+NfUIPh0o2FpS/wvqDTvqEuoxyaw8sL+ubci3WO3Eo jiWES86D6w5qZSan6MeJaRFxo+sXvopf31u8ME8FyqwWrxMXglWQAs88ooeNOmNhaVbXy7Zx+Xzo lyfrNqyPHISOJIkYttQ7EctiPngve1pCWvlIw+Vn0KW+e4aSWWaS9dBzZprprliyggVq9MPFva0y DIpSNNB1WyuLltG1CK2tbqR52tLm3Nwkc0h5O0RSW3ZQ7EsymvxEkUrkr70Upf4PRbVWjvZV1lbh r06txUu07p6Tco/smMxgR+n/ACgb1AOPEtKj6Dqt9PbNrOoRXNrayJOtna27W6STRnkjSl5rhmVH AZVBG4Fa0xvuWkVZaDaQ6NLpNxS6tZzcesrigZbmV5GUiv8AxZTATutIDy/5PGkT2sxvpLtrVL6M PKo5uL6eGarsDuyegBWnxVrhMrUBMtQ0eG+vbS4mIMdqsyNAVDLIs6cGDV7UwArSX22heYrK1FjZ azGLKMBLdri1M11HENgom9ZEYqNlZ4j/AJXLDYWkb5c0OPQ9JTTYpnuI45biVZZPtn6xO89GPcj1 KV79cBNqAmeBLsVdirsVdirHfKv6Z/wxpHD6tw+pW3GvOtPSWlclKrQE0/3Of8u3/JTBsrv9zn/L t/yUx2V3+5z/AJdv+SmOyu/3Of8ALt/yUx2VAw/Xf8Ux/WvTr9Rk4+ly/wB/JWvLD0Xqs8yfob14 fr/6V58Dw/Rv6U4Ur+39Q+Cv+tvgCpR/zqf/AH8n/hyYd1d/zqf/AH8n/hyY7q7/AJ1P/v5P/Dkx 3V3/ADqf/fyf+HJjurv+dT/7+T/w5Md1d/zqf/fyf+HJjurv+dT/AO/k/wDDkx3V3/Op/wDfyf8A hyY7q7/nU/8Av5P/AA5Md1d/zqf/AH8n/hyY7q7/AJ1P/v5P/Dkx3V3/ADqf/fyf+HJjurv+dT/7 +T/w5Md1d/zqf/fyf+HJjurv+dT/AO/k/wDDkx3V3/Op/wDfyf8AhyY7q7/nU/8Av5P/AA5Md1d/ zqf/AH8n/hyY7q7/AJ1P/v5P/Dkx3V3/ADqf/fyf+HJjurv+dT/7+T/w5Md1d/zqf/fyf+HJjurv +dT/AO/k/wDDkx3V3/Op/wDfyf8AhyY7q7/nU/8Av5P/AA5Md1f/2Q== - - - - - - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - xmp.did:81C243DB6CBFE911BD9AA28FB1AC607B - uuid:e0082ace-960b-4418-b0ab-b88f3c318016 - proof:pdf - - uuid:4978cad7-75c2-834c-a0a4-665e27ce28fa - xmp.did:02801174072068118083917CE3B5B58A - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - proof:pdf - - - - - saved - xmp.iid:81C243DB6CBFE911BD9AA28FB1AC607B - 2019-08-15T16:56:26+02:00 - Adobe Illustrator CS6 (Windows) - / - - - - - - Basic RGB - Document - - - 1 - False - False - - 888.000000 - 600.000000 - Pixels - - - - Cyan - Magenta - Yellow - Black - - - - - - Standard-Farbfeldgruppe - 0 - - - - Weiß - RGB - PROCESS - 255 - 255 - 255 - - - Schwarz - RGB - PROCESS - 0 - 0 - 0 - - - RGB Rot - RGB - PROCESS - 255 - 0 - 0 - - - RGB Gelb - RGB - PROCESS - 255 - 255 - 0 - - - RGB Grün - RGB - PROCESS - 0 - 255 - 0 - - - RGB Cyan - RGB - PROCESS - 0 - 255 - 255 - - - RGB Blau - RGB - PROCESS - 0 - 0 - 255 - - - RGB Magenta - RGB - PROCESS - 255 - 0 - 255 - - - R=193 G=39 B=45 - RGB - PROCESS - 193 - 39 - 45 - - - R=237 G=28 B=36 - RGB - PROCESS - 237 - 28 - 36 - - - R=241 G=90 B=36 - RGB - PROCESS - 241 - 90 - 36 - - - R=247 G=147 B=30 - RGB - PROCESS - 247 - 147 - 30 - - - R=251 G=176 B=59 - RGB - PROCESS - 251 - 176 - 59 - - - R=252 G=238 B=33 - RGB - PROCESS - 252 - 238 - 33 - - - R=217 G=224 B=33 - RGB - PROCESS - 217 - 224 - 33 - - - R=140 G=198 B=63 - RGB - PROCESS - 140 - 198 - 63 - - - R=57 G=181 B=74 - RGB - PROCESS - 57 - 181 - 74 - - - R=0 G=146 B=69 - RGB - PROCESS - 0 - 146 - 69 - - - R=0 G=104 B=55 - RGB - PROCESS - 0 - 104 - 55 - - - R=34 G=181 B=115 - RGB - PROCESS - 34 - 181 - 115 - - - R=0 G=169 B=157 - RGB - PROCESS - 0 - 169 - 157 - - - R=41 G=171 B=226 - RGB - PROCESS - 41 - 171 - 226 - - - R=0 G=113 B=188 - RGB - PROCESS - 0 - 113 - 188 - - - R=46 G=49 B=146 - RGB - PROCESS - 46 - 49 - 146 - - - R=27 G=20 B=100 - RGB - PROCESS - 27 - 20 - 100 - - - R=102 G=45 B=145 - RGB - PROCESS - 102 - 45 - 145 - - - R=147 G=39 B=143 - RGB - PROCESS - 147 - 39 - 143 - - - R=158 G=0 B=93 - RGB - PROCESS - 158 - 0 - 93 - - - R=212 G=20 B=90 - RGB - PROCESS - 212 - 20 - 90 - - - R=237 G=30 B=121 - RGB - PROCESS - 237 - 30 - 121 - - - R=199 G=178 B=153 - RGB - PROCESS - 199 - 178 - 153 - - - R=153 G=134 B=117 - RGB - PROCESS - 153 - 134 - 117 - - - R=115 G=99 B=87 - RGB - PROCESS - 115 - 99 - 87 - - - R=83 G=71 B=65 - RGB - PROCESS - 83 - 71 - 65 - - - R=198 G=156 B=109 - RGB - PROCESS - 198 - 156 - 109 - - - R=166 G=124 B=82 - RGB - PROCESS - 166 - 124 - 82 - - - R=140 G=98 B=57 - RGB - PROCESS - 140 - 98 - 57 - - - R=117 G=76 B=36 - RGB - PROCESS - 117 - 76 - 36 - - - R=96 G=56 B=19 - RGB - PROCESS - 96 - 56 - 19 - - - R=66 G=33 B=11 - RGB - PROCESS - 66 - 33 - 11 - - - - - - Kalt - 1 - - - - C=56 M=0 Y=20 K=0 - RGB - PROCESS - 101 - 200 - 208 - - - C=51 M=43 Y=0 K=0 - RGB - PROCESS - 131 - 139 - 197 - - - C=26 M=41 Y=0 K=0 - RGB - PROCESS - 186 - 155 - 201 - - - - - - Graustufen - 1 - - - - R=0 G=0 B=0 - RGB - PROCESS - 0 - 0 - 0 - - - R=26 G=26 B=26 - RGB - PROCESS - 26 - 26 - 26 - - - R=51 G=51 B=51 - RGB - PROCESS - 51 - 51 - 51 - - - R=77 G=77 B=77 - RGB - PROCESS - 77 - 77 - 77 - - - R=102 G=102 B=102 - RGB - PROCESS - 102 - 102 - 102 - - - R=128 G=128 B=128 - RGB - PROCESS - 128 - 128 - 128 - - - R=153 G=153 B=153 - RGB - PROCESS - 153 - 153 - 153 - - - R=179 G=179 B=179 - RGB - PROCESS - 179 - 179 - 179 - - - R=204 G=204 B=204 - RGB - PROCESS - 204 - 204 - 204 - - - R=230 G=230 B=230 - RGB - PROCESS - 230 - 230 - 230 - - - R=242 G=242 B=242 - RGB - PROCESS - 242 - 242 - 242 - - - - - - - - - Adobe PDF library 10.01 - - - Arctic Ice Studio - - - True - https://www.arcticicestudio.com - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 7 0 obj <>/Resources<>/Properties<>>>/Thumb 32 0 R/TrimBox[0.0 0.0 888.0 600.0]/Type/Page>> endobj 29 0 obj <>stream -/OC /MC0 BDC -0.298 0.337 0.416 rg -/GS0 gs -q 1 0 0 1 379.9258 263.0762 cm -0 0 m -0 -1.806 l --23.046 -1.806 l --23.046 32.121 l --0.238 32.121 l --0.238 30.315 l --20.955 30.315 l --20.955 16.726 l --1.474 16.726 l --1.474 14.92 l --20.955 14.92 l --20.955 0 l -h -f -Q -q -0 600 888 -600 re -W n -q 1 0 0 1 405.6338 285.5039 cm -0 0 m --0.237 5.797 -4.608 8.695 -10.881 8.695 c --14.729 8.695 -20.194 7.079 -20.194 1.473 c --20.194 -3.991 -14.397 -4.895 -8.647 -6.082 c --2.851 -7.271 2.946 -8.743 2.946 -15.49 c -2.946 -22.522 -3.801 -25.041 -8.98 -25.041 c --16.915 -25.041 -23.378 -21.763 -23.282 -13.02 c --21.192 -13.02 l --21.619 -20.433 -15.68 -23.235 -8.98 -23.235 c --4.894 -23.235 0.855 -21.383 0.855 -15.49 c -0.855 -9.741 -4.941 -8.743 -10.738 -7.556 c --16.488 -6.367 -22.285 -4.989 -22.285 1.473 c --22.285 7.982 -16.25 10.501 -10.881 10.501 c --3.801 10.501 1.758 7.46 2.091 0 c -h -f -Q -q 1 0 0 1 413.4287 295.1973 cm -0 0 m -2.091 0 l -2.091 -32.121 l -21.335 -32.121 l -21.335 -33.927 l -0 -33.927 l -h -f -Q -437.188 295.197 2.091 -33.927 re -f -q 1 0 0 1 445.2666 295.1973 cm -0 0 m -2.613 0 l -24.043 -31.123 l -24.139 -31.123 l -24.139 0 l -26.229 0 l -26.229 -33.927 l -23.758 -33.927 l -2.187 -2.566 l -2.091 -2.566 l -2.091 -33.927 l -0 -33.927 l -h -f -Q -q 1 0 0 1 473.8271 293.3916 cm -0 0 m -0 1.806 l -25.991 1.806 l -25.991 0 l -14.017 0 l -14.017 -32.121 l -11.927 -32.121 l -11.927 0 l -h -f -Q -q 1 0 0 1 541.7783 285.0762 cm -0 0 m --0.902 5.702 -5.892 9.123 -11.546 9.123 c --20.432 9.123 -25.61 1.853 -25.61 -6.843 c --25.61 -15.538 -20.432 -22.808 -11.546 -22.808 c --4.941 -22.808 0.19 -16.916 0.57 -10.597 c -2.661 -10.597 l -1.9 -18.674 -4.086 -24.613 -11.546 -24.613 c --21.715 -24.613 -27.701 -16.773 -27.701 -6.843 c --27.701 3.088 -21.715 10.929 -11.546 10.929 c -0.476 10.929 2.043 0.475 2.091 0 c -h -f -Q -q 1 0 0 1 563.4482 262.2686 cm -0 0 m -8.839 0 14.018 7.27 14.018 15.965 c -14.018 24.66 8.839 31.931 0 31.931 c --8.885 31.931 -14.064 24.66 -14.064 15.965 c --14.064 7.27 -8.885 0 0 0 c -0 -1.806 m --10.168 -1.806 -16.155 6.034 -16.155 15.965 c --16.155 25.896 -10.168 33.736 0 33.736 c -10.121 33.736 16.108 25.896 16.108 15.965 c -16.108 6.034 10.121 -1.806 0 -1.806 c -f -Q -q 1 0 0 1 584.0254 295.1973 cm -0 0 m -2.613 0 l -24.043 -31.123 l -24.139 -31.123 l -24.139 0 l -26.229 0 l -26.229 -33.927 l -23.758 -33.927 l -2.187 -2.566 l -2.091 -2.566 l -2.091 -33.927 l -0 -33.927 l -h -f -Q -q 1 0 0 1 618.334 277.9961 cm -0 0 m -0 -16.726 l --2.091 -16.726 l --2.091 17.201 l -19.196 17.201 l -19.196 15.396 l -0 15.396 l -0 1.806 l -17.296 1.806 l -17.296 0 l -h -f -Q -640.668 295.197 2.091 -33.927 re -f -q 1 0 0 1 678.2061 277.9014 cm -0 0 m -0 -16.631 l --1.806 -16.631 l --1.806 -9.408 l --1.9 -9.408 l --3.563 -14.35 -8.743 -17.438 -14.729 -17.438 c --24.993 -17.438 -30.695 -9.599 -30.695 0.143 c --30.695 9.74 -24.898 18.104 -14.683 18.104 c --7.697 18.104 -1.758 13.874 -0.57 6.795 c --2.565 6.795 l --4.134 12.639 -8.458 16.298 -14.635 16.298 c --23.806 16.298 -28.604 8.6 -28.604 0.143 c --28.604 -8.506 -23.948 -15.633 -14.635 -15.633 c --6.557 -15.633 -1.473 -10.121 -1.806 -1.806 c --14.302 -1.806 l --14.302 0 l -h -f -Q -q 1 0 0 1 330.7178 326.3184 cm -0 0 m --7.27 19.196 l --7.365 19.196 l --14.92 0 l -h --6.225 21.24 m -7.175 -12.687 l -4.941 -12.687 l -0.665 -1.806 l --15.585 -1.806 l --19.909 -12.687 l --22.143 -12.687 l --8.506 21.24 l -h -f -Q -q 1 0 0 1 354.4775 330.8799 cm -0 0 m -4.941 0 8.647 2.328 8.647 7.793 c -8.647 12.925 4.562 14.873 0 14.873 c --12.069 14.873 l --12.069 0 l -h --14.16 16.679 m -0 16.679 l -5.939 16.679 10.738 14.492 10.738 7.936 c -10.738 3.374 7.982 0 3.469 -0.76 c -3.469 -0.855 l -8.505 -1.425 9.74 -4.608 10.073 -8.125 c -10.406 -11.642 9.836 -15.442 11.214 -17.248 c -8.886 -17.248 l -7.603 -14.92 8.362 -11.023 7.982 -7.745 c -7.555 -4.466 5.939 -1.806 0 -1.806 c --12.069 -1.806 l --12.069 -17.248 l --14.16 -17.248 l -h -f -Q -q 1 0 0 1 396.6738 337.4375 cm -0 0 m --0.902 5.702 -5.892 9.123 -11.546 9.123 c --20.432 9.123 -25.61 1.853 -25.61 -6.843 c --25.61 -15.538 -20.432 -22.808 -11.546 -22.808 c --4.941 -22.808 0.19 -16.916 0.57 -10.597 c -2.661 -10.597 l -1.9 -18.674 -4.086 -24.613 -11.546 -24.613 c --21.715 -24.613 -27.701 -16.773 -27.701 -6.843 c --27.701 3.088 -21.715 10.929 -11.546 10.929 c -0.476 10.929 2.043 0.475 2.091 0 c -h -f -Q -q 1 0 0 1 400.0508 345.7529 cm -0 0 m -0 1.806 l -25.991 1.806 l -25.991 0 l -14.017 0 l -14.017 -32.121 l -11.927 -32.121 l -11.927 0 l -h -f -Q -428.372 347.559 2.091 -33.927 re -f -q 1 0 0 1 462.8691 337.4375 cm -0 0 m --0.902 5.702 -5.892 9.123 -11.546 9.123 c --20.432 9.123 -25.61 1.853 -25.61 -6.843 c --25.61 -15.538 -20.432 -22.808 -11.546 -22.808 c --4.941 -22.808 0.19 -16.916 0.57 -10.597 c -2.661 -10.597 l -1.9 -18.674 -4.086 -24.613 -11.546 -24.613 c --21.715 -24.613 -27.701 -16.773 -27.701 -6.843 c --27.701 3.088 -21.715 10.929 -11.546 10.929 c -0.476 10.929 2.043 0.475 2.091 0 c -h -f -Q -483.115 347.559 2.091 -33.927 re -f -q 1 0 0 1 517.6123 337.4375 cm -0 0 m --0.902 5.702 -5.892 9.123 -11.546 9.123 c --20.432 9.123 -25.611 1.853 -25.611 -6.843 c --25.611 -15.538 -20.432 -22.808 -11.546 -22.808 c --4.941 -22.808 0.19 -16.916 0.57 -10.597 c -2.661 -10.597 l -1.9 -18.674 -4.086 -24.613 -11.546 -24.613 c --21.715 -24.613 -27.701 -16.773 -27.701 -6.843 c --27.701 3.088 -21.715 10.929 -11.546 10.929 c -0.476 10.929 2.043 0.475 2.091 0 c -h -f -Q -q 1 0 0 1 547.6934 315.4375 cm -0 0 m -0 -1.806 l --23.046 -1.806 l --23.046 32.121 l --0.238 32.121 l --0.238 30.315 l --20.955 30.315 l --20.955 16.726 l --1.474 16.726 l --1.474 14.92 l --20.955 14.92 l --20.955 0 l -h -f -Q -q 1 0 0 1 586.6123 337.8652 cm -0 0 m --0.237 5.797 -4.609 8.695 -10.881 8.695 c --14.729 8.695 -20.194 7.079 -20.194 1.473 c --20.194 -3.991 -14.397 -4.895 -8.647 -6.082 c --2.851 -7.271 2.946 -8.743 2.946 -15.49 c -2.946 -22.522 -3.801 -25.041 -8.98 -25.041 c --16.915 -25.041 -23.378 -21.763 -23.282 -13.02 c --21.192 -13.02 l --21.619 -20.433 -15.68 -23.235 -8.98 -23.235 c --4.894 -23.235 0.855 -21.383 0.855 -15.49 c -0.855 -9.741 -4.941 -8.743 -10.738 -7.556 c --16.488 -6.367 -22.285 -4.989 -22.285 1.473 c --22.285 7.982 -16.25 10.501 -10.881 10.501 c --3.801 10.501 1.758 7.46 2.091 0 c -h -f -Q -q 1 0 0 1 590.749 345.7529 cm -0 0 m -0 1.806 l -25.991 1.806 l -25.991 0 l -14.017 0 l -14.017 -32.121 l -11.927 -32.121 l -11.927 0 l -h -f -Q -q 1 0 0 1 621.1611 347.5586 cm -0 0 m -0 -20.337 l -0 -24.424 0.855 -32.929 10.644 -32.929 c -18.959 -32.929 21.763 -28.035 21.763 -20.337 c -21.763 0 l -23.854 0 l -23.854 -20.337 l -23.854 -28.415 20.812 -34.734 10.644 -34.734 c --1.425 -34.734 -2.091 -24.852 -2.091 -20.337 c --2.091 0 l -h -f -Q -q 1 0 0 1 653.0947 315.4375 cm -0 0 m -9.123 0 l -15.443 0 22.618 3.469 22.618 15.205 c -22.618 29.08 13.732 30.315 8.695 30.315 c -0 30.315 l -h --2.091 32.121 m -9.028 32.121 l -21.145 32.121 24.708 23.806 24.708 15.205 c -24.708 5.606 19.814 -1.806 8.934 -1.806 c --2.091 -1.806 l -h -f -Q -682.699 347.559 2.091 -33.927 re -f -q 1 0 0 1 705.4121 314.6299 cm -0 0 m -8.839 0 14.018 7.27 14.018 15.965 c -14.018 24.66 8.839 31.931 0 31.931 c --8.885 31.931 -14.064 24.66 -14.064 15.965 c --14.064 7.27 -8.885 0 0 0 c -0 -1.806 m --10.168 -1.806 -16.155 6.034 -16.155 15.965 c --16.155 25.896 -10.168 33.736 0 33.736 c -10.121 33.736 16.108 25.896 16.108 15.965 c -16.108 6.034 10.121 -1.806 0 -1.806 c -f -Q -0.18 0.204 0.251 RG -2 w -q 1 0 0 1 224.3535 245.2334 cm -0 0 m -586.413 0 l -B -Q -q 1 0 0 1 224.3535 354.7666 cm -0 0 m -586.413 0 l -B -Q -0.298 0.337 0.416 RG -202.606 237.313 -125.373 125.373 re -S -q 1 0 0 1 144.5537 275.8848 cm -0 0 m -23.008 46.938 l -25.226 46.938 l -48.232 0 l -46.293 0 l -24.117 45.274 l -1.94 0 l -h -f -Q -q 1 0 0 1 133.9932 275.8848 cm -0 0 m --46.939 23.007 l --46.939 25.224 l -0 48.231 l -0 46.292 l --45.275 24.116 l -0 1.94 l -h -f -Q -EMC -Q - -endstream endobj 32 0 obj <>stream -8;Z\s9+Ji^$q(U?C>\.nkcJY"DS/P\"=PZP1@W\2-E+R3aCoD;`j7<4j'Ia+tELt)s7\uqp5 -.%9_a.12gogf;j[CF8=CWuZ;"=Uk3"J%$.U`O']:4!+2u78n?DVMGdM#U+k_s5Ys9 -is?Dh~> -endstream endobj 33 0 obj [/Indexed/DeviceRGB 255 34 0 R] endobj 34 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> -endstream endobj 27 0 obj <> endobj 35 0 obj [/View/Design] endobj 36 0 obj <>>> endobj 31 0 obj <> endobj 30 0 obj <> endobj 37 0 obj <> endobj 38 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (repository-hero.ai) -%%CreationDate: 8/15/2019 5:02 PM -%%Canvassize: 16383 -%%BoundingBox: 76 -364 811 -236 -%%HiResBoundingBox: 76.2334 -363.6865 810.7666 -236.3135 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: 0 -600 888 0 -%AI3_TemplateBox: 444.5 -300.5 444.5 -300.5 -%AI3_TileBox: 23.04 -597.6602 864.96 -2.33984 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -230 146 1 1418 903 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:44 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 39 0 obj <>stream -%%BoundingBox: 76 -364 811 -236 -%%HiResBoundingBox: 76.2334 -363.6865 810.7666 -236.3135 -%AI7_Thumbnail: 128 24 8 -%%BeginData: 5187 Hex Bytes -%0000330000660000990000CC0033000033330033660033990033CC0033FF -%0066000066330066660066990066CC0066FF009900009933009966009999 -%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 -%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 -%3333663333993333CC3333FF3366003366333366663366993366CC3366FF -%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 -%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 -%6600666600996600CC6600FF6633006633336633666633996633CC6633FF -%6666006666336666666666996666CC6666FF669900669933669966669999 -%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 -%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF -%9933009933339933669933999933CC9933FF996600996633996666996699 -%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 -%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF -%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 -%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 -%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF -%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC -%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 -%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 -%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 -%000011111111220000002200000022222222440000004400000044444444 -%550000005500000055555555770000007700000077777777880000008800 -%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB -%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF -%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF -%524C457EA8A884A8A8A884A8A8A884A8A8A884A8A8A884A87DA9FD69FF84 -%FD15FFA8FFFFFF7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87D -%A87DA87DA87EA87DA87EA87DA87DA87DA87DA87DA87DA87DA87EA87DA87D -%A87DA87DA87DA87EA87DA87EA87DA87DA87DA87DA87DA87DA87DA87DA87D -%A87EA87DA87DA87DA87DA87DA87DA87DA87DA8A8FD14FFA8AFFD04FFA8FF -%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFD05A8FFA8A87DA8A8A87EFD04A8 -%FFA8A87DA8A8FFA8FFA8FFA8A87EFFFD04A87EFFA8FFA8A87DA9FD04A87E -%A8A8FFA8FFA8A87EA8A8FFA8FFA8A87DA8A8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA87EFD14FFA8A8FD13FF7DA8FFFF7DA87E7EA8FF7DA87DA8A8A87D -%A87EA8FFA87DA87DA9FFFFA8A8FF7EA8A87DFF7DA87EA8A8FFFFA87DA87D -%A87E7E7DA87DFFFFFFA8FF7DA87D84FFA8A8FF7DA87DA8FD10FFA8FD14FF -%A8FD14FFA87DFFA8A8FFFFA8A87EFFFFFF7EFFFFA8FFFF7EA97DFFFFFF7E -%FFFFFFA8A8A8FFFFA8A8A8FD06FF7DFFFFA8A8FFA8FFFFA8A8FFFFFFA8A8 -%FFFFA8A8A8A97DFFFFFF7DAFFD0FFF7EFD14FFA9A8FD12FFA8A8A9A8FF7D -%FFA8A87DA8FD06FF7EFFFFA87DFD07FFA8847DFD05FF7DA8A8A8FFFFFF7E -%7EFD04FFA8A8FF7DFFFFFFA8A87EFFFFFF7EA87DA8FD04FF7DFD0FFFA8FD -%14FFA8A9FD12FF7EA9A8A8FF7D7EA87DA97EFD06FFA8A8FFA884A8FD07FF -%7DA8FD05FF7E7EA8A8FD04FFA87DA8FFFF84FFFFA8A8FFFFA9A8A8FFFFFF -%A87E7EA8FFFFFFA8A8FD0FFF7DFD07FFA8A8A8FD05FFA8FD04FFAFA8FD11 -%FFA87D7EA859A87DFFFFA87D7EFFFFFFA87EFF84FFA8A87DA8FFFFFF7EA8 -%FFA8847DFFFFFFA8847EFD05FFA8FFFFFFA884FFA8A8FF7DA9FFFF7EA87D -%FFFFFF7DA87DA8FFFFFFA87DFD0FFFA8FD06FFA8A8A8FD05FF7D7EFD04FF -%A8A9FD11FFA8A8FFFFAF7DA8FFFFFD04A8FFFF7DFFFFA8A9FF7EFF7DFFFF -%A87EFFFFFFA8A97EFFFD04A8FD06FF7DFFFFA8A8FF84FFFFA97DFFFF84A8 -%A8FFFF7DFFA8FF7DA9FFFF7DFD10FF7DFD04FFA87DA8A8FD05FFA8A87EA8 -%FD04FFA8FD11FFA8FFFFFFA8A8A8FFFFFFA8FF7DA87DA9FFFFA8FFFFA9FF -%A97DA87EFFFFFFA8A9FFA87D7EA8FF7EA87EA8A8FFFFA97DA87DFFFFA8A8 -%FFFFA87DA8A8FF7EA87EA8FFFFA8FF7DA87DA9FD10FFA8FFFFA8A87EFD08 -%FFA8A8FF7DFFFFFFA8AFFD69FF7EFF7DA8A8FD09FF7DFFFF84A8FFFFA8A8 -%FD69FFA8FF7EA8FD09FFA8AFFFFFA8A8FFFFA8FD1BFFA8FFA8FFFFFFA8FD -%0DFFA8FFA8FFA8FD05FFA8FD04FFA9A8FD09FFA8FFA8FFFFFFA8A9A9FD18 -%FF7EFFFFA87DA8FD07FF7EFD04FF7DFFFFA9A8FD19FFA87EFD04A87DA87D -%A8A8FFFFFFA8A87DA8FFFF7EA8847EA8A8FFFFFF7D7DA87DFFA87EA8A87D -%FF7DA8FFFFA8A87DA8A8A87DFF7E84A87EA8FD17FFA8FD04FFA8A8A8FD04 -%FFA9A8FD05FF7EFFA8A9FD1AFFA8FFFFFF7DFFFFFFA8A8A8FFFFAF7EA87D -%FFFFA8AFFF7DFD04FFA8A8FFFFFFA8A8A8FFFFA87EA87DFFFFA884A8FFFF -%FFA8A8A8FFFFFFA8FD17FF7DFD05FFA8A87DA8FFFF7DFD06FF7EA8FFA8FD -%19FFA87EFD04A87DA8A8FFA8A8FFFFA8A87EA87DFF7DFFFF84A8FFFFFF7D -%FD05FF7DFD04FF7E7DA87DFF7EA87DA87EAF7E7EA8FFFFFFA8FD17FFA8FD -%08FF7EFFA8A8FD06FFA8FFA9A9FD1AFF7DA87EAFFFFF84A8A8FFA8FFFFFF -%7EA8FFA8A8A8A9FF7EFD04FFA8FD04FFA8A8FD04FF7EA8FFA8A8FFA87EFD -%04A87DFFFFA97DA8FD17FF7DFD15FFA8FD19FFA8A8FFFFFFA8FFFFFF7E7E -%FFFFFFA8A87DFFA8847DFFFF84A8FFFFFF7DFFFFFFA87E7DFFFFFFA87E7D -%FFFF7E7DA87EFFFFFF7EA8A8FFFFFF59FD17FFA8FD14FFA8AFFD19FFA97D -%FFFFFF7DA8FFFF7DA8A8FFFFA97EA8FFFFA853A9FF7DFD04FFA97DFFFF7E -%A8A87DFFA884A8A8A8FFA85984A8FFFFFFA8A97EA8FFA859A8FD16FF7EFD -%14FFA8A8FD19FFA8A87DA884FF7DA87DAFA8A87EA884FFA8FFFFFF7DFFFF -%A8FD05FFA87DA8A8FFFFA87D84A8FFA8FFFFFFA8A8A8FFFFFFA8FFA87E7D -%A8A8FD17FFA8FD14FFA8FD6AFF7EFD14FFA9A8FD69FFA8FD14FFA8A9FFFF -%A8A87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8 -%7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8 -%7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8 -%7DA87DA87DA87DA87DA87DA87D7DFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8A8A8FFFFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF -%%EndData - -endstream endobj 40 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (repository-hero.ai) -%%CreationDate: 8/15/2019 5:02 PM -%%Canvassize: 16383 -%%BoundingBox: 76 -364 811 -236 -%%HiResBoundingBox: 76.2334 -363.6865 810.7666 -236.3135 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%%DocumentFonts: HelveticaNeueLTStd-Th -%%DocumentNeededFonts: HelveticaNeueLTStd-Th -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: 0 -600 888 0 -%AI3_TemplateBox: 444.5 -300.5 444.5 -300.5 -%AI3_TileBox: 23.04 -597.6602 864.96 -2.33984 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -230 146 1 1418 903 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:44 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments -%%BeginProlog -%%EndProlog -%%BeginSetup -[ -39/quotesingle 96/grave 128/Euro 130/quotesinglbase/florin/quotedblbase/ellipsis -/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 145/quoteleft -/quoteright/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark -/scaron/guilsinglright/oe/dotlessi 159/Ydieresis /space 164/currency 166/brokenbar -168/dieresis/copyright/ordfeminine 172/logicalnot/hyphen/registered/macron/ring -/plusminus/twosuperior/threesuperior/acute/mu 183/periodcentered/cedilla -/onesuperior/ordmasculine 188/onequarter/onehalf/threequarters 192/Agrave -/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute -/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde -/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave -/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute -/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex -/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute -/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex -/udieresis/yacute/thorn/ydieresis -TE -%AI55J_Tsume: None -%AI3_BeginEncoding: _HelveticaNeueLTStd-Th HelveticaNeueLTStd-Th -[/_HelveticaNeueLTStd-Th/HelveticaNeueLTStd-Th 0 0 1 TZ %AI3_EndEncoding AdobeType -%AI5_Begin_NonPrinting -Np -%AI8_PluginGroupInfo -(Adobe Vectorized Object) (Nachgezeichnetes Bild) (Vectorize.aip) -%AI8_PluginGroupInfo -(Adobe Flare Plugin) (Flare) (flare.aip) -%AI8_PluginGroupInfo -(Adobe Deform Plugin) (Adobe H\374llen-Zusatzmodul) (Envelope and Warp.aip) -%AI8_PluginGroupInfo -(Adobe Planar Group) (Adobe-Zusatzmodul Interaktiv malen) (Live Paint.aip) -%AI8_PluginGroupInfo -(Adobe Perspective Plugin Group) (Adobe Perspective Plugin Group) (Perspective.aip) -%AI8_PluginGroupInfo -(Adobe Path Blends) (Adobe Angleichungen-Zusatzmodul) (Live Blends.aip) -%AI8_PluginGroupInfo -(Adobe Symbolism) (Adobe Symbolism) (Symbolism.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe Calligraphic Brush Tool) (Adobe Kalligrafiepinsel-Zusatzmodul) (Calligraphic Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Pattern Editor Plugin Group) (Adobe Pattern Editor Plugin Group) (Swatch Libraries.aip) -%AI8_PluginGroupInfo -(Pathfinder Suite) (Adobe Zusammengesetzte Form) (PathFinder Suite.aip) -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -9 Bn -%AI5_BeginGradient: (Blauer Himmel) -(Blauer Himmel) 0 2 Bd -[ -0.591974 -0 -0.148531 -0 -0.239216 -0.870588 -0.929412 -4 %_Br -[ -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 Bs -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Goldstaub) -(Goldstaub) 0 4 Bd -[ -< -21202121222122222323222323242324242524242525252526262626272727272728282929292929 -2A2A2A2A2B2B2B2B2B2B2B2C2C2C2C2D2D2D2D2D2E2E2F2F30303030303131313132313232323232 -333333333434 -> -< -2D2F30313234343637393B3C3D3E4041434345464749494B4C4D4E4F50525354555658595B5C5D5E -5F616164656768696B6B6D6E6F70727374767778797A7B7D7E8081828384858688888A8B8D8E8F91 -919394959698 -> -< -F4F4F4F5F5F5F5F5F6F6F6F7F7F7F7F7F8F8F8F9F9F9FAFAFAFBFBFBFBFBFCFCFCFCFDFDFEFEFEFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF -> -< -030404040404050506060606060707070708080808080808090909090A0A0A0B0B0B0B0C0C0D0D0D -0D0D0E0E0E0E0F0F0F0F0F1010101011111011111211121213131414141515161616161717171717 -181819191A19 -> -< -E5E5E4E4E3E3E2E2E1E1E1E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D8D8D8D7D7D6D6D5D5D4D4D4 -D3D3D2D2D1D1D0D0D0CFCFCECECDCDCCCCCCCBCBCACAC9C9C8C8C7C7C7C6C6C5C5C4C4C3C3C3C2C2 -C1C1C0C0BFBF -> -< -C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E -9D9C9B999897969594939291908F8E8D8C8B8A898887868584838281807F7E7D7C7B7A7978777675 -74737271706F -> -0 -4 %_Br -< -171717181818181818181919191A1A1A1A1B1B1B1B1B1C1C1D1D1D1D1D1D1E1E1E1F1F20202021 -> -< -69686765646261605E5D5B5A5856555352514F4C4B4948464543413F3E3C3A3837353332302F2D -> -< -FAFAFAFAFAFAF9FAFAFAFAF9F9F9F9F9F8F8F8F7F7F6F6F6F6F6F6F6F5F5F5F4F5F5F4F4F4F4F4 -> -< -030303030303030303030303030404040404040404040404040404040404040404040404040403 -> -0.898039 -< -9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5 -> -< -030303030303030202020202020202020202020201010101010101010101010100000000000000 -> -4 %_Br -< -00000000000000000000000000000000000000000000000000000000000000000000000102040406 -060808090A0C0E0E0F0F1111131414151517 -> -< -A5A5A5A4A4A3A3A3A3A2A1A0A09F9E9E9D9B9B9A99989796959594939191908F8E8C8B8B89888685 -848281817F7D7C7A7978767472706F6D6B69 -> -< -F0F0F0F1F1F1F1F1F1F1F2F2F2F3F3F3F4F4F4F4F4F5F5F6F6F6F7F7F7F8F8F9F9FAFAFAFAFAFAFA -FAFBFBFBFBFCFCFCFCFCFCFBFBFBFBFBFAFA -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -000000000000010101010101010102020203 -> -< -FFFFFFFEFEFEFEFDFDFDFCFCFCFBFBFBFAFAF9F9F9F8F8F7F7F6F6F5F5F4F4F3F3F2F2F1F1F0F0EF -EFEEEEEDEDECEBEBEAEAE9E9E8E7E7E6E6E5 -> -< -73737374747575767677777878797A7A7B7C7C7D7E7E7F808181828384848586878889898A8B8C8D -8E8F90909192939495969798999A9B9C9D9E -> -< -00000000000000000000000000000001010101010101010101010101010101010101020202020202 -020202020202020202020303030303030303 -> -4 %_Br -[ -0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 %_BS -%_0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 Bs -0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 %_BS -%_0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 Bs -0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 %_BS -%_0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 Bs -0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 %_BS -%_0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 1) -(Unnamed gradient 1) 0 2 Bd -[ -< -0000010304050608090B0C0D0F10111213141718191A1B1C1E1F21222324252728292A -> -< -00000102030405060708090A0A0B0C0C0D0E1011111213141516171819191A1B1B1C1D -> -< -000001020304050708090A0B0C0D0E0F101112131415161718191A1B1C1C1D1E1F2021 -> -< -0000000000000000000000000000000000000000000000000000000000000000000000 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -4 %_Br -[ -0.81 0 1 6 50 100 %_BS -%_0.81 0 1 6 50 100 Bs -1 0 1 6 50 0 %_BS -%_1 0 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 17) -(Unnamed gradient 17) 1 2 Bd -[ -< -26252423222121201E1D1B1A191716151413131211100F0D0C0B09080605050403010000 -> -< -1F1E1D1D1C1B1A19181716151413131211100F0E0D0C0C0B0A0A09070605040302010000 -> -< -2120201F1E1D1C1C1B1A1817161615141312100F0F0E0D0C0B0A09080605040302010000 -> -< -000000000000000000000000000000000000000000000000000000000000000000000000 -> -< -DFE0E1E2E3E4E4E5E6E7E8E9EAEBECEDEEEFEFF0F1F2F3F4F5F6F7F8F9FAFAFBFCFDFEFF -> -< -DCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -< -DBDCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -4 %_Br -[ -0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 %_BS -%_0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 Bs -0 0 0 0 1 1 1 2 0 6 50 100 %_BS -%_0 0 0 0 1 1 1 2 0 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 2) -(Unnamed gradient 2) 0 2 Bd -[ -< -B7B8B8B9B9BABBBBBCBDBDBEBEBFC0C0C1C1C2C2C3C3C4C4C5C6C6C7C7C7C8C8C9CACACBCBCCCCCD -CDCECECFCFD0D1D1D2D2D3D3D4D4D5D5D6D6D7D7D8D8D9D9DA -> -< -515251535253555455575657575859595A5C5B5C5B5D5E5D5F605F61606163626364636564656766 -6869686A696B6C6B6D6E6D6F6E6F7170727373747475777678 -> -0 -0 -0 -< -9D9C9C9B9B9A999998979796969594949392929191908F8F8E8D8D8C8C8B8A8A8988888787868585 -84838382828180807F7E7E7D7D7C7B7B7A7979787877767675 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDDDCDBDAD9D8D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBE -> -4 %_Br -[ -0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 %_BS -%_0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 Bs -0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 %_BS -%_0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 28) -(Unnamed gradient 28) 1 2 Bd -[ -< -0000010304050608090A0C0D0F10111314151617181A1B1C1D1E1F20212324262728292A2B2D2E30 -31323335363738393A3C3D3E404142434445464748494A4B4C4D4E4F5051525354565758595A -> -< -00000100010203040504060708090908090A0B0C0C0C0D0D0E0F100F101112131413141516171816 -1718191A1B1A1B1C1D1E1F1E1F20212223222324252627262728292A2B2A2B2C2D2E2F2E2F30 -> -< -0000000103040304050707080909090B0C0B0C0D0E0E0F100F10111312131415151717171818191A -1B1B1C1C1C1E1D1E1F20202122232223242425252625262829282829282A2B2C2B2D2E2F2F2F -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000001000101010101010202020202020203030303030404 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1 -> -< -FFFEFDFDFCFBFAF9F8F8F7F6F5F4F3F3F2F1F0EFEEEEEDECEBEAE9E9E8E7E6E5E4E4E3E2E1E0DFDF -DEDDDCDBDADAD9D8D7D6D5D5D4D3D2D1D0D0CFCECDCCCBCBCAC9C8C7C6C6C5C4C3C2C1C1C0BF -> -< -FFFEFEFDFCFBFBFAF9F8F8F7F6F6F5F4F3F3F2F1F0F0EFEEEEEDECEBEBEAE9E8E8E7E6E6E5E4E3E3 -E2E1E0E0DFDEDEDDDCDBDBDAD9D8D8D7D6D6D5D4D3D3D2D1D0D0CFCECECDCCCBCBCAC9C8C8C7 -> -4 %_Br -[ -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 %_BS -%_0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 3) -(Unnamed gradient 3) 0 2 Bd -[ -< -2C2D2E2F303132333435363738393B3C3D3E3F4142434445464748494A4B4C4D4F50505152535454 -5556575858595A5B5C5D5E5F606162636364656667686969 -> -< -00000000000000000000000000000000000000000000000001000000000100000000000000010000 -010002010002010201000201020101030204040305040606 -> -0 -0 -< -DAD9D8D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBB9B8B7B6B5B4B3B2 -B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A -> -< -F1F1F0F0EFEFEFEEEEEDEDEDECECEBEBEBEAEAE9E9E9E8E8E7E7E7E6E6E5E5E5E4E4E4E3E3E2E2E2 -E1E1E0E0E0DFDFDEDEDEDDDDDCDCDCDBDBDADADAD9D9D8D8 -> -1 -4 %_Br -[ -0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 %_BS -%_0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 Bs -0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 %_BS -%_0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 7) -(Unnamed gradient 7) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Weiß, Schwarz) -(Weiß, Schwarz) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI3_BeginPattern: (Jive) -(Jive) 47.5615 109.6396 155.9004 219.2813 -%_0 A -%_0 Xw -%_u -%_0 1 0 0 0 Xy -%_0 J 0 j 1 w 10 M []0 d %_0 XR -%_47.5615 219.2813 m -%_155.9004 219.2813 L -%_155.9004 109.6396 L -%_47.5615 109.6396 L -%_47.5615 219.2813 L -%_n -%_/ArtDictionary : -%_1 /Bool (AIPattern_Editor_Backing_Tile_Rect) , -%_; -%_ -%_u -%_*u -%_1 D -%_0 O -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_135.0352 74.9453 m -%_135.0566 75.0645 135.1602 75.1504 135.2813 75.1523 c -%_148.1875 75.2871 160.0352 78.4199 169.2529 86.667 C -%_161.2227 81.1094 146.3105 79.1563 137.7256 83.0488 c -%_137.6152 83.0986 137.5566 83.2188 137.584 83.3369 c -%_137.6104 83.4551 137.7168 83.5371 137.8379 83.5332 c -%_148.5176 83.2441 157.1172 86.54 163.8223 92.498 C -%_156.9531 92.9199 151.248 97.2383 151.2656 102.3428 c -%_151.2656 102.4619 151.3496 102.5645 151.4668 102.5898 c -%_151.583 102.6152 151.7012 102.5547 151.75 102.4463 c -%_152.8711 99.957 156.498 98.666 160.333 99.5664 c -%_164.5127 100.5469 167.333 103.7559 166.6338 106.7314 c -%_166.1621 108.7461 164.1973 110.1348 161.6816 110.5186 c -%_161.5547 110.5371 161.4619 110.6484 161.4648 110.7764 c -%_161.4688 110.9043 161.5674 111.0098 161.6953 111.0215 c -%_162.7637 111.124 163.875 111.1279 165.0127 111.0195 c -%_171.5029 110.4023 176.5264 106.4238 176.9619 101.8418 C -%_181.6748 102.3887 185.8467 104.998 187.3408 108.6152 c -%_187.3857 108.7236 187.501 108.7871 187.6162 108.7695 c -%_187.7314 108.75 187.8193 108.6553 187.8291 108.5391 c -%_188.2061 103.7871 186.5713 100.7002 182.8584 97.6846 C -%_188.2432 99.7441 194.3027 99.8496 200.1133 97.1465 c -%_200.2188 97.0977 200.2773 96.9824 200.2559 96.8672 c -%_200.2324 96.752 200.1328 96.668 200.0156 96.6641 c -%_195.1367 96.4736 191.5996 94.9082 188.2861 91.5918 C -%_206.5391 96.7256 221.3711 85.3906 216.2383 68.5391 c -%_216.2031 68.4238 216.0918 68.3486 215.9707 68.3613 c -%_215.8496 68.373 215.7539 68.4688 215.7441 68.5898 c -%_214.8262 78.3037 208.041 84.7051 197.8828 85.666 C -%_203.2695 83.6055 208.8828 78.6895 209.4395 70.1318 c -%_209.4473 70.0098 209.3672 69.8984 209.248 69.8691 c -%_209.1289 69.8398 209.0059 69.8984 208.9551 70.0098 c -%_206.1563 76.1641 200.6582 79.2754 194.7949 79.8223 C -%_201.1289 77.2422 205.1914 71.2207 206.3652 63.4023 c -%_206.3848 63.2793 206.3105 63.1602 206.1914 63.123 c -%_206.0742 63.084 205.9453 63.1387 205.8887 63.248 c -%_202.0234 70.8311 193.7324 76.042 183.4424 72.0605 c -%_172.8252 67.9512 168.168 55.6738 167.1387 47.0195 c -%_167.124 46.8984 167.0234 46.8047 166.9004 46.7969 c -%_166.7783 46.7891 166.668 46.8711 166.6396 46.9922 c -%_162.9199 62.6797 170.2227 78.9414 183.2764 85.832 C -%_176.1807 83.8291 169.8369 79.5723 166.249 72.4775 C -%_157.9551 71.459 152.2451 68.6152 149.3916 63.2383 c -%_149.335 63.1309 149.2109 63.0781 149.0957 63.1133 c -%_148.9805 63.1465 148.9043 63.2578 148.9141 63.3789 c -%_149.0967 65.4883 149.8555 69.709 152.9883 71.6494 C -%_146.0234 71.6387 140.4824 72.543 135.1895 74.6621 c -%_135.0781 74.708 135.0127 74.8262 135.0352 74.9453 c -%_f -%_0 D -%_164.5215 21.4746 m -%_164.4229 21.541 164.293 21.5293 164.2061 21.4492 c -%_164.1201 21.3672 164.1016 21.2383 164.1602 21.1367 c -%_165.7803 18.3398 164.3008 14.3223 161.1094 14.3223 c -%_155.3887 14.3223 152.6387 25.0918 153.5137 34.916 C -%_155.6768 29.1602 157.5469 26.8613 160.8613 24.1211 c -%_160.9551 24.043 161.0898 24.043 161.1836 24.1191 c -%_161.2773 24.1973 161.3047 24.3281 161.2471 24.4355 c -%_156.3906 33.5156 155.3496 40.502 155.3496 48.5215 C -%_156.8125 42.5625 158.5449 39.1992 163.4766 34.1406 c -%_163.5625 34.0527 163.6992 34.0391 163.8018 34.1074 c -%_163.9033 34.1777 163.9404 34.3105 163.8887 34.4238 c -%_158.5908 46.0137 158.9951 58.8711 162.9414 68.6875 c -%_162.9805 68.7852 162.9561 68.8965 162.8789 68.9688 c -%_162.8018 69.0391 162.6895 69.0566 162.5938 69.0098 c -%_157.3887 66.459 154.3301 64.7832 149.8418 58.6211 C -%_151.1992 51.2227 150.0703 47.5723 146.6699 41.4258 C -%_150.6074 51.3438 148.5117 65.3203 138.4824 71.0176 c -%_138.373 71.0791 138.2344 71.0518 138.1582 70.9531 c -%_138.0801 70.8535 138.0869 70.7119 138.1738 70.6211 c -%_141.9551 66.666 144.7051 59.9863 142.3301 52.6934 C -%_143.8594 63.082 134.7344 71.8086 124.5508 71.8086 c -%_114.9512 71.8086 108.4004 64.2988 108.9414 56.8672 c -%_109.4785 49.502 114.3848 45.8984 118.6133 44.3691 c -%_118.7246 44.3301 118.8496 44.3711 118.9131 44.4707 c -%_118.9766 44.5723 118.9629 44.7012 118.8799 44.7871 c -%_113.2695 50.4785 112.502 61.2793 122.4629 64.5469 C -%_116.6035 59.4902 118.7734 47.7168 128.1523 46.8223 c -%_128.2695 46.8105 128.3789 46.8809 128.417 46.9922 c -%_128.4551 47.1035 128.4121 47.2266 128.3135 47.2891 c -%_126.3047 48.5664 124.6348 51.0605 124.6348 53.8633 c -%_124.6348 58.5371 128.0566 60.373 130.3105 60.373 c -%_133.7324 60.373 136.5703 57.1172 136.5703 52.1934 c -%_136.5703 46.3496 131.3105 41.5098 124.5508 40.7578 c -%_117.9248 40.0234 111.7686 42.9121 108.8008 47.2168 c -%_108.7314 47.3184 108.5996 47.3555 108.4873 47.3047 c -%_108.375 47.2539 108.3164 47.1289 108.3467 47.0098 c -%_111.3652 35.3066 125.1426 30.1328 135.2344 37.5039 C -%_128.6211 30.002 118.2285 29.8984 109.5127 37.5898 c -%_109.4219 37.6699 109.2871 37.6738 109.1904 37.5996 c -%_109.0938 37.5273 109.0635 37.3945 109.1172 37.2871 c -%_111.7842 31.8789 118.3701 25.4668 127.7227 26.4023 c -%_136.2793 27.2578 141.2441 35.416 142.2461 42.0938 C -%_142.8027 33.5723 140.8525 27.5566 133.4922 21.9473 c -%_133.3955 21.873 133.3652 21.7402 133.4199 21.6309 c -%_133.4746 21.5234 133.5996 21.4688 133.7168 21.502 c -%_140.502 23.4629 145.9473 26.9277 148.7656 34.0469 C -%_148.7656 27.8848 146.627 21.6738 141.2402 17.5352 c -%_141.1426 17.4609 141.1133 17.3301 141.168 17.2207 c -%_141.2227 17.1113 141.3467 17.0566 141.4639 17.0898 c -%_144.917 18.0742 147.6348 19.5781 149.6016 22.2754 C -%_150.9121 11.1758 156.123 4.58398 162.127 4.58398 c -%_166.252 4.58398 169.332 7.61719 169.332 12.4551 c -%_169.332 15.2852 167.8438 19.2578 164.5215 21.4746 c -%_f -%_263.748 113.0938 m -%_260.5859 116.998 254.209 118.4863 247.3164 117.082 C -%_247.8262 121.3828 246.9824 125.873 245.7051 128.5664 c -%_245.6523 128.6758 245.5313 128.7334 245.4141 128.7051 c -%_245.2969 128.6758 245.2168 128.5684 245.2207 128.4473 c -%_245.5957 119.6807 240.5977 112.6035 231.7715 109.5371 C -%_238.6777 114.293 240.6973 123.7305 237.4102 128.6035 c -%_237.3418 128.7021 237.2148 128.7412 237.1035 128.6953 c -%_236.9922 128.6504 236.9277 128.5332 236.9492 128.416 c -%_237.3223 126.3555 236.3438 123.7314 234.2363 121.6895 c -%_231.3301 118.875 227.3867 118.2363 225.4258 120.2598 c -%_223.4648 122.2852 224.2285 126.207 227.1328 129.0215 c -%_228.1934 130.0488 229.3926 130.7832 230.582 131.2061 c -%_230.6953 131.2461 230.7637 131.3594 230.748 131.4775 c -%_230.7344 131.5967 230.6387 131.6885 230.5195 131.6982 c -%_224.1309 132.2529 219.75 128.4463 217.0039 123.8203 c -%_214.209 119.1152 209.4336 115.4102 203.793 116.1504 c -%_203.6738 116.166 203.5605 116.0957 203.5195 115.9824 c -%_203.4805 115.8691 203.5254 115.7422 203.6289 115.6807 c -%_206.4258 113.9961 209.5 113.2969 213.4922 114.6289 C -%_207.6973 109.7197 199.4453 106.8867 191.6523 109.4014 c -%_191.543 109.4375 191.4238 109.3945 191.3613 109.2979 c -%_191.2988 109.2012 191.3105 109.0752 191.3867 108.9902 c -%_197.2949 102.4258 209.0762 102.2949 216.4961 107.6172 C -%_213.459 103.3008 209.4277 100.1328 202.2031 99.1387 c -%_202.0879 99.123 201.998 99.0313 201.9844 98.916 c -%_201.9727 98.7998 202.0391 98.6904 202.1484 98.6504 c -%_210.4395 95.5723 218.748 98.6953 225.5938 106.8652 C -%_222.6016 100.4883 217.6875 95.3809 210.8262 92.8535 c -%_210.7109 92.8115 210.6426 92.6934 210.6641 92.5742 c -%_210.6836 92.4531 210.7871 92.3643 210.9082 92.3613 c -%_214.8516 92.2803 218.3945 93.2188 223.1738 95.9316 C -%_219.666 90.2422 220.4336 80.293 225.543 73.6738 c -%_225.6133 73.582 225.7383 73.5498 225.8457 73.5957 c -%_225.9512 73.6426 226.0137 73.7549 225.9941 73.8691 c -%_224.8145 81.0703 227.293 89.1992 231.6035 93.5117 C -%_229.4512 85.8799 231.5977 78.9355 237.5 73.8672 c -%_237.5703 73.8066 237.6699 73.79 237.7559 73.8232 c -%_237.8438 73.8564 237.9043 73.9355 237.918 74.0273 c -%_239.1523 83.4453 249.6875 93.002 258.5195 93.8027 c -%_258.6445 93.8135 258.7422 93.9141 258.75 94.0381 c -%_258.7578 94.1621 258.6758 94.2754 258.5527 94.3027 c -%_254.2734 95.2715 249.8613 94.793 246.1641 93.2715 C -%_248.8242 96.2051 252.1035 98.3828 255.7188 99.5176 c -%_255.8359 99.5537 255.9082 99.668 255.8945 99.7891 c -%_255.8809 99.9102 255.7813 100.0039 255.6602 100.0127 c -%_251.1504 100.3242 246.7363 99.0068 242.9297 96.4746 C -%_247.291 103.0957 253.9102 108.0195 262.3574 109.9805 c -%_262.4785 110.0088 262.5605 110.1191 262.5547 110.2432 c -%_262.5469 110.3672 262.4512 110.4668 262.3281 110.4805 c -%_250.4102 111.7822 240.582 107.1621 234.1074 98.5625 C -%_235.7559 103.4629 240.4727 108.3184 247.0527 111.1816 c -%_252.8984 113.7266 258.9023 114.1279 263.4746 112.6914 c -%_263.5801 112.6582 263.6973 112.6982 263.7598 112.791 c -%_263.8223 112.8828 263.8184 113.0059 263.748 113.0938 c -%_f -%_210.8438 37.5215 m -%_215.6504 48.0078 215.3086 56.207 211.4375 66.5762 c -%_211.3926 66.6934 211.2715 66.7607 211.1484 66.7363 c -%_211.0254 66.7109 210.9395 66.5996 210.9453 66.4746 c -%_211.5664 53.8535 208.1191 44.8203 200.6465 38.668 C -%_208.8965 48.5195 205 68.2275 191.8242 68.2275 c -%_182.2393 68.2275 174.3086 60.252 172.3691 50.7031 c -%_172.3447 50.582 172.4111 50.459 172.5273 50.416 c -%_172.6426 50.3711 172.7734 50.416 172.8359 50.5215 c -%_175.6787 55.2832 180.2451 58.373 185.2939 58.373 c -%_193.4277 58.373 195.834 51.9063 195.834 47.375 c -%_195.834 41.1875 190.9082 36.0313 187.1279 36.0313 c -%_183.6904 36.0313 182.0869 38.8555 182.0869 40.959 c -%_182.0869 44.8574 185.085 48.125 188.4639 49.123 c -%_188.583 49.1582 188.6611 49.2773 188.6436 49.4023 c -%_188.624 49.5273 188.5186 49.6191 188.3936 49.6211 c -%_184.2861 49.6465 180.8154 47.7656 178.7627 44.0527 C -%_178.4932 46.9277 178.4902 48.7383 179.4033 51.7754 c -%_179.4385 51.8926 179.3848 52.0176 179.2773 52.0742 c -%_179.168 52.1309 179.0352 52.1016 178.9609 52.0059 c -%_171.6045 42.6133 175.125 26.3809 180.9404 19.6484 C -%_175.4082 23.6309 170.5234 32.2813 170.6006 44.041 c -%_170.6016 44.1641 170.5156 44.2676 170.3955 44.291 c -%_170.2754 44.3164 170.1563 44.25 170.1113 44.1367 c -%_166.0029 33.8848 168.1826 14.8887 179.3926 4.28516 C -%_176.5088 3.88867 173.5254 3.93945 170.2676 4.97852 c -%_170.1523 5.01367 170.0273 4.96484 169.9688 4.85938 c -%_169.9102 4.75195 169.9336 4.61914 170.0273 4.54102 c -%_174.1191 1.08594 179.8418 0 185.2939 0 C -%_180.5967 5.5 182.1572 16.5547 189.6494 16.5547 c -%_194.9961 16.5547 197.4238 8.25586 193.2949 3.77344 c -%_193.2168 3.6875 193.207 3.55859 193.2695 3.46289 c -%_193.334 3.36523 193.4551 3.32227 193.5664 3.36133 c -%_198.3457 5.01563 203.5117 9.15039 203.5117 14.377 c -%_203.5117 19.4199 198.6992 23.7715 191.7109 23.4277 C -%_200.5293 25.9336 209.7617 23.1602 214.5918 17.1758 c -%_214.666 17.082 214.7969 17.0547 214.9023 17.1074 c -%_215.0098 17.1621 215.0645 17.2832 215.0352 17.3984 c -%_212.2441 28.1152 203.0684 32.5977 191.5957 31.1055 C -%_200.877 34.8613 214.8457 31.5859 221.0195 23.7949 c -%_221.0918 23.7031 221.2188 23.6738 221.3262 23.7227 c -%_221.4316 23.7734 221.4902 23.8906 221.4668 24.0039 c -%_220.0957 30.6191 216.6035 35.5664 210.8438 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 56.8086 m -%_237.2051 56.6895 237.1016 56.6016 236.9805 56.6016 c -%_224.0742 56.4648 212.2266 53.334 203.0098 45.0859 C -%_211.0391 50.6445 225.9512 52.5957 234.5371 48.7051 c -%_234.6465 48.6543 234.7051 48.5332 234.6777 48.416 c -%_234.6523 48.2988 234.5449 48.2168 234.4238 48.2188 c -%_223.7441 48.5098 215.1445 45.2129 208.4395 39.2559 C -%_215.3086 38.832 221.0137 34.5156 220.9961 29.4102 c -%_220.9961 29.291 220.9121 29.1875 220.7949 29.1621 c -%_220.6797 29.1387 220.5605 29.1973 220.5117 29.3066 c -%_219.3906 31.7949 215.7637 33.0879 211.9297 32.1875 c -%_207.75 31.2051 204.9297 27.998 205.6289 25.0215 c -%_206.0996 23.0078 208.0645 21.6191 210.5801 21.2344 c -%_210.707 21.2148 210.8008 21.1055 210.7969 20.9766 c -%_210.793 20.8496 210.6953 20.7441 210.5664 20.7305 c -%_209.498 20.6289 208.3867 20.625 207.25 20.7344 c -%_200.7598 21.3516 195.7363 25.3281 195.3008 29.9121 C -%_190.5889 29.3652 186.417 26.7539 184.9229 23.1387 c -%_184.8779 23.0293 184.7646 22.9668 184.6475 22.9844 c -%_184.5322 23.002 184.4443 23.0977 184.4346 23.2148 c -%_184.0576 27.9648 185.6924 31.0527 189.4053 34.0684 C -%_184.0205 32.0098 177.959 31.9043 172.1484 34.6055 c -%_172.043 34.6563 171.9844 34.7715 172.0059 34.8867 c -%_172.0293 35.002 172.1289 35.0859 172.2461 35.0898 c -%_177.125 35.2793 180.6631 36.8457 183.9795 40.1621 C -%_165.7227 35.0273 150.8906 46.3633 156.0234 63.2129 c -%_156.0586 63.3301 156.1699 63.4043 156.291 63.3926 c -%_156.4121 63.3809 156.5078 63.2852 156.5176 63.1641 c -%_157.4355 53.4492 164.2207 47.0469 174.3789 46.0879 C -%_168.9922 48.1465 163.3789 53.0625 162.8223 61.6211 c -%_162.8145 61.7441 162.8945 61.8535 163.0137 61.8848 c -%_163.1328 61.9141 163.2559 61.8535 163.3066 61.7422 c -%_166.1055 55.5879 171.6035 52.4785 177.4668 51.9297 C -%_171.1328 54.5117 167.0703 60.5332 165.8965 68.3516 c -%_165.877 68.4746 165.9512 68.5918 166.0703 68.6309 c -%_166.1875 68.668 166.3164 68.6152 166.373 68.5039 c -%_170.2383 60.9219 178.5293 55.7109 188.8213 59.6934 c -%_199.4375 63.8027 204.0938 76.0781 205.123 84.7324 c -%_205.1387 84.8555 205.2383 84.9492 205.3613 84.957 c -%_205.4844 84.9629 205.5938 84.8809 205.623 84.7617 c -%_209.3418 69.0723 202.0391 52.8125 188.9873 45.9219 C -%_196.082 47.9238 202.4258 52.1816 206.0137 59.2754 C -%_214.3066 60.293 220.0176 63.1387 222.8711 68.5156 c -%_222.9277 68.6211 223.0508 68.6738 223.166 68.6406 c -%_223.2813 68.6055 223.3574 68.4941 223.3477 68.375 c -%_223.166 66.2656 222.4063 62.0449 219.2734 60.1035 C -%_226.2383 60.1152 231.7793 59.2109 237.0723 57.0898 c -%_237.1836 57.0449 237.25 56.9277 237.2266 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 110.2773 m -%_207.8398 110.2129 207.9688 110.2227 208.0566 110.3047 c -%_208.1426 110.3848 208.1602 110.5137 208.1016 110.6172 c -%_206.4824 113.4141 207.9609 117.4297 211.1523 117.4297 c -%_216.873 117.4297 219.623 106.6602 218.748 96.8379 C -%_216.5859 102.5918 214.7148 104.8926 211.4004 107.6328 c -%_211.3066 107.709 211.1719 107.7109 211.0781 107.6328 c -%_210.9844 107.5566 210.957 107.4238 211.0156 107.3164 c -%_215.8711 98.2383 216.9121 91.252 216.9121 83.2324 C -%_215.4492 89.1895 213.7168 92.5527 208.7852 97.6133 c -%_208.6992 97.7012 208.5625 97.7148 208.4609 97.6445 c -%_208.3594 97.5742 208.3223 97.4414 208.373 97.3301 c -%_213.6719 85.7383 213.2676 72.8828 209.3203 63.0664 c -%_209.2813 62.9688 209.3066 62.8574 209.3828 62.7852 c -%_209.4609 62.7129 209.5723 62.6973 209.668 62.7422 c -%_214.873 65.293 217.9316 66.9688 222.4199 73.1328 C -%_221.0625 80.5313 222.1914 84.1797 225.5918 90.3262 C -%_221.6543 80.4102 223.75 66.4336 233.7793 60.7363 c -%_233.8887 60.6738 234.0273 60.7012 234.1035 60.8008 c -%_234.1816 60.9004 234.1758 61.041 234.0879 61.1328 c -%_230.3066 65.0879 227.5566 71.7676 229.9316 79.0586 C -%_228.4023 68.6699 237.5273 59.9453 247.7109 59.9453 c -%_257.3105 59.9453 263.8613 67.4531 263.3203 74.8848 c -%_262.7832 82.25 257.877 85.8555 253.6484 87.3828 c -%_253.5371 87.4238 253.4121 87.3809 253.3496 87.2813 c -%_253.2852 87.1816 253.2988 87.0508 253.3828 86.9668 c -%_258.9922 81.2734 259.7598 70.4746 249.7988 67.207 C -%_255.6582 72.2637 253.4883 84.0352 244.1094 84.9316 c -%_243.9922 84.9414 243.8828 84.8711 243.8457 84.7598 c -%_243.8066 84.6504 243.8496 84.5273 243.9492 84.4648 c -%_245.957 83.1855 247.627 80.6934 247.627 77.8906 c -%_247.627 73.2168 244.2051 71.3789 241.9512 71.3789 c -%_238.5293 71.3789 235.6914 74.6348 235.6914 79.5605 c -%_235.6914 85.4023 240.9512 90.2441 247.7109 90.9941 c -%_254.3379 91.7305 260.4941 88.8398 263.4609 84.5352 c -%_263.5313 84.4336 263.6621 84.3984 263.7754 84.4492 c -%_263.8867 84.5 263.9453 84.623 263.916 84.7422 c -%_260.8965 96.4453 247.1191 101.6191 237.0273 94.25 C -%_243.6406 101.75 254.0332 101.8555 262.75 94.1641 c -%_262.8398 94.084 262.9746 94.0781 263.0723 94.1523 c -%_263.168 94.2266 263.1992 94.3574 263.1445 94.4668 c -%_260.4785 99.873 253.8926 106.2852 244.5391 105.3516 c -%_235.9824 104.4961 231.0176 96.3359 230.0156 89.6602 C -%_229.459 98.1816 231.4102 104.1953 238.7695 109.8047 c -%_238.8672 109.8789 238.8965 110.0117 238.8418 110.1211 c -%_238.7871 110.2305 238.6621 110.2852 238.5449 110.25 c -%_231.7598 108.291 226.3145 104.8262 223.4961 97.707 C -%_223.4961 103.8672 225.6348 110.0781 231.0215 114.2168 c -%_231.1191 114.291 231.1484 114.4238 231.0938 114.5332 c -%_231.0391 114.6406 230.916 114.6953 230.7988 114.6621 c -%_227.3457 113.6797 224.627 112.1738 222.6602 109.4785 C -%_221.3496 120.5781 216.1387 127.168 210.1348 127.168 c -%_206.0098 127.168 202.9297 124.1348 202.9297 119.2988 c -%_202.9297 116.4688 204.418 112.4961 207.7402 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 18.6602 m -%_111.6758 14.7559 118.0527 13.2676 124.9453 14.6719 C -%_124.4355 10.3691 125.2793 5.88086 126.5566 3.18555 c -%_126.6094 3.07813 126.7305 3.01953 126.8477 3.04883 c -%_126.9648 3.07813 127.0449 3.18555 127.041 3.30664 c -%_126.666 12.0723 131.6641 19.1484 140.4902 22.2148 C -%_133.584 17.459 131.5645 8.02148 134.8516 3.15039 c -%_134.9199 3.05078 135.0469 3.01172 135.1582 3.05664 c -%_135.2695 3.10156 135.334 3.21875 135.3125 3.33789 c -%_134.9395 5.39844 135.918 8.02148 138.0254 10.0625 c -%_140.9316 12.877 144.875 13.5156 146.8359 11.4922 c -%_148.7969 9.4668 148.0332 5.54492 145.1289 2.73242 c -%_144.0684 1.70508 142.8691 0.96875 141.6797 0.546875 c -%_141.5664 0.505859 141.498 0.392578 141.5137 0.275391 c -%_141.5273 0.15625 141.623 0.064453 141.7422 0.054688 c -%_148.1309 -0.5 152.5117 3.30664 155.2578 7.93164 c -%_158.0527 12.6367 162.8281 16.3438 168.4688 15.6035 c -%_168.5879 15.5879 168.7012 15.6582 168.7422 15.7715 c -%_168.7813 15.8848 168.7363 16.0098 168.6328 16.0723 c -%_165.8359 17.7559 162.7617 18.4551 158.7695 17.125 C -%_164.5645 22.0332 172.8164 24.8652 180.6104 22.3516 c -%_180.7197 22.3164 180.8389 22.3594 180.9014 22.4551 c -%_180.9639 22.5508 180.9541 22.6777 180.876 22.7637 c -%_174.9668 29.3281 163.1855 29.459 155.7656 24.1348 C -%_158.8027 28.4512 162.834 31.6211 170.0586 32.6133 c -%_170.1738 32.6289 170.2637 32.7227 170.2773 32.8379 c -%_170.2891 32.9531 170.2227 33.0625 170.1133 33.1035 c -%_161.8223 36.1797 153.5137 33.0586 146.668 24.8867 C -%_149.6602 31.2656 154.5742 36.373 161.4355 38.9004 c -%_161.5508 38.9414 161.6191 39.0586 161.5977 39.1797 c -%_161.5781 39.3008 161.4746 39.3887 161.3535 39.3906 c -%_157.4102 39.4727 153.8672 38.5332 149.0879 35.8203 C -%_152.5957 41.5117 151.8281 51.459 146.7188 58.0801 c -%_146.6484 58.1719 146.5234 58.2031 146.416 58.1582 c -%_146.3105 58.1113 146.248 57.998 146.2676 57.8828 c -%_147.4473 50.6836 144.9688 42.5547 140.6582 38.2422 C -%_142.8105 45.873 140.6641 52.8184 134.7617 57.8848 c -%_134.6914 57.9453 134.5918 57.9629 134.5059 57.9297 c -%_134.418 57.8965 134.3574 57.8184 134.3438 57.7266 c -%_133.1094 48.3086 122.5742 38.752 113.7422 37.9512 c -%_113.6172 37.9395 113.5195 37.8398 113.5117 37.7148 c -%_113.5039 37.5898 113.5859 37.4785 113.709 37.4512 c -%_117.9883 36.4824 122.4004 36.9609 126.0977 38.4805 C -%_123.4375 35.5488 120.1582 33.3711 116.543 32.2363 c -%_116.4258 32.1992 116.3535 32.0859 116.3672 31.9648 c -%_116.3809 31.8438 116.4805 31.748 116.6016 31.7402 c -%_121.1113 31.4297 125.5254 32.7461 129.332 35.2793 C -%_124.9707 28.6582 118.3516 23.7344 109.9043 21.7715 c -%_109.7832 21.7441 109.7012 21.6328 109.707 21.5098 c -%_109.7148 21.3867 109.8105 21.2871 109.9336 21.2734 c -%_121.8516 19.9707 131.6797 24.5918 138.1543 33.1914 C -%_136.5059 28.2891 131.7891 23.4355 125.209 20.5723 c -%_119.3633 18.0273 113.3594 17.625 108.7871 19.0625 c -%_108.6816 19.0957 108.5645 19.0547 108.502 18.9629 c -%_108.4395 18.8691 108.4434 18.7461 108.5137 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 94.2324 m -%_156.6113 83.7461 156.9531 75.5469 160.8242 65.1777 c -%_160.8691 65.0605 160.9902 64.9922 161.1133 65.0176 c -%_161.2363 65.043 161.3223 65.1543 161.3164 65.2773 c -%_160.6953 77.9004 164.1426 86.9316 171.6152 93.0859 C -%_163.3652 83.2324 167.2617 63.5254 180.4385 63.5254 c -%_190.0244 63.5254 197.9531 71.502 199.8926 81.0508 c -%_199.918 81.1719 199.8516 81.293 199.7344 81.3379 c -%_199.6191 81.3828 199.4883 81.3379 199.4258 81.2305 c -%_196.584 76.4688 192.0176 73.3789 186.9697 73.3789 c -%_178.834 73.3789 176.4277 79.8457 176.4277 84.3789 c -%_176.4277 90.5645 181.3545 95.7207 185.1357 95.7207 c -%_188.5732 95.7207 190.1768 92.8984 190.1768 90.7949 c -%_190.1768 86.8965 187.1787 83.6289 183.8018 82.6309 c -%_183.6807 82.5938 183.6045 82.4766 183.6221 82.3516 c -%_183.6396 82.2266 183.7451 82.1328 183.8721 82.1328 c -%_187.9775 82.1074 191.4473 83.9863 193.5 87.7012 C -%_193.7695 84.8262 193.7715 83.0156 192.8594 79.9766 c -%_192.8242 79.8594 192.877 79.7344 192.9844 79.6777 c -%_193.0938 79.623 193.2266 79.6504 193.3008 79.748 c -%_200.6582 89.1406 197.1367 105.3711 191.3223 112.1055 C -%_196.8535 108.123 201.7383 99.4707 201.6621 87.7109 c -%_201.6602 87.5898 201.7461 87.4844 201.8672 87.4609 c -%_201.9863 87.4375 202.1055 87.502 202.1504 87.6152 c -%_206.2598 97.8691 204.0801 116.8633 192.8691 127.4668 C -%_195.7539 127.8652 198.7363 127.8145 201.9941 126.7754 c -%_202.1094 126.7383 202.2344 126.7891 202.293 126.8945 c -%_202.3516 127 202.3281 127.1328 202.2344 127.2109 c -%_198.1426 130.666 192.4199 131.752 186.9697 131.752 C -%_191.666 126.252 190.1064 115.1992 182.6162 115.1992 c -%_177.2656 115.1992 174.8379 123.498 178.9668 127.9805 c -%_179.0449 128.0664 179.0547 128.1934 178.9922 128.291 c -%_178.9277 128.3887 178.8066 128.4297 178.6953 128.3926 c -%_173.916 126.7363 168.75 122.6035 168.75 117.375 c -%_168.75 112.334 173.5625 107.9805 180.5537 108.3242 C -%_171.7324 105.8203 162.5 108.5918 157.6699 114.5781 c -%_157.5957 114.6699 157.4648 114.6992 157.3594 114.6445 c -%_157.252 114.5918 157.1973 114.4707 157.2266 114.3535 c -%_160.0176 103.6387 169.1934 99.1543 180.667 100.6484 C -%_171.3848 96.8906 157.416 100.166 151.2422 107.957 c -%_151.1699 108.0488 151.043 108.0801 150.9355 108.0293 c -%_150.8301 107.9805 150.7715 107.8633 150.7949 107.748 c -%_152.166 101.1328 155.6582 96.1875 161.418 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 74.9453 m -%_26.7178 75.0645 26.8213 75.1504 26.9424 75.1523 c -%_39.8486 75.2871 51.6963 78.4199 60.9141 86.667 C -%_52.8838 81.1094 37.9717 79.1563 29.3867 83.0488 c -%_29.2764 83.0986 29.2178 83.2188 29.2451 83.3369 c -%_29.2715 83.4551 29.3779 83.5371 29.499 83.5332 c -%_40.1787 83.2441 48.7783 86.54 55.4834 92.498 C -%_48.6143 92.9199 42.9092 97.2383 42.9268 102.3428 c -%_42.9268 102.4619 43.0107 102.5645 43.1279 102.5898 c -%_43.2441 102.6152 43.3623 102.5547 43.4111 102.4463 c -%_44.5322 99.957 48.1592 98.666 51.9941 99.5664 c -%_56.1738 100.5469 58.9941 103.7559 58.2949 106.7314 c -%_57.8232 108.7461 55.8584 110.1348 53.3428 110.5186 c -%_53.2158 110.5371 53.123 110.6484 53.126 110.7764 c -%_53.1299 110.9043 53.2285 111.0098 53.3564 111.0215 c -%_54.4248 111.124 55.5361 111.1279 56.6738 111.0195 c -%_63.1641 110.4023 68.1875 106.4238 68.623 101.8418 C -%_73.3359 102.3887 77.5078 104.998 79.002 108.6152 c -%_79.0469 108.7236 79.1621 108.7871 79.2773 108.7695 c -%_79.3926 108.75 79.4805 108.6553 79.4902 108.5391 c -%_79.8672 103.7871 78.2324 100.7002 74.5195 97.6846 C -%_79.9043 99.7441 85.9648 99.8496 91.7754 97.1465 c -%_91.8809 97.0977 91.9395 96.9824 91.918 96.8672 c -%_91.8945 96.752 91.7949 96.668 91.6777 96.6641 c -%_86.7988 96.4736 83.2617 94.9082 79.9473 91.5918 C -%_98.2012 96.7256 113.0332 85.3906 107.9004 68.5391 c -%_107.8652 68.4238 107.7539 68.3486 107.6328 68.3613 c -%_107.5117 68.373 107.416 68.4688 107.4063 68.5898 c -%_106.4883 78.3037 99.7031 84.7051 89.5449 85.666 C -%_94.9316 83.6055 100.5449 78.6895 101.1016 70.1318 c -%_101.1094 70.0098 101.0293 69.8984 100.9102 69.8691 c -%_100.791 69.8398 100.668 69.8984 100.6172 70.0098 c -%_97.8184 76.1641 92.3203 79.2754 86.457 79.8223 C -%_92.791 77.2422 96.8535 71.2207 98.0273 63.4023 c -%_98.0469 63.2793 97.9727 63.1602 97.8535 63.123 c -%_97.7363 63.084 97.6074 63.1387 97.5508 63.248 c -%_93.6855 70.8311 85.3945 76.042 75.1035 72.0605 c -%_64.4863 67.9512 59.8291 55.6738 58.7998 47.0195 c -%_58.7852 46.8984 58.6846 46.8047 58.5615 46.7969 c -%_58.4395 46.7891 58.3291 46.8711 58.3008 46.9922 c -%_54.5811 62.6797 61.8838 78.9414 74.9375 85.832 C -%_67.8418 83.8291 61.498 79.5723 57.9102 72.4775 C -%_49.6162 71.459 43.9063 68.6152 41.0527 63.2383 c -%_40.9961 63.1309 40.8721 63.0781 40.7568 63.1133 c -%_40.6416 63.1465 40.5654 63.2578 40.5752 63.3789 c -%_40.7578 65.4883 41.5166 69.709 44.6494 71.6494 C -%_37.6846 71.6387 32.1436 72.543 26.8506 74.6621 c -%_26.7393 74.708 26.6738 74.8262 26.6963 74.9453 c -%_f -%_0 D -%_56.1826 21.4746 m -%_56.084 21.541 55.9541 21.5293 55.8672 21.4492 c -%_55.7813 21.3672 55.7627 21.2383 55.8213 21.1367 c -%_57.4414 18.3398 55.9619 14.3223 52.7705 14.3223 c -%_47.0498 14.3223 44.2998 25.0918 45.1748 34.916 C -%_47.3379 29.1602 49.208 26.8613 52.5225 24.1211 c -%_52.6162 24.043 52.751 24.043 52.8447 24.1191 c -%_52.9385 24.1973 52.9658 24.3281 52.9082 24.4355 c -%_48.0518 33.5156 47.0107 40.502 47.0107 48.5215 C -%_48.4736 42.5625 50.2061 39.1992 55.1377 34.1406 c -%_55.2236 34.0527 55.3604 34.0391 55.4629 34.1074 c -%_55.5645 34.1777 55.6016 34.3105 55.5498 34.4238 c -%_50.252 46.0137 50.6563 58.8711 54.6025 68.6875 c -%_54.6416 68.7852 54.6172 68.8965 54.54 68.9688 c -%_54.4629 69.0391 54.3506 69.0566 54.2549 69.0098 c -%_49.0498 66.459 45.9912 64.7832 41.5029 58.6211 C -%_42.8604 51.2227 41.7314 47.5723 38.3311 41.4258 C -%_42.2686 51.3438 40.1729 65.3203 30.1436 71.0176 c -%_30.0342 71.0791 29.8955 71.0518 29.8193 70.9531 c -%_29.7412 70.8535 29.748 70.7119 29.835 70.6211 c -%_33.6162 66.666 36.3662 59.9863 33.9912 52.6934 C -%_35.5205 63.082 26.3955 71.8086 16.2119 71.8086 c -%_6.6123 71.8086 0.061523 64.2988 0.602539 56.8672 c -%_1.13965 49.502 6.0459 45.8984 10.2744 44.3691 c -%_10.3857 44.3301 10.5107 44.3711 10.5742 44.4707 c -%_10.6377 44.5723 10.624 44.7012 10.541 44.7871 c -%_4.93066 50.4785 4.16309 61.2793 14.124 64.5469 C -%_8.26465 59.4902 10.4346 47.7168 19.8135 46.8223 c -%_19.9307 46.8105 20.04 46.8809 20.0781 46.9922 c -%_20.1162 47.1035 20.0732 47.2266 19.9746 47.2891 c -%_17.9658 48.5664 16.2959 51.0605 16.2959 53.8633 c -%_16.2959 58.5371 19.7178 60.373 21.9717 60.373 c -%_25.3936 60.373 28.2314 57.1172 28.2314 52.1934 c -%_28.2314 46.3496 22.9717 41.5098 16.2119 40.7578 c -%_9.58594 40.0234 3.42969 42.9121 0.461914 47.2168 c -%_0.392578 47.3184 0.260742 47.3555 0.148438 47.3047 c -%_0.036133 47.2539 -0.022461 47.1289 0.007813 47.0098 c -%_3.02637 35.3066 16.8037 30.1328 26.8955 37.5039 C -%_20.2822 30.002 9.88965 29.8984 1.17383 37.5898 c -%_1.08301 37.6699 0.948242 37.6738 0.851563 37.5996 c -%_0.754883 37.5273 0.724609 37.3945 0.77832 37.2871 c -%_3.44531 31.8789 10.0313 25.4668 19.3838 26.4023 c -%_27.9404 27.2578 32.9053 35.416 33.9072 42.0938 C -%_34.4639 33.5723 32.5137 27.5566 25.1533 21.9473 c -%_25.0566 21.873 25.0264 21.7402 25.0811 21.6309 c -%_25.1357 21.5234 25.2607 21.4688 25.3779 21.502 c -%_32.1631 23.4629 37.6084 26.9277 40.4268 34.0469 C -%_40.4268 27.8848 38.2881 21.6738 32.9014 17.5352 c -%_32.8037 17.4609 32.7744 17.3301 32.8291 17.2207 c -%_32.8838 17.1113 33.0078 17.0566 33.125 17.0898 c -%_36.5781 18.0742 39.2959 19.5781 41.2627 22.2754 C -%_42.5732 11.1758 47.7842 4.58398 53.7881 4.58398 c -%_57.9131 4.58398 60.9932 7.61719 60.9932 12.4551 c -%_60.9932 15.2852 59.5049 19.2578 56.1826 21.4746 c -%_f -%_155.4102 113.0938 m -%_152.248 116.998 145.8711 118.4863 138.9785 117.082 C -%_139.4883 121.3828 138.6445 125.873 137.3672 128.5664 c -%_137.3145 128.6758 137.1934 128.7334 137.0762 128.7051 c -%_136.959 128.6758 136.8789 128.5684 136.8828 128.4473 c -%_137.2578 119.6807 132.2598 112.6035 123.4336 109.5371 C -%_130.3398 114.293 132.3594 123.7305 129.0723 128.6035 c -%_129.0039 128.7021 128.877 128.7412 128.7656 128.6953 c -%_128.6543 128.6504 128.5898 128.5332 128.6113 128.416 c -%_128.9844 126.3555 128.0059 123.7314 125.8984 121.6895 c -%_122.9922 118.875 119.0488 118.2363 117.0879 120.2598 c -%_115.127 122.2852 115.8906 126.207 118.7949 129.0215 c -%_119.8555 130.0488 121.0547 130.7832 122.2441 131.2061 c -%_122.3574 131.2461 122.4258 131.3594 122.4102 131.4775 c -%_122.3965 131.5967 122.3008 131.6885 122.1816 131.6982 c -%_115.793 132.2529 111.4121 128.4463 108.666 123.8203 c -%_105.8711 119.1152 101.0957 115.4102 95.4551 116.1504 c -%_95.3359 116.166 95.2227 116.0957 95.1816 115.9824 c -%_95.1426 115.8691 95.1875 115.7422 95.291 115.6807 c -%_98.0879 113.9961 101.1621 113.2969 105.1543 114.6289 C -%_99.3594 109.7197 91.1074 106.8867 83.3145 109.4014 c -%_83.2051 109.4375 83.0859 109.3945 83.0234 109.2979 c -%_82.9609 109.2012 82.9727 109.0752 83.0488 108.9902 c -%_88.957 102.4258 100.7383 102.2949 108.1582 107.6172 C -%_105.1211 103.3008 101.0898 100.1328 93.8652 99.1387 c -%_93.75 99.123 93.6602 99.0313 93.6465 98.916 c -%_93.6348 98.7998 93.7012 98.6904 93.8105 98.6504 c -%_102.1016 95.5723 110.4102 98.6953 117.2559 106.8652 C -%_114.2637 100.4883 109.3496 95.3809 102.4883 92.8535 c -%_102.373 92.8115 102.3047 92.6934 102.3262 92.5742 c -%_102.3457 92.4531 102.4492 92.3643 102.5703 92.3613 c -%_106.5137 92.2803 110.0566 93.2188 114.8359 95.9316 C -%_111.3281 90.2422 112.0957 80.293 117.2051 73.6738 c -%_117.2754 73.582 117.4004 73.5498 117.5078 73.5957 c -%_117.6133 73.6426 117.6758 73.7549 117.6563 73.8691 c -%_116.4766 81.0703 118.9551 89.1992 123.2656 93.5117 C -%_121.1133 85.8799 123.2598 78.9355 129.1621 73.8672 c -%_129.2324 73.8066 129.332 73.79 129.418 73.8232 c -%_129.5059 73.8564 129.5664 73.9355 129.5801 74.0273 c -%_130.8145 83.4453 141.3496 93.002 150.1816 93.8027 c -%_150.3066 93.8135 150.4043 93.9141 150.4121 94.0381 c -%_150.4199 94.1621 150.3379 94.2754 150.2148 94.3027 c -%_145.9355 95.2715 141.5234 94.793 137.8262 93.2715 C -%_140.4863 96.2051 143.7656 98.3828 147.3809 99.5176 c -%_147.498 99.5537 147.5703 99.668 147.5566 99.7891 c -%_147.543 99.9102 147.4434 100.0039 147.3223 100.0127 c -%_142.8125 100.3242 138.3984 99.0068 134.5918 96.4746 C -%_138.9531 103.0957 145.5723 108.0195 154.0195 109.9805 c -%_154.1406 110.0088 154.2227 110.1191 154.2168 110.2432 c -%_154.209 110.3672 154.1133 110.4668 153.9902 110.4805 c -%_142.0723 111.7822 132.2441 107.1621 125.7695 98.5625 C -%_127.418 103.4629 132.1348 108.3184 138.7148 111.1816 c -%_144.5605 113.7266 150.5645 114.1279 155.1367 112.6914 c -%_155.2422 112.6582 155.3594 112.6982 155.4219 112.791 c -%_155.4844 112.8828 155.4805 113.0059 155.4102 113.0938 c -%_f -%_102.5059 37.5215 m -%_107.3125 48.0078 106.9707 56.207 103.0996 66.5762 c -%_103.0547 66.6934 102.9336 66.7607 102.8105 66.7363 c -%_102.6875 66.7109 102.6016 66.5996 102.6074 66.4746 c -%_103.2285 53.8535 99.7813 44.8203 92.3086 38.668 C -%_100.5586 48.5195 96.6621 68.2275 83.4863 68.2275 c -%_73.9004 68.2275 65.9697 60.252 64.0303 50.7031 c -%_64.0059 50.582 64.0723 50.459 64.1885 50.416 c -%_64.3037 50.3711 64.4346 50.416 64.4971 50.5215 c -%_67.3398 55.2832 71.9063 58.373 76.9551 58.373 c -%_85.0898 58.373 87.4961 51.9063 87.4961 47.375 c -%_87.4961 41.1875 82.5703 36.0313 78.7891 36.0313 c -%_75.3516 36.0313 73.748 38.8555 73.748 40.959 c -%_73.748 44.8574 76.7461 48.125 80.125 49.123 c -%_80.2441 49.1582 80.3223 49.2773 80.3047 49.4023 c -%_80.2852 49.5273 80.1797 49.6191 80.0547 49.6211 c -%_75.9473 49.6465 72.4766 47.7656 70.4238 44.0527 C -%_70.1543 46.9277 70.1514 48.7383 71.0645 51.7754 c -%_71.0996 51.8926 71.0459 52.0176 70.9385 52.0742 c -%_70.8291 52.1309 70.6963 52.1016 70.6221 52.0059 c -%_63.2656 42.6133 66.7861 26.3809 72.6016 19.6484 C -%_67.0693 23.6309 62.1846 32.2813 62.2617 44.041 c -%_62.2627 44.1641 62.1768 44.2676 62.0566 44.291 c -%_61.9365 44.3164 61.8174 44.25 61.7725 44.1367 c -%_57.6641 33.8848 59.8438 14.8887 71.0537 4.28516 C -%_68.1699 3.88867 65.1865 3.93945 61.9287 4.97852 c -%_61.8135 5.01367 61.6885 4.96484 61.6299 4.85938 c -%_61.5713 4.75195 61.5947 4.61914 61.6885 4.54102 c -%_65.7803 1.08594 71.5029 0 76.9551 0 C -%_72.2578 5.5 73.8184 16.5547 81.3105 16.5547 c -%_86.6582 16.5547 89.0859 8.25586 84.957 3.77344 c -%_84.8789 3.6875 84.8691 3.55859 84.9316 3.46289 c -%_84.9961 3.36523 85.1172 3.32227 85.2285 3.36133 c -%_90.0078 5.01563 95.1738 9.15039 95.1738 14.377 c -%_95.1738 19.4199 90.3613 23.7715 83.373 23.4277 C -%_92.1914 25.9336 101.4238 23.1602 106.2539 17.1758 c -%_106.3281 17.082 106.459 17.0547 106.5645 17.1074 c -%_106.6719 17.1621 106.7266 17.2832 106.6973 17.3984 c -%_103.9063 28.1152 94.7305 32.5977 83.2578 31.1055 C -%_92.5391 34.8613 106.5078 31.5859 112.6816 23.7949 c -%_112.7539 23.7031 112.8809 23.6738 112.9883 23.7227 c -%_113.0938 23.7734 113.1523 23.8906 113.1289 24.0039 c -%_111.7578 30.6191 108.2656 35.5664 102.5059 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 56.8086 m -%_128.8672 56.6895 128.7637 56.6016 128.6426 56.6016 c -%_115.7363 56.4648 103.8887 53.334 94.6719 45.0859 C -%_102.7012 50.6445 117.6133 52.5957 126.1992 48.7051 c -%_126.3086 48.6543 126.3672 48.5332 126.3398 48.416 c -%_126.3145 48.2988 126.207 48.2168 126.0859 48.2188 c -%_115.4063 48.5098 106.8066 45.2129 100.1016 39.2559 C -%_106.9707 38.832 112.6758 34.5156 112.6582 29.4102 c -%_112.6582 29.291 112.5742 29.1875 112.457 29.1621 c -%_112.3418 29.1387 112.2227 29.1973 112.1738 29.3066 c -%_111.0527 31.7949 107.4258 33.0879 103.5918 32.1875 c -%_99.4121 31.2051 96.5918 27.998 97.291 25.0215 c -%_97.7617 23.0078 99.7266 21.6191 102.2422 21.2344 c -%_102.3691 21.2148 102.4629 21.1055 102.459 20.9766 c -%_102.4551 20.8496 102.3574 20.7441 102.2285 20.7305 c -%_101.1602 20.6289 100.0488 20.625 98.9121 20.7344 c -%_92.4219 21.3516 87.3984 25.3281 86.9629 29.9121 C -%_82.25 29.3652 78.0781 26.7539 76.584 23.1387 c -%_76.5391 23.0293 76.4258 22.9668 76.3086 22.9844 c -%_76.1934 23.002 76.1055 23.0977 76.0957 23.2148 c -%_75.7188 27.9648 77.3535 31.0527 81.0664 34.0684 C -%_75.6816 32.0098 69.6201 31.9043 63.8096 34.6055 c -%_63.7041 34.6563 63.6455 34.7715 63.667 34.8867 c -%_63.6904 35.002 63.79 35.0859 63.9072 35.0898 c -%_68.7861 35.2793 72.3242 36.8457 75.6406 40.1621 C -%_57.3838 35.0273 42.5518 46.3633 47.6846 63.2129 c -%_47.7197 63.3301 47.8311 63.4043 47.9521 63.3926 c -%_48.0732 63.3809 48.1689 63.2852 48.1787 63.1641 c -%_49.0967 53.4492 55.8818 47.0469 66.04 46.0879 C -%_60.6533 48.1465 55.04 53.0625 54.4834 61.6211 c -%_54.4756 61.7441 54.5557 61.8535 54.6748 61.8848 c -%_54.7939 61.9141 54.917 61.8535 54.9678 61.7422 c -%_57.7666 55.5879 63.2646 52.4785 69.1279 51.9297 C -%_62.7939 54.5117 58.7314 60.5332 57.5576 68.3516 c -%_57.5381 68.4746 57.6123 68.5918 57.7314 68.6309 c -%_57.8486 68.668 57.9775 68.6152 58.0342 68.5039 c -%_61.8994 60.9219 70.1904 55.7109 80.4824 59.6934 c -%_91.0996 63.8027 95.7559 76.0781 96.7852 84.7324 c -%_96.8008 84.8555 96.9004 84.9492 97.0234 84.957 c -%_97.1465 84.9629 97.2559 84.8809 97.2852 84.7617 c -%_101.0039 69.0723 93.7012 52.8125 80.6484 45.9219 C -%_87.7441 47.9238 94.0879 52.1816 97.6758 59.2754 C -%_105.9688 60.293 111.6797 63.1387 114.5332 68.5156 c -%_114.5898 68.6211 114.7129 68.6738 114.8281 68.6406 c -%_114.9434 68.6055 115.0195 68.4941 115.0098 68.375 c -%_114.8281 66.2656 114.0684 62.0449 110.9355 60.1035 C -%_117.9004 60.1152 123.4414 59.2109 128.7344 57.0898 c -%_128.8457 57.0449 128.9121 56.9277 128.8887 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 110.2773 m -%_99.502 110.2129 99.6309 110.2227 99.7188 110.3047 c -%_99.8047 110.3848 99.8223 110.5137 99.7637 110.6172 c -%_98.1445 113.4141 99.623 117.4297 102.8145 117.4297 c -%_108.5352 117.4297 111.2852 106.6602 110.4102 96.8379 C -%_108.248 102.5918 106.377 104.8926 103.0625 107.6328 c -%_102.9688 107.709 102.834 107.7109 102.7402 107.6328 c -%_102.6465 107.5566 102.6191 107.4238 102.6777 107.3164 c -%_107.5332 98.2383 108.5742 91.252 108.5742 83.2324 C -%_107.1113 89.1895 105.3789 92.5527 100.4473 97.6133 c -%_100.3613 97.7012 100.2246 97.7148 100.123 97.6445 c -%_100.0215 97.5742 99.9844 97.4414 100.0352 97.3301 c -%_105.334 85.7383 104.9297 72.8828 100.9824 63.0664 c -%_100.9434 62.9688 100.9688 62.8574 101.0449 62.7852 c -%_101.123 62.7129 101.2344 62.6973 101.3301 62.7422 c -%_106.5352 65.293 109.5938 66.9688 114.082 73.1328 C -%_112.7246 80.5313 113.8535 84.1797 117.2539 90.3262 C -%_113.3164 80.4102 115.4121 66.4336 125.4414 60.7363 c -%_125.5508 60.6738 125.6895 60.7012 125.7656 60.8008 c -%_125.8438 60.9004 125.8379 61.041 125.75 61.1328 c -%_121.9688 65.0879 119.2188 71.7676 121.5938 79.0586 C -%_120.0645 68.6699 129.1895 59.9453 139.373 59.9453 c -%_148.9727 59.9453 155.5234 67.4531 154.9824 74.8848 c -%_154.4453 82.25 149.5391 85.8555 145.3105 87.3828 c -%_145.1992 87.4238 145.0742 87.3809 145.0117 87.2813 c -%_144.9473 87.1816 144.9609 87.0508 145.0449 86.9668 c -%_150.6543 81.2734 151.4219 70.4746 141.4609 67.207 C -%_147.3203 72.2637 145.1504 84.0352 135.7715 84.9316 c -%_135.6543 84.9414 135.5449 84.8711 135.5078 84.7598 c -%_135.4688 84.6504 135.5117 84.5273 135.6113 84.4648 c -%_137.6191 83.1855 139.2891 80.6934 139.2891 77.8906 c -%_139.2891 73.2168 135.8672 71.3789 133.6133 71.3789 c -%_130.1914 71.3789 127.3535 74.6348 127.3535 79.5605 c -%_127.3535 85.4023 132.6133 90.2441 139.373 90.9941 c -%_146 91.7305 152.1563 88.8398 155.123 84.5352 c -%_155.1934 84.4336 155.3242 84.3984 155.4375 84.4492 c -%_155.5488 84.5 155.6074 84.623 155.5781 84.7422 c -%_152.5586 96.4453 138.7813 101.6191 128.6895 94.25 C -%_135.3027 101.75 145.6953 101.8555 154.4121 94.1641 c -%_154.502 94.084 154.6367 94.0781 154.7344 94.1523 c -%_154.8301 94.2266 154.8613 94.3574 154.8066 94.4668 c -%_152.1406 99.873 145.5547 106.2852 136.2012 105.3516 c -%_127.6445 104.4961 122.6797 96.3359 121.6777 89.6602 C -%_121.1211 98.1816 123.0723 104.1953 130.4316 109.8047 c -%_130.5293 109.8789 130.5586 110.0117 130.5039 110.1211 c -%_130.4492 110.2305 130.3242 110.2852 130.207 110.25 c -%_123.4219 108.291 117.9766 104.8262 115.1582 97.707 C -%_115.1582 103.8672 117.2969 110.0781 122.6836 114.2168 c -%_122.7813 114.291 122.8105 114.4238 122.7559 114.5332 c -%_122.7012 114.6406 122.5781 114.6953 122.4609 114.6621 c -%_119.0078 113.6797 116.2891 112.1738 114.3223 109.4785 C -%_113.0117 120.5781 107.8008 127.168 101.7969 127.168 c -%_97.6719 127.168 94.5918 124.1348 94.5918 119.2988 c -%_94.5918 116.4688 96.0801 112.4961 99.4023 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 18.6602 m -%_3.33691 14.7559 9.71387 13.2676 16.6064 14.6719 C -%_16.0967 10.3691 16.9404 5.88086 18.2178 3.18555 c -%_18.2705 3.07813 18.3916 3.01953 18.5088 3.04883 c -%_18.626 3.07813 18.7061 3.18555 18.7021 3.30664 c -%_18.3271 12.0723 23.3252 19.1484 32.1514 22.2148 C -%_25.2451 17.459 23.2256 8.02148 26.5127 3.15039 c -%_26.5811 3.05078 26.708 3.01172 26.8193 3.05664 c -%_26.9307 3.10156 26.9951 3.21875 26.9736 3.33789 c -%_26.6006 5.39844 27.5791 8.02148 29.6865 10.0625 c -%_32.5928 12.877 36.5361 13.5156 38.4971 11.4922 c -%_40.458 9.4668 39.6943 5.54492 36.79 2.73242 c -%_35.7295 1.70508 34.5303 0.96875 33.3408 0.546875 c -%_33.2275 0.505859 33.1592 0.392578 33.1748 0.275391 c -%_33.1885 0.15625 33.2842 0.064453 33.4033 0.054688 c -%_39.792 -0.5 44.1729 3.30664 46.9189 7.93164 c -%_49.7139 12.6367 54.4893 16.3438 60.1299 15.6035 c -%_60.249 15.5879 60.3623 15.6582 60.4033 15.7715 c -%_60.4424 15.8848 60.3975 16.0098 60.2939 16.0723 c -%_57.4971 17.7559 54.4229 18.4551 50.4307 17.125 C -%_56.2256 22.0332 64.4775 24.8652 72.2715 22.3516 c -%_72.3809 22.3164 72.5 22.3594 72.5625 22.4551 c -%_72.625 22.5508 72.6152 22.6777 72.5371 22.7637 c -%_66.6279 29.3281 54.8467 29.459 47.4268 24.1348 C -%_50.4639 28.4512 54.4951 31.6211 61.7197 32.6133 c -%_61.835 32.6289 61.9248 32.7227 61.9385 32.8379 c -%_61.9502 32.9531 61.8838 33.0625 61.7744 33.1035 c -%_53.4834 36.1797 45.1748 33.0586 38.3291 24.8867 C -%_41.3213 31.2656 46.2354 36.373 53.0967 38.9004 c -%_53.2119 38.9414 53.2803 39.0586 53.2588 39.1797 c -%_53.2393 39.3008 53.1357 39.3887 53.0146 39.3906 c -%_49.0713 39.4727 45.5283 38.5332 40.749 35.8203 C -%_44.2568 41.5117 43.4893 51.459 38.3799 58.0801 c -%_38.3096 58.1719 38.1846 58.2031 38.0771 58.1582 c -%_37.9717 58.1113 37.9092 57.998 37.9287 57.8828 c -%_39.1084 50.6836 36.6299 42.5547 32.3193 38.2422 C -%_34.4717 45.873 32.3252 52.8184 26.4229 57.8848 c -%_26.3525 57.9453 26.2529 57.9629 26.167 57.9297 c -%_26.0791 57.8965 26.0186 57.8184 26.0049 57.7266 c -%_24.7705 48.3086 14.2354 38.752 5.40332 37.9512 c -%_5.27832 37.9395 5.18066 37.8398 5.17285 37.7148 c -%_5.16504 37.5898 5.24707 37.4785 5.37012 37.4512 c -%_9.64941 36.4824 14.0615 36.9609 17.7588 38.4805 C -%_15.0986 35.5488 11.8193 33.3711 8.2041 32.2363 c -%_8.08691 32.1992 8.01465 32.0859 8.02832 31.9648 c -%_8.04199 31.8438 8.1416 31.748 8.2627 31.7402 c -%_12.7725 31.4297 17.1865 32.7461 20.9932 35.2793 C -%_16.6318 28.6582 10.0127 23.7344 1.56543 21.7715 c -%_1.44434 21.7441 1.3623 21.6328 1.36816 21.5098 c -%_1.37598 21.3867 1.47168 21.2871 1.59473 21.2734 c -%_13.5127 19.9707 23.3408 24.5918 29.8154 33.1914 C -%_28.167 28.2891 23.4502 23.4355 16.8701 20.5723 c -%_11.0244 18.0273 5.02051 17.625 0.448242 19.0625 c -%_0.342773 19.0957 0.225586 19.0547 0.163086 18.9629 c -%_0.100586 18.8691 0.104492 18.7461 0.174805 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 94.2324 m -%_48.2725 83.7461 48.6143 75.5469 52.4854 65.1777 c -%_52.5303 65.0605 52.6514 64.9922 52.7744 65.0176 c -%_52.8975 65.043 52.9834 65.1543 52.9775 65.2773 c -%_52.3564 77.9004 55.8037 86.9316 63.2764 93.0859 C -%_55.0264 83.2324 58.9229 63.5254 72.0996 63.5254 c -%_81.6855 63.5254 89.6152 71.502 91.5547 81.0508 c -%_91.5801 81.1719 91.5137 81.293 91.3965 81.3379 c -%_91.2813 81.3828 91.1504 81.3379 91.0879 81.2305 c -%_88.2461 76.4688 83.6797 73.3789 78.6309 73.3789 c -%_70.4951 73.3789 68.0889 79.8457 68.0889 84.3789 c -%_68.0889 90.5645 73.0156 95.7207 76.7969 95.7207 c -%_80.2344 95.7207 81.8379 92.8984 81.8379 90.7949 c -%_81.8379 86.8965 78.8398 83.6289 75.4629 82.6309 c -%_75.3418 82.5938 75.2656 82.4766 75.2832 82.3516 c -%_75.3008 82.2266 75.4063 82.1328 75.5332 82.1328 c -%_79.6387 82.1074 83.1094 83.9863 85.1621 87.7012 C -%_85.4316 84.8262 85.4336 83.0156 84.5215 79.9766 c -%_84.4863 79.8594 84.5391 79.7344 84.6465 79.6777 c -%_84.7559 79.623 84.8887 79.6504 84.9629 79.748 c -%_92.3203 89.1406 88.7988 105.3711 82.9844 112.1055 C -%_88.5156 108.123 93.4004 99.4707 93.3242 87.7109 c -%_93.3223 87.5898 93.4082 87.4844 93.5293 87.4609 c -%_93.6484 87.4375 93.7676 87.502 93.8125 87.6152 c -%_97.9219 97.8691 95.7422 116.8633 84.5313 127.4668 C -%_87.416 127.8652 90.3984 127.8145 93.6563 126.7754 c -%_93.7715 126.7383 93.8965 126.7891 93.9551 126.8945 c -%_94.0137 127 93.9902 127.1328 93.8965 127.2109 c -%_89.8047 130.666 84.082 131.752 78.6309 131.752 C -%_83.3281 126.252 81.7676 115.1992 74.2773 115.1992 c -%_68.9268 115.1992 66.499 123.498 70.6279 127.9805 c -%_70.7061 128.0664 70.7158 128.1934 70.6533 128.291 c -%_70.5889 128.3887 70.4678 128.4297 70.3564 128.3926 c -%_65.5771 126.7363 60.4111 122.6035 60.4111 117.375 c -%_60.4111 112.334 65.2236 107.9805 72.2148 108.3242 C -%_63.3936 105.8203 54.1611 108.5918 49.3311 114.5781 c -%_49.2568 114.6699 49.126 114.6992 49.0205 114.6445 c -%_48.9131 114.5918 48.8584 114.4707 48.8877 114.3535 c -%_51.6787 103.6387 60.8545 99.1543 72.3281 100.6484 C -%_63.0459 96.8906 49.0771 100.166 42.9033 107.957 c -%_42.8311 108.0488 42.7041 108.0801 42.5967 108.0293 c -%_42.4912 107.9805 42.4326 107.8633 42.4561 107.748 c -%_43.8 -endstream endobj 41 0 obj <>stream -271 101.1328 47.3193 96.1875 53.0791 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_135.0352 184.5869 m -%_135.0566 184.7061 135.1602 184.792 135.2813 184.7939 c -%_148.1875 184.9287 160.0352 188.0615 169.2529 196.3086 C -%_161.2227 190.751 146.3105 188.7979 137.7256 192.6904 c -%_137.6152 192.7402 137.5566 192.8604 137.584 192.9785 c -%_137.6104 193.0967 137.7168 193.1787 137.8379 193.1748 c -%_148.5176 192.8857 157.1172 196.1816 163.8223 202.1396 C -%_156.9531 202.5615 151.248 206.8799 151.2656 211.9844 c -%_151.2656 212.1035 151.3496 212.2061 151.4668 212.2314 c -%_151.583 212.2568 151.7012 212.1963 151.75 212.0879 c -%_152.8711 209.5986 156.498 208.3076 160.333 209.208 c -%_164.5127 210.1885 167.333 213.3975 166.6338 216.373 c -%_166.1621 218.3877 164.1973 219.7764 161.6816 220.1602 c -%_161.5547 220.1787 161.4619 220.29 161.4648 220.418 c -%_161.4688 220.5459 161.5674 220.6514 161.6953 220.6631 c -%_162.7637 220.7656 163.875 220.7695 165.0127 220.6611 c -%_171.5029 220.0439 176.5264 216.0654 176.9619 211.4834 C -%_181.6748 212.0303 185.8467 214.6396 187.3408 218.2568 c -%_187.3857 218.3652 187.501 218.4287 187.6162 218.4111 c -%_187.7314 218.3916 187.8193 218.2969 187.8291 218.1807 c -%_188.2061 213.4287 186.5713 210.3418 182.8584 207.3262 C -%_188.2432 209.3857 194.3027 209.4912 200.1133 206.7881 c -%_200.2188 206.7393 200.2773 206.624 200.2559 206.5088 c -%_200.2324 206.3936 200.1328 206.3096 200.0156 206.3057 c -%_195.1367 206.1152 191.5996 204.5498 188.2861 201.2334 C -%_206.5391 206.3672 221.3711 195.0322 216.2383 178.1807 c -%_216.2031 178.0654 216.0918 177.9902 215.9707 178.0029 c -%_215.8496 178.0146 215.7539 178.1104 215.7441 178.2314 c -%_214.8262 187.9453 208.041 194.3467 197.8828 195.3076 C -%_203.2695 193.2471 208.8828 188.3311 209.4395 179.7734 c -%_209.4473 179.6514 209.3672 179.54 209.248 179.5107 c -%_209.1289 179.4814 209.0059 179.54 208.9551 179.6514 c -%_206.1563 185.8057 200.6582 188.917 194.7949 189.4639 C -%_201.1289 186.8838 205.1914 180.8623 206.3652 173.0439 c -%_206.3848 172.9209 206.3105 172.8018 206.1914 172.7646 c -%_206.0742 172.7256 205.9453 172.7803 205.8887 172.8896 c -%_202.0234 180.4727 193.7324 185.6836 183.4424 181.7021 c -%_172.8252 177.5928 168.168 165.3154 167.1387 156.6611 c -%_167.124 156.54 167.0234 156.4463 166.9004 156.4385 c -%_166.7783 156.4307 166.668 156.5127 166.6396 156.6338 c -%_162.9199 172.3213 170.2227 188.583 183.2764 195.4736 C -%_176.1807 193.4707 169.8369 189.2139 166.249 182.1191 C -%_157.9551 181.1006 152.2451 178.2568 149.3916 172.8799 c -%_149.335 172.7725 149.2109 172.7197 149.0957 172.7549 c -%_148.9805 172.7881 148.9043 172.8994 148.9141 173.0205 c -%_149.0967 175.1299 149.8555 179.3506 152.9883 181.291 C -%_146.0234 181.2803 140.4824 182.1846 135.1895 184.3037 c -%_135.0781 184.3496 135.0127 184.4678 135.0352 184.5869 c -%_f -%_0 D -%_164.5215 131.1162 m -%_164.4229 131.1826 164.293 131.1709 164.2061 131.0908 c -%_164.1201 131.0088 164.1016 130.8799 164.1602 130.7783 c -%_165.7803 127.9814 164.3008 123.9639 161.1094 123.9639 c -%_155.3887 123.9639 152.6387 134.7334 153.5137 144.5576 C -%_155.6768 138.8018 157.5469 136.5029 160.8613 133.7627 c -%_160.9551 133.6846 161.0898 133.6846 161.1836 133.7607 c -%_161.2773 133.8389 161.3047 133.9697 161.2471 134.0771 c -%_156.3906 143.1572 155.3496 150.1436 155.3496 158.1631 C -%_156.8125 152.2041 158.5449 148.8408 163.4766 143.7822 c -%_163.5625 143.6943 163.6992 143.6807 163.8018 143.749 c -%_163.9033 143.8193 163.9404 143.9521 163.8887 144.0654 c -%_158.5908 155.6553 158.9951 168.5127 162.9414 178.3291 c -%_162.9805 178.4268 162.9561 178.5381 162.8789 178.6104 c -%_162.8018 178.6807 162.6895 178.6982 162.5938 178.6514 c -%_157.3887 176.1006 154.3301 174.4248 149.8418 168.2627 C -%_151.1992 160.8643 150.0703 157.2139 146.6699 151.0674 C -%_150.6074 160.9854 148.5117 174.9619 138.4824 180.6592 c -%_138.373 180.7207 138.2344 180.6934 138.1582 180.5947 c -%_138.0801 180.4951 138.0869 180.3535 138.1738 180.2627 c -%_141.9551 176.3076 144.7051 169.6279 142.3301 162.335 C -%_143.8594 172.7236 134.7344 181.4502 124.5508 181.4502 c -%_114.9512 181.4502 108.4004 173.9404 108.9414 166.5088 c -%_109.4785 159.1436 114.3848 155.54 118.6133 154.0107 c -%_118.7246 153.9717 118.8496 154.0127 118.9131 154.1123 c -%_118.9766 154.2139 118.9629 154.3428 118.8799 154.4287 c -%_113.2695 160.1201 112.502 170.9209 122.4629 174.1885 C -%_116.6035 169.1318 118.7734 157.3584 128.1523 156.4639 c -%_128.2695 156.4521 128.3789 156.5225 128.417 156.6338 c -%_128.4551 156.7451 128.4121 156.8682 128.3135 156.9307 c -%_126.3047 158.208 124.6348 160.7021 124.6348 163.5049 c -%_124.6348 168.1787 128.0566 170.0146 130.3105 170.0146 c -%_133.7324 170.0146 136.5703 166.7588 136.5703 161.835 c -%_136.5703 155.9912 131.3105 151.1514 124.5508 150.3994 c -%_117.9248 149.665 111.7686 152.5537 108.8008 156.8584 c -%_108.7314 156.96 108.5996 156.9971 108.4873 156.9463 c -%_108.375 156.8955 108.3164 156.7705 108.3467 156.6514 c -%_111.3652 144.9482 125.1426 139.7744 135.2344 147.1455 C -%_128.6211 139.6436 118.2285 139.54 109.5127 147.2314 c -%_109.4219 147.3115 109.2871 147.3154 109.1904 147.2412 c -%_109.0938 147.1689 109.0635 147.0361 109.1172 146.9287 c -%_111.7842 141.5205 118.3701 135.1084 127.7227 136.0439 c -%_136.2793 136.8994 141.2441 145.0576 142.2461 151.7354 C -%_142.8027 143.2139 140.8525 137.1982 133.4922 131.5889 c -%_133.3955 131.5146 133.3652 131.3818 133.4199 131.2725 c -%_133.4746 131.165 133.5996 131.1104 133.7168 131.1436 c -%_140.502 133.1045 145.9473 136.5693 148.7656 143.6885 C -%_148.7656 137.5264 146.627 131.3154 141.2402 127.1768 c -%_141.1426 127.1025 141.1133 126.9717 141.168 126.8623 c -%_141.2227 126.7529 141.3467 126.6982 141.4639 126.7314 c -%_144.917 127.7158 147.6348 129.2197 149.6016 131.917 C -%_150.9121 120.8174 156.123 114.2256 162.127 114.2256 c -%_166.252 114.2256 169.332 117.2588 169.332 122.0967 c -%_169.332 124.9268 167.8438 128.8994 164.5215 131.1162 c -%_f -%_263.748 222.7354 m -%_260.5859 226.6396 254.209 228.1279 247.3164 226.7236 C -%_247.8262 231.0244 246.9824 235.5146 245.7051 238.208 c -%_245.6523 238.3174 245.5313 238.375 245.4141 238.3467 c -%_245.2969 238.3174 245.2168 238.21 245.2207 238.0889 c -%_245.5957 229.3223 240.5977 222.2451 231.7715 219.1787 C -%_238.6777 223.9346 240.6973 233.3721 237.4102 238.2451 c -%_237.3418 238.3438 237.2148 238.3828 237.1035 238.3369 c -%_236.9922 238.292 236.9277 238.1748 236.9492 238.0576 c -%_237.3223 235.9971 236.3438 233.373 234.2363 231.3311 c -%_231.3301 228.5166 227.3867 227.8779 225.4258 229.9014 c -%_223.4648 231.9268 224.2285 235.8486 227.1328 238.6631 c -%_228.1934 239.6904 229.3926 240.4248 230.582 240.8477 c -%_230.6953 240.8877 230.7637 241.001 230.748 241.1191 c -%_230.7344 241.2383 230.6387 241.3301 230.5195 241.3398 c -%_224.1309 241.8945 219.75 238.0879 217.0039 233.4619 c -%_214.209 228.7568 209.4336 225.0518 203.793 225.792 c -%_203.6738 225.8076 203.5605 225.7373 203.5195 225.624 c -%_203.4805 225.5107 203.5254 225.3838 203.6289 225.3223 c -%_206.4258 223.6377 209.5 222.9385 213.4922 224.2705 C -%_207.6973 219.3613 199.4453 216.5283 191.6523 219.043 c -%_191.543 219.0791 191.4238 219.0361 191.3613 218.9395 c -%_191.2988 218.8428 191.3105 218.7168 191.3867 218.6318 c -%_197.2949 212.0674 209.0762 211.9365 216.4961 217.2588 C -%_213.459 212.9424 209.4277 209.7744 202.2031 208.7803 c -%_202.0879 208.7646 201.998 208.6729 201.9844 208.5576 c -%_201.9727 208.4414 202.0391 208.332 202.1484 208.292 c -%_210.4395 205.2139 218.748 208.3369 225.5938 216.5068 C -%_222.6016 210.1299 217.6875 205.0225 210.8262 202.4951 c -%_210.7109 202.4531 210.6426 202.335 210.6641 202.2158 c -%_210.6836 202.0947 210.7871 202.0059 210.9082 202.0029 c -%_214.8516 201.9219 218.3945 202.8604 223.1738 205.5732 C -%_219.666 199.8838 220.4336 189.9346 225.543 183.3154 c -%_225.6133 183.2236 225.7383 183.1914 225.8457 183.2373 c -%_225.9512 183.2842 226.0137 183.3965 225.9941 183.5107 c -%_224.8145 190.7119 227.293 198.8408 231.6035 203.1533 C -%_229.4512 195.5215 231.5977 188.5771 237.5 183.5088 c -%_237.5703 183.4482 237.6699 183.4316 237.7559 183.4648 c -%_237.8438 183.498 237.9043 183.5771 237.918 183.6689 c -%_239.1523 193.0869 249.6875 202.6436 258.5195 203.4443 c -%_258.6445 203.4551 258.7422 203.5557 258.75 203.6797 c -%_258.7578 203.8037 258.6758 203.917 258.5527 203.9443 c -%_254.2734 204.9131 249.8613 204.4346 246.1641 202.9131 C -%_248.8242 205.8467 252.1035 208.0244 255.7188 209.1592 c -%_255.8359 209.1953 255.9082 209.3096 255.8945 209.4307 c -%_255.8809 209.5518 255.7813 209.6455 255.6602 209.6543 c -%_251.1504 209.9658 246.7363 208.6484 242.9297 206.1162 C -%_247.291 212.7373 253.9102 217.6611 262.3574 219.6221 c -%_262.4785 219.6504 262.5605 219.7607 262.5547 219.8848 c -%_262.5469 220.0088 262.4512 220.1084 262.3281 220.1221 c -%_250.4102 221.4238 240.582 216.8037 234.1074 208.2041 C -%_235.7559 213.1045 240.4727 217.96 247.0527 220.8232 c -%_252.8984 223.3682 258.9023 223.7695 263.4746 222.333 c -%_263.5801 222.2998 263.6973 222.3398 263.7598 222.4326 c -%_263.8223 222.5244 263.8184 222.6475 263.748 222.7354 c -%_f -%_210.8438 147.1631 m -%_215.6504 157.6494 215.3086 165.8486 211.4375 176.2178 c -%_211.3926 176.335 211.2715 176.4023 211.1484 176.3779 c -%_211.0254 176.3525 210.9395 176.2412 210.9453 176.1162 c -%_211.5664 163.4951 208.1191 154.4619 200.6465 148.3096 C -%_208.8965 158.1611 205 177.8691 191.8242 177.8691 c -%_182.2393 177.8691 174.3086 169.8936 172.3691 160.3447 c -%_172.3447 160.2236 172.4111 160.1006 172.5273 160.0576 c -%_172.6426 160.0127 172.7734 160.0576 172.8359 160.1631 c -%_175.6787 164.9248 180.2451 168.0146 185.2939 168.0146 c -%_193.4277 168.0146 195.834 161.5479 195.834 157.0166 c -%_195.834 150.8291 190.9082 145.6729 187.1279 145.6729 c -%_183.6904 145.6729 182.0869 148.4971 182.0869 150.6006 c -%_182.0869 154.499 185.085 157.7666 188.4639 158.7646 c -%_188.583 158.7998 188.6611 158.9189 188.6436 159.0439 c -%_188.624 159.1689 188.5186 159.2607 188.3936 159.2627 c -%_184.2861 159.2881 180.8154 157.4072 178.7627 153.6943 C -%_178.4932 156.5693 178.4902 158.3799 179.4033 161.417 c -%_179.4385 161.5342 179.3848 161.6592 179.2773 161.7158 c -%_179.168 161.7725 179.0352 161.7432 178.9609 161.6475 c -%_171.6045 152.2549 175.125 136.0225 180.9404 129.29 C -%_175.4082 133.2725 170.5234 141.9229 170.6006 153.6826 c -%_170.6016 153.8057 170.5156 153.9092 170.3955 153.9326 c -%_170.2754 153.958 170.1563 153.8916 170.1113 153.7783 c -%_166.0029 143.5264 168.1826 124.5303 179.3926 113.9268 C -%_176.5088 113.5303 173.5254 113.5811 170.2676 114.6201 c -%_170.1523 114.6553 170.0273 114.6064 169.9688 114.501 c -%_169.9102 114.3936 169.9336 114.2607 170.0273 114.1826 c -%_174.1191 110.7275 179.8418 109.6416 185.2939 109.6416 C -%_180.5967 115.1416 182.1572 126.1963 189.6494 126.1963 c -%_194.9961 126.1963 197.4238 117.8975 193.2949 113.415 c -%_193.2168 113.3291 193.207 113.2002 193.2695 113.1045 c -%_193.334 113.0068 193.4551 112.9639 193.5664 113.0029 c -%_198.3457 114.6572 203.5117 118.792 203.5117 124.0186 c -%_203.5117 129.0615 198.6992 133.4131 191.7109 133.0693 C -%_200.5293 135.5752 209.7617 132.8018 214.5918 126.8174 c -%_214.666 126.7236 214.7969 126.6963 214.9023 126.749 c -%_215.0098 126.8037 215.0645 126.9248 215.0352 127.04 c -%_212.2441 137.7568 203.0684 142.2393 191.5957 140.7471 C -%_200.877 144.5029 214.8457 141.2275 221.0195 133.4365 c -%_221.0918 133.3447 221.2188 133.3154 221.3262 133.3643 c -%_221.4316 133.415 221.4902 133.5322 221.4668 133.6455 c -%_220.0957 140.2607 216.6035 145.208 210.8438 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 166.4502 m -%_237.2051 166.3311 237.1016 166.2432 236.9805 166.2432 c -%_224.0742 166.1064 212.2266 162.9756 203.0098 154.7275 C -%_211.0391 160.2861 225.9512 162.2373 234.5371 158.3467 c -%_234.6465 158.2959 234.7051 158.1748 234.6777 158.0576 c -%_234.6523 157.9404 234.5449 157.8584 234.4238 157.8604 c -%_223.7441 158.1514 215.1445 154.8545 208.4395 148.8975 C -%_215.3086 148.4736 221.0137 144.1572 220.9961 139.0518 c -%_220.9961 138.9326 220.9121 138.8291 220.7949 138.8037 c -%_220.6797 138.7803 220.5605 138.8389 220.5117 138.9482 c -%_219.3906 141.4365 215.7637 142.7295 211.9297 141.8291 c -%_207.75 140.8467 204.9297 137.6396 205.6289 134.6631 c -%_206.0996 132.6494 208.0645 131.2607 210.5801 130.876 c -%_210.707 130.8564 210.8008 130.7471 210.7969 130.6182 c -%_210.793 130.4912 210.6953 130.3857 210.5664 130.3721 c -%_209.498 130.2705 208.3867 130.2666 207.25 130.376 c -%_200.7598 130.9932 195.7363 134.9697 195.3008 139.5537 C -%_190.5889 139.0068 186.417 136.3955 184.9229 132.7803 c -%_184.8779 132.6709 184.7646 132.6084 184.6475 132.626 c -%_184.5322 132.6436 184.4443 132.7393 184.4346 132.8564 c -%_184.0576 137.6064 185.6924 140.6943 189.4053 143.71 C -%_184.0205 141.6514 177.959 141.5459 172.1484 144.2471 c -%_172.043 144.2979 171.9844 144.4131 172.0059 144.5283 c -%_172.0293 144.6436 172.1289 144.7275 172.2461 144.7314 c -%_177.125 144.9209 180.6631 146.4873 183.9795 149.8037 C -%_165.7227 144.6689 150.8906 156.0049 156.0234 172.8545 c -%_156.0586 172.9717 156.1699 173.0459 156.291 173.0342 c -%_156.4121 173.0225 156.5078 172.9268 156.5176 172.8057 c -%_157.4355 163.0908 164.2207 156.6885 174.3789 155.7295 C -%_168.9922 157.7881 163.3789 162.7041 162.8223 171.2627 c -%_162.8145 171.3857 162.8945 171.4951 163.0137 171.5264 c -%_163.1328 171.5557 163.2559 171.4951 163.3066 171.3838 c -%_166.1055 165.2295 171.6035 162.1201 177.4668 161.5713 C -%_171.1328 164.1533 167.0703 170.1748 165.8965 177.9932 c -%_165.877 178.1162 165.9512 178.2334 166.0703 178.2725 c -%_166.1875 178.3096 166.3164 178.2568 166.373 178.1455 c -%_170.2383 170.5635 178.5293 165.3525 188.8213 169.335 c -%_199.4375 173.4443 204.0938 185.7197 205.123 194.374 c -%_205.1387 194.4971 205.2383 194.5908 205.3613 194.5986 c -%_205.4844 194.6045 205.5938 194.5225 205.623 194.4033 c -%_209.3418 178.7139 202.0391 162.4541 188.9873 155.5635 C -%_196.082 157.5654 202.4258 161.8232 206.0137 168.917 C -%_214.3066 169.9346 220.0176 172.7803 222.8711 178.1572 c -%_222.9277 178.2627 223.0508 178.3154 223.166 178.2822 c -%_223.2813 178.2471 223.3574 178.1357 223.3477 178.0166 c -%_223.166 175.9072 222.4063 171.6865 219.2734 169.7451 C -%_226.2383 169.7568 231.7793 168.8525 237.0723 166.7314 c -%_237.1836 166.6865 237.25 166.5693 237.2266 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 219.9189 m -%_207.8398 219.8545 207.9688 219.8643 208.0566 219.9463 c -%_208.1426 220.0264 208.1602 220.1553 208.1016 220.2588 c -%_206.4824 223.0557 207.9609 227.0713 211.1523 227.0713 c -%_216.873 227.0713 219.623 216.3018 218.748 206.4795 C -%_216.5859 212.2334 214.7148 214.5342 211.4004 217.2744 c -%_211.3066 217.3506 211.1719 217.3525 211.0781 217.2744 c -%_210.9844 217.1982 210.957 217.0654 211.0156 216.958 c -%_215.8711 207.8799 216.9121 200.8936 216.9121 192.874 C -%_215.4492 198.8311 213.7168 202.1943 208.7852 207.2549 c -%_208.6992 207.3428 208.5625 207.3564 208.4609 207.2861 c -%_208.3594 207.2158 208.3223 207.083 208.373 206.9717 c -%_213.6719 195.3799 213.2676 182.5244 209.3203 172.708 c -%_209.2813 172.6104 209.3066 172.499 209.3828 172.4268 c -%_209.4609 172.3545 209.5723 172.3389 209.668 172.3838 c -%_214.873 174.9346 217.9316 176.6104 222.4199 182.7744 C -%_221.0625 190.1729 222.1914 193.8213 225.5918 199.9678 C -%_221.6543 190.0518 223.75 176.0752 233.7793 170.3779 c -%_233.8887 170.3154 234.0273 170.3428 234.1035 170.4424 c -%_234.1816 170.542 234.1758 170.6826 234.0879 170.7744 c -%_230.3066 174.7295 227.5566 181.4092 229.9316 188.7002 C -%_228.4023 178.3115 237.5273 169.5869 247.7109 169.5869 c -%_257.3105 169.5869 263.8613 177.0947 263.3203 184.5264 c -%_262.7832 191.8916 257.877 195.4971 253.6484 197.0244 c -%_253.5371 197.0654 253.4121 197.0225 253.3496 196.9229 c -%_253.2852 196.8232 253.2988 196.6924 253.3828 196.6084 c -%_258.9922 190.915 259.7598 180.1162 249.7988 176.8486 C -%_255.6582 181.9053 253.4883 193.6768 244.1094 194.5732 c -%_243.9922 194.583 243.8828 194.5127 243.8457 194.4014 c -%_243.8066 194.292 243.8496 194.1689 243.9492 194.1064 c -%_245.957 192.8271 247.627 190.335 247.627 187.5322 c -%_247.627 182.8584 244.2051 181.0205 241.9512 181.0205 c -%_238.5293 181.0205 235.6914 184.2764 235.6914 189.2021 c -%_235.6914 195.0439 240.9512 199.8857 247.7109 200.6357 c -%_254.3379 201.3721 260.4941 198.4814 263.4609 194.1768 c -%_263.5313 194.0752 263.6621 194.04 263.7754 194.0908 c -%_263.8867 194.1416 263.9453 194.2646 263.916 194.3838 c -%_260.8965 206.0869 247.1191 211.2607 237.0273 203.8916 C -%_243.6406 211.3916 254.0332 211.4971 262.75 203.8057 c -%_262.8398 203.7256 262.9746 203.7197 263.0723 203.7939 c -%_263.168 203.8682 263.1992 203.999 263.1445 204.1084 c -%_260.4785 209.5146 253.8926 215.9268 244.5391 214.9932 c -%_235.9824 214.1377 231.0176 205.9775 230.0156 199.3018 C -%_229.459 207.8232 231.4102 213.8369 238.7695 219.4463 c -%_238.8672 219.5205 238.8965 219.6533 238.8418 219.7627 c -%_238.7871 219.8721 238.6621 219.9268 238.5449 219.8916 c -%_231.7598 217.9326 226.3145 214.4678 223.4961 207.3486 C -%_223.4961 213.5088 225.6348 219.7197 231.0215 223.8584 c -%_231.1191 223.9326 231.1484 224.0654 231.0938 224.1748 c -%_231.0391 224.2822 230.916 224.3369 230.7988 224.3037 c -%_227.3457 223.3213 224.627 221.8154 222.6602 219.1201 C -%_221.3496 230.2197 216.1387 236.8096 210.1348 236.8096 c -%_206.0098 236.8096 202.9297 233.7764 202.9297 228.9404 c -%_202.9297 226.1104 204.418 222.1377 207.7402 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 128.3018 m -%_111.6758 124.3975 118.0527 122.9092 124.9453 124.3135 C -%_124.4355 120.0107 125.2793 115.5225 126.5566 112.8271 c -%_126.6094 112.7197 126.7305 112.6611 126.8477 112.6904 c -%_126.9648 112.7197 127.0449 112.8271 127.041 112.9482 c -%_126.666 121.7139 131.6641 128.79 140.4902 131.8564 C -%_133.584 127.1006 131.5645 117.6631 134.8516 112.792 c -%_134.9199 112.6924 135.0469 112.6533 135.1582 112.6982 c -%_135.2695 112.7432 135.334 112.8604 135.3125 112.9795 c -%_134.9395 115.04 135.918 117.6631 138.0254 119.7041 c -%_140.9316 122.5186 144.875 123.1572 146.8359 121.1338 c -%_148.7969 119.1084 148.0332 115.1865 145.1289 112.374 c -%_144.0684 111.3467 142.8691 110.6104 141.6797 110.1885 c -%_141.5664 110.1475 141.498 110.0342 141.5137 109.917 c -%_141.5273 109.7979 141.623 109.7061 141.7422 109.6963 c -%_148.1309 109.1416 152.5117 112.9482 155.2578 117.5732 c -%_158.0527 122.2783 162.8281 125.9854 168.4688 125.2451 c -%_168.5879 125.2295 168.7012 125.2998 168.7422 125.4131 c -%_168.7813 125.5264 168.7363 125.6514 168.6328 125.7139 c -%_165.8359 127.3975 162.7617 128.0967 158.7695 126.7666 C -%_164.5645 131.6748 172.8164 134.5068 180.6104 131.9932 c -%_180.7197 131.958 180.8389 132.001 180.9014 132.0967 c -%_180.9639 132.1924 180.9541 132.3193 180.876 132.4053 c -%_174.9668 138.9697 163.1855 139.1006 155.7656 133.7764 C -%_158.8027 138.0928 162.834 141.2627 170.0586 142.2549 c -%_170.1738 142.2705 170.2637 142.3643 170.2773 142.4795 c -%_170.2891 142.5947 170.2227 142.7041 170.1133 142.7451 c -%_161.8223 145.8213 153.5137 142.7002 146.668 134.5283 C -%_149.6602 140.9072 154.5742 146.0146 161.4355 148.542 c -%_161.5508 148.583 161.6191 148.7002 161.5977 148.8213 c -%_161.5781 148.9424 161.4746 149.0303 161.3535 149.0322 c -%_157.4102 149.1143 153.8672 148.1748 149.0879 145.4619 C -%_152.5957 151.1533 151.8281 161.1006 146.7188 167.7217 c -%_146.6484 167.8135 146.5234 167.8447 146.416 167.7998 c -%_146.3105 167.7529 146.248 167.6396 146.2676 167.5244 c -%_147.4473 160.3252 144.9688 152.1963 140.6582 147.8838 C -%_142.8105 155.5146 140.6641 162.46 134.7617 167.5264 c -%_134.6914 167.5869 134.5918 167.6045 134.5059 167.5713 c -%_134.418 167.5381 134.3574 167.46 134.3438 167.3682 c -%_133.1094 157.9502 122.5742 148.3936 113.7422 147.5928 c -%_113.6172 147.5811 113.5195 147.4814 113.5117 147.3564 c -%_113.5039 147.2314 113.5859 147.1201 113.709 147.0928 c -%_117.9883 146.124 122.4004 146.6025 126.0977 148.1221 C -%_123.4375 145.1904 120.1582 143.0127 116.543 141.8779 c -%_116.4258 141.8408 116.3535 141.7275 116.3672 141.6064 c -%_116.3809 141.4854 116.4805 141.3896 116.6016 141.3818 c -%_121.1113 141.0713 125.5254 142.3877 129.332 144.9209 C -%_124.9707 138.2998 118.3516 133.376 109.9043 131.4131 c -%_109.7832 131.3857 109.7012 131.2744 109.707 131.1514 c -%_109.7148 131.0283 109.8105 130.9287 109.9336 130.915 c -%_121.8516 129.6123 131.6797 134.2334 138.1543 142.833 C -%_136.5059 137.9307 131.7891 133.0771 125.209 130.2139 c -%_119.3633 127.6689 113.3594 127.2666 108.7871 128.7041 c -%_108.6816 128.7373 108.5645 128.6963 108.502 128.6045 c -%_108.4395 128.5107 108.4434 128.3877 108.5137 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 203.874 m -%_156.6113 193.3877 156.9531 185.1885 160.8242 174.8193 c -%_160.8691 174.7021 160.9902 174.6338 161.1133 174.6592 c -%_161.2363 174.6846 161.3223 174.7959 161.3164 174.9189 c -%_160.6953 187.542 164.1426 196.5732 171.6152 202.7275 C -%_163.3652 192.874 167.2617 173.167 180.4385 173.167 c -%_190.0244 173.167 197.9531 181.1436 199.8926 190.6924 c -%_199.918 190.8135 199.8516 190.9346 199.7344 190.9795 c -%_199.6191 191.0244 199.4883 190.9795 199.4258 190.8721 c -%_196.584 186.1104 192.0176 183.0205 186.9697 183.0205 c -%_178.834 183.0205 176.4277 189.4873 176.4277 194.0205 c -%_176.4277 200.2061 181.3545 205.3623 185.1357 205.3623 c -%_188.5732 205.3623 190.1768 202.54 190.1768 200.4365 c -%_190.1768 196.5381 187.1787 193.2705 183.8018 192.2725 c -%_183.6807 192.2354 183.6045 192.1182 183.6221 191.9932 c -%_183.6396 191.8682 183.7451 191.7744 183.8721 191.7744 c -%_187.9775 191.749 191.4473 193.6279 193.5 197.3428 C -%_193.7695 194.4678 193.7715 192.6572 192.8594 189.6182 c -%_192.8242 189.501 192.877 189.376 192.9844 189.3193 c -%_193.0938 189.2646 193.2266 189.292 193.3008 189.3896 c -%_200.6582 198.7822 197.1367 215.0127 191.3223 221.7471 C -%_196.8535 217.7646 201.7383 209.1123 201.6621 197.3525 c -%_201.6602 197.2314 201.7461 197.126 201.8672 197.1025 c -%_201.9863 197.0791 202.1055 197.1436 202.1504 197.2568 c -%_206.2598 207.5107 204.0801 226.5049 192.8691 237.1084 C -%_195.7539 237.5068 198.7363 237.4561 201.9941 236.417 c -%_202.1094 236.3799 202.2344 236.4307 202.293 236.5361 c -%_202.3516 236.6416 202.3281 236.7744 202.2344 236.8525 c -%_198.1426 240.3076 192.4199 241.3936 186.9697 241.3936 C -%_191.666 235.8936 190.1064 224.8408 182.6162 224.8408 c -%_177.2656 224.8408 174.8379 233.1396 178.9668 237.6221 c -%_179.0449 237.708 179.0547 237.835 178.9922 237.9326 c -%_178.9277 238.0303 178.8066 238.0713 178.6953 238.0342 c -%_173.916 236.3779 168.75 232.2451 168.75 227.0166 c -%_168.75 221.9756 173.5625 217.6221 180.5537 217.9658 C -%_171.7324 215.4619 162.5 218.2334 157.6699 224.2197 c -%_157.5957 224.3115 157.4648 224.3408 157.3594 224.2861 c -%_157.252 224.2334 157.1973 224.1123 157.2266 223.9951 c -%_160.0176 213.2803 169.1934 208.7959 180.667 210.29 C -%_171.3848 206.5322 157.416 209.8076 151.2422 217.5986 c -%_151.1699 217.6904 151.043 217.7217 150.9355 217.6709 c -%_150.8301 217.6221 150.7715 217.5049 150.7949 217.3896 c -%_152.166 210.7744 155.6582 205.8291 161.418 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 184.5869 m -%_26.7178 184.7061 26.8213 184.792 26.9424 184.7939 c -%_39.8486 184.9287 51.6963 188.0615 60.9141 196.3086 C -%_52.8838 190.751 37.9717 188.7979 29.3867 192.6904 c -%_29.2764 192.7402 29.2178 192.8604 29.2451 192.9785 c -%_29.2715 193.0967 29.3779 193.1787 29.499 193.1748 c -%_40.1787 192.8857 48.7783 196.1816 55.4834 202.1396 C -%_48.6143 202.5615 42.9092 206.8799 42.9268 211.9844 c -%_42.9268 212.1035 43.0107 212.2061 43.1279 212.2314 c -%_43.2441 212.2568 43.3623 212.1963 43.4111 212.0879 c -%_44.5322 209.5986 48.1592 208.3076 51.9941 209.208 c -%_56.1738 210.1885 58.9941 213.3975 58.2949 216.373 c -%_57.8232 218.3877 55.8584 219.7764 53.3428 220.1602 c -%_53.2158 220.1787 53.123 220.29 53.126 220.418 c -%_53.1299 220.5459 53.2285 220.6514 53.3564 220.6631 c -%_54.4248 220.7656 55.5361 220.7695 56.6738 220.6611 c -%_63.1641 220.0439 68.1875 216.0654 68.623 211.4834 C -%_73.3359 212.0303 77.5078 214.6396 79.002 218.2568 c -%_79.0469 218.3652 79.1621 218.4287 79.2773 218.4111 c -%_79.3926 218.3916 79.4805 218.2969 79.4902 218.1807 c -%_79.8672 213.4287 78.2324 210.3418 74.5195 207.3262 C -%_79.9043 209.3857 85.9648 209.4912 91.7754 206.7881 c -%_91.8809 206.7393 91.9395 206.624 91.918 206.5088 c -%_91.8945 206.3936 91.7949 206.3096 91.6777 206.3057 c -%_86.7988 206.1152 83.2617 204.5498 79.9473 201.2334 C -%_98.2012 206.3672 113.0332 195.0322 107.9004 178.1807 c -%_107.8652 178.0654 107.7539 177.9902 107.6328 178.0029 c -%_107.5117 178.0146 107.416 178.1104 107.4063 178.2314 c -%_106.4883 187.9453 99.7031 194.3467 89.5449 195.3076 C -%_94.9316 193.2471 100.5449 188.3311 101.1016 179.7734 c -%_101.1094 179.6514 101.0293 179.54 100.9102 179.5107 c -%_100.791 179.4814 100.668 179.54 100.6172 179.6514 c -%_97.8184 185.8057 92.3203 188.917 86.457 189.4639 C -%_92.791 186.8838 96.8535 180.8623 98.0273 173.0439 c -%_98.0469 172.9209 97.9727 172.8018 97.8535 172.7646 c -%_97.7363 172.7256 97.6074 172.7803 97.5508 172.8896 c -%_93.6855 180.4727 85.3945 185.6836 75.1035 181.7021 c -%_64.4863 177.5928 59.8291 165.3154 58.7998 156.6611 c -%_58.7852 156.54 58.6846 156.4463 58.5615 156.4385 c -%_58.4395 156.4307 58.3291 156.5127 58.3008 156.6338 c -%_54.5811 172.3213 61.8838 188.583 74.9375 195.4736 C -%_67.8418 193.4707 61.498 189.2139 57.9102 182.1191 C -%_49.6162 181.1006 43.9063 178.2568 41.0527 172.8799 c -%_40.9961 172.7725 40.8721 172.7197 40.7568 172.7549 c -%_40.6416 172.7881 40.5654 172.8994 40.5752 173.0205 c -%_40.7578 175.1299 41.5166 179.3506 44.6494 181.291 C -%_37.6846 181.2803 32.1436 182.1846 26.8506 184.3037 c -%_26.7393 184.3496 26.6738 184.4678 26.6963 184.5869 c -%_f -%_0 D -%_56.1826 131.1162 m -%_56.084 131.1826 55.9541 131.1709 55.8672 131.0908 c -%_55.7813 131.0088 55.7627 130.8799 55.8213 130.7783 c -%_57.4414 127.9814 55.9619 123.9639 52.7705 123.9639 c -%_47.0498 123.9639 44.2998 134.7334 45.1748 144.5576 C -%_47.3379 138.8018 49.208 136.5029 52.5225 133.7627 c -%_52.6162 133.6846 52.751 133.6846 52.8447 133.7607 c -%_52.9385 133.8389 52.9658 133.9697 52.9082 134.0771 c -%_48.0518 143.1572 47.0107 150.1436 47.0107 158.1631 C -%_48.4736 152.2041 50.2061 148.8408 55.1377 143.7822 c -%_55.2236 143.6943 55.3604 143.6807 55.4629 143.749 c -%_55.5645 143.8193 55.6016 143.9521 55.5498 144.0654 c -%_50.252 155.6553 50.6563 168.5127 54.6025 178.3291 c -%_54.6416 178.4268 54.6172 178.5381 54.54 178.6104 c -%_54.4629 178.6807 54.3506 178.6982 54.2549 178.6514 c -%_49.0498 176.1006 45.9912 174.4248 41.5029 168.2627 C -%_42.8604 160.8643 41.7314 157.2139 38.3311 151.0674 C -%_42.2686 160.9854 40.1729 174.9619 30.1436 180.6592 c -%_30.0342 180.7207 29.8955 180.6934 29.8193 180.5947 c -%_29.7412 180.4951 29.748 180.3535 29.835 180.2627 c -%_33.6162 176.3076 36.3662 169.6279 33.9912 162.335 C -%_35.5205 172.7236 26.3955 181.4502 16.2119 181.4502 c -%_6.6123 181.4502 0.061523 173.9404 0.602539 166.5088 c -%_1.13965 159.1436 6.0459 155.54 10.2744 154.0107 c -%_10.3857 153.9717 10.5107 154.0127 10.5742 154.1123 c -%_10.6377 154.2139 10.624 154.3428 10.541 154.4287 c -%_4.93066 160.1201 4.16309 170.9209 14.124 174.1885 C -%_8.26465 169.1318 10.4346 157.3584 19.8135 156.4639 c -%_19.9307 156.4521 20.04 156.5225 20.0781 156.6338 c -%_20.1162 156.7451 20.0732 156.8682 19.9746 156.9307 c -%_17.9658 158.208 16.2959 160.7021 16.2959 163.5049 c -%_16.2959 168.1787 19.7178 170.0146 21.9717 170.0146 c -%_25.3936 170.0146 28.2314 166.7588 28.2314 161.835 c -%_28.2314 155.9912 22.9717 151.1514 16.2119 150.3994 c -%_9.58594 149.665 3.42969 152.5537 0.461914 156.8584 c -%_0.392578 156.96 0.260742 156.9971 0.148438 156.9463 c -%_0.036133 156.8955 -0.022461 156.7705 0.007813 156.6514 c -%_3.02637 144.9482 16.8037 139.7744 26.8955 147.1455 C -%_20.2822 139.6436 9.88965 139.54 1.17383 147.2314 c -%_1.08301 147.3115 0.948242 147.3154 0.851563 147.2412 c -%_0.754883 147.1689 0.724609 147.0361 0.77832 146.9287 c -%_3.44531 141.5205 10.0313 135.1084 19.3838 136.0439 c -%_27.9404 136.8994 32.9053 145.0576 33.9072 151.7354 C -%_34.4639 143.2139 32.5137 137.1982 25.1533 131.5889 c -%_25.0566 131.5146 25.0264 131.3818 25.0811 131.2725 c -%_25.1357 131.165 25.2607 131.1104 25.3779 131.1436 c -%_32.1631 133.1045 37.6084 136.5693 40.4268 143.6885 C -%_40.4268 137.5264 38.2881 131.3154 32.9014 127.1768 c -%_32.8037 127.1025 32.7744 126.9717 32.8291 126.8623 c -%_32.8838 126.7529 33.0078 126.6982 33.125 126.7314 c -%_36.5781 127.7158 39.2959 129.2197 41.2627 131.917 C -%_42.5732 120.8174 47.7842 114.2256 53.7881 114.2256 c -%_57.9131 114.2256 60.9932 117.2588 60.9932 122.0967 c -%_60.9932 124.9268 59.5049 128.8994 56.1826 131.1162 c -%_f -%_155.4102 222.7354 m -%_152.248 226.6396 145.8711 228.1279 138.9785 226.7236 C -%_139.4883 231.0244 138.6445 235.5146 137.3672 238.208 c -%_137.3145 238.3174 137.1934 238.375 137.0762 238.3467 c -%_136.959 238.3174 136.8789 238.21 136.8828 238.0889 c -%_137.2578 229.3223 132.2598 222.2451 123.4336 219.1787 C -%_130.3398 223.9346 132.3594 233.3721 129.0723 238.2451 c -%_129.0039 238.3438 128.877 238.3828 128.7656 238.3369 c -%_128.6543 238.292 128.5898 238.1748 128.6113 238.0576 c -%_128.9844 235.9971 128.0059 233.373 125.8984 231.3311 c -%_122.9922 228.5166 119.0488 227.8779 117.0879 229.9014 c -%_115.127 231.9268 115.8906 235.8486 118.7949 238.6631 c -%_119.8555 239.6904 121.0547 240.4248 122.2441 240.8477 c -%_122.3574 240.8877 122.4258 241.001 122.4102 241.1191 c -%_122.3965 241.2383 122.3008 241.3301 122.1816 241.3398 c -%_115.793 241.8945 111.4121 238.0879 108.666 233.4619 c -%_105.8711 228.7568 101.0957 225.0518 95.4551 225.792 c -%_95.3359 225.8076 95.2227 225.7373 95.1816 225.624 c -%_95.1426 225.5107 95.1875 225.3838 95.291 225.3223 c -%_98.0879 223.6377 101.1621 222.9385 105.1543 224.2705 C -%_99.3594 219.3613 91.1074 216.5283 83.3145 219.043 c -%_83.2051 219.0791 83.0859 219.0361 83.0234 218.9395 c -%_82.9609 218.8428 82.9727 218.7168 83.0488 218.6318 c -%_88.957 212.0674 100.7383 211.9365 108.1582 217.2588 C -%_105.1211 212.9424 101.0898 209.7744 93.8652 208.7803 c -%_93.75 208.7646 93.6602 208.6729 93.6465 208.5576 c -%_93.6348 208.4414 93.7012 208.332 93.8105 208.292 c -%_102.1016 205.2139 110.4102 208.3369 117.2559 216.5068 C -%_114.2637 210.1299 109.3496 205.0225 102.4883 202.4951 c -%_102.373 202.4531 102.3047 202.335 102.3262 202.2158 c -%_102.3457 202.0947 102.4492 202.0059 102.5703 202.0029 c -%_106.5137 201.9219 110.0566 202.8604 114.8359 205.5732 C -%_111.3281 199.8838 112.0957 189.9346 117.2051 183.3154 c -%_117.2754 183.2236 117.4004 183.1914 117.5078 183.2373 c -%_117.6133 183.2842 117.6758 183.3965 117.6563 183.5107 c -%_116.4766 190.7119 118.9551 198.8408 123.2656 203.1533 C -%_121.1133 195.5215 123.2598 188.5771 129.1621 183.5088 c -%_129.2324 183.4482 129.332 183.4316 129.418 183.4648 c -%_129.5059 183.498 129.5664 183.5771 129.5801 183.6689 c -%_130.8145 193.0869 141.3496 202.6436 150.1816 203.4443 c -%_150.3066 203.4551 150.4043 203.5557 150.4121 203.6797 c -%_150.4199 203.8037 150.3379 203.917 150.2148 203.9443 c -%_145.9355 204.9131 141.5234 204.4346 137.8262 202.9131 C -%_140.4863 205.8467 143.7656 208.0244 147.3809 209.1592 c -%_147.498 209.1953 147.5703 209.3096 147.5566 209.4307 c -%_147.543 209.5518 147.4434 209.6455 147.3223 209.6543 c -%_142.8125 209.9658 138.3984 208.6484 134.5918 206.1162 C -%_138.9531 212.7373 145.5723 217.6611 154.0195 219.6221 c -%_154.1406 219.6504 154.2227 219.7607 154.2168 219.8848 c -%_154.209 220.0088 154.1133 220.1084 153.9902 220.1221 c -%_142.0723 221.4238 132.2441 216.8037 125.7695 208.2041 C -%_127.418 213.1045 132.1348 217.96 138.7148 220.8232 c -%_144.5605 223.3682 150.5645 223.7695 155.1367 222.333 c -%_155.2422 222.2998 155.3594 222.3398 155.4219 222.4326 c -%_155.4844 222.5244 155.4805 222.6475 155.4102 222.7354 c -%_f -%_102.5059 147.1631 m -%_107.3125 157.6494 106.9707 165.8486 103.0996 176.2178 c -%_103.0547 176.335 102.9336 176.4023 102.8105 176.3779 c -%_102.6875 176.3525 102.6016 176.2412 102.6074 176.1162 c -%_103.2285 163.4951 99.7813 154.4619 92.3086 148.3096 C -%_100.5586 158.1611 96.6621 177.8691 83.4863 177.8691 c -%_73.9004 177.8691 65.9697 169.8936 64.0303 160.3447 c -%_64.0059 160.2236 64.0723 160.1006 64.1885 160.0576 c -%_64.3037 160.0127 64.4346 160.0576 64.4971 160.1631 c -%_67.3398 164.9248 71.9063 168.0146 76.9551 168.0146 c -%_85.0898 168.0146 87.4961 161.5479 87.4961 157.0166 c -%_87.4961 150.8291 82.5703 145.6729 78.7891 145.6729 c -%_75.3516 145.6729 73.748 148.4971 73.748 150.6006 c -%_73.748 154.499 76.7461 157.7666 80.125 158.7646 c -%_80.2441 158.7998 80.3223 158.9189 80.3047 159.0439 c -%_80.2852 159.1689 80.1797 159.2607 80.0547 159.2627 c -%_75.9473 159.2881 72.4766 157.4072 70.4238 153.6943 C -%_70.1543 156.5693 70.1514 158.3799 71.0645 161.417 c -%_71.0996 161.5342 71.0459 161.6592 70.9385 161.7158 c -%_70.8291 161.7725 70.6963 161.7432 70.6221 161.6475 c -%_63.2656 152.2549 66.7861 136.0225 72.6016 129.29 C -%_67.0693 133.2725 62.1846 141.9229 62.2617 153.6826 c -%_62.2627 153.8057 62.1768 153.9092 62.0566 153.9326 c -%_61.9365 153.958 61.8174 153.8916 61.7725 153.7783 c -%_57.6641 143.5264 59.8438 124.5303 71.0537 113.9268 C -%_68.1699 113.5303 65.1865 113.5811 61.9287 114.6201 c -%_61.8135 114.6553 61.6885 114.6064 61.6299 114.501 c -%_61.5713 114.3936 61.5947 114.2607 61.6885 114.1826 c -%_65.7803 110.7275 71.5029 109.6416 76.9551 109.6416 C -%_72.2578 115.1416 73.8184 126.1963 81.3105 126.1963 c -%_86.6582 126.1963 89.0859 117.8975 84.957 113.415 c -%_84.8789 113.3291 84.8691 113.2002 84.9316 113.1045 c -%_84.9961 113.0068 85.1172 112.9639 85.2285 113.0029 c -%_90.0078 114.6572 95.1738 118.792 95.1738 124.0186 c -%_95.1738 129.0615 90.3613 133.4131 83.373 133.0693 C -%_92.1914 135.5752 101.4238 132.8018 106.2539 126.8174 c -%_106.3281 126.7236 106.459 126.6963 106.5645 126.749 c -%_106.6719 126.8037 106.7266 126.9248 106.6973 127.04 c -%_103.9063 137.7568 94.7305 142.2393 83.2578 140.7471 C -%_92.5391 144.5029 106.5078 141.2275 112.6816 133.4365 c -%_112.7539 133.3447 112.8809 133.3154 112.9883 133.3643 c -%_113.0938 133.415 113.1523 133.5322 113.1289 133.6455 c -%_111.7578 140.2607 108.2656 145.208 102.5059 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 166.4502 m -%_128.8672 166.3311 128.7637 166.2432 128.6426 166.2432 c -%_115.7363 166.1064 103.8887 162.9756 94.6719 154.7275 C -%_102.7012 160.2861 117.6133 162.2373 126.1992 158.3467 c -%_126.3086 158.2959 126.3672 158.1748 126.3398 158.0576 c -%_126.3145 157.9404 126.207 157.8584 126.0859 157.8604 c -%_115.4063 158.1514 106.8066 154.8545 100.1016 148.8975 C -%_106.9707 148.4736 112.6758 144.1572 112.6582 139.0518 c -%_112.6582 138.9326 112.5742 138.8291 112.457 138.8037 c -%_112.3418 138.7803 112.2227 138.8389 112.1738 138.9482 c -%_111.0527 141.4365 107.4258 142.7295 103.5918 141.8291 c -%_99.4121 140.8467 96.5918 137.6396 97.291 134.6631 c -%_97.7617 132.6494 99.7266 131.2607 102.2422 130.876 c -%_102.3691 130.8564 102.4629 130.7471 102.459 130.6182 c -%_102.4551 130.4912 102.3574 130.3857 102.2285 130.3721 c -%_101.1602 130.2705 100.0488 130.2666 98.9121 130.376 c -%_92.4219 130.9932 87.3984 134.9697 86.9629 139.5537 C -%_82.25 139.0068 78.0781 136.3955 76.584 132.7803 c -%_76.5391 132.6709 76.4258 132.6084 76.3086 132.626 c -%_76.1934 132.6436 76.1055 132.7393 76.0957 132.8564 c -%_75.7188 137.6064 77.3535 140.6943 81.0664 143.71 C -%_75.6816 141.6514 69.6201 141.5459 63.8096 144.2471 c -%_63.7041 144.2979 63.6455 144.4131 63.667 144.5283 c -%_63.6904 144.6436 63.79 144.7275 63.9072 144.7314 c -%_68.7861 144.9209 72.3242 146.4873 75.6406 149.8037 C -%_57.3838 144.6689 42.5518 156.0049 47.6846 172.8545 c -%_47.7197 172.9717 47.8311 173.0459 47.9521 173.0342 c -%_48.0732 173.0225 48.1689 172.9268 48.1787 172.8057 c -%_49.0967 163.0908 55.8818 156.6885 66.04 155.7295 C -%_60.6533 157.7881 55.04 162.7041 54.4834 171.2627 c -%_54.4756 171.3857 54.5557 171.4951 54.6748 171.5264 c -%_54.7939 171.5557 54.917 171.4951 54.9678 171.3838 c -%_57.7666 165.2295 63.2646 162.1201 69.1279 161.5713 C -%_62.7939 164.1533 58.7314 170.1748 57.5576 177.9932 c -%_57.5381 178.1162 57.6123 178.2334 57.7314 178.2725 c -%_57.8486 178.3096 57.9775 178.2568 58.0342 178.1455 c -%_61.8994 170.5635 70.1904 165.3525 80.4824 169.335 c -%_91.0996 173.4443 95.7559 185.7197 96.7852 194.374 c -%_96.8008 194.4971 96.9004 194.5908 97.0234 194.5986 c -%_97.1465 194.6045 97.2559 194.5225 97.2852 194.4033 c -%_101.0039 178.7139 93.7012 162.4541 80.6484 155.5635 C -%_87.7441 157.5654 94.0879 161.8232 97.6758 168.917 C -%_105.9688 169.9346 111.6797 172.7803 114.5332 178.1572 c -%_114.5898 178.2627 114.7129 178.3154 114.8281 178.2822 c -%_114.9434 178.2471 115.0195 178.1357 115.0098 178.0166 c -%_114.8281 175.9072 114.0684 171.6865 110.9355 169.7451 C -%_117.9004 169.7568 123.4414 168.8525 128.7344 166.7314 c -%_128.8457 166.6865 128.9121 166.5693 128.8887 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 219.9189 m -%_99.502 219.8545 99.6309 219.8643 99.7188 219.9463 c -%_99.8047 220.0264 99.8223 220.1553 99.7637 220.2588 c -%_98.1445 223.0557 99.623 227.0713 102.8145 227.0713 c -%_108.5352 227.0713 111.2852 216.3018 110.4102 206.4795 C -%_108.248 212.2334 106.377 214.5342 103.0625 217.2744 c -%_102.9688 217.3506 102.834 217.3525 102.7402 217.2744 c -%_102.6465 217.1982 102.6191 217.0654 102.6777 216.958 c -%_107.5332 207.8799 108.5742 200.8936 108.5742 192.874 C -%_107.1113 198.8311 105.3789 202.1943 100.4473 207.2549 c -%_100.3613 207.3428 100.2246 207.3564 100.123 207.2861 c -%_100.0215 207.2158 99.9844 207.083 100.0352 206.9717 c -%_105.334 195.3799 104.9297 182.5244 100.9824 172.708 c -%_100.9434 172.6104 100.9688 172.499 101.0449 172.4268 c -%_101.123 172.3545 101.2344 172.3389 101.3301 172.3838 c -%_106.5352 174.9346 109.5938 176.6104 114.082 182.7744 C -%_112.7246 190.1729 113.8535 193.8213 117.2539 199.9678 C -%_113.3164 190.0518 115.4121 176.0752 125.4414 170.3779 c -%_125.5508 170.3154 125.6895 170.3428 125.7656 170.4424 c -%_125.8438 170.542 125.8379 170.6826 125.75 170.7744 c -%_121.9688 174.7295 119.2188 181.4092 121.5938 188.7002 C -%_120.0645 178.3115 129.1895 169.5869 139.373 169.5869 c -%_148.9727 169.5869 155.5234 177.0947 154.9824 184.5264 c -%_154.4453 191.8916 149.5391 195.4971 145.3105 197.0244 c -%_145.1992 197.0654 145.0742 197.0225 145.0117 196.9229 c -%_144.9473 196.8232 144.9609 196.6924 145.0449 196.6084 c -%_150.6543 190.915 151.4219 180.1162 141.4609 176.8486 C -%_147.3203 181.9053 145.1504 193.6768 135.7715 194.5732 c -%_135.6543 194.583 135.5449 194.5127 135.5078 194.4014 c -%_135.4688 194.292 135.5117 194.1689 135.6113 194.1064 c -%_137.6191 192.8271 139.2891 190.335 139.2891 187.5322 c -%_139.2891 182.8584 135.8672 181.0205 133.6133 181.0205 c -%_130.1914 181.0205 127.3535 184.2764 127.3535 189.2021 c -%_127.3535 195.0439 132.6133 199.8857 139.373 200.6357 c -%_146 201.3721 152.1563 198.4814 155.123 194.1768 c -%_155.1934 194.0752 155.3242 194.04 155.4375 194.0908 c -%_155.5488 194.1416 155.6074 194.2646 155.5781 194.3838 c -%_152.5586 206.0869 138.7813 211.2607 128.6895 203.8916 C -%_135.3027 211.3916 145.6953 211.4971 154.4121 203.8057 c -%_154.502 203.7256 154.6367 203.7197 154.7344 203.7939 c -%_154.8301 203.8682 154.8613 203.999 154.8066 204.1084 c -%_152.1406 209.5146 145.5547 215.9268 136.2012 214.9932 c -%_127.6445 214.1377 122.6797 205.9775 121.6777 199.3018 C -%_121.1211 207.8232 123.0723 213.8369 130.4316 219.4463 c -%_130.5293 219.5205 130.5586 219.6533 130.5039 219.7627 c -%_130.4492 219.8721 130.3242 219.9268 130.207 219.8916 c -%_123.4219 217.9326 117.9766 214.4678 115.1582 207.3486 C -%_115.1582 213.5088 117.2969 219.7197 122.6836 223.8584 c -%_122.7813 223.9326 122.8105 224.0654 122.7559 224.1748 c -%_122.7012 224.2822 122.5781 224.3369 122.4609 224.3037 c -%_119.0078 223.3213 116.2891 221.8154 114.3223 219.1201 C -%_113.0117 230.2197 107.8008 236.8096 101.7969 236.8096 c -%_97.6719 236.8096 94.5918 233.7764 94.5918 228.9404 c -%_94.5918 226.1104 96.0801 222.1377 99.4023 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 128.3018 m -%_3.33691 124.3975 9.71387 122.9092 16.6064 124.3135 C -%_16.0967 120.0107 16.9404 115.5225 18.2178 112.8271 c -%_18.2705 112.7197 18.3916 112.6611 18.5088 112.6904 c -%_18.626 112.7197 18.7061 112.8271 18.7021 112.9482 c -%_18.3271 121.7139 23.3252 128.79 32.1514 131.8564 C -%_25.2451 127.1006 23.2256 117.6631 26.5127 112.792 c -%_26.5811 112.6924 26.708 112.6533 26.8193 112.6982 c -%_26.9307 112.7432 26.9951 112.8604 26.9736 112.9795 c -%_26.6006 115.04 27.5791 117.6631 29.6865 119.7041 c -%_32.5928 122.5186 36.5361 123.1572 38.4971 121.1338 c -%_40.458 119.1084 39.6943 115.1865 36.79 112.374 c -%_35.7295 111.3467 34.5303 110.6104 33.3408 110.1885 c -%_33.2275 110.1475 33.1592 110.0342 33.1748 109.917 c -%_33.1885 109.7979 33.2842 109.7061 33.4033 109.6963 c -%_39.792 109.1416 44.1729 112.9482 46.9189 117.5732 c -%_49.7139 122.2783 54.4893 125.9854 60.1299 125.2451 c -%_60.249 125.2295 60.3623 125.2998 60.4033 125.4131 c -%_60.4424 125.5264 60.3975 125.6514 60.2939 125.7139 c -%_57.4971 127.3975 54.4229 128.0967 50.4307 126.7666 C -%_56.2256 131.6748 64.4775 134.5068 72.2715 131.9932 c -%_72.3809 131.958 72.5 132.001 72.5625 132.0967 c -%_72.625 132.1924 72.6152 132.3193 72.5371 132.4053 c -%_66.6279 138.9697 54.8467 139.1006 47.4268 133.7764 C -%_50.4639 138.0928 54.4951 141.2627 61.7197 142.2549 c -%_61.835 142.2705 61.9248 142.3643 61.9385 142.4795 c -%_61.9502 142.5947 61.8838 142.7041 61.7744 142.7451 c -%_53.4834 145.8213 45.1748 142.7002 38.3291 134.5283 C -%_41.3213 140.9072 46.2354 146.0146 53.0967 148.542 c -%_53.2119 148.583 53.2803 148.7002 53.2588 148.8213 c -%_53.2393 148.9424 53.1357 149.0303 53.0146 149.0322 c -%_49.0713 149.1143 45.5283 148.1748 40.749 145.4619 C -%_44.2568 151.1533 43.4893 161.1006 38.3799 167.7217 c -%_38.3096 167.8135 38.1846 167.8447 38.0771 167.7998 c -%_37.9717 167.7529 37.9092 167.6396 37.9287 167.5244 c -%_39.1084 160.3252 36.6299 152.1963 32.3193 147.8838 C -%_34.4717 155.5146 32.3252 162.46 26.4229 167.5264 c -%_26.3525 167.5869 26.2529 167.6045 26.167 167.5713 c -%_26.0791 167.5381 26.0186 167.46 26.0049 167.3682 c -%_24.7705 157.9502 14.2354 148.3936 5.40332 147.5928 c -%_5.27832 147.5811 5.18066 147.4814 5.17285 147.3564 c -%_5.16504 147.2314 5.24707 147.1201 5.37012 147.0928 c -%_9.64941 146.124 14.0615 146.6025 17.7588 148.1221 C -%_15.0986 145.1904 11.8193 143.0127 8.2041 141.8779 c -%_8.08691 141.8408 8.01465 141.7275 8.02832 141.6064 c -%_8.04199 141.4854 8.1416 141.3896 8.2627 141.3818 c -%_12.7725 141.0713 17.1865 142.3877 20.9932 144.9209 C -%_16.6318 138.2998 10.0127 133.376 1.56543 131.4131 c -%_1.44434 131.3857 1.3623 131.2744 1.36816 131.1514 c -%_1.37598 131.0283 1.47168 130.9287 1.59473 130.915 c -%_13.5127 129.6123 23.3408 134.2334 29.8154 142.833 C -%_28.167 137.9307 23.4502 133.0771 16.8701 130.2139 c -%_11.0244 127.6689 5.02051 127.2666 0.448242 128.7041 c -%_0.342773 128.7373 0.225586 128.6963 0.163086 128.6045 c -%_0.100586 128.5107 0.104492 128.3877 0.174805 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 203.874 m -%_48.2725 193.3877 48.6143 185.1885 52.4854 174.8193 c -%_52.5303 174.7021 52.6514 174.6338 52.7744 174.6592 c -%_52.8975 174.6846 52.9834 174.7959 52.9775 174.9189 c -%_52.3564 187.542 55.8037 196.5732 63.2764 202.7275 C -%_55.0264 192.874 58.9229 173.167 72.0996 173.167 c -%_81.6855 173.167 89.6152 181.1436 91.5547 190.6924 c -%_91.5801 190.8135 91.5137 190.9346 91.3965 190.9795 c -%_91.2813 191.0244 91.1504 190.9795 91.0879 190.8721 c -%_88.2461 186.1104 83.6797 183.0205 78.6309 183.0205 c -%_70.4951 183.0205 68.0889 189.4873 68.0889 194.0205 c -%_68.0889 200.2061 73.0156 205.3623 76.7969 205.3623 c -%_80.2344 205.3623 81.8379 202.54 81.8379 200.4365 c -%_81.8379 196.5381 78.8398 193.2705 75.4629 192.2725 c -%_75.3418 192.2354 75.2656 192.1182 75.2832 191.9932 c -%_75.3008 191.8682 75.4063 191.7744 75.5332 191.7744 c -%_79.6387 191.749 83.1094 193.6279 85.1621 197.3428 C -%_85.4316 194.4678 85.4336 192.6572 84.5215 189.6182 c -%_84.4863 189.501 84.5391 189.376 84.6465 189.3193 c -%_84.7559 189.2646 84.8887 189.292 84.9629 189.3896 c -%_92.3203 198.7822 88.7988 215.0127 82.9844 221.7471 C -%_88.5156 217.7646 93.4004 209.1123 93.3242 197.3525 c -%_93.3223 197.2314 93.4082 197.126 93.5293 197.1025 c -%_93.6484 197.0791 93.7676 197.1436 93.8125 197.2568 c -%_97.9219 207.5107 95.7422 226.5049 84.5313 237.1084 C -%_87.416 237.5068 90.3984 237.4561 93.6563 236.417 c -%_93.7715 236.3799 93.8965 236.4307 93.9551 236.5361 c -%_94.0137 236.6416 93.9902 236.7744 93.8965 236.8525 c -%_89.8047 240.3076 84.082 241.3936 78.6309 241.3936 C -%_83.3281 235.8936 81.7676 224.8408 74.2773 224.8408 c -%_68.9268 224.8408 66.499 233.1396 70.6279 237.6221 c -%_70.7061 237.708 70.7158 237.835 70.6533 237.9326 c -%_70.5889 238.0303 70.4678 238.0713 70.3564 238.0342 c -%_65.5771 236.3779 60.4111 232.2451 60.4111 227.0166 c -%_60.4111 221.9756 65.2236 217.6221 72.2148 217.9658 C -%_63.3936 215.4619 54.1611 218.2334 49.3311 224.2197 c -%_49.2568 224.3115 49.126 224.3408 49.0205 224.2861 c -%_48.9131 224.2334 48.8584 224.1123 48.8877 223.9951 c -%_51.6787 213.2803 60.8545 208.7959 72.3281 210.29 C -%_63.0459 206.5322 49.0771 209.8076 42.9033 217.5986 c -%_42.8311 217.6904 42.7041 217.7217 42.5967 217.6709 c -%_42.4912 217.6221 42.4326 217.5049 42.4561 217.3896 c -%_43.8271 210.7744 47.3193 205.8291 53.0791 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_; -%_ -%_9 () XW -%_U -%_/ArtDictionary : -%_5 /Int (AIPattern_Editor_Preview_Rows) , -%_109.6416 /Real (AIPattern_Editor_Tile_Height) , -%_1 /Bool (AIPattern_Editor_Top_in_Front) , -%_1 /Bool (AIPattern_Editor_Left_in_Front) , -%_1 /Bool (AIPattern_Editor_Dim_Copies_Key) , -%_5 /Int (AIPattern_Editor_Preview_Cols) , -%_108.3384 /Real (AIPattern_Editor_Tile_Width) , -%_4 /Int (AIPattern_Editor_Editable_Copy_Loc_Key) , -%_50 /Real (AIPattern_Editor_Dim_Percent_Key) , -%_; -%_ -%_9 () XW -E -%AI3_EndPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginBrushPattern -(Unnamed 6) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --3874.5 4018.5 m --3773.1816 4018.5 L --3773.1816 4010.7832 L --3874.5 4010.7832 L --3874.5 4018.5 L -n -u -0 O -0.720851 0.673426 0.586358 0.790768 0.137255 0.121569 0.12549 Xa --3773.3 4012.207 m --3773.1504 4012.2439 -3773.2041 4011.8247 -3773.1816 4011.7495 C --3773.4319 4011.8423 -3773.2937 4012.3159 -3773.3 4012.207 C -f --3775.7693 4013.1582 m --3775.7256 4012.9871 L --3776.0896 4013.4063 L --3775.7693 4013.1582 L -f --3778.0784 4013.1504 m --3777.8601 4013.8643 -3777.2417 4013.0352 -3776.8303 4013.2888 C --3776.7625 4013.4524 L --3776.5769 4012.8772 L --3777.0769 4012.9683 -3777.7263 4013.3499 -3778.0784 4013.1504 C -f --3779.3096 4011.6072 m --3779.2336 4011.8843 -3779.5759 4011.8455 -3779.0225 4011.6936 C --3779.0503 4011.6631 -3779.0583 4011.6455 -3779.0745 4011.623 C --3779.1243 4011.6272 -3779.1929 4011.6262 -3779.3096 4011.6072 C -f --3779.0745 4011.623 m --3778.8313 4011.603 -3779.2336 4011.3904 -3779.0745 4011.623 C --3779.0745 4011.623 L -f --3780.1975 4011.7822 m --3779.8772 4011.5342 L --3779.9441 4011.3704 -3780.2292 4011.333 -3780.1233 4011.2134 C --3780.4519 4011.3496 -3780.3843 4011.5127 -3780.1975 4011.7822 C -f --3780.5012 4012.303 m --3780.3352 4012.1982 L --3780.3643 4012.1294 -3780.4082 4012.105 -3780.5012 4012.303 C -f --3779.9832 4011.9768 m --3780.3352 4012.1982 L --3780.2888 4012.313 -3780.2839 4012.5447 -3780.1736 4012.1184 C --3780.2024 4012.3296 -3780.1328 4012.1262 -3779.9832 4011.9768 C -f --3779.7839 4012.0852 m --3779.6042 4012.24 -3779.3721 4012.3384 -3779.6936 4012.5852 C --3779.0808 4012.4871 -3779.1711 4011.9856 -3779.7839 4012.0852 C -f --3778.1963 4013.8887 m --3777.9561 4014.0984 L --3777.7483 4013.8584 L --3777.8521 4013.9771 -3778.2112 4013.665 -3778.1963 4013.8887 C -f --3782.1929 4011.4126 m --3782.2129 4011.5647 -3782.0852 4011.8174 -3782.0613 4012.012 C --3781.8247 4011.8374 L --3781.9463 4011.7334 -3782.1768 4011.6375 -3782.1929 4011.4126 C -f --3782.0613 4012.012 m --3782.4153 4012.2727 L --3782.0991 4012.303 -3782.0413 4012.1792 -3782.0613 4012.012 C -f --3780.5583 4013.0955 m --3779.9768 4012.5479 L --3780.6704 4013.103 L --3780.5583 4013.0955 L -f --3783.5449 4011.3936 m --3783.3442 4011.0422 L --3783.7017 4011.5735 L --3783.5449 4011.3936 L -f --3784.4417 4011.4551 m --3784.2932 4011.1638 -3784.6453 4010.9624 -3784.4883 4010.7832 C --3784.7319 4010.8352 -3784.9399 4011.0852 -3785.1272 4011.3103 C --3784.9282 4011.1848 -3784.7161 4011.2168 -3784.4417 4011.4551 C -f --3785.4417 4011.6375 m --3785.3423 4011.5679 -3785.2393 4011.4431 -3785.1272 4011.3103 C --3785.2329 4011.3772 -3785.3369 4011.4744 -3785.4417 4011.6375 C -f --3783.0183 4012.1975 m --3783.0457 4012.1055 -3783.0984 4011.8655 -3783.2969 4011.7639 C --3783.1577 4012.1912 L --3783.1152 4012.1936 -3783.0671 4012.1951 -3783.0183 4012.1975 C -f --3783.1528 4012.2046 m --3783.1577 4012.1912 L --3783.3088 4012.1814 -3783.4136 4012.1719 -3783.4585 4012.167 c --3783.4199 4012.1707 -3783.3279 4012.1824 -3783.1528 4012.2046 C -f --3782.9832 4012.1992 m --3782.9961 4012.1982 -3783.0056 4012.1975 -3783.0183 4012.1975 C --3783.0049 4012.24 -3782.9968 4012.2534 -3782.9832 4012.1992 C -f --3781.4863 4012.709 m --3781.6943 4012.948 -3782.1279 4013.2039 -3781.7083 4013.5686 C --3781.5591 4013.2759 -3781.7993 4013.0686 -3781.4863 4012.709 c -f --3782.8103 4012.7334 m --3782.4343 4012.8311 L --3782.4417 4012.7183 -3782.5095 4012.5535 -3782.4065 4012.4351 C --3782.8103 4012.7334 L -f --3782.9944 4012.8694 m --3782.8103 4012.7334 L --3782.9497 4012.6975 L --3782.9944 4012.8694 L -f --3784.7976 4012.0376 m --3784.96 4012.2239 -3785.1377 4012.239 -3785.3384 4012.269 C --3785.1233 4012.353 -3784.9009 4012.3992 -3784.6897 4012.3972 C --3784.6599 4012.2632 -3784.5671 4012.0222 -3784.7976 4012.0376 C -f --3783.9983 4012.1563 m --3784.0095 4012.1663 -3784.0239 4012.1707 -3784.0344 4012.1807 C --3784.0122 4012.217 -3783.9944 4012.2283 -3783.9983 4012.1563 C -f --3787.3142 4012.2664 m --3787.3032 4012.2896 -3787.2937 4012.3196 -3787.2825 4012.344 C --3787.28 4012.3196 -3787.2783 4012.2952 -3787.2751 4012.27 C --3787.3142 4012.2664 L -f --3784.6536 4012.4771 m --3784.4919 4012.5598 -3784.3953 4012.4551 -3784.3032 4012.324 C --3784.4241 4012.3662 -3784.5522 4012.3943 -3784.6897 4012.3972 C --3784.7031 4012.4583 -3784.7056 4012.4983 -3784.6536 4012.4771 C -f --3785.9929 4011.8374 m --3785.9087 4011.9272 -3785.8132 4012.0032 -3785.7129 4012.0723 C --3785.7952 4011.937 -3785.9631 4011.7263 -3785.9929 4011.8374 C -f --3784.0889 4012.0623 m --3784.0808 4012.0559 -3784.0735 4012.0479 -3784.0647 4012.0432 C --3784.1177 4011.9524 -3784.1111 4011.9966 -3784.0889 4012.0623 C -f --3784.0889 4012.0623 m --3784.1721 4012.1243 -3784.2375 4012.2295 -3784.3032 4012.324 C --3784.2048 4012.2896 -3784.1135 4012.2439 -3784.0344 4012.1807 C --3784.0544 4012.1504 -3784.0745 4012.104 -3784.0889 4012.0623 C -f --3787.9128 4015.009 m --3787.8843 4014.613 -3787.4592 4014.2471 -3787.0923 4014.6719 C --3786.7312 4014.375 -3786.9673 4013.0723 -3787.2825 4012.344 C --3787.2937 4012.5166 -3787.2937 4012.6763 -3787.6653 4012.9104 C --3787.5352 4013.1262 -3786.8408 4013.4163 -3787.1543 4013.7747 C --3787.6465 4013.9783 -3787.5576 4013.6343 -3787.7969 4013.425 C --3787.5935 4013.9182 -3788.4231 4014.1431 -3788.3159 4014.8687 C --3787.8843 4014.613 L --3787.8762 4014.7263 -3788.0327 4014.9063 -3787.9128 4015.009 C -f --3786.5745 4012.3843 m --3786.4216 4012.3352 L --3786.5959 4012.2664 -3786.7207 4012.1079 -3786.9504 4011.7976 C --3787.2048 4011.9915 -3787.2576 4012.1382 -3787.2751 4012.27 C --3786.5222 4012.3252 L --3786.5745 4012.3843 L -f --3785.7351 4012.3335 m --3785.8545 4012.7644 -3786.2217 4012.948 -3785.9968 4013.4143 C --3785.5481 4013.3843 -3785.6824 4013.0542 -3785.4143 4012.8672 C --3786.1384 4012.9744 -3785.2063 4012.6272 -3785.7295 4012.3831 C --3785.5872 4012.3096 -3785.4592 4012.2871 -3785.3384 4012.269 C --3785.4688 4012.217 -3785.5945 4012.1519 -3785.7129 4012.0723 C --3785.7063 4012.0823 -3785.7017 4012.0896 -3785.6963 4012.0984 C --3785.6929 4012.0984 L --3785.6929 4012.1006 -3785.6936 4012.1016 -3785.6936 4012.104 C --3785.6624 4012.1582 -3785.6521 4012.1912 -3785.6873 4012.1604 C --3785.6897 4012.165 -3785.6985 4012.167 -3785.7024 4012.1692 C --3785.7073 4012.2283 -3785.7207 4012.2808 -3785.7351 4012.3311 C --3785.9448 4012.2422 -3785.7681 4012.22 -3785.7024 4012.1692 C --3785.7 4012.1472 -3785.6943 4012.1272 -3785.6936 4012.104 C --3785.6943 4012.1023 -3785.6953 4012.1006 -3785.6963 4012.0984 C --3786.4216 4012.3352 L --3786.2681 4012.395 -3786.0759 4012.3831 -3785.7351 4012.3335 C -f --3782.0952 4014.4951 m --3782.1177 4014.457 -3782.1167 4014.4263 -3782.1184 4014.395 C --3782.1653 4014.448 -3782.1831 4014.4839 -3782.0952 4014.4951 C -f --3782.3936 4014.2351 m --3782.3408 4014.175 -3782.2969 4014.0032 -3782.1255 4014.0471 C --3781.9768 4014.1763 -3782.1262 4014.2534 -3782.1184 4014.395 C --3782.0151 4014.2808 -3781.7568 4014.0862 -3782.0808 4013.8762 C --3782.1321 4013.9351 L --3782.4241 4013.7871 -3782.7993 4013.2495 -3782.7483 4013.1902 C --3782.6631 4013.5784 -3782.5879 4013.8542 -3782.3936 4014.2351 C -f --3784.0852 4013.3943 m --3784.6892 4013.6055 L --3784.3816 4013.9783 L --3784.3972 4013.7544 L --3784.0537 4013.8423 -3784.1279 4013.5667 -3784.0852 4013.3943 C -f --3787.3833 4012.052 m --3787.3032 4011.5967 L --3787.6521 4012.24 L --3787.3833 4012.052 L -f --3788.1682 4012.1062 m --3788.1392 4011.7112 L --3788.3464 4011.9495 L --3788.1682 4012.1062 L -f --3832.4617 4017.0166 m --3832.6392 4017.1287 L --3832.5552 4017.0942 -3832.5012 4017.0564 -3832.4617 4017.0166 C -f --3831.1768 4017.0435 m --3831.1453 4016.8484 L --3831.2048 4016.9558 -3831.2292 4017.0352 -3831.1768 4017.0435 C -f --3807.4456 4012.1504 m --3807.7041 4011.7815 -3807.9929 4011.2083 -3807.9617 4011.6536 C --3807.8823 4012.0872 L --3807.7017 4012.009 -3807.5632 4012.0576 -3807.4456 4012.1504 C -f --3820.6479 4014.7415 m --3820.6233 4014.7832 -3820.5977 4014.8286 -3820.5723 4014.8728 C --3820.5095 4014.7246 -3820.4504 4014.5872 -3820.3977 4014.4583 C --3820.4729 4014.5471 -3820.5583 4014.6416 -3820.6479 4014.7415 C -f --3820.8303 4016.5364 m --3821.1711 4016.2566 L --3821.0945 4016.3542 -3820.9849 4016.448 -3820.8303 4016.5364 C -f --3839.4792 4017.4768 m --3839.6863 4017.9182 L --3839.3623 4017.9163 -3839.5049 4017.6936 -3839.4792 4017.4768 C -f --3796.2073 4012.2664 m --3796.4304 4012.0967 -3796.6079 4012.0254 -3796.7639 4012.0044 C --3796.4951 4012.2534 -3796.2783 4012.6272 -3796.2073 4012.2664 C -f --3831.9561 4012.4126 m --3832.0647 4012.4912 -3832.1111 4012.5796 -3832.1079 4012.6763 C --3831.9961 4012.6023 -3831.9329 4012.519 -3831.9561 4012.4126 C -f --3797.4082 4012.0059 m --3797.3689 4012.0496 -3797.3303 4012.071 -3797.2903 4012.1079 C --3797.1272 4012.0352 -3796.9631 4011.9768 -3796.7639 4012.0044 C --3796.9624 4011.8196 -3797.1897 4011.7046 -3797.4082 4012.0059 C -f --3864.9297 4017.1172 m --3864.9482 4017.0984 -3864.9705 4017.0884 -3864.9873 4017.0652 C --3864.9929 4017.1243 -3864.9673 4017.1272 -3864.9297 4017.1172 C -f --3872.3442 4012.74 m --3872.2712 4012.7124 -3872.1521 4012.7119 -3872.0398 4012.7063 C --3872.0945 4012.6763 -3872.1863 4012.6792 -3872.3442 4012.74 c -f --3791.3264 4011.917 m --3791.1599 4011.8887 -3791.3 4011.8694 -3791.3264 4011.917 C --3791.3264 4011.917 L -f --3790.5168 4013.6331 m --3790.5522 4013.6814 -3790.5791 4013.7439 -3790.5833 4013.844 C --3790.5696 4013.74 -3790.5464 4013.6736 -3790.5168 4013.6331 c -f --3799.0664 4014.7063 m --3799.0713 4014.7063 -3799.0752 4014.7046 -3799.0808 4014.7046 C --3799.0313 4014.7896 -3799.0398 4014.7732 -3799.0664 4014.7063 C -f --3791.0759 4012.1143 m --3791.1384 4012.061 -3791.2104 4012.0166 -3791.2888 4011.9856 C --3791.2544 4012.019 -3791.1897 4012.061 -3791.0759 4012.1143 C -f --3791.1096 4011.9092 m --3791.0522 4011.9287 -3791.0071 4011.9395 -3790.9641 4011.9512 C --3790.9431 4011.8792 -3790.9617 4011.8335 -3791.1096 4011.9092 C -f --3791.5583 4011.9407 m --3791.4631 4011.9336 -3791.3743 4011.9539 -3791.2888 4011.9856 C --3791.3215 4011.9558 -3791.3352 4011.9319 -3791.3264 4011.917 C --3791.3752 4011.9236 -3791.4441 4011.9326 -3791.5583 4011.9407 c -f --3851.2932 4015.9558 m --3851.3042 4015.9424 -3851.3169 4015.9336 -3851.3289 4015.915 C --3851.4968 4016.0952 -3851.4231 4016.0667 -3851.2932 4015.9558 C -f --3811.7783 4016.6563 m --3811.7705 4016.6519 -3811.7664 4016.6404 -3811.7593 4016.636 C --3811.7671 4016.6311 -3811.7769 4016.625 -3811.7839 4016.6199 C --3811.7783 4016.6563 L -f --3812.3762 4016.979 m --3812.1216 4016.4392 -3811.9768 4016.5056 -3811.7839 4016.6199 C --3811.9817 4015.3694 L --3812.3762 4016.979 L -f -*u --3835.5383 4017.1416 m --3835.1184 4017.532 L --3835.6252 4018.1736 -3835.9919 4017.9524 -3835.5977 4018.5 C --3835.5383 4017.1416 -3833.9656 4018.3616 -3833.9072 4017.0039 C --3833.6304 4017.2896 L --3833.7097 4017.2766 -3833.7224 4017.356 -3833.8008 4017.343 C --3833.2625 4017.9934 -3833.4009 4016.3616 -3832.7073 4016.5542 C --3832.4656 4016.6582 -3832.2969 4016.855 -3832.4617 4017.0166 C --3831.9231 4016.6807 L --3831.7664 4016.707 -3831.8047 4016.9431 -3831.9607 4016.917 C --3831.1392 4016.8086 L --3831.1453 4016.8484 L --3831.0281 4016.636 -3830.7625 4016.3064 -3830.6328 4016.1663 C --3830.4241 4016.3616 -3830.7375 4016.3103 -3830.6841 4016.479 C --3830.2292 4016.1504 L --3830.0439 4016.5032 -3830.4209 4016.844 -3830.7351 4016.7935 C --3830.3103 4018.1494 -3830.3577 4016.4524 -3829.4409 4017.2444 C --3829.8704 4017.4163 L --3829.5935 4018.1863 -3829.2583 4017.9072 -3828.7727 4018.3875 C --3828.8879 4018.1367 -3829.7449 4017.1775 -3829.2512 4016.8391 C --3829.1121 4016.9414 -3828.9287 4016.99 -3828.6624 4016.7168 C --3828.6599 4017.2 -3828.3999 4017.0811 -3828.0745 4017.0535 C --3828.0967 4017.6936 L --3827.7449 4017.5088 -3827.7727 4017.1831 -3827.5657 4016.895 C --3827.1736 4016.9583 -3827.0923 4017.4536 -3827 4017.8711 C --3826.3721 4017.9727 -3827.4336 4017.0767 -3826.6904 4016.9558 C --3826.1682 4017.2007 -3825.8015 4016.9392 -3825.1768 4016.5564 C --3824.8113 4016.7776 -3825.2407 4016.948 -3825.1096 4017.1311 C --3824.7856 4016.6206 L --3824.7063 4016.6331 -3824.7319 4016.7896 -3824.7449 4016.8687 C --3824.4719 4016.6707 -3824.7224 4016.229 -3824.2932 4016.0559 C --3824.1775 4015.3511 -3823.4121 4017.0852 -3822.8809 4016.2854 C --3822.75 4016.467 -3822.9441 4016.6775 -3822.9041 4016.925 C --3822.1753 4016.3999 -3822.2793 4016.5435 -3821.6809 4015.8367 C --3821.1711 4016.2566 L --3821.5457 4015.7766 -3821.0671 4015.2083 -3820.6479 4014.7415 C --3820.7808 4014.509 -3820.8943 4014.3064 -3820.9705 4014.2095 C --3820.3015 4013.8662 L --3820.2207 4013.9712 -3820.2881 4014.1912 -3820.3977 4014.4583 C --3820.3521 4014.4055 -3820.3088 4014.353 -3820.2751 4014.3047 C --3820.0359 4014.541 -3820.1599 4014.9104 -3820.3313 4015.2676 C --3820.4128 4015.1416 -3820.4937 4015.0071 -3820.5723 4014.8728 C --3820.7375 4015.2615 -3820.8921 4015.6919 -3820.8577 4016.0667 C --3820.8142 4015.9927 -3820.7305 4015.9292 -3820.6384 4015.8936 C --3820.6816 4015.999 -3820.7092 4016.0935 -3820.6892 4016.1575 c --3820.6665 4016.2246 -3820.5967 4016.083 -3820.4873 4015.9192 C --3820.3352 4016.6331 L --3820.2983 4016.3499 L --3819.4231 4016.7959 L --3818.7969 4016.0784 -3818.2522 4015.021 -3817.2583 4014.7271 C --3817.5049 4015.25 -3817.3113 4015.5811 -3817.3247 4016.2007 C --3817.5959 4015.5447 -3818.0945 4016.479 -3818.6096 4016.3462 c --3818.3408 4016.415 -3818.3999 4016.7112 -3818.4683 4016.813 C --3817.5496 4016.2168 L --3817.5703 4016.7239 -3817.3545 4016.5967 -3817.1145 4016.8064 C --3817.2959 4015.8047 -3816.4297 4016.1392 -3816.0559 4015.8323 C --3816.0327 4016.168 -3816.1223 4016.512 -3816.5784 4016.4304 C --3816.0752 4017.1848 -3815.9282 4015.2544 -3815.4343 4015.895 C --3815.5457 4015.9031 -3815.6057 4015.8518 -3815.6497 4016.0232 C --3815.3896 4015.7239 -3814.7537 4015.9612 -3814.9033 4016.2534 C --3815.0144 4016.2603 L --3814.2751 4016.3792 -3812.7639 4016.2676 -3812.6536 4015.417 C --3812.6462 4015.5276 -3812.7505 4016.4424 -3812.7952 4016.6143 C --3811.4761 4013.7527 L --3811.5923 4014.4832 -3811.1462 4016.2224 -3811.7593 4016.636 C --3811.5833 4016.74 -3811.3655 4016.8616 -3810.9944 4016.603 C --3811.1145 4016.499 -3811.2937 4015.5471 -3811.1296 4015.48 C --3810.6792 4016.2932 -3810.8169 4015.915 -3810.2617 4016.6084 C --3810.4417 4016.4524 -3810.2417 4015.3064 -3809.9573 4015.343 C --3810.0017 4015.5144 -3809.9336 4016.4734 -3810.0376 4016.5928 C --3809.3296 4015.4683 L --3809.5063 4015.6707 -3809.3608 4016.4214 -3809.2024 4016.74 C --3809.2759 4016.519 -3808.5903 4016.76 -3808.4016 4016.6487 C --3808.7017 4016.3875 L --3807.9023 4016.5579 -3807.9121 4014.8064 -3807.1191 4014.8655 C --3807.2151 4015.0974 -3807.3562 4016.2952 -3806.9529 4016.4363 C --3806.7681 4015.8606 -3806.1345 4013.6663 -3805.4329 4013.2227 C --3805.2983 4013.552 L --3804.76 4013.1768 L --3805.0952 4014.0435 -3806.0359 4015.8672 -3806.5496 4016.5767 C --3806.2505 4016.8374 -3806.4663 4016.9656 -3806.0183 4016.9351 C --3805.8601 4017.2439 -3806.2625 4017.4031 -3806.3943 4017.4214 C --3805.3513 4017.6206 L --3805.3977 4016.948 -3804.5537 4016.9463 -3804.5935 4016.3862 C --3805.7263 4017.083 L --3805.7722 4016.4119 -3805.0713 4015.175 -3804.3323 4015.2932 C --3804.1443 4015.561 -3804.4729 4016.49 -3804.4575 4016.7144 C --3804.3616 4016.4832 -3803.7561 4016.272 -3803.6882 4016.4363 C --3804.0017 4016.7959 L --3803.5903 4017.0486 -3803.3303 4015.9048 -3802.8359 4016.5464 C --3802.6653 4016.5896 -3802.3264 4017.4119 -3802.2969 4017.0144 C --3802.5752 4016.2471 -3802.6296 4013.8743 -3802.4441 4013.2979 C --3802.3843 4013.3499 -3801.5481 4014.031 -3801.3533 4014.4104 C --3801.0723 4015.012 -3801.7751 4015.844 -3801.5359 4016.3606 C --3801.5256 4016.1768 -3801.3704 4015.9502 -3801.3057 4015.8772 C --3801.1265 4016.0342 -3801.3799 4016.4463 -3800.9905 4016.363 C --3800.9255 4015.6824 -3800.1985 4016.4207 -3800.8064 4015.7871 C --3800.4255 4015.5923 -3800.4016 4015.9282 -3799.9543 4015.8975 C --3800.0967 4015.457 -3799.5527 4014.3992 -3799.1711 4014.2039 C --3799.1936 4014.3772 -3799.1079 4014.603 -3799.0664 4014.7063 C --3798.2856 4014.7676 -3797.8665 4015.0774 -3797.1384 4015.083 C --3797.0713 4015.2483 -3796.72 4015.448 -3796.8696 4015.7415 C --3796.7649 4015.6206 -3796.6687 4015.3894 -3796.4441 4015.373 C --3796.0095 4015.9624 -3796.9448 4015.4646 -3796.6135 4016.1736 C --3796.5852 4015.7776 -3796.0327 4015.6262 -3795.7129 4015.3792 C --3795.8113 4014.7671 -3796.4519 4015.2615 -3796.7722 4015.5088 C --3796.7737 4014.665 -3796.2161 4013.7815 -3795.4551 4013.3911 C --3794.8503 4013.1814 -3795.1929 4013.9363 -3795.0879 4013.8167 C --3793.9519 4013.9639 -3794.1201 4012.343 -3793.1768 4012.9524 C --3792.8025 4013.4895 -3793.1599 4014.021 -3793.0769 4014.4092 C --3793.5696 4014.6128 -3793.8333 4014.0679 -3794.1672 4014.0896 C --3793.7561 4014.344 L --3793.9128 4014.5232 -3794.2417 4014.6582 -3794.4209 4014.5032 C --3794.1072 4014.9856 -3792.5017 4014.5952 -3791.6252 4015.041 C --3791.4695 4014.8616 -3791.2007 4014.6743 -3791.3279 4014.4583 C --3791.6052 4014.5332 L --3791.8601 4014.0999 -3791.0833 4013.9336 -3791.4343 4013.7312 C --3791.0623 4013.4263 -3790.6453 4012.947 -3790.1216 4013.1924 C --3790.0232 4013.8054 L --3790.0344 4013.6262 -3790.3655 4013.4407 -3790.5127 4013.6272 c --3790.2944 4013.355 -3789.7097 4014.457 -3789.4705 4013.6543 C --3789.8376 4013.2295 L --3789.4641 4012.9214 -3789.0024 4012.2703 -3788.5383 4012.4639 C --3788.7495 4011.8584 -3788.6453 4012.5332 -3788.9751 4011.8247 C --3788.6892 4012.7063 -3790.1624 4011.7876 -3789.7031 4012.7134 C --3790.0415 4011.8916 -3790.2888 4012.3655 -3790.7312 4011.6638 C --3790.7175 4011.8662 -3790.5745 4012.051 -3790.9641 4011.9512 C --3790.9817 4012.0103 -3791.0232 4012.0852 -3791.0496 4012.1 -endstream endobj 42 0 obj <>stream -294 C --3791.0615 4012.1243 -3791.0657 4012.1206 -3791.0759 4012.1143 C --3791.0681 4012.1223 -3791.0623 4012.1311 -3791.0544 4012.1382 C --3791.0713 4012.1687 -3791.0728 4012.175 -3791.0464 4012.1462 C --3790.9536 4012.2356 -3790.8784 4012.3416 -3790.8479 4012.4539 C --3791.0413 4012.9182 -3791.6609 4012.9038 -3791.8704 4013.1443 C --3792.1016 4013.0479 -3791.7737 4012.9119 -3791.8999 4012.6963 C --3792.2129 4013.0559 L --3792.2439 4012.6072 -3792.8271 4012.3096 -3792.2825 4012.0464 C --3792.7727 4012.0264 L --3793.0613 4011.7747 -3793.4583 4011.6743 -3793.7031 4011.863 C --3793.9343 4011.7664 -3794.2871 4012.3606 -3794.0857 4012.0088 C --3794.8545 4012.2871 L --3794.8616 4012.175 L --3795.6201 4012.1184 -3796.4231 4012.9192 -3797.2903 4012.1079 C --3797.5457 4012.2212 -3797.8096 4012.3599 -3798.2368 4012.2327 C --3798.3201 4011.844 L --3798.6479 4011.979 -3799.3047 4011.4551 -3799.4456 4011.8599 C --3799.7993 4010.8142 -3801.0369 4011.6316 -3801.6135 4011.4463 C --3801.6353 4011.9536 L --3802.0322 4011.925 -3802.4128 4012.0696 -3802.9055 4012.2727 C --3802.8752 4012.7207 L --3803.3 4013.0884 -3803.9673 4012.4019 -3804.6392 4012.448 C --3804.5935 4012.2766 -3804.4231 4012.321 -3804.3025 4012.425 C --3805.1052 4011.4119 -3805.9961 4013.1614 -3806.7241 4012.4236 C --3806.9055 4012.5872 -3807.0369 4012.531 -3807.1641 4012.4192 C --3807.1472 4012.4175 -3807.1321 4012.4092 -3807.1191 4012.395 C --3807.1377 4012.3904 -3807.1653 4012.3887 -3807.1936 4012.3894 C --3807.2737 4012.3123 -3807.3562 4012.2227 -3807.4456 4012.1504 C --3807.3696 4012.26 -3807.2969 4012.3496 -3807.2336 4012.3911 C --3807.3735 4012.4004 -3807.5857 4012.4558 -3807.7937 4012.5686 C --3807.8823 4012.0872 L --3807.8992 4012.0935 -3807.9128 4012.0923 -3807.9304 4012.1006 C --3808.1345 4011.9231 -3808.0945 4012.3286 -3807.9856 4012.6912 C --3808.0903 4012.77 -3808.1863 4012.8655 -3808.2607 4012.9812 C --3808.4265 4012.2039 -3808.8064 4013.2432 -3809.0327 4012.4143 C --3809.1729 4012.8184 -3810.0784 4012.7183 -3810.1892 4013.5696 C --3810.1963 4013.4583 -3810.2576 4013.4055 -3810.1453 4013.3982 C --3810.3772 4013.3015 -3810.6089 4013.2046 -3810.8169 4013.4446 C --3810.9153 4012.8323 L --3811.4216 4013.655 L --3811.7292 4013.2822 -3811.8567 4013.0652 -3811.5513 4012.5942 C --3812.2888 4013.3196 -3812.1497 4012.8672 -3812.7769 4013.5852 C --3812.7463 4013.1895 L --3812.9705 4013.2046 -3813.3289 4013.7356 -3813.4641 4013.408 C --3813.9656 4012.655 -3815.9456 4013.304 -3817.2329 4012.604 C --3816.9832 4013.77 -3817.8313 4012.0823 -3817.8823 4012.9856 C --3817.9573 4012.7102 -3818.1367 4012.5542 -3817.9282 4012.3152 C --3818.5852 4012.5852 -3818.9153 4011.8772 -3819.3689 4012.6392 C --3819.4441 4012.3623 -3819.2283 4012.2356 -3819.2952 4012.071 C --3819.3479 4012.1311 -3819.5039 4012.311 -3819.5723 4012.1462 c --3819.6392 4011.9822 -3819.4761 4011.915 -3819.3721 4011.7952 C --3820.0432 4011.8416 -3820.1111 4012.6912 -3820.1599 4013.4883 C --3820.5 4013.1111 -3820.6697 4013.1638 -3820.9153 4013.687 C --3821.0337 4013.4263 -3821.2312 4013.1536 -3820.8142 4013.0598 C --3821.0488 4013.0215 -3822.2473 4012.6775 -3822.2712 4013.3167 C --3822.3447 4013.1543 -3822.5991 4013.269 -3822.6609 4013.343 C --3823.1873 4013.3047 -3823.2336 4013.2471 -3823.7505 4013.3079 C --3823.6072 4013.4119 L --3823.8113 4014.1831 -3824.0369 4013.584 -3824.4536 4013.6768 C --3824.4417 4013.5984 L --3825.3972 4013.0415 -3824.8542 4013.8643 -3825.7969 4013.229 C --3825.7456 4013.709 L --3825.8335 4014.74 -3826.5808 4013.1006 -3827.1279 4013.4951 C --3826.9304 4013.769 L --3827.2292 4014.1223 -3827.7656 4012.3662 -3828.0657 4012.2371 C --3828.1311 4012.1472 -3827.9624 4012.0935 -3827.8711 4012.0276 C --3828.6567 4011.4182 -3827.9729 4012.655 -3828.5583 4012.8015 C --3828.6663 4012.4624 -3828.4192 4011.9392 -3828.8132 4011.876 C --3829.0095 4011.6023 -3829.9561 4012.9768 -3830.4937 4012.3267 C --3830.3752 4012.5879 -3830.2576 4012.8484 -3830.5295 4013.0447 C --3830.9463 4013.1382 -3831.6563 4012.0579 -3832.0327 4012.8816 C --3832.0857 4012.8096 -3832.1057 4012.7415 -3832.1079 4012.6763 C --3832.4265 4012.8887 -3833.1433 4013.0291 -3833.3352 4013.4756 C --3833.6296 4011.8191 -3835.3159 4014.2815 -3835.3088 4012.7534 C --3836.2888 4012.8352 L --3836.2632 4012.6792 L --3836.8896 4012.5784 -3837.1111 4012.9446 -3837.3313 4013.311 C --3837.4761 4013.207 -3837.3704 4013.064 -3837.3584 4012.9846 C --3838.2737 4012.6763 -3838.3647 4012.7415 -3839.1321 4013.5032 C --3839.2119 4013.0071 L --3839.4199 4013.2952 -3840.5352 4012.2295 -3841.4329 4012.8079 C --3841.4241 4012.751 -3841.4055 4012.655 -3841.3342 4012.5852 C --3842.3442 4013.167 -3843.7522 4011.2112 -3844.1223 4013.0159 C --3844.7888 4013.4607 L --3843.9265 4013.6006 -3844.9172 4014.2444 -3844.5625 4014.5435 C --3844.9016 4014.6494 -3845.4392 4013.999 -3845.0225 4013.9063 C --3844.9573 4013.9966 L --3844.8042 4013.0559 -3846.0288 4013.6631 -3846.0056 4013.0222 C --3847.7024 4013.0696 -3849.3562 4012.5479 -3850.9456 4012.5078 C --3850.7625 4013.239 L --3851.3169 4013.1975 L --3851.4624 4013.0276 -3851.5122 4012.625 -3851.1167 4012.655 C --3851.3247 4012.24 -3851.78 4013.0032 -3851.7913 4013.1614 C --3852.5657 4012.8655 -3851.4888 4012.3086 -3851.7263 4012.291 C --3852.0488 4012.3455 L --3851.9761 4012.4312 L --3852.2375 4012.73 -3852.2607 4013.0471 -3852.7361 4013.0112 C --3853.0369 4012.8643 -3852.8904 4012.5598 -3853.0088 4012.532 C --3853.0081 4012.479 -3853.0481 4012.4551 -3853.1904 4012.5103 C --3853.8889 4012.448 L --3853.6096 4013.0254 L --3853.9192 4013.3103 -3854.2664 4012.9951 -3853.9441 4013.6494 c --3854.4172 4012.6404 -3856.5496 4013.2871 -3856.8401 4012.9744 C --3857.2737 4013.395 -3857.7017 4013.3875 -3858.2319 4013.3367 C --3858.1001 4013.457 -3858.0212 4014.1062 -3858.4785 4014.0271 C --3858.3113 4012.687 -3859.3159 4013.4456 -3859.6855 4012.4812 C --3859.3552 4013.1206 -3860.9856 4012.6392 -3860.4673 4013.5471 C --3860.8489 4013.4382 -3860.4905 4013.0454 -3860.78 4012.73 C --3861.6882 4013.249 -3862.7815 4012.3926 -3863.9041 4012.5679 C --3863.9216 4012.7444 -3863.7336 4013.0127 -3863.9744 4013.2747 C --3864.5671 4012.395 L --3864.7888 4012.4812 -3864.7712 4013.4104 -3865.1763 4012.8 C --3865.1191 4012.948 -3865.0337 4013.1707 -3865.1824 4013.2271 C --3867.3816 4012.3704 -3869.6763 4013.9292 -3871.9097 4012.3191 C --3871.6072 4012.6604 -3871.8088 4012.6936 -3872.0398 4012.7063 C --3871.8896 4012.7876 -3872.0432 4013.1404 -3872.0137 4013.3792 C --3872.9487 4012.7168 L --3873.1191 4013.3784 -3873.9512 4012.7615 -3874.0488 4013.3943 C --3873.7527 4013.28 L --3874.1465 4014.0271 -3873.2017 4014.9395 -3873.2593 4015.8975 C --3872.8184 4015.0486 -3872.0967 4017.1543 -3871.3733 4015.9395 C --3871.2136 4016.135 -3871.5095 4016.2483 -3871.4241 4016.4702 C --3871.2407 4016.0598 -3871.0193 4015.9744 -3870.6089 4016.1582 C --3870.6553 4016.26 L --3869.5024 4016.1599 -3869.0081 4016.5647 -3867.7129 4016.8342 C --3867.8088 4016.3606 L --3867.5305 4016.4236 -3867.4719 4016.5723 -3867.3416 4016.6912 C --3867.0222 4015.9727 -3868.1233 4016.6504 -3867.8323 4015.8584 C --3867.4631 4016.8223 -3865.8696 4015.8728 -3865.6201 4016.9683 C --3865.1919 4016.9744 -3865.7456 4016.4192 -3865.3176 4016.4263 C --3865.2041 4016.7227 L --3865.0959 4016.3408 L --3864.8152 4016.4038 -3864.6736 4016.7747 -3864.6631 4017.0254 C --3864.7312 4016.9956 -3864.8567 4017.0955 -3864.9297 4017.1172 C --3864.5657 4017.4663 -3863.9033 4016.9983 -3863.7783 4017.1118 C --3864.1897 4016.9292 L --3863.0212 4016.6519 -3861.5945 4017.041 -3860.4656 4016.4382 C --3860.5513 4016.2151 L --3859.6892 4015.8015 -3859.8608 4016.4607 -3858.9143 4016.269 C --3858.9487 4016.3223 L --3858.7593 4016.0999 -3858.5063 4015.9871 -3858.2473 4016.0127 C --3858.4863 4016.2747 -3857.7976 4016.521 -3858.1111 4016.811 C --3857.1763 4016.3672 -3857.6487 4016.4624 -3857.0313 4015.6316 C --3856.8889 4016.0032 L --3856.6785 4015.667 -3856.6609 4015.49 -3856.1882 4015.3943 C --3856.5759 4015.7124 -3855.8865 4015.959 -3856.3208 4016.3799 C --3855.3289 4017.1912 -3854.8479 4015.561 -3854.3928 4016.7471 C --3853.9373 4015.7207 -3855.2512 4016.1775 -3854.9961 4015.9575 C --3855.2097 4015.6223 -3854.6201 4015.1902 -3854.3088 4015.2932 C --3853.9919 4015.3167 -3853.77 4016.6072 -3852.9729 4016.5872 C --3853.0522 4016.5823 -3853.0576 4016.6604 -3853.1367 4016.655 C --3852.8384 4016.917 -3852.5522 4016.3008 -3852.1863 4016.7263 C --3851.9812 4016.105 -3851.7112 4016.7615 -3851.6521 4015.9702 C --3852.3833 4016.1536 L --3851.9688 4015.9463 -3851.5801 4015.02 -3850.8972 4015.4695 C --3850.9504 4015.6287 -3851.1536 4015.8391 -3851.2932 4015.9558 C --3851.0935 4016.1895 -3850.9087 4015.8015 -3850.7017 4016.041 C --3850.7607 4016.8335 -3851.5903 4016.2134 -3852.0344 4016.8174 C --3851.8201 4017.1519 -3851.1943 4016.2439 -3851.4175 4017.1016 c --3851.0967 4016.0112 -3850.6321 4017.24 -3850.0923 4016.4063 C --3850.1279 4016.8806 L --3850.0425 4016.8064 -3849.8655 4016.5823 -3849.7083 4016.5942 C --3849.9929 4017.2095 L --3849.5559 4016.6848 -3849.1504 4017.6692 -3848.7312 4017.3831 C --3849.6089 4017.3975 -3848.9282 4016.811 -3849.2993 4016.4646 C --3848.2168 4015.8296 -3848.6768 4017.7063 -3847.4648 4017.4783 C --3847.6289 4017.5454 -3848.0808 4017.1936 -3847.8242 4016.9734 C --3847.5935 4017.071 -3847.2888 4017.2534 -3847.1472 4017.5032 C --3846.3442 4017.4038 -3847.2705 4017.0144 -3846.9287 4016.7224 C --3846.6553 4017.3008 -3846.5344 4016.4871 -3846.1824 4016.3022 C --3846.1799 4016.7847 L --3845.2649 4017.0942 -3845.9373 4015.7791 -3845.1135 4016.1536 C --3845.4617 4016.8223 L --3845.0322 4016.6494 L --3845.1208 4017.1982 L --3844.6536 4016.791 -3844.5081 4016.896 -3844.0503 4017.0503 C --3844.1567 4016.7112 -3843.9905 4016.175 -3843.5852 4016.1599 C --3843.3088 4016.4463 -3843.74 4016.6184 -3843.1655 4016.5496 C --3843.2952 4016.8511 -3843.4373 4017.23 -3843.6873 4016.7864 C --3843.7129 4016.9436 -3843.8152 4017.0884 -3843.8416 4017.2444 C --3843.5439 4017.5735 -3843.0935 4017.3191 -3842.8855 4017.3142 C --3842.9656 4017.2964 -3843.0613 4017.2703 -3843.1104 4017.2024 C --3842.2776 4016.5332 L --3842.1465 4016.7144 -3842.2505 4016.8599 -3842.3535 4017.0032 C --3842.1848 4016.9502 -3842.0681 4016.7283 -3841.8201 4016.687 C --3841.8843 4017.0791 -3841.8689 4017.4839 -3842.22 4017.6687 C --3841.4265 4017.2334 L --3841.3735 4017.4038 -3841.0193 4017.7024 -3841.1223 4017.8462 C --3840.6824 4018.0767 -3840.0432 4017.0852 -3839.46 4017.3894 C --3839.4297 4017.3135 -3839.3689 4017.24 -3839.2449 4017.1848 C --3838.6968 4017.2732 -3838.2112 4017.7544 -3837.5615 4017.217 C --3837.1929 4017.9192 L --3836.6841 4017.7603 -3837.6919 4017.0342 -3836.8447 4016.769 C --3836.2449 4016.5447 -3836.6208 4017.3687 -3836.4104 4017.564 C --3836.1121 4017.2102 -3835.5935 4016.4888 -3835.0425 4017.061 C --3835.2249 4017.1936 -3835.3679 4017.0896 -3835.5383 4017.1416 C -f -1 D --3829.2632 4016.8296 m --3829.3848 4016.9312 -3829.6272 4017.2439 -3829.7161 4016.959 C --3829.5776 4016.4063 -3829.4705 4016.6707 -3829.2632 4016.8296 C -f --3819.7241 4015.6692 m --3819.8145 4015.8279 -3819.9543 4015.749 -3820.1121 4015.5667 C --3819.9976 4015.5271 -3819.8679 4015.5447 -3819.7241 4015.6692 C -f --3793.1511 4012.3096 m --3793.1563 4012.3174 -3793.1599 4012.3232 -3793.1641 4012.333 C --3793.4353 4012.145 -3793.3391 4012.22 -3793.1511 4012.3096 C -f -0 D --3792.5879 4012.519 m --3792.5313 4012.4524 -3792.5352 4012.3848 -3792.5591 4012.3174 C --3792.5984 4012.4392 -3792.7249 4012.448 -3792.8689 4012.4136 C --3792.8289 4012.5398 -3792.7561 4012.6272 -3792.5879 4012.519 C -f -1 D --3853.0713 4012.709 m --3852.9617 4012.8352 L --3853.2092 4012.9744 -3853.1399 4012.8484 -3853.0713 4012.709 C -f -*U -0 D --3820.8057 4016.3286 m --3820.8401 4016.2471 -3820.8496 4016.1575 -3820.8577 4016.0667 C --3820.9055 4016.1475 -3820.9065 4016.2415 -3820.8057 4016.3286 C -f --3839.4409 4017.395 m --3839.4473 4017.3911 -3839.4536 4017.3926 -3839.46 4017.3894 C --3839.4705 4017.4182 -3839.4761 4017.448 -3839.4792 4017.4768 C --3839.4409 4017.395 L -f --3801.3123 4016.6096 m --3801.4282 4016.5398 -3801.4929 4016.4524 -3801.5359 4016.3606 C --3801.5422 4016.4783 -3801.4895 4016.5784 -3801.3123 4016.6096 C -f --3789.6033 4011.6992 m --3789.9641 4011.8247 L --3789.7896 4011.8008 -3789.7273 4011.9063 -3789.6392 4011.9832 C --3789.6472 4011.8704 -3789.7161 4011.707 -3789.6033 4011.6992 C -f --3786.4719 4014.6848 m --3786.4192 4014.6255 -3786.3601 4014.6782 -3786.3081 4014.6184 C --3786.3225 4014.3943 L --3786.5471 4014.4087 -3786.7041 4014.5896 -3786.4719 4014.6848 C -f --3789.2693 4013.3022 m --3789.2407 4013.7083 -3789.0144 4013.5703 -3788.7617 4013.4951 C --3788.7769 4013.4966 -3788.7913 4013.5 -3788.8064 4013.4951 C --3788.7319 4012.9282 -3789.0012 4013.1152 -3789.2693 4013.3022 C -f --3788.7031 4013.4812 m --3788.6252 4013.4624 -3788.5457 4013.4524 -3788.4695 4013.4712 C --3788.4399 4013.2439 -3788.5642 4013.4236 -3788.7031 4013.4812 C -f --3791.8735 4012.25 m --3791.7537 4012.3542 -3791.7983 4011.7312 -3791.7305 4011.896 C --3791.5967 4011.3799 -3792.5295 4012.521 -3791.8735 4012.25 C -f --3789.0647 4014.6392 m --3789.1553 4014.1382 L --3789.2969 4014.5422 L --3789.0647 4014.6392 L -f --3791.0601 4014.271 m --3790.6563 4014.4104 L --3790.6624 4014.3264 -3790.6111 4014.2776 -3790.5481 4014.24 C --3790.7969 4014.2224 -3791.0696 4014.123 -3791.0601 4014.271 C -f --3790.5481 4014.24 m --3790.4185 4014.249 -3790.2952 4014.2383 -3790.2231 4014.1563 C --3790.2932 4014.1614 -3790.4441 4014.1782 -3790.5481 4014.24 C -f --3789.6167 4014.7896 m --3789.7361 4014.6851 L --3790.0212 4014.6487 L --3789.6167 4014.7896 L -f --3795.4009 4014.175 m --3795.8416 4014.3184 L --3795.8865 4014.49 -3795.7664 4014.5952 -3795.6023 4014.5271 C --3795.4968 4014.4072 -3795.3333 4014.3408 -3795.4009 4014.175 C -f --3794.0681 4015.5471 m --3794.1873 4015.4431 -3794.1953 4015.3311 -3794.2625 4015.1663 C --3794.2759 4015.7871 L --3794.0681 4015.5471 L -f --3795.3533 4015.6919 m --3795.3972 4015.8643 -3795.9929 4016.1863 -3795.4343 4016.1475 C --3795.3896 4015.9768 -3794.9482 4015.8335 -3795.3533 4015.6919 C -f --3801.9937 4014.9063 m --3801.8816 4014.8982 L --3801.8977 4013.8799 L --3801.9937 4014.9063 L -f --3807.8464 4017.343 m --3807.3242 4017.5872 -3807.7224 4016.7144 -3807.2505 4017.019 C --3807.1279 4016.7783 -3807.6362 4016.7703 -3807.5105 4016.5623 C --3807.8257 4016.8167 -3807.9912 4016.6736 -3807.8464 4017.343 C -f --3807.5105 4016.5623 m --3807.46 4016.5222 -3807.4065 4016.4734 -3807.3496 4016.408 C --3807.4409 4016.4712 -3807.4839 4016.52 -3807.5105 4016.5623 C -f --3873.5745 4012.1924 m --3873.9104 4011.98 L --3873.6936 4012.3223 L --3873.5745 4012.1924 L -f --3874.2192 4012.948 m --3874.2983 4012.2991 L --3874.5 4012.8862 L --3874.4241 4012.8572 -3874.2769 4012.8015 -3874.2192 4012.948 C -f --3828.3303 4018.1375 m --3828.3047 4017.9812 L --3828.3567 4017.8123 -3828.4353 4017.8 -3828.5928 4017.7732 C --3828.3303 4018.1375 L -f --3832.8848 4017.6519 m --3832.8064 4017.665 L --3832.9529 4017.0784 L --3832.8848 4017.6519 L -f --3836.7073 4018.4004 m --3836.5513 4018.425 -3836.3679 4018.2942 -3836.2112 4018.3196 C --3836.5513 4018.425 -3836.7495 4017.6692 -3836.7073 4018.4004 C -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 45) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7746 7859.3877 L --7721.1748 7859.3877 L --7721.1748 7890 L --7746 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7746 7881.498 m --7721.1738 7881.498 L --7721.1738 7880.5142 L --7746 7880.5142 L --7746 7881.498 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7746 7880.5176 m --7721.1738 7880.5176 L --7721.1738 7873.7935 L --7746 7873.7935 L --7746 7880.5176 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7746 7873.7959 m --7721.1738 7873.7959 L --7721.1738 7872.6367 L --7746 7872.6367 L --7746 7873.7959 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7721.1738 7872.6367 m --7721.1738 7860.5278 L --7746 7860.5278 L --7746 7872.6367 L --7721.1738 7872.6367 L -f -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 47) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7746 7859.3877 L --7715.3848 7859.3877 L --7715.3848 7890 L --7746 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7715.3848 7880.5142 m --7724.8672 7880.5142 L --7724.8711 7889.998 L --7723.8896 7889.998 L --7723.8896 7881.4951 L --7715.3848 7881.4951 L --7715.3848 7880.5142 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7715.3848 7873.7935 m --7731.5928 7873.791 L --7731.5928 7890 L --7724.8672 7890 L --7724.8672 7880.5132 L --7715.3848 7880.5132 L --7715.3848 7873.7935 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7715.3848 7872.6357 m --7732.7485 7872.6357 L --7732.7485 7889.999 L --7731.5957 7889.999 L --7731.5957 7873.791 L --7715.3848 7873.791 L --7715.3848 7872.6357 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7715.3848 7860.5244 m --7744.8594 7860.5244 L --7744.8594 7889.998 L --7732.7495 7890 L --7732.7495 7872.6357 L --7715.3848 7872.6357 L --7715.3848 7860.5244 L -f -0 0 0 0 1 1 1 Xa --7731.5918 7874.1533 m --7732.7207 7872.6733 l --7731.5918 7873.7959 l --7731.5918 7874.1533 l -f --7723.8896 7881.8096 m --7724.8232 7880.5615 l --7723.8896 7881.4951 l --7723.8896 7881.8096 l -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 49) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7715.3335 7890 L --7715.3335 7859.334 L --7746 7859.334 L --7746 7890 L -n -u -u -u -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7737.4219 7889.9688 m --7736.5039 7889.9688 L --7736.5039 7868.8013 L --7715.3389 7868.8013 L --7715.3389 7867.8853 L --7737.4219 7867.8853 L --7737.4219 7889.9688 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa -0 XR --7736.5039 7889.9688 m --7729.7539 7889.9688 L --7729.7539 7875.5527 L --7715.3389 7875.5527 L --7715.3389 7876.7173 L --7715.3389 7876.7173 L --7715.3389 7868.8013 L --7736.5039 7868.8013 L --7736.5039 7889.9688 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7715.3389 7876.7173 m --7715.3389 7875.5527 L --7729.7539 7875.5527 L --7729.7539 7889.9688 L --7728.5889 7889.9688 L --7728.5889 7876.7173 L --7715.3389 7876.7173 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa -0 XR --7728.5889 7876.7173 m --7728.5889 7889.9688 L --7716.5039 7889.9688 L --7716.5352 7888.8135 L --7715.3389 7888.8135 L --7715.3389 7876.7173 L --7728.5889 7876.7173 L -f -U -9 () XW -1 Ap -1 XR --7746 7890 m --7746 7859.334 L --7715.3335 7859.334 L --7715.3335 7890 L --7746 7890 L -n -U -9 () XW -0 Ap -0 O -0 0 0 0 1 1 1 Xa -0 XR --7728.5986 7877.0796 m --7729.7285 7875.6016 l --7728.5986 7876.7212 L --7728.5986 7877.0796 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ --7736.5 7869.1255 m --7737.3848 7867.9287 l --7736.5 7868.8101 L --7736.5 7869.1255 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ -U -9 () XW -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSVGFilter -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_AbgeflachteKanteMitSchatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color:white) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20000) /UnicodeString (xmlnode-nodevalue) , -(z) /UnicodeString (xmlnode-nodename) , -; (z) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5000) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10000) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(fePointLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.1) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_7) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Holzmaserung) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offset) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(flood-color:black; flood-opacity:0.4) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFlood) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(shadowColor) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary -endstream endobj 43 0 obj <>stream - : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.5) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncR) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.7 0 ) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncG) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.1 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncB) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComponentTransfer) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(MergeAll) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(110%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_KühleBrise) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-40%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.2) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(freeze) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(stdDeviation) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(spline) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 1;20 15;200 200; 15 20;1 1 ) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50;20 20;50 50) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow;green;blue;indigo;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(red) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indigo;green;yellow;blue;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(130%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Statisch) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-a -endstream endobj 44 0 obj <>stream -ttributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(baseFrequency) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.7) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_5) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.4) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -%AI10_EndSVGFilter -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI14_BeginSymbol -(Kombinationsfeld) 0 A -0 Xw -u -u -0 O -9 0.7 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -6.5 -10 m -6.5 -10 L --10.5 -10 L --10.5 10 L -6.5 10 L -6.5 10 L -8.15625 10 9.5 8.6582 9.5 7 C -9.5 -7 L -9.5 -8.65625 8.15625 -10 6.5 -10 C -Bb -1 (Unnamed gradient 1) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -24 0.000001 -7735.5 7901 Xm --0.000001 -23.5 -24 0.000001 -7735.5 7924.5 Bc --0.000001 -20 -24 0.000001 -7735.5 7901 Bm --0.000001 -23.5 -24 0.000001 -7735.5 7881 Bc -f -0 BB -0 1 0 0 0 Xy -6.5 -11 m -6.5 -11 L --10.5 -11 L --10.5 -10 L -6.5 -10 L -6.5 -10 L -8.15625 -10 9.5 -8.65625 9.5 -7 C -9.5 7 L -9.5 8.6582 8.15625 10 6.5 10 C -6.5 10 L --9.5 10 L --10.5 10 L --10.5 11 L -6.5 11 L -6.5 11 L -8.70898 11 10.5 9.20898 10.5 7 C -10.5 -7 L -10.5 -9.20898 8.70898 -11 6.5 -11 C -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -25 0.000001 -7734.5 7902 Xm --0.000001 -25 -25 0.000001 -7734.5 7927 Bc --0.000001 -22 -25 0.000001 -7734.5 7902 Bm --0.000001 -25 -25 0.000001 -7734.5 7880 Bc -f -0 BB -U -9 () XW -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa --3.5 -2 m -2.5 -2 L --0.5 2 l --3.5 -2 L -f -U -%_/ArtDictionary : -%_0 17 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Schaltfläche) 0 A -0 Xw -u -*u -1 D -0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -0 g -28.0005 -11 m -28 -11 L --28 -11 L --30.21 -11 -32 -9.20898 -32 -7 C --32 7 L --32 9.20801 -30.21 10.999 -28 11 C -28 11 L -28.0005 11 L -30.2085 11 32 9.20898 32 7 C -32 -7 L -32 -9.20898 30.2085 -11 28.0005 -11 C -f -0 D -31 7 m -31 8.6582 29.6563 10 28.0005 10 C -28 10 L --28 10 L --29.6572 9.99902 -31 8.65625 -31 7 C --31 -7 L --31 -8.65527 -29.6572 -10 -28 -10 C -28 -10 L -28.0005 -10 L -29.6563 -10 31 -8.65625 31 -7 C -31 7 L -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -68 0.000003 -7713 7902 Xm --0.000001 -25 -68 0.000003 -7713 7927 Bc --0.000001 -22 -68 0.000003 -7713 7902 Bm --0.000001 -25 -68 0.000003 -7713 7880 Bc -f -0 BB -*U -9 0.85 0 0 0 Xy -28.0005 -10 m -28 -10 L -28 -10 L --28 -10 L --28 -10 L --29.6572 -10 -31 -8.65527 -31 -7 C --31 7 L --31 8.65625 -29.6572 9.99902 -28 10 C --28 10 L -28 10 L -28 10 L -28.0005 10 l -29.6563 10 31 8.6582 31 7 C -31 -7 L -31 -8.65625 29.6563 -10 28.0005 -10 c -Bb -1 (Unnamed gradient 3) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -66 0.000003 -7714 7901 Xm --0.000001 -23 -66 0.000003 -7714 7924 Bc --0.000001 -20 -66 0.000003 -7714 7901 Bm --0.000001 -23 -66 0.000003 -7714 7881 Bc -f -0 BB -U -%_/ArtDictionary : -%_4 60 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Suchen) 0 A -0 Xw -u -1 Ap -0 O -1 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -31 21.5322 m -31 24.0166 17.1211 26.0303 0 26.0303 c --17.1191 26.0303 -31 24.0166 -31 21.5322 c --31 19.0459 -17.1191 17.0303 0 17.0303 c -17.1211 17.0303 31 19.0459 31 21.5322 c -Bb -0 0 0 0 Bh -1 (Unnamed gradient 17) 0 0 0 1 1.4762 0 0 0.2143 -3789.1475 6144.7451 1 Bg -30.9986 0 0 -4.50006 -7747 7869.4692 Bm -f -0 BB -%_/ArtDictionary : -%_/Dictionary : /NotRecorded , -%_1.4762 0 0 0.2143 -3789.1475 6144.7451 /RealMatrix -%_ (CAIGradientTformMatrix) , -%_; (Adobe_AI9_ArtStyle_Dictionary) , -%_; -%_ -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 17) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -6 () XW -u -0 Ap -0 1 0 0 0 Xy -10 M -18.4502 21.9706 m --18.7514 21.9706 -19.0387 21.8438 -19.2384 21.6228 C --23.965 16.396 L --24.1564 16.1854 -24.2537 15.9123 -24.2398 15.6264 c --24.2259 15.3403 -24.1025 15.0776 -23.8923 14.8867 C --10.655 2.8613 L --10.4594 2.68388 -10.205 2.58601 -9.93892 2.58601 c --9.63749 2.58601 -9.35004 2.7128 -9.15027 2.93386 C --4.42351 8.15868 L --4.23263 8.36885 -4.13573 8.64198 -4.15001 8.92848 c --4.16429 9.21497 -4.28761 9.47757 -4.49724 9.66792 C --17.7366 21.6953 L --17.9317 21.873 -18.1849 21.9706 -18.4502 21.9706 C -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -18.1731 0 0 -18.1731 -7764.2183 7866.1729 Bm -f -0 BB -u -*u -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 Xa --9.93896 3.08594 m --9.84473 3.08594 -9.66504 3.10986 -9.521 3.26953 C --4.79297 8.49561 L --4.65771 8.64453 -4.64502 8.81494 -4.64941 8.90381 C --4.65723 9.05713 -4.72217 9.19678 -4.8335 9.29785 C --18.0737 21.3262 L --18.1763 21.4194 -18.3096 21.4707 -18.4502 21.4707 C --18.5444 21.4707 -18.7236 21.4468 -18.8677 21.2871 C --23.5957 16.0591 L --23.8022 15.8315 -23.7842 15.4639 -23.5562 15.2568 C --10.3193 3.23193 L --10.2158 3.1377 -10.0806 3.08594 -9.93896 3.08594 C -F -1 D --9.93896 2.08594 m --10.3145 2.08594 -10.6919 2.21973 -10.9912 2.49121 C --24.2285 14.5166 L --24.8672 15.0967 -24.916 16.0928 -24.3359 16.7314 C --19.6094 21.958 L --19.3022 22.2979 -18.877 22.4707 -18.4502 22.4707 C --18.0747 22.4707 -17.6982 22.3369 -17.4004 22.0654 C --4.16113 10.0381 L --3.52441 9.45996 -3.47266 8.46191 -4.05273 7.82324 C --8.7793 2.59863 L --9.08643 2.25879 -9.51172 2.08594 -9.93896 2.08594 C --9.93896 2.08594 L -f -*U -U -0 0 Xd -6 () XW -U -0 0 Xd -6 () XW -%_0 D -%_-24.3359 16.7314 m -%_-24.916 16.0928 -24.8672 15.0967 -24.2285 14.5166 c -%_-10.9912 2.49121 l -%_-10.3516 1.91113 -9.35645 1.95996 -8.7793 2.59863 c -%_-4.05273 7.82324 l -%_-3.47266 8.46191 -3.52441 9.45996 -4.16113 10.0381 c -%_-17.4004 22.0654 l -%_-18.0371 22.6455 -19.0322 22.5967 -19.6094 21.958 c -%_-24.3359 16.7314 l -%_n -1 (Anon) XW -*u -0 O -0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -4 M 0 g -7.40234 -25.5303 m -9.28125 -25.5303 11.1943 -25.2197 13.0703 -24.5713 C -22.1172 -21.4404 26.9102 -11.5713 23.7832 -2.52441 C -21.3018 4.64551 14.5879 9.14551 7.40234 9.14551 C -5.52344 9.14551 3.61328 8.83496 1.73438 8.18652 C --7.3125 5.05762 -12.1084 -4.81348 -8.97852 -13.8584 C --6.49707 -21.0283 0.219727 -25.5303 7.40234 -25.5303 C -B -1 D -7.40234 -20.374 m -2.21582 -20.374 -2.40918 -17.0791 -4.1084 -12.1729 C --5.1709 -9.09863 -4.97363 -5.7959 -3.55176 -2.86816 C --2.12988 0.055664 0.34668 2.25293 3.42188 3.31738 C -4.71191 3.76465 6.05176 3.99121 7.40234 3.99121 C -12.5889 3.99121 17.2139 0.696289 18.9131 -4.20801 C -19.9756 -7.28223 19.7783 -10.5869 18.3564 -13.5127 C -16.9346 -16.4404 14.458 -18.6377 11.3857 -19.7002 C -11.3857 -19.7002 L -10.0898 -20.1475 8.75 -20.374 7.40234 -20.374 C -7.40234 -20.374 L -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) 0.007548 0.433959 0 1.40083 1 0 0 1 0 0 1 Bg -17.0658 0 0 -17.0658 -7739.3364 7884.1445 Bm -b -2 BB -*U -u -0 D -10 M -8.90137 7.71973 m --8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C --9.96973 4.26465 L --22.5664 15.708 L --20.3691 18.1377 L --8.90137 7.71973 L -Bb -1 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -17.6244 -20.6243 -16.0703 -13.7328 -7766.499 7901.1626 Xm -33.9039 -39.6748 -16.0703 -13.7328 -7800.4028 7940.8374 Bc -17.6244 -20.6243 -16.0703 -13.7328 -7766.499 7901.1626 Bm -33.9039 -39.6748 -16.0703 -13.7328 -7748.8745 7880.5381 Bc -f -0 BB -U -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-8.90137 7.71973 m -%_-8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-20.3691 18.1377 L -%_-8.90137 7.71973 L -%_n -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -1 (Anon 437) XW -0 O -4 M 12.5801 -23.1553 m -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.3125 -8.30762 -8.32813 -2.95605 -5.40723 1.08691 C --5.00293 -0.069336 -4.43066 -1.18066 -3.72559 -2.23926 C --3.80273 -2.38379 -3.88965 -2.52051 -3.96191 -2.66895 c --5.43652 -5.70605 -5.6416 -9.13379 -4.53906 -12.3232 c --2.77637 -17.4111 2.02148 -20.8291 7.40234 -20.8291 c -8.80078 -20.8291 10.1904 -20.5947 11.5352 -20.1299 c -14.7217 -19.0283 17.291 -16.749 18.7666 -13.7119 c -19.0146 -13.2021 19.2129 -12.6787 19.3887 -12.1494 C -19.7041 -12.1279 20.0215 -12.1143 20.3359 -12.0811 c -21.1885 -11.9932 22.0146 -11.8623 22.8184 -11.7021 C -21.6367 -16.8506 17.9277 -21.3037 12.5801 -23.1553 c -Bb -1 (Unnamed gradient 7) -0.837511 0 -63.554 2.1927 1 0 0 1 0 0 1 Bg -19.0977 -38.3947 -33.1435 -16.4857 -7737.2896 7936.3179 Xm -20.434 -41.0812 -33.1435 -16.4857 -7757.7231 7977.3994 Bc -19.0977 -38.3947 -33.1435 -16.4857 -7737.2896 7936.3179 Bm -20.434 -41.0812 -33.1435 -16.4857 -7718.1919 7897.9233 Bc -f -0 BB --6.4707 -11.915 m --4.26367 -18.292 1.75 -22.5752 8.49316 -22.5752 c -10.251 -22.5752 11.9922 -22.2822 13.6709 -21.7021 c -16.4521 -20.7393 18.7813 -19.0635 20.5557 -16.9619 C -18.7041 -19.7471 15.9766 -21.9795 12.5801 -23.1553 c -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.45313 -7.90137 -8.14941 -2.10254 -4.66309 2.02637 C --7.30762 -1.9502 -8.14941 -7.06348 -6.4707 -11.915 c -Bb -1 (Unnamed gradient 7) -0.284451 0 -62.8867 1.31311 1 0 0 1 0 0 1 Bg -11.6282 -22.7105 -32.3312 -16.5542 -7733.5737 7926.2744 Xm -13.8263 -27.0035 -32.3312 -16.5542 -7747.3999 7953.2778 Bc -11.6282 -22.7105 -32.3312 -16.5542 -7733.5737 7926.2744 Bm -13.8263 -27.0035 -32.3312 -16.5542 -7721.9453 7903.564 Bc -f -0 BB -u -0 1 0 0 0 Xy -10 M -9.12402 5.19824 m --9.96973 4.26465 L --22.5664 15.708 L --21.7207 16.6436 L --9.12402 5.19824 L -Bb -1 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -3.53784 -7.91375 -18.7709 -8.3915 -7755.1191 7888.4551 Xm -11.3559 -25.4018 -18.7709 -8.3915 -7766.4751 7913.8569 Bc -3.53784 -7.91375 -18.7709 -8.3915 -7755.1191 7888.4551 Bm -11.3559 -25.4018 -18.7709 -8.3915 -7751.5815 7880.541 Bc -f -0 BB -U -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-9.12402 5.19824 m -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-21.7207 16.6436 L -%_-9.12402 5.19824 L -%_n -1 (Anon 438) XW -U -%_/ArtDictionary : -%_15.5 46.5 39.0454 13.0151 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_0 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Textbereich) 0 A -0 Xw -u -1 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 0.991358 w 4 M []0 d 0 XR -77.5 45.5 m --77.5 45.5 L --77.5 -45.5 L -77.5 -45.5 L -77.5 45.5 L -s -0 0.6 0 0 0 Xy -1.00864 w 78.5 46.5 m --78.5 46.5 L --78.5 -46.5 L -78.5 -46.5 L -78.5 46.5 L -s -U -%_/ArtDictionary : -%_2.0811 156.0811 91.4609 2.4609 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Texteingabe) 0 A -0 Xw -u -0 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -77.5 11.5 m --77.5 11.5 L --77.5 -11.5 L -77.5 -11.5 L -77.5 11.5 L -s -0 0.6 0 0 0 Xy -78.5 12.5 m --78.5 12.5 L --78.5 -12.5 L -78.5 -12.5 L -78.5 12.5 L -s -U -%_/ArtDictionary : -%_1.7002 155.7002 24 2 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Brush Manager Order) -(Adobe Brush Manager Order) -( Adobe Calligraphic Brush Tool/ Rund - 3 Pt./ Adobe Calligraph) - -(ic Brush Tool/ Rund - 10 Pt./ Adobe Calligraphic Brush Tool/ O) - -(val - 3 Pt./ Adobe ArtOnPath Brush Tool/ Kohle - Feder/ Adobe ) - -(dBrush Brush Tool/ Stupfpinsel/ Adobe PatternOnPath Brush Tool) - -(/ Silber/) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe dBrush Brush Tool) -(Stupfpinsel) -(0 4 0.75 0.75 0.33 0.75 1 3 AI_BristleBrushLibary_CS5 02_Round) - -(_Blunt) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Oval - 3 Pt.) -(1 3 3 26 74 15 15 0 1 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 10 Pt.) -(1 10 10 100 100 0 0 1 0 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 3 Pt.) -(1 3 3 100 100 0 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe ArtOnPath Brush Tool) -(Kohle - Feder) -(2 / Unnamed 6/ / / / / 0 1 / 1 1 1 0 1 0 0 0 1 1 0 0 0 0 1) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe PatternOnPath Brush Tool) -(Silber) -(2 / Unnamed Brush Pattern 45/ Unnamed Brush Pattern 49/ Unname) - -(d Brush Pattern 47/ / / 5 0.623529 0.67451 0.737255 / 1 0 1 0) - -( 1 0 0 0 1 1 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyles -/KnownStyle : -(Anon) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -1 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 103) /Name , -/SimpleStyle : -0 O -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Paint ; - /Def ; -/KnownStyle : -(Anon 437) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 438) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 53) /Name , -/SimpleStyle : -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Paint ; - /Def ; -/KnownStyle : -(Jive_GS) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -(Jive) 0 0 1 1 0 0 0 0 0 [0 1.47 -1.47 0 3549.7441 19033.0313] p -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0.389013 0.068635 0.08426 0 0.65098 0.815686 0.894118 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schein nach außen - 5 Pt.) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Outer Glow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schein nach au\337en) /Title , -/Dictionary : /NotRecorded , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -2 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schlagschatten) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Drop Shadow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schlagschatten) /Title , -/Dictionary : /NotRecorded , -1 /Bool (pair) , -7 /Real (vert) , -50 /Real (dark) , -7 /Real (horz) , -1 /Int (csrc) , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -1 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -([Standard]) /Name , -/SimpleStyle : -0 O -0 0 0 0 1 1 1 Xa -0 R -0.912474 0.787625 0.619837 0.97467 0 0 0 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -1 1 Xd -/Paint ; - /Def ; -%AI9_EndArtStyles -%AI5_End_NonPrinting-- -%AI5_BeginPalette -0 0 Pb -0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz -([Passermarken]) -Pc -0 0 0 0 1 1 1 Xa -(Weiß) -Pc -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(Schwarz) -Pc -0 0.94641 0.916289 0 1 0 0 Xa -(RGB Rot) -Pc -0.096254 0 0.951965 0 1 1 0 Xa -(RGB Gelb) -Pc -0.647547 0 1 0 0 1 0 Xa -(RGB Grün) -Pc -0.570733 0 0.153567 0 0 1 1 Xa -(RGB Cyan) -Pc -0.934081 0.745846 0 0 0 0 1 Xa -(RGB Blau) -Pc -0.409979 0.77676 0 0 1 0 1 Xa -(RGB Magenta) -Pc -0.168978 0.950286 0.823636 0.068666 0.756863 0.152941 0.176471 Xa -(R=193 G=39 B=45) -Pc -0 0.946624 0.85211 0 0.929412 0.109804 0.141176 Xa -(R=237 G=28 B=36) -Pc -0 0.752956 0.887388 0 0.945098 0.352941 0.141176 Xa -(R=241 G=90 B=36) -Pc -0 0.501823 0.907988 0 0.968627 0.576471 0.117647 Xa -(R=247 G=147 B=30) -Pc -0 0.365637 0.819852 0 0.984314 0.690196 0.231373 Xa -(R=251 G=176 B=59) -Pc -0.065736 0 0.852628 0 0.988235 0.933333 0.129412 Xa -(R=252 G=238 B=33) -Pc -0.231907 0 0.892332 0 0.85098 0.878431 0.129412 Xa -(R=217 G=224 B=33) -Pc -0.524254 0 0.880919 0 0.54902 0.776471 0.247059 Xa -(R=140 G=198 B=63) -Pc -0.718288 0 0.876951 0 0.223529 0.709804 0.290196 Xa -(R=57 G=181 B=74) -Pc -0.842954 0.14374 0.926757 0.021576 0 0.572549 0.270588 Xa -(R=0 G=146 B=69) -Pc -0.899077 0.322972 0.925994 0.247654 0 0.407843 0.215686 Xa -(R=0 G=104 B=55) -Pc -0.735958 0 0.689784 0 0.133333 0.709804 0.45098 Xa -(R=34 G=181 B=115) -Pc -0.766171 0.045533 0.450782 0 0 0.662745 0.615686 Xa -(R=0 G=169 B=157) -Pc -0.709987 0.132143 0.001953 0 0.160784 0.670588 0.886275 Xa -(R=41 G=171 B=226) -Pc -0.866178 0.492958 0 0 0 0.443137 0.737255 Xa -(R=0 G=113 B=188) -Pc -0.975586 0.89572 0 0.000824 0.180392 0.192157 0.572549 Xa -(R=46 G=49 B=146) -Pc -1 0.970001 0.322484 0.218753 0.105882 0.078431 0.392157 Xa -(R=27 G=20 B=100) -Pc -0.755703 0.923125 0 0.000031 0.4 0.176471 0.568627 Xa -(R=102 G=45 B=145) -Pc -0.5393 0.930297 0 0 0.576471 0.152941 0.560784 Xa -(R=147 G=39 B=143) -Pc -0.323583 1 0.236301 0.1673 0.619608 0 0.364706 Xa -(R=158 G=0 B=93) -Pc -0.097993 0.983551 0.407263 0.020691 0.831373 0.078431 0.352941 Xa -(R=212 G=20 B=90) -Pc -0 0.935058 0.142763 0 0.929412 0.117647 0.47451 Xa -(R=237 G=30 B=121) -Pc -0.220859 0.272648 0.389227 0.061189 0.780392 0.698039 0.6 Xa -(R=199 G=178 B=153) -Pc -0.354864 0.386694 0.466072 0.211734 0.6 0.52549 0.458824 Xa -(R=153 G=134 B=117) -Pc -0.446387 0.47068 0.52636 0.380346 0.45098 0.388235 0.341176 Xa -(R=115 G=99 B=87) -Pc -0.535302 0.542443 0.552728 0.542199 0.32549 0.278431 0.254902 Xa -(R=83 G=71 B=65) -Pc -0.204685 0.376715 0.593042 0.084871 0.776471 0.611765 0.427451 Xa -(R=198 G=156 B=109) -Pc -0.280308 0.462287 0.671046 0.207126 0.65098 0.486275 0.321569 Xa -(R=166 G=124 B=82) -Pc -0.324376 0.536675 0.760494 0.329229 0.54902 0.384314 0.223529 Xa -(R=140 G=98 B=57) -Pc -0.359228 0.605188 0.857359 0.451545 0.458824 0.298039 0.141176 Xa -(R=117 G=76 B=36) -Pc -0.391424 0.683131 0.943023 0.57116 0.376471 0.219608 0.07451 Xa -(R=96 G=56 B=19) -Pc -0.474617 0.7467 0.825315 0.730831 0.258824 0.129412 0.043137 Xa -(R=66 G=33 B=11) -Pc -Bb -2 (Weiß, Schwarz) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Weiß, Schwarz) -Pc -Bb -2 (Goldstaub) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Goldstaub) -Pc -Bb -2 (Blauer Himmel) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Blauer Himmel) -Pc -(Jive) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p -(Jive) -Pc -1 (Kalt) 1 Pg -0.584497 0 0.222965 0 0.396078 0.784314 0.815686 Xa -(C=56 M=0 Y=20 K=0) -Pc -0.55404 0.445533 0 0 0.513726 0.545098 0.772549 Xa -(C=51 M=43 Y=0 K=0) -Pc -0.313512 0.439063 0.001465 0 0.729412 0.607843 0.788235 Xa -(C=26 M=41 Y=0 K=0) -Pc -1 (Graustufen) 1 Pg -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(R=0 G=0 B=0) -Pc -0.762295 0.667414 0.60705 0.828763 0.101961 0.101961 0.101961 Xa -(R=26 G=26 B=26) -Pc -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa -(R=51 G=51 B=51) -Pc -0.620386 0.5234 0.503532 0.47776 0.301961 0.301961 0.301961 Xa -(R=77 G=77 B=77) -Pc -0.559442 0.453803 0.448554 0.326848 0.4 0.4 0.4 Xa -(R=102 G=102 B=102) -Pc -0.492378 0.386633 0.38529 0.202182 0.501961 0.501961 0.501961 Xa -(R=128 G=128 B=128) -Pc -0.410864 0.319738 0.323857 0.110109 0.6 0.6 0.6 Xa -(R=153 G=153 B=153) -Pc -0.32575 0.244968 0.255344 0.043549 0.701961 0.701961 0.701961 Xa -(R=179 G=179 B=179) -Pc -0.231479 0.170962 0.180972 0.008301 0.8 0.8 0.8 Xa -(R=204 G=204 B=204) -Pc -0.11664 0.082246 0.092653 0 0.901961 0.901961 0.901961 Xa -(R=230 G=230 B=230) -Pc -0.062196 0.043153 0.05127 0 0.94902 0.94902 0.94902 Xa -(R=242 G=242 B=242) -Pc -PB -%AI5_EndPalette -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyleList -([Standard]) -(Schlagschatten) -(Schein nach außen - 5 Pt.) -(Jive_GS) -%AI9_EndArtStyleList -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSymbolList -(Textbereich) -(Schaltfläche) -(Kombinationsfeld) -(Texteingabe) -(Suchen) -%AI10_EndSymbolList -%AI5_End_NonPrinting-- -%AI9_BeginDocumentData -%_/Document : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(binding1) /String (xmlnode-nodevalue) , -%_(varSetName) /String (xmlnode-nodename) , -%_; (varSetName) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(none) /String (xmlnode-nodevalue) , -%_(locked) /String (xmlnode-nodename) , -%_; (locked) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variables) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns:v) /String (xmlnode-nodename) , -%_; (xmlns:v) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_custom;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(v:sampleDataSets) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSet) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSets) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_sfw;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(slices) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_734.5332 /Real (xmlnode-nodevalue) , -%_(width) /String (xmlnode-nodename) , -%_; (width) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_127.373 /Real (xmlnode-nodevalue) , -%_(height) /String (xmlnode-nodename) , -%_; (height) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_76.2334 /Real (xmlnode-nodevalue) , -%_(x) /String (xmlnode-nodename) , -%_; (x) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_-363.6865 /Real (xmlnode-nodevalue) , -%_(y) /String (xmlnode-nodename) , -%_; (y) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_1 /Bool (xmlnode-nodevalue) , -%_(bottomLeftOrigin) /String (xmlnode-nodename) , -%_; (bottomLeftOrigin) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sliceSourceBounds) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sfw) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(metadata) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_9 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(#document) /String (xmlnode-nodename) , -%_; (#document) , -%_0 /Real (BleedLeftValue) , -%_0 /Int (CropAreaActive) , -%_/Array : -%_/Dictionary : -%_7747 7891 /RealPoint -%_ (RulerOrigin) , -%_0 /Int (DisplayMark) , -%_(Zeichenfläche 1) /UnicodeString (Name) , -%_1 /Real (PAR) , -%_888 -600 /RealPointRelToROrigin -%_ (PositionPoint2) , -%_0 0 /RealPointRelToROrigin -%_ (PositionPoint1) , -%_1 /Bool (IsArtboardDefaultName) , -%_; , -%_; (ArtboardArray) , -%_0 /Bool (AI11 document knockout group) , -%_0 /Bool (AI11 document isolate blending) , -%_0 /Bool (AI9 paper simulation) , -%_2 /Int (AI9 transparency grid size) , -%_1 /Int (AI9 artboard color) , -%_52428 /Int (AI9 artboard color 2 blue) , -%_52428 /Int (AI9 artboard color 2 green) , -%_52428 /Int (AI9 artboard color 2 red) , -%_65535 /Int (AI9 artboard color 1 blue) , -%_65535 /Int (AI9 artboard color 1 green) , -%_65535 /Int (AI9 artboard color 1 red) , -%_16383 /Int (AIDocumentCanvasSize) , -%_1 /Bool (AI11 Preserve Text Editability) , -%_([Mittlere Auflösung]) /UnicodeString (AI11 Document Setup Flattener Preset Name) , -%_150 /Real (AI9 Mesh Rasterization Resolution) , -%_300 /Real (AI9 Output Rasterization Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_/Dictionary : -%_36 /Real (padd) , -%_0 /Bool (mask) , -%_1 /Bool (spot) , -%_0 /Bool (alis) , -%_72 /Int (dpi.) , -%_4 /Int (colr) , -%_; (AI Auto Rasterize) , -%_5 /Real (GlobalRepulsion) , -%_0 /Real (BleedRightValue) , -%_0 /Real (BleedTopValue) , -%_0 /Int (PerspectiveGrid_RightBlue) , -%_65535 /Int (PerspectiveGrid_RightRed) , -%_50 /Real (PerspectiveGrid_RightOpacity) , -%_45 /Real (PerspectiveGrid_RightFaceAngle) , -%_45 /Real (PerspectiveGrid_LeftFaceAngle) , -%_480 /Real (PerspectiveGrid_ViewingDistance) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_StationPoint) , -%_26214 /Int (PerspectiveGrid_LeftGreen) , -%_58981 /Int (PerspectiveGrid_LeftBlue) , -%_6553 /Int (PerspectiveGrid_LeftRed) , -%_50 /Real (PerspectiveGrid_LeftOpacity) , -%_0 /Real (PerspectiveGrid_FloorOffset) , -%_0 /Bool (AI16 flattener anti alias) , -%_1 /Bool (AI10 flattener outline strokes) , -%_1 1 /RealPoint -%_ (PerspectiveGrid_Scale) , -%_0 /Bool (AI10 flattener outline text) , -%_0 /Int (PerspectiveGrid_Unit) , -%_15 /Real (PerspectiveGrid_CellCount) , -%_4 /Int (AI9 Flattening Quality Level) , -%_1 /Int (AI12_SpotColorMode) , -%_580 /Real (PerspectiveGrid_RightExtent) , -%_30 /Real (PerspectiveGrid_CellSize) , -%_250 /Real (PerspectiveGrid_HorizonHeight) , -%_580 /Real (PerspectiveGrid_LeftExtent) , -%_45874 /Int (PerspectiveGrid_FloorGreen) , -%_2 /Int (PerspectiveGrid_Type) , -%_32767 /Int (PerspectiveGrid_FloorBlue) , -%_32767 /Int (PerspectiveGrid_FloorRed) , -%_50 /Real (PerspectiveGrid_FloorOpacity) , -%_(14.0.0) /String (kAIFullDocumentVersionStr) , -%_32767 /Int (PerspectiveGrid_RightGreen) , -%_0 /Real (BleedBottomValue) , -%_/Dictionary : -%_/Array : -%_; (SelHatDocInterIDsArray) , -%_/Array : -%_; (SelHatDocLocalNamesArray) , -%_; (SelHatDocTableDict) , -%_2 /Int (kAIParametersWhichProfileKey) , -%_0 /Bool (kAIParametersCompression) , -%_0 /Int (kAIParametersEmbedProfileKey) , -%_1 /Bool (kAIParametersPDFCompatibility) , -%_0 -500 /RealPoint -%_ (PerspectiveGrid_RelativeFloorVanishingPoint) , -%_8431 8316 /RealPoint -%_ (PerspectiveGrid_RightPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RightPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_RightPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_RightPlaneBottomPoint) , -%_8671 8191 /RealPoint -%_ (PerspectiveGrid_RightVanishingPoint) , -%_7951 8316 /RealPoint -%_ (PerspectiveGrid_LeftPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexSecond) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexFirst) , -%_0 /Int (PerspectiveGrid_FloorPlaneVisibilityState) , -%_0 /Int (PerspectiveGrid_LeftPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_LeftPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_LeftPlaneBottomPoint) , -%_7711 8191 /RealPoint -%_ (PerspectiveGrid_LeftVanishingPoint) , -%_1 /Bool (AI10 flattener preserve overprints) , -%_1 /Bool (AI10 flattener clip complex regions) , -%_75 /Int (AI10 flattener raster-vector balance) , -%_100 /Real (kAIParametersSubsetFontsRatioKey) , -%_; /Recorded , -%_/Dictionary : /NotRecorded , -%_0 /Bool (AI16 AI Anti Aliasing) , -%_1 /Int (LastArtboardID) , -%_1 /Int (AI11 EPS Overprints) , -%_1 /Bool (AI11 EPS Clip Complex Regions) , -%_1 /Bool (AI11 EPS Outline Strokes) , -%_1 /Int (AI12 AI Overprints) , -%_0 /Bool (AI11 EPS Outline Text) , -%_75 /Int (AI11 EPS Raster/Vector Balance) , -%_1 /Bool (AI12 AI Clip Complex Regions) , -%_([Medium Resolution]) /String (AI11 EPS Flattener Preset Name) , -%_/Dictionary : /NotRecorded , -%_ /String (/attributes/job.pagerange) , -%_1 /Int (/attributes/job.printall) , -%_1 /Int (/attributes/job.skipblank) , -%_0 /Int (/attributes/job.reverseorder) , -%_0 /Int (/attributes/job.collate) , -%_() /UnicodeString (/attributes/job.artboardrange) , -%_1 /Int (/attributes/job.printallartboards) , -%_; (AI11 Print JobInfo Dict) , -%_0 /Bool (AI12 AI Outline Text) , -%_75 /Int (AI12 AI Raster/Vector Balance) , -%_0 /Bool (AI16 EPS Anti Aliasing) , -%_1 /Bool (AI12 AI Outline Strokes) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/job.bitmapresolution) , -%_0 /Real (/attributes/pgmk.bleedoff.bottom) , -%_6 /Real (/attributes/pgmk.marksoff.bottom) , -%_1 /Int (/attributes/pgmk.bleedoff.useDocBleeds) , -%_([Standard]) /UnicodeString (/attributes/collectionName) , -%_1 /Int (/attributes/stl.defaultprinter) , -%_() /UnicodeString (/attributes/stl.printername) , -%_() /UnicodeString (/attributes/stl.ppdmodelname) , -%_1 /Int (/attributes/stl.defaultppd) , -%_() /UnicodeString (/attributes/stl.customppd) , -%_0 /Int (/attributes/ppr.custom) , -%_1 /Int (/attributes/ppr.default) , -%_595.32 /Real (/attributes/ppr.width) , -%_841.92 /Real (/attributes/ppr.height) , -%_0 /Real (/attributes/ppr.image.left) , -%_0 /Real (/attributes/ppr.image.top) , -%_595.32 /Real (/attributes/ppr.image.right) , -%_841.92 /Real (/attributes/ppr.image.bottom) , -%_(Durch Treiber definiert) /UnicodeString (/attributes/ppr.name) , -%_0 /Real (/attributes/cppr.width) , -%_0 /Real (/attributes/cppr.height) , -%_0 /Real (/attributes/cppr.woffset) , -%_0 /Real (/attributes/cppr.hoffset) , -%_0 /Int (/attributes/cppr.trans) , -%_0 /Int (/attributes/job.designation) , -%_2 /Int (/attributes/job.printbounds) , -%_0 /Int (/attributes/job.printofile) , -%_0 /Int (/attributes/job.printasbitmap) , -%_() /UnicodeString (/attributes/job.name) , -%_0 /Int (/attributes/clr.mode) , -%_0 /Int (/attributes/clr.convertspots) , -%_0 /Int (/attributes/clr.overprintblack) , -%_720 /Int (/attributes/crd.orientation) , -%_0 /Int (/attributes/crd.fliphorz) , -%_5 /Int (/attributes/crd.position) , -%_0 /Real (/attributes/crd.org.h) , -%_0 /Real (/attributes/crd.org.v) , -%_100 /Real (/attributes/crd.scale.h) , -%_100 /Real (/attributes/crd.scale.v) , -%_0 /Int (/attributes/crd.scplcy) , -%_1 /Int (/attributes/crd.sccnst) , -%_0 /Int (/attributes/crd.tiling) , -%_0 /Real (/attributes/crd.overlap.h) , -%_0 /Real (/attributes/crd.overlap.v) , -%_0 /Int (/attributes/pgmk.enabled) , -%_0 /Int (/attributes/pgmk.style) , -%_() /UnicodeString (/attributes/pgmk.customfile) , -%_() /UnicodeString (/attributes/pgmk.jobtitle) , -%_0.25 /Real (/attributes/pgmk.deflinewidth) , -%_0 /Int (/attributes/pgmk.bleed) , -%_0 /Int (/attributes/pgmk.crop) , -%_0 /Int (/attributes/pgmk.pageinfo) , -%_0 /Int (/attributes/pgmk.registration) , -%_0 /Int (/attributes/pgmk.colorbars) , -%_0 /Real (/attributes/pgmk.bleedoff.left) , -%_0 /Real (/attributes/pgmk.bleedoff.top) , -%_0 /Real (/attributes/pgmk.bleedoff.right) , -%_6 /Real (/attributes/pgmk.marksoff.left) , -%_6 /Real (/attributes/pgmk.marksoff.top) , -%_6 /Real (/attributes/pgmk.marksoff.right) , -%_1 /Int (/attributes/fnt.dlmode) , -%_0 /Int (/attributes/fnt.dlprfonts) , -%_0 /Int (/attributes/fnt.subst) , -%_3 /Int (/attributes/ps.level) , -%_1 /Int (/attributes/ps.binary) , -%_0 /Int (/attributes/ps.negative) , -%_0 /Int (/attributes/ps.compression) , -%_0 /Int (/attributes/ps.contone) , -%_0 /Int (/attributes/ps.l1compat) , -%_300 /Real (/attributes/ps.shaderes) , -%_0 /Int (/attributes/ps.setflatness) , -%_1 /Real (/attributes/ps.flatness) , -%_75 /Int (/attributes/xp.balance) , -%_300 /Int (/attributes/xp.rresolution) , -%_150 /Int (/attributes/xp.gresolution) , -%_0 /Int (/attributes/xp.converttext) , -%_1 /Int (/attributes/xp.convertstroke) , -%_1 /Int (/attributes/xp.clip) , -%_0 /Int (/attributes/xp.antialiasing) , -%_0 /Int (/attributes/xp.opco) , -%_0 /Int (/attributes/xp.opse) , -%_0 /Int (/attributes/xp.opdu) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/xp.name) , -%_0 /Int (/attributes/rdrs.enabled) , -%_0 /Int (/attributes/rdrs.func) , -%_1 /Real (/attributes/rdrs.flatteness) , -%_() /UnicodeString (/attributes/rdrs.annot) , -%_ /String (/attributes/rdrs.custom) , -%_1 /Int (/attributes/cm.mode) , -%_(Coated FOGRA39 \(ISO 12647-2:2004\)) /UnicodeString (/attributes/cm.profile) , -%_2 /Int (/attributes/cm.inteint) , -%_1 /Int (/attributes/cm.preservecmyk) , -%_0 /Int (/attributes/cm.preserveother) , -%_; (AI11 Print Attribute Dict) , -%_0 /Bool (AI15 Document PixelPerfect) , -%_150 /Real (AI12 AI Gradient and Mesh Resolution) , -%_300 /Real (AI12 AI Line Art and Text Resolution) , -%_150 /Real (AI11 EPS Gradient and Mesh Resolution) , -%_300 /Real (AI11 EPS Line Art and Text Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_1 /Bool (AI9 no overprint in composite) , -%_([Medium Resolution]) /String (AI12 AI Flattener Preset Name) , -%_1 /Bool (PerspectiveGrid_Snap) , -%_0 /Bool (PerspectiveGrid_ShowHide) , -%_/Dictionary : /NotRecorded , -%_([Illustrator-Standard]) /UnicodeString (/attributes/collectionName) , -%_0 /Int (/attributes/AI11PDF_PageInfo) , -%_0 /Real (/attributes/AI11PDF_BleedTop) , -%_0 /Real (/attributes/AI11PDF_BleedBottom) , -%_0 /Int (/attributes/AI11PDF_RegMarks) , -%_1 /Int (/attributes/AI11PDF_CompressArt) , -%_0 /Real (/attributes/AI11PDF_BleedRight) , -%_(Dies sind die Standardeinstellungen beim Speichern einer Illustrator-Datei als PDF-Dokument. Verwenden Sie diese Einstellungen, wenn Sie die Datei später in Illustrator oder in einem Layoutprogramm wie z. B. InDesign bearbeiten möchten oder der endgültige Verwendungszweck der Datei unbekannt ist.) /UnicodeString (/attributes/AI12PDF_Description) , -%_0 /Int (/attributes/AI11PDF_FastWebView) , -%_1 /Int (/attributes/AI11PDF_BleedLink) , -%_1 /Int (/attributes/AI11PDF_Overprint) , -%_0 /Int (/attributes/AI11PDF_ColorBars) , -%_0 /Int (/attributes/AI12PDF_Trapped) , -%_1 /Int (/attributes/AI14PDF_DocBleed) , -%_0 /Real (/attributes/AI11PDF_BleedLeft) , -%_1 /Int (/attributes/AI12PDF_Standard) , -%_0 /Int (/attributes/AI11PDF_TrimMarks) , -%_300 /Int (/attributes/AI11PDF_MonochromeDownsampleResolution) , -%_1 /Int (/attributes/AI11PDF_PreserveIllustratorEditingCapabilities) , -%_1 /Int (/attributes/AI12PDF_OutputIntentProfileNamePolicy) , -%_75 /Int (/attributes/AI10 flattener raster-vector balance) , -%_1 /Int (/attributes/AI11PDF_ColorDownsampleKind) , -%_0.25 /Real (/attributes/AI11PDF_TrimMarkWeight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputCondition) , -%_1 /Int (/attributes/AI12PDF_DestinationPolicy) , -%_() /UnicodeString (/attributes/AI12PDF_DestinationName) , -%_() /UnicodeString (/attributes/AI12PDF_RegistryName) , -%_0 /Int (/attributes/AI11PDF_PrinterMarkType) , -%_0 /Int (/attributes/AI16 flattener anti alias) , -%_6 /Int (/attributes/AI11PDF_GrayCompressionKind) , -%_1 /Int (/attributes/AI11PDF_GenerateThumbnails) , -%_0 /Int (/attributes/AI11PDF_FlattenTransparency) , -%_0 /Int (/attributes/AI12PDF_UsePrintTiling) , -%_256 /Int (/attributes/AI11PDF_GrayTileSize) , -%_100 /Int (/attributes/AI11PDF_SubsetFontRatio) , -%_1 /Int (/attributes/AI11PDF_GrayDownsampleKind) , -%_3 /Int (/attributes/AI11PDF_Compatibility) , -%_0 /Int (/attributes/AI10 flattener outline text) , -%_256 /Int (/attributes/AI11PDF_ColorTileSize) , -%_() /UnicodeString (/attributes/AI12PDF_OutputIntentProfileName) , -%_225 /Int (/attributes/AI11PDF_ColorDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkTop) , -%_1 /Int (/attributes/AI11PDF_PreserveAcrobatLayers) , -%_4 /Int (/attributes/AI11PDF_MonochromeCompressionKind) , -%_225 /Int (/attributes/AI11PDF_GrayDownsampleImageAbove) , -%_1 /Int (/attributes/AI11PDF_ColorCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkRight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputConditionIdentifier) , -%_1 /Int (/attributes/AI10 flattener clip complex regions) , -%_150 /Int (/attributes/AI11PDF_GrayDownsampleResolution) , -%_6 /Int (/attributes/AI11PDF_ColorCompressionKind) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/AI11PDF_FlatteningPresetName) , -%_150 /Real (/attributes/AI9 Mesh Rasterization Resolution) , -%_450 /Int (/attributes/AI11PDF_MonoDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkLeft) , -%_1 /Int (/attributes/AI12PDF_ColorConversionPolicy) , -%_1 /Int (/attributes/AI11PDF_MonochromeDownsampleKind) , -%_150 /Int (/attributes/AI11PDF_ColorDownsampleResolution) , -%_300 /Real (/attributes/AI9 Output Rasterization Resolution) , -%_1 /Int (/attributes/AI11PDF_GrayCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkBottom) , -%_1 /Int (/attributes/AI10 flattener outline strokes) , -%_1 /Int (/attributes/AI12PDF_ProfileInclusionPolicy) , -%_; (PDFPresetCollection) , -%_1 /Int (AI9 Document Setup panel) , -%_0 /Bool (AISaveMultipleArtboards) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/inklst.count) , -%_; (AI11 Ink List Dict) , -%_(Adobe PDF Preset.joboptions) /String (AI12 Job Options Name) , -%_7775 /Int (AI12 Job Options Size) , -%_/Binary : /ASCII85Decode , -%4?O&[+M4?:L\'M@ruc7FE2M8%144#00sDjDg,0$@;^.*@<,ps@sK2/ -%@;L!r%144#00sJtBgHQL@<4eSCi=>cD..'gF!,('Cia.s$6UHE6#LdY6#:7DF%:7ZGtDj]B4Z-,AmoLsAISth+>6#uFD4$WBjl'W -%Df0JbD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC.VCi=>cD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC:]@6#sC^g^o+>6&qDIdI!B-8j$AS-#n$6UHE6Xadu -%9j(+cEc5Q(Ch4_;VJ#h;ccak>VJ#i+EfLh%144#010/a7ri$`:i^JdBl%?'-r+\uALS&q+7Co^+n%,`+>6*#Ci=>[6W6Qn@:s.>Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+6>`77Rdo+6*#Ci=>cD..'g -%6tp.Q+?Vaq$6UH6+>68a@;Tt"ATJtu%144#+F<4+6S]@:OCt -%EZd%g2`OB5+n%,`+?hsu$6UHE -%6Z6dZE_1+VB4XJLGA_J1D/a<&<+p;`F(fK.A06*#Ci=>cD..'g6uR9eF(&p)Ch6RkE+L.F:2b#]%144#010Yo -%DfSEd@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+6*#Ci=>cD..'g9keKC -%ATMd+F`_>9DBLYk0F\@3+>6*#Ci=>cD..'g9keKCATMd+F`_>9DGY7fBk)E202G4M$6UHE6Z6dZE_1+VB4XtPF)Pl;FD5Z2+>G`- -%%144#010YoDfScfFED57B6-OVCh4_;.1HV,+>6*#D/`p*BjtdmBlnVoAThX$+>GK+%144#010YpE,oN2F&-7[ARfh'+>6]&B6+Lh -%+6*#DK]T3F@g=XB4Z-`Db4hWAU%cs+EVXHAISth+>6*&ART[l8jl-6*&ART[l8oJ06/Y0K1a@0K(dB0JY=90K1gB0K(mE -%0K(dB0JY=90K(aA0K(dB0K(gC0K(X>0K1jC0K)9P0K1gB0JY=90K1dA0K(dB0K1gB0K1gB0K(pF0K)?R0K(jD0K1dA0JY=90K1pE -%0K(mE0K(dB0K)?R0JY=90K1dA0K(X>0K1mD0K(pF0K)?R0K(jD0JY=90K(X>0K)?R0JY=90JkdD0K)9P0K)9P0K1jC0K1dA0K1gB -%0K1a@0K(X>0K1gB0K)BS0K1a@0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(X>0K1dA0JY=90K(X>0K)?R0JY=90JkL<0K(aA0K)BS -%0K([?0K(dB0JY=90JtO<0JkU?0Jk[A0JY=90K(aA0K)BS0K(^@0K1jC0K)0K)9P0K(X>0K)?R0JY=90K)BS0K)?R0JY=90K(dB0K(aA0K(pF0K1gB0K(pF0K)?R0K(jD -%0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(X>0K(jD0K(X>0K(pF0K)?R0JY=90K(pF0K)?R0JY=90JkdD -%0K)9P0K)9P0K1jC0K1dA0K1gB0K1a@0K(X>0K1gB0K)BS0K1a@0JZ!L0JY=90K)BS0K1a@0JY=90K1pE0K(mE0K(dB0K)?R0JY=9 -%0K2!G0K)BS0K1jC0JY=90K)?R0K(dB0K(dB0K(aA0JY=90K1gB0K)BS0JY=90K1[>0K)9P0K(X>0K(^@0K(dB0JY=90K(pF0K1gB -%0JY=90K(pF0K)?R0JY=90K(X>0JY=90K)9P0K(X>0K2!G0K)BS0K1jC0K1gB0JY=90K(X>0K1[>0K1[>0K)9P0K(pF0K(^@0K(X> -%0K1gB0K(pF0K)BS0K)?R0JY=90K1dA0K1jC0K(^@0K(mE0JY=90K(X>0K1dA0JY=90JkdD0K)?R0JkU?0K(dB0K1dA0K(pF0K(jD -%0K)?R0JZ!L0JY=90K)BS0K1a@0JY=90K1pE0K(mE0K(dB0K)?R0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)?R0K(X>0K)9P -%0JY=90K1jC0K1dA0K(dB0JY=90K)BS0K(gC0JY=90K1gB0K(mE0K(dB0JY=90K(gC0K(pF0K)9P0K(dB0JY=90K(pF0K1dA0JY=9 -%0K1jC0K)?R0K)6O0K)?R0K)BS0K1pE0K)?R0JZ'\%144#5!BD_+6-$<+pDk@W#UgCi^_@Eckq&$6UHE6uR9eF(&p)Ch5tPCi=>cD..'gF!,('Cia.s$6UHE6uR9eF(&p)Ch6+W@60#@V'(9ChuRZDKKqBFE2M8%144#01B_eARnDO@S^rb -%Bl@m1+D,%uF(Gdf+60$@rGmh9lFof8SqmKATJu9Eckq&$6UHE7;cX4@:s-o/MR\A+Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+68a@;Tt"ATJtu%144#+F<4+6S]@:OCt -%EZd%g2`OB5+n%,`+?hsu$6UHE -%7ri$`8SqmKAOLH\DKB6'E,9)bBQ@[*BQ%]t+>GK+0JG17%144#01U%kGtDj]B4XJLGA_J1D/a<&<-`Fo+>6K.DIj7a+66*@G`-%144#01U%kGtDj]B4XeODGk%eDesQ66*@9DBLYk0F\@3+>6<' -%@:s.GASl@+Gp"gq1cR?O2@U!9+>6>`77T*e0JGk4Ci=>[6W6Qn@:s.>Bk)6-4?O&[+G__$6UH6+>6].Ch6.K -%BkM+$+>Pf4%144#+Pf4%144#5!BD_+6].Ch6[^A9;K-1,Us!$6UHT4q.iA -%+>6E,@r"JHF*),4Ch7W`@<,dnF!,RFF_)!h+6H-DJr*` -%@:s.>Bk)6-4?O&[+0b"I4+?hsu$6UHE9lFof8SqmKAOLH\DKB6'E,9)bBQ@[*BQ%]t+>GK+0JG17%144#026A&Db4eS -%B4XJLGA_J1D/a<&<-`Fo+>6K.DIj7a+9DGY7fBk)E202G4M$6UHE9lFof8SqmKAQ!)\DesQ..1HV,+C,E`+7Co^+6$%;Is9IATC^gEb/ZiF!,('Cia.s$6UH6+>stream -MpSATJu9Eckq&$6UH6+6f)Ec+0\A4(9QFD5W8AISth+63#@6#sCi=MhD..'g6?6XGCNCV?Eckq&$6UH6+r![Ch5qRART@q+EVXHAISth+60.E+*Wp -%:gn!J+D,%uF(Gdf+Io+D,%uF(Gdf+6<(@r-9uAOpB@A7]dNDf9`/EZet&Cia.s$6UH6+=63+6H#FCA]gFC@gRH$=1IA9/kA.1HV,+6H#FCA]gFCA*j@VTIaF6H#FE2)*:gn!J;e^Ph+Bo9^+n%,`+6H#FE2)*7GH -%@qZ;Y+6JuD.Rd-@:Njk>7Co^+5AmoLsAISth+6Q"B4XkZ -%Bk;1(@6]7ART[JDes?4F$Xji025khDG>%eBln966Z6dZEcVZs+p#FE2M8%144#+U4EA5-KQCNCV1@;L!r%144#+63#@63&Ec"6]ASl!rFE8RHEckq&$6UH6+MFCfK$@ruF.AKYSnCia.s$6UH6+sZ9+qmATMg! -%@q?ce%144#+6W2D..6E"@n%,`+>6PZ7T_un -%AS#C=Dg56"<,u\i6>q*EAnH*qF=63+6PZ7T`W1@;p0sA0=63+6Q"EcYe[;aWoj -%D/Ej%FE9oiE^XhU8T&-Y+EVXHAISth+>6Q"EcYe`6UO[jDe<^"ATLF\6Z6gYASuU2+EVXHAISth+>6Q"F)t;oEc6)5BM))i7nIQ+ -%B4Z-,AmoLsAISth+>6Q3ATMF'G%F$ZE-Y8gB4W3-Eckq&$6UHE:i^,gATDs*6qKa?=\De(Cis<1+EVXHAISth+>6Q3ATMF'G%F*= -%;b:k=D]iY#Cia.s$6UHE:i^,gATDs*7VlLTDImm1+EVXHAISth+>6Q3ATMF'G%F3QCh@d-DIlCWAoAf(@;L!r%144#02Q\#F(KB8 -%APZ,o6Z6gYASuU2+D,%uF(Gdf+6Z8@<-Hd@:s-o0b"I4+>6Z9@WQ+& -%7W30dF!,RFF_)!h+6_^;IOHR6:XUbAoAeF;Is]`G%D*i+H-@;U&p$9UE[$9gWr -%F(KH4@:s.^AThctAISt~> -%_; (AI12 Job Options Data) , -%_; /NotRecorded , -%_; -%AI9_EndDocumentData -%AI11_BeginTextDocument -/AI11TextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24k&!+c.Q!+c.(!)rqs!-A3O!%e1M!,*f(0/=Y(+?ht35!C)Q4s2sM+>5Dk4?O`>3B8386Z6mZ<-`Fo7W30d+>5Dk -%4?O`>0H_eCrr>anGlVjbB`MQAA,oF+EWC"X/HAZKAH6?CFT?4X@/t5Jm0H`PC+?ht35!C)O4!(d0.!-S?V!-8-0!,hjT!-BY40/=Y(+?ht35!C)Q4s4,R5!C)B1*A\A+>5Dk>9H$j -%+>5Dk4?O`>0H_eCs!]'D2'>"D+>5Dk>9H$j+>5Dk./s8G2?#H^+>5Gl0d&YD+?Vb/0/+Lsrr;sVr\l8K0/4S(+?ht34?O`>0H_eC -%s8G%X3@Q((0d&1n5!C)O4G!&4s2sM+>5Dk./s8G4oRSn+>5Gl0d&YD+?Vb/0/+Lsrr;s^r]_hS0/4S( -%+?ht34?O`>0H_eCs8G=`5q*p00d&1n5!C)O4G!&4s2sM+>5Dk./s8H#lb/Z+>5Gl0d&YD+?Vb/0/+Ls -%rr0H_eCs8Q='>:C[J0d&1n5!C)O4G!&4s2sM+>5Dk./s5h*$?4M+>5Gl -%0d&YD+?Vb/0/+Lsrr4YX0F0*M0/4S(+?ht34?O`>0H_eCs"Fd6$7R)N0d&1n5!C)O4G!&4s2sM+>5Dk -%./s6#%PSAA+>5Gl0d&YD+?Vb/0/+Lsrr4Y`0G#ZU0/4S(+?ht34?O`>0H_eCs"G-@'Ib.X0d&1n5!C)O4P''4s2sM+>5Dk./s8G3;tld+>5Gl1*AbE+?Vb/0/+Lsrr;sYr]2JN0/4S)+?ht34?O`>0H_eCs8G.[4=MC+0d&4o5!C)O4P''4s2sM+>5Dk./s8G5lO"t+>5Gl1*AbE+?Vb/0/+Lsrr;sar^&%V0/4S)+?ht34?O`>0H_eCs8GFc6n'63 -%0d&4o5!C)O4P''4s2sM+>5Dk./s8H4o[Yo+>5Gl1*AbE+?Vb/0/+Lsrr<"(s'7&r0/4S)+?ht34?O`> -%0H_eCru`1%)(?[]0d&4o5!C)O4P''4s2sM+>5Dk./s6##quZ7+>5Gl1*AbE+?Vb/0/+Lsrr4Y[0FK

0H_eCs"Fm9%4NDQ0d&4o5!C)O4P''4s2sM+>5Dk./s6#&MOeG+>5Gl1*AbE+?Vb/ -%0/+Lsrr4Ye0GQ#Z0/4S)+?ht34?O`>0H_eCs8NW0%k/VS0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#5qkSR -%+>5Gl1E\kF+?Vb/0/+Lsrr4Z>0LI930/4S*+?ht34?O`>0H_eCs"Hkq74B?40d&7p5!C)O4Y-(4s2sM -%+>5Dk./s6#8ME^b+>5Gl1E\kF+?Vb/0/+Lsrr4Z^0OlOS0/4S*+?ht34?O`>0H_eCs"K'ZK..or0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#LG4K4+>5Gl1E\kF+?Vb/0/+Lsrr4[40TIS)0/4S*+?ht34?O`>0H_eCs"KutSLG[70d&7p5!C)O -%4Y-(4s2sM+>5Dk./s6#TeN/h+>5Gl1E\kF+?Vb/0/+Lsrr4[I0V^'>0/4S*+?ht34?O`>0H_eCs"L9' -%V(!N?0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#WA(;#+>5Gl1E\kF+?Vb/0/+Lsrr4[i0Z,=^0/4S*+?ht3 -%4?O`>0H_eCs"NIej!c*(0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#k:l'J+>5Gl1E\kF+?Vb/0/+Lsrr4\? -%0^^A40/4S*+?ht34?O`>0H_eCs"O+"p*h+;0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#"Y^*/+>5Gl1E\kF -%+?Vb/0/+Lsrr0H_eCs8O2@+"8k9*4s2sM+>5Dk./s6# -%q_7mr+>5Gl2'>(H+?Vb/0/+Lsrr4)P+:otE0/4S,+?ht34?O`>0H_eCs8NT/%OiMR0d&@s5!C)O4t?+ -%4s2sM+>5Dk./s8H%0$_b+>5Gl2]t:J+?Vb/0/+Lsrr4YQ0EEUF0/4S.+?ht34?O`>0H_eCru`%!'e(7Y0d&Fu5!C)O45Dk./s8H"TJTR+>5Gl3?ULL+?Vb/0/+Lsrr2tn!2Ctc0/4S0+?ht34?O`>0H_eCs8V3\jXD<*0d&J! -%5!C)O4GPm5!C)O4GPm5!C)O4GPm5!C)O4=ol.3L8u+>GPm5!C)O4P&r.3L8u+>GPm5!C)O4GSn5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GVo -%5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GYp5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q -%5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4>.3L8u+>G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O43o.3L8u+>G\q -%5!C)O4G\q5!C)O4G\q5!C)O4G_r5!C)O4k.3L8u+>Gbs5!C)O4Gbs5!C)p+?ht35!C)Q4s4,R0/4SR+?Vb/0/+M&+?ht3>p)5Mn -%4?O`>0HaRB4?O`>0H`J?+>5Dk./s5H=TDk1CB/JWD#eJSD?+ST8-!&uD?+GP@/t'CFX\Fd2'>"D+>5Dk0H`#'+?Vb/0/+MQ+?Vb/ -%0/+M#/i=b)1*A"Es8N?R+?ht34?O`>0H_r"2'=P-+=R6hs#VYP5!C)O4#3'+>5Jm./s8H>:C[Y4s2sM+>5Dk/M8n'0/=Xu -%rr4)X.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`:1+?ht34?O`>0H_r"2'=P-+=R6h0F0*M5!C)O4#3'+>5Jm./s6#$7R)]4s2sM -%+>5Dk/M8n'0/=Xurr4Y\.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fp3+?ht34?O`>0H_r"2'=P-+=R6h0G#ZU5!C)O4#3'+>5Jm -%./s6#'Ib.g4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6hs'7&r5!C)O -%4#3'+>5Jm./s5h)(?[l4s2sM+>5Gl/M8n'0/=Xurr4)].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fa.+?ht34?O`>0d&'=P- -%+=R6h0FK#3'+>5Jm./s6#%4ND`4s2sM+>5Gl/M8n'0/=Xurr4Y_.3Lf<+?Vb/0/4S$/i=b)1*A"Es"G$6+?ht3 -%4?O`>0d&'=P-+=R6h0GQ#Z5!C)O4#3'+>5Jm./s8H%OiMa4s2sM+>5Gl/M8n'0/=Xurr4YR.3Lf<+?Vb/0/4S$/i=b) -%1*A"Es8NKV+?ht34?O`>0d&'=P-+=R6h0EEUF5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru*=/5!C)O4#3$2'=P, -%+>#3$2'=P-+=R6hru3C05!C)O4#3$2'=P,+>#3$2'=P-+=R6h0`*:A5!C)O4#3$2'=P,+>#3$2'=P-+=R6h+:otE -%5!C)p+?ht30/=Y445Gl>9H$j+>5Dk>9GXC2'?0I0/4S34,E,+>,E,+>,E, -%+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk1*A5)+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&p+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*A@q>p(dT+?Vb/0/+M245Dk>9G[D1a$'H0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD -%+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G[D3$;KL -%0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P'"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4GPm>p(dT+?Vb/0/+M245Dk>9G[D0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0eskW+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o1E]sG0/4S34>E%+>>E% -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;.+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O -%4G_r>p(dT+?Vb/0/+M245Dk>9G[D0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+C-*R4s2sM+>5Dk1E\>*+BosN4G!E+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>Y,r+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G^E2]uBK -%0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Y-"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>Y,p0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D-+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9G^E0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p2BZ9J0/4S34,B(2'=M,2'=M/+C-*C -%0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk1a"G++BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p -%5!C)Q4s3$Q+?Vb/0/+MQ+>b2u+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1a"_" -%>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1a"M2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q -%5!C)Q4s3$Q+C-*R4s2sM+>5Dk2'=P,+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG1*BjF0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8t+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=^u>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>G!&4s3$Q+?ht3 -%4?O`>0HaRB2'=e">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`> -%0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG3$;KL0/4S34>E%+>,E,+>,E, -%+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB2'=V-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V.+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:, -%>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB2'=V1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V2+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:, -%>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GgH0d'aE0/4S34>E%+>>E%+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT+?Vb/0/+M24t?!+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH2'?0I0/4S34>E%+>,E,+>,E, -%+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>t?$+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`> -%0HaRB2BXt%>p(dT+?Vb/0/+M24t?&+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`> -%0HaRB2BX_/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0eskW+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM -%+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_3+C-*C0d&S@+>5Dk4?O`> -%0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/+M240HaRB2]sgt>p(dT+?Vb/0/+M245Dk>9GjI1E]sG0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sq">p(dT -%+?Vb/0/+M245Dk>9GjI2'?0I0/4S34>E%+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?(E%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]t(&>p(dT+?Vb/0/+M245Dk>9GjI3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW -%+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M245Dk -%>9GjI0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt1a$'H0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl -%1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M240HaRB3$9pu>p(dT+?Vb/0/4S345Dk>9GmJ1E]sG -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$:($>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM -%+>5Dk>9GmJ3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$:4(>p(dT+?Vb/0/4S345Dk>9GmJ0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+?1Ju1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q3+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/0/4S345Dk>9GmJ0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2BZ9J -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GpK0d'aE0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ -%+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3?U:(>p(dT+?Vb/0/4S345Dk>9GpK3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S3 -%45Dk>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%6+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S34GPm0/4SR+?Vb/0/+MQ+>GPm0d'aE0/4S34>E%+>>E%+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0ea_++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0ea_U+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm -%0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk0eje(0d'[C4?O`>0HaRB0eje.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB0eje0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0eje*2'?0I -%0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`&%0HaXD0/4S++?ht35!C)Q4s4,R5!C)O4GVo0/4SR+?Vb/0/+MQ+>GVo0d'aE0/4S34>E% -%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0esk-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/ -%0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo -%0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GVo0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f:(Z+>5Gl4?O`>0H`J? -%+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXU+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)++>5Gl>9H$j+>5Dk>9GXV+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>GYp1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q0 -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f'q2+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f'q3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXV+>GPm>p(dT+?Vb/ -%0/4S345Dk>9GXV+>GVo>p(dT+?Vb/0/4S345Dk>9GXV+>GYp>p(dT+?Vb/0/4S345Dk>9GXV+>G\q -%>p(dT+?Vb/0/4S345Dk>9GXV+>G_r>p(dT+?Vb/0/+M245Dk>9GXV+>Gbs>p(dT+?Vb/0/+M24G\q0/4SR+?Vb/0/+MQ+>G\q0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S3 -%45Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW -%+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f1"Y+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S+ -%+?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`> -%0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>G_r -%1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>b3H+>5Gl4?O`>0d&S@+>5Dk -%>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl -%0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXX+?:QM+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q -%+?ht34?O`>0HaRB0f:(.1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0f1"Y -%+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4Gbs0/4SR+?Vb/0/+MQ+>Gbs0d'aE -%0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0fC.1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+= -%+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht3 -%5!C)Q4s2sM+>5Dk>9GXY+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXY+?(EK -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXY+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q -%+?ht34?O`>0HaRB0fC./0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC./1a$'H0/4S34,B(2'=M, -%2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s4,R5!C)Q4s2L7+>G!&4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H7f[f7DZFVS@/tBLEr^=_ -%=TDk1CB/JWD#eJSD?+ST8-!&uD?+GP@/t'CFX\Fd2'>"D+>5Dk0H`#'+?Vb/0/+MQ+?Vb/0/+M#/i=b)1*A"Es8N?R+?ht34?O`> -%0H_r"2'=P-+=R6hs#VYP5!C)O4#3'+>5Jm./s8H>:C[Y4s2sM+>5Dk/M8n'0/=Xurr4)X.3Lf<+?Vb/0/+M#/i=b)1*A"E -%ru`:1+?ht34?O`>0H_r"2'=P-+=R6h0F0*M5!C)O4#3'+>5Jm./s6#$7R)]4s2sM+>5Dk/M8n'0/=Xurr4Y\.3Lf<+?Vb/ -%0/+M#/i=b)1*A"Es"Fp3+?ht34?O`>0H_r"2'=P-+=R6h0G#ZU5!C)O4#3'+>5Jm./s6#'Ib.g4s2sM+>5Gl/M8n'0/=Xu -%rr0d&'=P-+=R6hs'7&r5!C)O4#3'+>5Jm./s5h)(?[l4s2sM -%+>5Gl/M8n'0/=Xurr4)].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fa.+?ht34?O`>0d&'=P-+=R6h0FK#3'+>5Jm -%./s6#%4ND`4s2sM+>5Gl/M8n'0/=Xurr4Y_.3Lf<+?Vb/0/4S$/i=b)1*A"Es"G$6+?ht34?O`>0d&'=P-+=R6h0GQ#Z5!C)O -%4#3'+>5Jm./s8H%OiMa4s2sM+>5Gl/M8n'0/=Xurr4YR.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NKV+?ht34?O`>0d&'=P- -%+=R6h0EEUF5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru*=/5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru3C05!C)O4#3$2'=P,+>#3$2'=P-+=R6h0`*:A5!C)O4#3$2'=P,+>#3$2'=P-+=R6h+:otE5!C)p+?ht30/=Y445Gl>9H$j+>5Dk>9GXC2'?0I0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM -%+>5Dk1*A5)+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p -%>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*ACr>p(dT+?Vb/0/+M24P&s+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1*ALu>p(dT+?Vb/ -%0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AS">p(dT+?Vb/0/+M24P&o0HaXD0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GSn>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4GVo>p(dT+?Vb/0/+M24P&o1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4G\q -%>p(dT+?Vb/0/+M24P&o2'?0I0/4S34>E% -%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Gbs>p(dT+?Vb/0/+M245Dk1E\>*+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`> -%0HaRB1E\Ir>p(dT+?Vb/0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM0/4S3 -%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.& -%>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E0f'qX -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`> -%0HaRB1E\D1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk -%>9GaF0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o -%5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GaF -%0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ+>k8r -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9!+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E,+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3 -%4?O`>0HaRB2'=k$>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M, -%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GdG0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M, -%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GdG0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s4,R5!C)O4t>q0d'[C4?O`> -%0HaRB2BX^s>p(dT+?Vb/0/+M24t>u+C-*C0d&S@+>5Dk4?O`> -%0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/ -%0/+MQ+>t?"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/iPX1/iPX1>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M2 -%45Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)

5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GPm>p(dT+?Vb/ -%0/+M240HaRB2BX_/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q -%4s3$Q+?Vb/0/+MQ+>t>s1*BjF0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f'qX+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G\q>p(dT+?Vb/0/+M240HaRB2BX_3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GgH0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GjI0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB2]sq">p(dT+?Vb/0/+M245Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB2]t+'>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4G\q>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M245Dk3$9k/+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB3$:"">p(dT+?Vb/0/4S345Dk>9GmJ2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?1K&+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%% -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3$:1'>p(dT+?Vb/0/4S345Dk>9GmJ -%3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk -%>9GmJ0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht3 -%5!C)O4Gbs>p(dT+?Vb/0/4S340HaRB3?U%!>p(dT+?Vb/0/4S345Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S( -%+?ht35!C)Q4s2sM+>5Dk>9GpK2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?:Q( -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%3?U%3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GpK0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+?:Q!2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3?U%7+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)(+>5Gl>9H$j+>5Dk>9GXS+>G!E+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0ea_++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GPm0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0eskW+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GPm0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f:(Z+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0eje(0d'[C4?O`>0HaRB0eje.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0eje0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB0eje*2'?0I0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0fC.[+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S++?ht35!C)Q4s4,R5!C)O4GVo0/4SR+?Vb/0/+MQ+>GVo0d'aE0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk -%>9GXU+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB0esk+0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1*BjF0/4S3 -%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E%+>>E%+>GK& -%+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+ -%2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl4?O`>0H`J?+>5Dk -%>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXV+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXV+?(EK+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXV+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0f'q,0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0f'q,1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f'q,2BZ9J0/4S34>E%+>>E%+>,Mo -%>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34G\q1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"1 -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f1"3+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f1"4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXW+>GPm>p(dT+?Vb/ -%0/4S345Dk>9GXW+>GVo>p(dT+?Vb/0/4S345Dk>9GXW+>GYp>p(dT+?Vb/0/4S345Dk>9GXW+>G\q -%>p(dT+?Vb/0/4S345Dk>9GXW+>G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q -%+?ht3>p)p(dT+?Vb/0/4S34G_r1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>b3H+>5Gl -%4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht3 -%5!C)O4p(dT+?Vb/0/4S345Dk>9GXX+?:QM+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB0f:(.1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G_r0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4Gbs0/4SR+?Vb/ -%0/+MQ+>Gbs0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S3 -%4p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E, -%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/ -%0/+MQ+>Gbs2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW -%+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXY -%+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`> -%0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Mn1E\kF+?ht35!C)O4kC!-J9Y!,hjT!,hj@!+c.J!,DRC!,DRW.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB4?O`>0H_r"2'=P-+=R6h -%rs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n'0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`.-+?ht34?O`> -%0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf<+?Vb/0/+M#/i=b)1*A"E -%s"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3'+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n'0/=Xurr4Yd.3Lf<+?Vb/ -%0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR5!C)O4#3'+>5Jm./s8H>q$m[4s2sM+>5Gl/M8n'0/=Xu -%rr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&'=P-+=R6h0F90N5!C)O4#3'+>5Jm./s6#$Rm2^4s2sM -%+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4+?ht34?O`>0d&'=P-+=R6h0G,`V5!C)O4#3'+>5Jm -%./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6hrsU>!5!C)O -%4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H -%)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h&1J_c4s4,R5!C)B1*A\A -%+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O -%4P'F+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G[D3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB1*A;*+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0ejeV+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9G[D0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;/+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+C-*R4s2sM+>5Dk1E\>* -%+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1E\Ir>p(dT+?Vb/ -%0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1E\D1+C-*C0d&S@ -%+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GaF0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I -%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ -%+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GaF0fC.[+>5Gl4?O`>0d&S@ -%+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ+>k8r+C-*C0d&S@+>5Dk4?O`> -%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl -%0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG -%1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9!+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=k$>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0eskW+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s4,R5!C)O4t>q0d'[C4?O`>0HaRB2BX^s>p(dT+?Vb/ -%0/+M24t>u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%5!C)Q4s3$Q+?Vb/0/+MQ+>t?!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?"+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%/iPX1/iPX1>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GPm>p(dT+?Vb/0/+M240HaRB2BX_/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s -%1*BjF0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p)G\q>p(dT+?Vb/0/+M240HaRB2BX_3 -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GgH0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u*+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB2BX_5+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+C-*R -%4s2sM+>5Dk2]sb.+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%2]sn!>p(dT+?Vb/0/+M245Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+?(E%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]t(&>p(dT -%+?Vb/0/+M245Dk4?O`>0HaRB0J5%%/i=b( -%2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`> -%0HaRB2]sh1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f'qX+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S) -%+?ht35!C)Q4s2sM+>5Dk>9GjI0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh5 -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fL4\+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u*+>,Mo>p)0H`=t0/4SR+?Vb/0/+MQ+?1Ju+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9GmJ1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$:($ -%>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GmJ3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3$:4(>p(dT+?Vb/0/4S345Dk>9GmJ0ea_U+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB3$9q3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/ -%0/4S345Dk>9GmJ0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GpK0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3?U7'>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q)+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GpK0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

G_r>p(dT+?Vb/0/4S345Dk>9GpK0fC.[ -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0ea_'0d'[C4?O`>0HaRB0ea_)+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXS+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GPm2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`> -%0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`))+>5Gl>9H$j+>5Dk>9GXT+>k9I+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXT+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S) -%+?ht35!C)Q4s2sM+>5Dk>9GXT+>G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34GVo1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB0esk1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0esk2+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXU+>GPm>p(dT+?Vb/0/4S345Dk>9GXU -%+>GVo>p(dT+?Vb/0/4S345Dk>9GXU+>GYp>p(dT+?Vb/0/4S345Dk>9GXU+>G\q>p(dT+?Vb/0/4S345Dk>9GXU+>G_r>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)*+BosN4p(dT+?Vb/ -%0/4S34GYp1E]sG0/4S34>E%+>>E%+>GK& -%+C-*R4s3$Q+?ht34?O`>0HaRB0f'q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB -%0f'q2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f'q3+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXV+>GPm>p(dT+?Vb/0/4S345Dk>9GXV+>GVo>p(dT+?Vb/ -%0/4S345Dk>9GXV+>GYp>p(dT+?Vb/0/4S345Dk>9GXV+>G\q>p(dT+?Vb/0/4S345Dk>9GXV+>G_r -%>p(dT+?Vb/0/+M245Dk>9GXV+>Gbs>p(dT+?Vb/0/+M24G\q0/4SR+?Vb/0/+MQ+>G\q0d'aE0/4S34>E% -%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXW+?(EK+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXW+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"- -%0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1*BjF0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB0f1"-1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I -%0/4S++?ht35!C)Q4s4,R5!C)O4G_r0/4SR+?Vb/0/+MQ+>G_r0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl -%1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB -%0f:(1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>G_r2]uBK0/4S34>E%+>>E%+>>E%+C-*C -%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB -%0f:(6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`> -%0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXX+>GVo>p(dT+?Vb/0/4S345Gl1a"tG -%+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34Gbs1E]sG -%0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>b3H+>5Gl4?O`>0d&S@+>5Dk>9GOQ -%1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD -%+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXY+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0fC./1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs0f1"Y+>5Gl -%4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)p+?ht35!C)B1E\Ls5!C)Q4s3$Q+?Vb/0/+M24kC!-K_50/Xk74=ok0d&S@+>5Dk>9H$j+>5Dk/M8n'0/=Xurr0H_r"2'=P-+=R6hs'$op5!C)O4#3'+>5Jm./s5h(b$Rk4s2sM+>5Dk/M8n' -%0/=Xurr4)\.3Lf<+?Vb/0/+M#/i=b)1*A"Es"F^-+?ht34?O`>0H_r"2'=P-+=R6h0FB6O5!C)O4#3'+>5Jm./s6#$n3;_ -%4s2sM+>5Dk/M8n'0/=Xurr4Y^.3Lf<+?Vb/0/+M#/i=b)1*A"Es"G!5+?ht34?O`>0H_r"2'=P-+=R6h0GGrY5!C)O4#3' -%+>5Jm./s8H#q6u\4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6h+;lUN -%5!C)O4#3'+>5Jm./s5h*@W*p4s2sM+>5Gl/M8n'0/=Xurr4YY.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fg0+?ht34?O`>0d&&# -%2'=P-+=R6h0F]HR5!C)O4#3'+>5Jm./s6#%k/Vb4s2sM+>5Gl/M8n'0/=Xurr4Ya.3Lf<+?Vb/0/4S$/i=b)1*A"Es"G0: -%+?ht34?O`>0d&'=P-+=R6hrsgJ#5!C)O4#3'+>5Jm./s6#!\#6U4s2sM+>5Gl/M8n'0/=Xurr0H_r"1,U1-0d&,U1-1*A"Es8Nud+?ht34?O`>0H_r"1,U1-0d&,U1-1*A"Es8O#e+?ht3 -%4?O`>0H_r"1,U1-0d&,U1-1*A"Es"O=!+?ht34?O`>0H_r"1,U1-0d&,U1-1*A"Eru_k%+?ht3>p)5Jm4?O`>0H`J? -%+>5Dk>9H$j+>5Dk0d&,(+BosN4k9I+>5Gl4?O`>0d&S@+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s4,R -%5!C)O4P&m0d'[C4?O`>0HaRB1*A:o>p(dT+?Vb/0/+M24P&p+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A@q>p(dT+?Vb/0/+M24P&r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht3 -%5!C)Q4s2sM+>5Dk>9G[D2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>P&u+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1*AP!>p(dT+?Vb/0/+M24P'"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9G[D0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;++C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;,+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*A;.+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f:(Z+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht3 -%5!C)Q4s2sM+>5Dk>9G[D0fL4\+>5Gl4?O`>0H`J?+>5Dk>9GOU+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O4Y,n0d'[C4?O`> -%0HaRB1E\Cp>p(dT+?Vb/0/4S34Y,r+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9G^E2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Y-"+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D- -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9G^E0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>Y,p2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk1a"G++BosN4G!E+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1a"Xu>p(dT+?Vb/0/4S345Gl0d&YD -%+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GaF0f:(Z -%+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GdG0d'aE0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8s+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB2'=[t>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4b3H+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2'?0I0/4S34>E%+>,Mo -%/i=bW+>5Gl0d&YD+?ht35!C)O4t?J+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GdG2]uBK0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9$+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=n%>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GPm>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GSn>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GVo>p(dT+?Vb/0/+M2 -%45Gl0d&YD+?ht35!C)O4GYp>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4G_r>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Gbs>p(dT+?Vb/0/+M2 -%45Gl0d&YD+?ht35!C)O4Get>p(dT+?Vb/0/+M24t>q0d'[C4?O`>0HaRB2BX^s>p(dT+?Vb/0/+M24t>u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?!+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/iPX1/iPX1>p(dT+>G!& -%4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p)GPm>p(dT+?Vb/0/+M240HaRB2BX_/+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1*BjF0/4S34>E%+>,Mo/i=bW -%+?ht35!C)Q4s2sM+>5Dk>9GgH0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G\q>p(dT -%+?Vb/0/+M240HaRB2BX_3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S++?ht35!C)Q4s2sM+>5Dk>9GgH0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB -%2BX_5+C-*C0d&S@+>5Dk4?O`>0HaRB/i=b(2'=M/+C-*R4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GjI0d'aE0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sq">p(dT+?Vb/0/+M245Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB2]t+'>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O -%4G\q>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M24,Mo/i=b(2'?0I5!C)Q4s3$Q+C-*R4s2sM+>5Dk3$9k/ -%+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3$:"">p(dT+?Vb/ -%0/4S345Dk>9GmJ2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?1K&+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%3$:1'>p(dT+?Vb/0/4S345Dk>9GmJ3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GmJ0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3$9q5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/ -%0/4S340HaRB3?U%!>p(dT+?Vb/0/4S3 -%45Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GpK2]uBK -%0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?:Q(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+?:Q!0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%3+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GpK0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3?U%7+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl -%1a"tG+?ht35!C)p+?ht34?O`>0H`)(+>5Gl>9H$j+>5Dk>9GXS+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-( -%4s3$Q+?ht34?O`>0HaRB0ea_++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT -%+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0ea_U+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GPm0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f1"Y+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u* -%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R -%4s2sM+>5Dk0eje(0d'[C4?O`>0HaRB0eje.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB0eje0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0eje*2'?0I0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S++?ht35!C)Q4s4,R5!C)O4GVo0/4SR+?Vb/0/+MQ+>GVo0d'aE0/4S34>E%+>,Mo/i=bW -%+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU -%+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXU+?(EK+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+0HaXD0/4S3 -%4>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1*BjF0/4S34>E%+>>E%+>GK& -%+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+ -%1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+2'?0I0/4S34,B( -%2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht3 -%5!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4p(dT+?Vb/0/4S345Dk>9GXV+>k9I+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXV+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXV+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>GYp3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0f'q,1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,2'?0I0/4S34>E%+>>E%+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB0f'q,2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34G\q -%1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f1"3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB0f1"4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/ -%0/4S345Dk>9GXW+>GPm>p(dT+?Vb/0/4S345Dk>9GXW+>GVo>p(dT+?Vb/0/4S345Dk>9GXW+>GYp -%>p(dT+?Vb/0/4S345Dk>9GXW+>G\q>p(dT+?Vb/0/4S345Dk>9GXW+>G_r>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)O -%45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34G_r1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>b3H+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1, -%1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O -%4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/ -%0/4S345Dk>9GXX+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u* -%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB -%0f:(.1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0f1"Y+>5Gl4?O`>0d&S@ -%+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4Gbs0/4SR+?Vb/0/+MQ+>Gbs0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs3$;KL0/4S34>E%+>>E%+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXY+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0 -endstream endobj 46 0 obj <>stream -HaRB/ho+=+>,E,+>,Mo>p(dT+>b3) -%4s3$Q+?ht3>p)p(dT+?Vb/0/4S34,Mo>p)0H`)0+>5Gl>9H$j+>5Dk>9GX[+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GOU+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)p+?ht3 -%5!C)B1E\Fq5!C)Q4s3$Q+C-*C0d'[C4?O`>0H`%l5!C)O4G!&4s2sM+>5Dk1*AbE+?Vb/0/+M)+?ht3>p)5Po4?O`> -%0HaRB4?O`>0H`J?+>5Dk./s5H8-!&uEWBW!+>5Sp4?O`>0H_eCrr=2B>U]Y(!%n74!':0F!*oSQ!2:SM+;l:B+>=r@+UKh'0ENp3 -%0F9E@0F]]H0G,uR0L7B[0L[Zc0M*s.0S;'50S_?B0Ujbd0V'nh0VL1q0VpJ$0W?bD0]OkK0]t.X0_I-n0`*R%0`<^)rrN-'rsA]6 -%rso&Iru:t[s#pBf.3L8u+=R6h!*goP>6'!MUB%27(a'eP#VZT>$nr/F&24_N'`S:8"TJc-+TFP'>Q5Jm./s5h'He\E-7L&j -%1E\+Fs"FI-!ri]/%OiMR1a"Lq5!C)Q4s3$Q+?Vb/0/+M240FTWF0G#oPrs8Wds'$op0/=Xurr4)T+=/-W -%.3L9"+=R6h0EEj/rs\o;.3L9#+>P''4s3$Q+?ht3>p(dT+BosN4=p%4s2sM+>5Dk0d&YD+C-*R4s2L9+?Vb/0/+MQ+?Vb/ -%0/+M245Gl0et@8 -%+>5JmAmoLsAKWW^+D,%uF(HII1a$m\F_)[K2'=Y5/heD$2BX_,0H`#-+>GK&+>5\s0H`#/+>>E%+>5H'+>>E%+>5H(+>Ful0esk* -%+>5H*+>=ok0f1",+>5H,+>=ok0fC..+>5H.+>>E%+>5H/+EVXHAKWW\3?VpBCia/10/>4(FE2M8+>5K)+D,%uF(HII1,9ta@;L!r -%+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/+EVXHAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l0/G=* -%AmoLsAKWW^1*C1;Cia/10/GC,AmoLsAKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR11bp1,1H?R3+>5Q*+D,%uF(HII -%1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4- -%+>5T-+D,%uF(HII2)?@;45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF< -%45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%uF(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0 -%+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z-+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII -%2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK& -%+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW(+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$8 -%02lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z4s3$Q+?ht3>p(dT+BosN4=p%4s4,R5!C)B2BY+E -%+>5Dk>9H$j+>5Dk4?O`>0H_eCrr?7':&o24EWBqV@/t*DAH6cO+94\-@K:HL@/tBLH2qOWDZFeXD#duEF9#Sq+>5Sp4?O`>0H`%l -%0/4S'/heD$1*A8'0H`#)+>>E%+>5Po0J5%%0/Xk+/heD$2BX^s0/k"./i"P&3$9mt00(.sEckq90/5.'2BXY-0d&4o0/54)1*A5) -%1E\@o0/5:+1H$j>+>5H,+EVXHAKWW\2BXV0+>5H.+Bos@3$9q.0H`)&1G^.Z+>5H/+BosB/heD%/heD%/heDR+>5H0+BosC/heD& -%/heD&/heDR+>5K(+>t>q1,0n`@;L!r+>5K*+>=ok1,C%b@;L!r+>5K,+>=ok1,U1.+>5K/+>7VHC`kAd2BZU?Cia/10/>L005bK? -%+>5K1+D,%uF(HII1GBq645N*+>Yo.0H`#)1*A\A+?ht30/GC,0H`#)1a"Ip0/GI.0H`#)2BXYjBl"nF1H-F1+>5N1+D,%u -%F(HII1H?R3+>5Q*+>P''4s3$Q+?ht3>p(dT+BosN4=p%4s4,R5!C)B3$:=G+>5Dk>9H$j+>5Dk4?O`>0d&S@+>5Dk>9Gm` -%0fUdD3&!6K+?2/93%d!I1c7'33&WKN/iG[C2Du[;1H.9G1H@9L1E\Y40JP1>2)-sH+?2/93%d!I1c7'33&30B/iY^C2)ZR:1H.9G -%1H@9L1E\Y40JP1>2)-sH+?2/93%d!I1c7'33&30B/iY^C2)ZR:1H.9G1H@9L1E\Y40JP1>2)-sH+?2/60ePFE1b^[-3&30B/iY^C -%2)ZR:1Ggg=3&`ZJ1*AP30JP1>2)-sH+?2/60ePFE1b^[-3&30B/iY^C2)ZR:1Ggg=3&`ZJ1*AP70fUdD3&!6K+?2/60ePFE1b^[- -%3&WKN/iG[C2Du[;1Ggg=3&`ZJ1*AP70fUdD3&!6K+?2/60ePFE1b^[-3&WKN/iG[C2Du[;1Ggg=3&`ZJ1*AP70fUdD3&!6K+?2/9 -%3%d!I1c7'33&WKN/iG[C2Du[;1H.9G1H@9L1E]sG5!C)B1*A\A+>5Dk0d&,)+BosC/heD%/heD%/heD&/heD"0f1a?2_[-D2'=J* -%3B/WJ1GgsJ+C-*C2]sh7/heD$3$9q8/heD34s3$Q+?ht34?O`>0H`J?+>5Gl4?O`>0HaRB3&NWN/ib^I1cQU;1c$g<2`3HP2BXt: -%2`!'H1H73N+?2260J5:A2)mK:3&3XF2`2^;1c$g<2`3HP2BXt71c?sD3AWTO+?2260J5:A2)mK:3&3XF2`2^;1c$g< -%2`3HP2BXt71c?sD3AWTO+?2260J5:A2)mK:3&3XF2`2^;1H@9E1,CdD2'=k61c?sD3AWTO+?2/;1bLO>2)@*43&3XF -%2`2^;1H@9E1,CdD2'=k61c?sD3AWTO+?2/;1bLO>2)@*43&NWN/ib^I1cQU;1H@9E1,CdD2'=k92`!'H1H73N+?2/;1bLO>2)@*4 -%3&NWN/ib^I1cQU;1H@9E1,CdD2'=k92`!'H1H73N+?2/;1bLO>2)@*43&NWN/ib^I1cQU;1c$g<2`3HP2BXt:2`!'H1H73N+?226 -%0J5:A2)mK:>p)5Jm4?O`>0H`(m0/=YS+>GK&+>>E%+>>E%+>GK&+>#<)2(ggA2D@!2/MT7F/i5@@2)cX`+>5Yr0fUd>+>5\s -%0fUd>+?ht35!C)Q4s4,R5!C)Q4s2L5+?Vb/0/+M245Gl>9H$j+>5Dk./s5H+=SEd0d%nDrr=c&+?ht34?O`> -%0H_eCrr5Gl./s5H2CTb44s2sM+>5Dk./s5H#q6uM0d%nDrr=`%+?ht34?O`>0H_eCrubPq.3L8u+=R6h!&Z2J5!C)O4=ok1*A7n0/F_'2)mB70/Oe(1G^g00/Xk)2)mB70/aq*1G^g00/k"+2]sb5+EVXHAKWWd+BosN4=ok0d%nDru`:1+>5Jm -%./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0d&,(+=R6h+<;mR0/=Xurr4)].3L9"+=R6h+;lUN0/Oe"rr4)Y.3Lf< -%+?Vb/0/+M(+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`.o0/4Rtrr2u!.3L9!+=R6h!4s[& -%0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4b2o0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk -%2'=P,+=R6h+5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h -%3@Q((1a"4Grua?O+?ht34?O`>0H`:s0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk3?Tt0+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe" -%rr4)Y.3Lf<+?Vb/0/+M'1*A5)+=R6h+<2gQ0/=Xurr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M'1E\>*+=R6h+<;mR -%0/=Xurr4)].3L9"+=R6h+;lUN0/Oe"rr4)Y.3Lf<+?Vb/0/+M'1a"G++=R6h+<2gQ0/=Xurr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y -%.3Lf<+?Vb/0/+M'2'=P,+=R6h+<2gQ0/=Xurr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M'2BXY-+=R6h+<;mR0/=Xu -%rr4)].3L9"+=R6h+;lUN0/Oe"rr4)Y.3Lf<+?Vb/0/+M'3$9k/+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf< -%+?Vb/0/+M(1*A5)+=R6h+*+=R6h+*+=R6h+*+=R6h+<2gQ0/=Xurr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M*1a"G++=R6h!37Ok0/=Xu -%rr2u1.3L9"+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M*2'=P,+=R6h+<2gQ0/=Xurr4)].3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf< -%+?Vb/0/+M*2BY1I+?Vb/0/+M*2]t:J+?Vb/0/+M*3$:CK+C-*C0eje/+>5H,+?Vb/0/+Lsrr2sh!-J9Z!-8-Z!+c.H!,O),5!C)B -%0fC.d@;L!r+?ht30/4SR+?Vb/0/+M24>E%+>5Jm0J5%%0/F_)/heD$1a"J)0H`#++>>E%+>5N)+?Vb/5!C)B1GL"- -%1G1UE+>5N,+>=ok1Gp:/+?ht30/aq,+?ht35!C)B0d&21+?ht3>p)5Vq4?O`>0HaRB4?O`>0H`J?+>5Dk4?O`>0H_eCs!]'D -%2'=Rq0/aq84=ok0d&;3/i>C,0/aq-/heD$3?U".0H`#+1E\eB+>5`8+>6)J8Q98GFAQC[DKI!S2'==Hrr>=bD?+STD?(dZ -%2#oE]+>5Dk4?O`>0H`(m0/4SR+>GK&+>,E03&!03/i,:B1,U1,1bgjG3?VTM5!C)Q4s2L92B[*^F_)[K2DcO20J5%%0/km64?O`> -%3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>; -%7V-"MF`M%95!C)Q4s3$Q+?ht30/4S(3$:CK+C-*R4s2L50H`J?+>5Dk1a"G,+EVXHAKX0#+?ht30/4S34=p% -%4s4,R0/=YS+?Vb/00)$802P"Y0/Xk++>5Vq>9H$j+>5`8+>62,0/5.'0H`#&+?Vb/0/+MQ+?2,10ePFC0f:j33&>E%+>>E%+>bf2/iYUH0d&81/i>C<2)-4Z+>5Sp1*A5.+BosN45Gl>9GUP0H`&%0H`2,2D-sE3ADX4 -%2D-jB0JtR->p(dY+BosN45Gl>9GUP0H`&%0H`2,2D-sE3ADX42D-jB0JtR->p(dX+>P&m2BZ3H4?O`>3B8389HYuC -%0H`/-/ib[H2`Dj40f1")1H@'E1bgmK+>5H,+>GQ&0fD$P1*A5(+?Vb/0/+MQ+>>E%+>Yf+3ANQQ2]uBK5!C)B0d'[C0J5%%/MfC> -%1c-pF3?U.52D-sE3ADX20J5(<3A``=>p(dY+BosN45H,+?Vb/0/+M'3$9k0+>=ok2'?L>Cia/15!C)B2BZ3H4?O`> -%3B8387j'H>+BosB/heD"1H@'E1bgmK+>bf//iY^B2)ud60J5(<3A``=>p(dX+BosE1a"Y1+>Ynu2)?@31*AA2+>Fuq1*AA2+>Yu" -%0d&>/+>kqt2)HF32]sq4+>c�d'aE0/t(Y+?2,10eP4@0etU/3&p(dT0d(RYF_)[K0esk'1H@'E1bgmK+>5H*+>GQ&0fD$K -%3?Tt10H`%l5!C)p+?ht3>p)p)>E%+>5Jm0J5%%0/F_)/heD$1a"J) -%0H`#++>>E%+>5N)+?Vb/5!C)B1GL"-1G1UE+>5N,+>=ok1Gp:/+?ht30/aq,+?ht35!C)B0d&2-+?ht3>p)5Vq4?O`>0HaRB -%4?O`>0H`J?+>5Dk4?O`>0H_eCs!]'D2'=Rq0/aq84=ok0d&;3/i>C,0/aq-/heD$3?U".0H`#+1E\eB+>5`8+>6)J8Q98G -%FAQC[DKI!S2'==Hrr>=bD?+STD?(dZ2#oE]+>5Dk4?O`>0H`(m0/4SR+>GK&+>,E03&!03/i,:B1,U1,1bgjG3?VTM5!C)Q4s2L9 -%2B[*^F_)[K2DcO20J5%%0/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)Q4s3$Q+?ht30/4S(1a"tG+C-*R4s2L50H`J?+>5Dk1a"G,+EVXHAKX0# -%+?ht30/4S34G!&4s4,R0/=YS+?Vb/00)$802P"Y0/Xk++>5Vq>9H$j+>5`8+>62,0/5.'0d&,'+?Vb/0/+MQ -%+?2,52D-jI1H.063&>E%+>>E%+>Yc3/i,=@2_uR42D-jB0JtR->p(dX+>P&m2BZ3H4?O`>3B838 -%;BRVI+BosB/heD%/heD(1,ggA1c.-I+>Yo.2)6jC0d'aE0/aqW+?Vb/00)$802`oG0d'[C0J5%%0J5%%1GUmA1GgpI1E\J3/i>C< -%2)-4Z+>5Sp1*A5.+BosN45H'+>Yf+3ANQQ2]sb.1a"A+3A*-F0fD$70/5=,0eb472E5Dk4?O`>0HaRB0J5%% -%1G^XD1,q3O+C-*R4s2L5+BosB/heD"1H@'E1bgmK+>Yc3/i,=@2_uR20J5(<3A``=>p(dY+BosN45H,+?Vb/0/+M' -%1a"G,+>=ok2'?L>Cia/15!C)B2BZ3H4?O`>3B8387j'H>+BosB/heD"1H@'E1bgmK+>Yc3/hf4D0f'q,0J5(<3A``=>p(dX+BosE -%3$:(6+>bqu1bp112]st6+>Fup2BXh9+>c#"1H?R71*AD-+>G!E+>5\s>9Gm\1c?sD3AWTO+?2/:3%d-F1,_$53&NWN/iGXC3&i$? -%1c%*D1G^gI3$;KL00(.Z+?2,52D-jI1H.063& -%1c-pF3?Tt01E\D+/ho7E1cZ[31,'h)+?ht3>p)p)Ful -%0d&2+/heD$1*C1;Cia/10/F__@;L!r+>5PoFE2M8+>5Sp1,gg>+>5Vq0eP.&0/k"./heD$3$9mt00(.//heD$0ea_(/heD$0eje* -%+>5H)+>=ok0f'q++>5H++>=ok0f:(-+>5H-+>=ok0fL4//heD$0fU:tEckq90/5I0AmoLsAKWW]0HbIXF_)[K1,0n`@;L!r+>5K* -%+D,%uF(HII1,C%b@;L!r+>5K,+D,%uF(HII1,U1d@;L!r+>5K.+D,%uF(HII1,g=tEckq90/>L0AmoLsAKWW]3?VpBCia/10/G:) -%0H`#)0d((:Cia/10/G@+AmoLsAKWW^1E^:5N2+>=ok1b^%a -%@;L!r+>5Q++>P&m1bp1-+>5Q-+?Vb/0/+M$2'>(H+>5Q.+>P&m1c6C2+>5Q0+?(Dr1cHO2+>5Q2+>=ok1cZ[10eP.&0/YF+/MSk3 -%+>5T,+>=ok2)6:d@;L!r+>5T.+?Vb/00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>>E%+>>E%+>>E%+C-*R4s3$Q -%+>5T/+?Vb/00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>>E%+>>E%+>>E%+C-*R4s3$Q+>5T0+?Vb/00)$801/#s -%<+U;r6>U4NA7]d(5!C)B2)ZS!Eckq90/Y[2AmoLsAKWW`3$<<`F_)[K2)udk@;L!r+>5W,+D,%uF(HII2DH=.+>5W.+>=ok2DZI1 -%/heD$2DcO5/heD$2DlU2/heD$2Du[^+C-*C2E)a_+C-*C2E2g5+>5W5+>=ok2_Z@.+>5Z.+>b2o2_lL0/heD$2_uR1/heD$2`)Xh -%@;L!r+>5Z2+D,%uF(HII2`;dj@;L!r+>5Z4+EVXHAKWWb3$<<`F_)[K2`W!C45Dk0d&,( -%+BosC/heD&/heD&/heD%/heDR+?ht35!C)B3%uIe@;L!r+>5]/+>=ok3&2U4/heD$3&;[5/heD$3&Dai@;L!r+>5]3+>=ok3&VmA -%4=ok0d&/&0H`#(+>>E%+>5Mn -%0J5%%0/Oe*/heD$2'=S*0H`#,+>Ful2]sh-1*A50+>=ok3?WEaF_)[K0ea_.+>5H(+>P&m0esk,+>5H*+>=ok0f1"/2D-[+0/5=, -%FE2M8+>5H-+>,Mo0/5C.>9GOX+>GK&+>GK)1E]sG0/5F/>9GUP0H`&%0H`&%0HaXD0/5I0>9GXQ0H`)&0H`)&0HaXD0/>4(2BXY. -%0d((:Cia/10/>:*0H`#(1E^:@,0H`#(2'=Rq0/>I/05bK?+>5K.+D,%uF(HII1,pC0DJO1AmoLsAKWW^0H`J? -%+?ht30/G=*1H$j>+>5N++?Vb/5!C)B1G^.-+>5N-+>=ok1Gp:/+>5N/+>7VHC`kAe2]sds0/GR1AmoLsAKWW^3?U!u0/P@*1*AbE+?hs~> -7747 7891 /RulerOrigin , -; -/AI11UndoFreeTextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H9`TG= -%EWBeR@/sg5Jm0H`PC+?ht35!C)p+?ht30/Xk74kD -%!$D8/!,)@@!-/'J!+Q"N!+c.N!$D8?!-A3d!,MXH!*q#r0/aq84Ful0d&2+/heD$1*C1;Cia/10/F__@;L!r+>5PoFE2M8 -%+>5Sp1,gg>+>5Vq0eP.&0/k"./heD$3$9mt00(.//heD$0ea_(/heD$0eje*+>5H)+>=ok0f'q++>5H++>=ok0f:(-+>5H-+>=ok -%0fL4//heD$0fU:tEckq90/5I0AmoLsAKWW]0Hat9Cia/10/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C- -%AmoLsAKWW]2BZU?Cia/10/>I/AmoLsAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l0/G=*AmoLsAKWW^1*C1;Cia/10/GC,AmoLs -%AKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR10H`#)3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b8 -%4s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#*3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z- -%D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%u -%F(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3 -%>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_ -%F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B -%3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kH!,)?T!)il>!-nQ\!+c.9.3L9$+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#* -%+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K -%0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLs -%AKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L7 -%0d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ0H`%l5!C)p+?ht35!C)B0d&S@+>5Dk4?O`>0H`J?+>5Dk0H`#'+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R -%5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\ -%.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h -%)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"E -%rrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O -%4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9" -%+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t -%0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nD -%ru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2 -%+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm -%./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l18 -%4s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6# -%*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1 -%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm -%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+,0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l -%4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h -%*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nDru`@3+>5Jm./s5h*%5Po./s5h)(?[l4s2sM -%+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L1 -%0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1 -%+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nD -%rrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K -%+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9# -%+?ht30/5@-AmoLsAKX0#+>5Jm4?O`>0H`(m0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr -%0eP.&0/t(.+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0 -%+D,%uF(HII1,'h_@;L!r+>5K)+D,%uF(HII1,9ta@;L!r+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/ -%+D,%uF(HII1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful -%1H$@0/heD$1H-F3+>5N1+>=ok1H?R3+>5Q*+D,%uF(HII1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8 -%+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4-+>5T-+D,%uF(HII2)?@;45Dk -%0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF<45Dk0d&,(+BosC/heD%/heD% -%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%u -%F(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z- -%+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/ -%00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW( -%+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$802lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z -%4s2L7+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q -%0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%% -%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLsAKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e -%@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L70d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ -; -%AI11_EndTextDocument -%%EndSetup -%AI5_BeginLayer -1 1 0 1 0 0 1 0 79 128 255 0 50 0 Lb -(repository-hero) Ln -%_/ArtDictionary : -%_/XMLUID : (repository-hero) ; (AI10_ArtUID) , -%_; -%_ -1 A -0 Xw -0 A -u -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -1 /StoryIndex , -/Art : -X= -0 A -0 Xw -1 Ap -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -681.2334 -341.3213 m -353.8877 -341.3213 L -353.8877 -304.8008 L -681.2334 -304.8008 L -681.2334 -341.3213 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (text-eslint-src) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -379.9258 -336.9238 m -379.9258 -338.7295 L -356.8799 -338.7295 L -356.8799 -304.8027 L -379.6875 -304.8027 L -379.6875 -306.6084 L -358.9707 -306.6084 L -358.9707 -320.1982 L -378.4521 -320.1982 L -378.4521 -322.0039 L -358.9707 -322.0039 L -358.9707 -336.9238 L -379.9258 -336.9238 l -f -*U -*u -405.6338 -314.4961 m -405.3965 -308.6992 401.0254 -305.8008 394.7529 -305.8008 c -390.9043 -305.8008 385.4395 -307.417 385.4395 -313.0234 c -385.4395 -318.4873 391.2363 -319.3906 396.9863 -320.5781 c -402.7832 -321.7666 408.5801 -323.2393 408.5801 -329.9863 c -408.5801 -337.0186 401.833 -339.5371 396.6533 -339.5371 c -388.7188 -339.5371 382.2559 -336.2588 382.3516 -327.5156 c -384.4414 -327.5156 L -384.0146 -334.9287 389.9541 -337.7314 396.6533 -337.7314 c -400.7402 -337.7314 406.4893 -335.8789 406.4893 -329.9863 c -406.4893 -324.2373 400.6924 -323.2393 394.8955 -322.0518 c -389.1455 -320.8633 383.3486 -319.4854 383.3486 -313.0234 c -383.3486 -306.5137 389.3838 -303.9951 394.7529 -303.9951 c -401.833 -303.9951 407.3916 -307.0361 407.7246 -314.4961 C -405.6338 -314.4961 l -f -*U -*u -413.4287 -304.8027 m -415.5195 -304.8027 L -415.5195 -336.9238 L -434.7637 -336.9238 L -434.7637 -338.7295 L -413.4287 -338.7295 L -413.4287 -304.8027 l -f -*U -*u -437.1885 -304.8027 m -439.2793 -304.8027 L -439.2793 -338.7295 L -437.1885 -338.7295 L -437.1885 -304.8027 l -f -*U -*u -445.2666 -304.8027 m -447.8799 -304.8027 L -469.3096 -335.9258 L -469.4053 -335.9258 L -469.4053 -304.8027 L -471.4961 -304.8027 L -471.4961 -338.7295 L -469.0244 -338.7295 L -447.4531 -307.3691 L -447.3574 -307.3691 L -447.3574 -338.7295 L -445.2666 -338.7295 L -445.2666 -304.8027 l -f -*U -*u -473.8271 -306.6084 m -473.8271 -304.8027 L -499.8184 -304.8027 L -499.8184 -306.6084 L -487.8438 -306.6084 L -487.8438 -338.7295 L -485.7539 -338.7295 L -485.7539 -306.6084 L -473.8271 -306.6084 l -f -*U -*u -541.7783 -314.9238 m -540.876 -309.2217 535.8867 -305.8008 530.2324 -305.8008 c -521.3467 -305.8008 516.168 -313.0713 516.168 -321.7666 c -516.168 -330.4619 521.3467 -337.7314 530.2324 -337.7314 c -536.8369 -337.7314 541.9688 -331.8398 542.3486 -325.5205 c -544.4395 -325.5205 L -543.6787 -333.5977 537.6924 -339.5371 530.2324 -339.5371 c -520.0635 -339.5371 514.0771 -331.6973 514.0771 -321.7666 c -514.0771 -311.8359 520.0635 -303.9951 530.2324 -303.9951 c -542.2539 -303.9951 543.8213 -314.4492 543.8691 -314.9238 C -541.7783 -314.9238 l -f -*U -*u -563.4482 -339.5371 m -553.2803 -339.5371 547.293 -331.6973 547.293 -321.7666 c -547.293 -311.8359 553.2803 -303.9951 563.4482 -303.9951 c -573.5693 -303.9951 579.5566 -311.8359 579.5566 -321.7666 c -579.5566 -331.6973 573.5693 -339.5371 563.4482 -339.5371 c -f -1 D -563.4482 -337.7314 m -572.2871 -337.7314 577.4658 -330.4619 577.4658 -321.7666 c -577.4658 -313.0713 572.2871 -305.8008 563.4482 -305.8008 c -554.5635 -305.8008 549.3838 -313.0713 549.3838 -321.7666 c -549.3838 -330.4619 554.5635 -337.7314 563.4482 -337.7314 c -f -*U -*u -0 D -584.0254 -304.8027 m -586.6387 -304.8027 L -608.0684 -335.9258 L -608.1641 -335.9258 L -608.1641 -304.8027 L -610.2549 -304.8027 L -610.2549 -338.7295 L -607.7832 -338.7295 L -586.2119 -307.3691 L -586.1162 -307.3691 L -586.1162 -338.7295 L -584.0254 -338.7295 L -584.0254 -304.8027 l -f -*U -*u -618.334 -322.0039 m -618.334 -338.7295 L -616.2432 -338.7295 L -616.2432 -304.8027 L -637.5303 -304.8027 L -637.5303 -306.6084 L -618.334 -306.6084 L -618.334 -320.1982 L -635.6299 -320.1982 L -635.6299 -322.0039 L -618.334 -322.0039 l -f -*U -*u -640.668 -304.8027 m -642.7588 -304.8027 L -642.7588 -338.7295 L -640.668 -338.7295 L -640.668 -304.8027 l -f -*U -*u -678.2061 -322.0986 m -678.2061 -338.7295 L -676.4004 -338.7295 L -676.4004 -331.5068 L -676.3057 -331.5068 L -674.6426 -336.4482 669.4629 -339.5371 663.4766 -339.5371 c -653.2129 -339.5371 647.5107 -331.6973 647.5107 -321.9561 c -647.5107 -312.3584 653.3076 -303.9951 663.5234 -303.9951 c -670.5088 -303.9951 676.4482 -308.2246 677.6357 -315.3037 c -675.6406 -315.3037 L -674.0723 -309.46 669.748 -305.8008 663.5713 -305.8008 c -654.4004 -305.8008 649.6016 -313.499 649.6016 -321.9561 c -649.6016 -330.6045 654.2578 -337.7314 663.5713 -337.7314 c -671.6494 -337.7314 676.7334 -332.2197 676.4004 -323.9043 c -663.9043 -323.9043 L -663.9043 -322.0986 L -678.2061 -322.0986 l -f -*U -U -%_/ArtDictionary : -%_/XMLUID : (text-eslint) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -0 /StoryIndex , -/Art : -X= -0 A -0 Xw -1 Ap -725.9756 -288.96 m -309.1455 -288.96 L -309.1455 -252.4395 L -725.9756 -252.4395 L -725.9756 -288.96 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (text-arcticicestudio-src) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -324.4932 -252.4414 m -337.8926 -286.3682 L -335.6592 -286.3682 L -331.3828 -275.4873 L -315.1328 -275.4873 L -310.8086 -286.3682 L -308.5752 -286.3682 L -322.2119 -252.4414 L -324.4932 -252.4414 l -f -1 D -330.7178 -273.6816 m -323.4482 -254.4854 L -323.3525 -254.4854 L -315.7979 -273.6816 L -330.7178 -273.6816 l -f -*U -*u -0 D -340.3174 -252.4414 m -354.4775 -252.4414 L -360.417 -252.4414 365.2158 -254.6279 365.2158 -261.1846 c -365.2158 -265.7461 362.46 -269.1201 357.9463 -269.8799 c -357.9463 -269.9756 L -362.9824 -270.5449 364.2178 -273.7285 364.5508 -277.2451 c -364.8838 -280.7617 364.3135 -284.5625 365.6914 -286.3682 c -363.3633 -286.3682 L -362.0801 -284.04 362.8398 -280.1436 362.46 -276.8652 c -362.0322 -273.5859 360.417 -270.9258 354.4775 -270.9258 c -342.4082 -270.9258 L -342.4082 -286.3682 L -340.3174 -286.3682 L -340.3174 -252.4414 l -f -1 D -354.4775 -269.1201 m -359.4189 -269.1201 363.125 -266.792 363.125 -261.3271 c -363.125 -256.1953 359.0391 -254.2471 354.4775 -254.2471 c -342.4082 -254.2471 L -342.4082 -269.1201 L -354.4775 -269.1201 l -f -*U -*u -0 D -396.6738 -262.5625 m -395.7715 -256.8604 390.7822 -253.4395 385.1279 -253.4395 c -376.2422 -253.4395 371.0635 -260.71 371.0635 -269.4053 c -371.0635 -278.1006 376.2422 -285.3701 385.1279 -285.3701 c -391.7324 -285.3701 396.8643 -279.4785 397.2441 -273.1592 c -399.335 -273.1592 L -398.5742 -281.2363 392.5879 -287.1758 385.1279 -287.1758 c -374.959 -287.1758 368.9727 -279.3359 368.9727 -269.4053 c -368.9727 -259.4746 374.959 -251.6338 385.1279 -251.6338 c -397.1494 -251.6338 398.7168 -262.0879 398.7646 -262.5625 C -396.6738 -262.5625 l -f -*U -*u -400.0508 -254.2471 m -400.0508 -252.4414 L -426.042 -252.4414 L -426.042 -254.2471 L -414.0674 -254.2471 L -414.0674 -286.3682 L -411.9775 -286.3682 L -411.9775 -254.2471 L -400.0508 -254.2471 l -f -*U -*u -428.3721 -252.4414 m -430.4629 -252.4414 L -430.4629 -286.3682 L -428.3721 -286.3682 L -428.3721 -252.4414 l -f -*U -*u -462.8691 -262.5625 m -461.9668 -256.8604 456.9775 -253.4395 451.3232 -253.4395 c -442.4375 -253.4395 437.2588 -260.71 437.2588 -269.4053 c -437.2588 -278.1006 442.4375 -285.3701 451.3232 -285.3701 c -457.9277 -285.3701 463.0596 -279.4785 463.4395 -273.1592 c -465.5303 -273.1592 L -464.7695 -281.2363 458.7832 -287.1758 451.3232 -287.1758 c -441.1543 -287.1758 435.168 -279.3359 435.168 -269.4053 c -435.168 -259.4746 441.1543 -251.6338 451.3232 -251.6338 c -463.3447 -251.6338 464.9121 -262.0879 464.96 -262.5625 C -462.8691 -262.5625 l -f -*U -*u -483.1152 -252.4414 m -485.2061 -252.4414 L -485.2061 -286.3682 L -483.1152 -286.3682 L -483.1152 -252.4414 l -f -*U -*u -517.6123 -262.5625 m -516.71 -256.8604 511.7207 -253.4395 506.0664 -253.4395 c -497.1807 -253.4395 492.001 -260.71 492.001 -269.4053 c -492.001 -278.1006 497.1807 -285.3701 506.0664 -285.3701 c -512.6709 -285.3701 517.8027 -279.4785 518.1826 -273.1592 c -520.2734 -273.1592 L -519.5127 -281.2363 513.5264 -287.1758 506.0664 -287.1758 c -495.8975 -287.1758 489.9111 -279.3359 489.9111 -269.4053 c -489.9111 -259.4746 495.8975 -251.6338 506.0664 -251.6338 c -518.0879 -251.6338 519.6553 -262.0879 519.7031 -262.5625 C -517.6123 -262.5625 l -f -*U -*u -547.6934 -284.5625 m -547.6934 -286.3682 L -524.6475 -286.3682 L -524.6475 -252.4414 L -547.4551 -252.4414 L -547.4551 -254.2471 L -526.7383 -254.2471 L -526.7383 -267.8369 L -546.2197 -267.8369 L -546.2197 -269.6426 L -526.7383 -269.6426 L -526.7383 -284.5625 L -547.6934 -284.5625 l -f -*U -*u -586.6123 -262.1348 m -586.375 -256.3379 582.0029 -253.4395 575.7314 -253.4395 c -571.8828 -253.4395 566.418 -255.0557 566.418 -260.6621 c -566.418 -266.126 572.2148 -267.0293 577.9648 -268.2168 c -583.7617 -269.4053 589.5586 -270.8779 589.5586 -277.625 c -589.5586 -284.6572 582.8115 -287.1758 577.6318 -287.1758 c -569.6973 -287.1758 563.2344 -283.8975 563.3301 -275.1543 c -565.4199 -275.1543 L -564.9932 -282.5674 570.9326 -285.3701 577.6318 -285.3701 c -581.7188 -285.3701 587.4678 -283.5176 587.4678 -277.625 c -587.4678 -271.876 581.6709 -270.8779 575.874 -269.6904 c -570.124 -268.502 564.3271 -267.124 564.3271 -260.6621 c -564.3271 -254.1523 570.3623 -251.6338 575.7314 -251.6338 c -582.8115 -251.6338 588.3701 -254.6748 588.7031 -262.1348 C -586.6123 -262.1348 l -f -*U -*u -590.749 -254.2471 m -590.749 -252.4414 L -616.7402 -252.4414 L -616.7402 -254.2471 L -604.7656 -254.2471 L -604.7656 -286.3682 L -602.6758 -286.3682 L -602.6758 -254.2471 L -590.749 -254.2471 l -f -*U -*u -621.1611 -252.4414 m -621.1611 -272.7783 L -621.1611 -276.8652 622.0166 -285.3701 631.8047 -285.3701 c -640.1201 -285.3701 642.9238 -280.4766 642.9238 -272.7783 c -642.9238 -252.4414 L -645.0146 -252.4414 L -645.0146 -272.7783 L -645.0146 -280.8564 641.9736 -287.1758 631.8047 -287.1758 c -619.7363 -287.1758 619.0703 -277.293 619.0703 -272.7783 c -619.0703 -252.4414 L -621.1611 -252.4414 l -f -*U -*u -651.0039 -252.4414 m -662.123 -252.4414 L -674.2393 -252.4414 677.8027 -260.7568 677.8027 -269.3574 c -677.8027 -278.9561 672.9092 -286.3682 662.0283 -286.3682 c -651.0039 -286.3682 L -651.0039 -252.4414 l -f -1 D -653.0947 -284.5625 m -662.2178 -284.5625 L -668.5381 -284.5625 675.7129 -281.0938 675.7129 -269.3574 c -675.7129 -255.4824 666.8271 -254.2471 661.79 -254.2471 c -653.0947 -254.2471 L -653.0947 -284.5625 l -f -*U -*u -0 D -682.6992 -252.4414 m -684.79 -252.4414 L -684.79 -286.3682 L -682.6992 -286.3682 L -682.6992 -252.4414 l -f -*U -*u -705.4121 -287.1758 m -695.2441 -287.1758 689.2568 -279.3359 689.2568 -269.4053 c -689.2568 -259.4746 695.2441 -251.6338 705.4121 -251.6338 c -715.5332 -251.6338 721.5205 -259.4746 721.5205 -269.4053 c -721.5205 -279.3359 715.5332 -287.1758 705.4121 -287.1758 c -f -1 D -705.4121 -285.3701 m -714.251 -285.3701 719.4297 -278.1006 719.4297 -269.4053 c -719.4297 -260.71 714.251 -253.4395 705.4121 -253.4395 c -696.5273 -253.4395 691.3477 -260.71 691.3477 -269.4053 c -691.3477 -278.1006 696.5273 -285.3701 705.4121 -285.3701 c -f -*U -U -%_/ArtDictionary : -%_/XMLUID : (text-arcticicestudio) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -0 D -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -0 R -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 XA -2 w 224.3535 -354.7666 m -810.7666 -354.7666 L -B -%_/ArtDictionary : -%_/XMLUID : (bottom) ; (AI10_ArtUID) , -%_; -%_ -224.3535 -245.2334 m -810.7666 -245.2334 L -B -%_/ArtDictionary : -%_/XMLUID : (top) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (lines) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -U -%_/ArtDictionary : -%_/XMLUID : (title) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -u -1 Ap -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 XA -202.6064 -362.6865 m -77.2334 -362.6865 L -77.2334 -237.3135 L -202.6064 -237.3135 L -202.6064 -362.6865 L -s -%_/ArtDictionary : -%_/XMLUID : (frame) ; (AI10_ArtUID) , -%_; -%_ -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -1 w 144.5537 -324.1152 m -167.5615 -277.1768 L -169.7793 -277.1768 L -192.7861 -324.1152 L -190.8467 -324.1152 L -168.6709 -278.8408 L -146.4941 -324.1152 L -144.5537 -324.1152 l -f -%_/ArtDictionary : -%_(-1.570796) /String (BBAccumRotation) , -%_; -%_ -*U -%_/ArtDictionary : -%_/XMLUID : (character) ; (AI10_ArtUID) , -%_; -%_ -*u -133.9932 -324.1152 m -87.0537 -301.1084 L -87.0537 -298.8916 L -133.9932 -275.8838 L -133.9932 -277.8232 L -88.7178 -299.999 L -133.9932 -322.1748 L -133.9932 -324.1152 l -f -*U -%_/ArtDictionary : -%_/XMLUID : (code) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (box) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -LB -%AI5_EndLayer-- -%%PageTrailer -gsave annotatepage grestore showpage -%%Trailer -%%EOF - -endstream endobj 5 0 obj <> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 28 0 obj [27 0 R] endobj 47 0 obj <> endobj xref -0 48 -0000000004 65535 f -0000000016 00000 n -0000000159 00000 n -0000039194 00000 n -0000000000 00000 f -0000482038 00000 n -0000000000 00000 f -0000039245 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000482116 00000 n -0000482147 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000048225 00000 n -0000482232 00000 n -0000039582 00000 n -0000048533 00000 n -0000048420 00000 n -0000047183 00000 n -0000047663 00000 n -0000047711 00000 n -0000048304 00000 n -0000048335 00000 n -0000048607 00000 n -0000048891 00000 n -0000049949 00000 n -0000055345 00000 n -0000120934 00000 n -0000186523 00000 n -0000252112 00000 n -0000317701 00000 n -0000383290 00000 n -0000448879 00000 n -0000482257 00000 n -trailer -<]>> -startxref -482475 -%%EOF diff --git a/assets/images/packages/@arcticicestudio/eslint-config/repository-hero.svg b/assets/images/packages/@arcticicestudio/eslint-config/repository-hero.svg deleted file mode 100644 index 9e1846a..0000000 --- a/assets/images/packages/@arcticicestudio/eslint-config/repository-hero.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/assets/images/repository-hero.ai b/assets/images/repository-hero.ai deleted file mode 100644 index 5b04bf0..0000000 --- a/assets/images/repository-hero.ai +++ /dev/null @@ -1,12812 +0,0 @@ -%PDF-1.5 % -1 0 obj <>/OCGs[5 0 R 27 0 R 48 0 R 69 0 R 90 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - Styleguide JavaScript - Repository Hero - - - - - Arctic Ice Studio - - - - - Copyright (C) 2018-present Arctic Ice Studio (https://www.arcticicestudio.com) Copyright (C) 2018-present Sven Greb (https://www.svengreb.de) - - - - - Adobe Illustrator CS6 (Windows) - 2019-08-15T14:55:11+02:00 - 2019-08-15T16:24:28+02:00 - 2019-08-15T16:24:28+02:00 - - - - 256 - 44 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgALAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9A+V/K/lmXyzpEkmkWTy PZW7O7W8RZmMSkkkruTkpSNoATP/AAn5V/6s1j/0jQ/804OIrQd/hPyr/wBWax/6Rof+aceIrQd/ hPyr/wBWax/6Rof+aceIrQd/hPyr/wBWax/6Rof+aceIrQQtppWl6f5oQWFnBaCSxkMggjSMMRMl K8AK0rhvZeqZ3zauHX6gluyU+P13dTX24K2AJQ3PzV/vmx/5Gzf9U8dkbu5+av8AfNj/AMjZv+qe Oy7u5+av982P/I2b/qnjsu7ufmr/AHzY/wDI2b/qnjsu7ufmr/fNj/yNm/6p47Lu7n5q/wB82P8A yNm/6p47Lu7n5q/3zY/8jZv+qeOy7u5+av8AfNj/AMjZv+qeOy7u5+av982P/I2b/qnjsu7ufmr/ AHzY/wDI2b/qnjsu7ufmr/fNj/yNm/6p47Lu7n5q/wB82P8AyNm/6p47Lu7n5q/3zY/8jZv+qeOy 7u5+av8AfNj/AMjZv+qeOy7u5+av982P/I2b/qnjsu7ufmr/AHzY/wDI2b/qnjsu7ufmr/fNj/yN m/6p47Lu7n5q/wB82P8AyNm/6p47Lu7n5q/3zY/8jZv+qeOy7u5+av8AfNj/AMjZv+qeOy7u5+av 982P/I2b/qnjsu7ufmr/AHzY/wDI2b/qnjsu7ufmr/fNj/yNm/6p47Lu7n5q/wB82P8AyNm/6p47 Lu7n5q/3zY/8jZv+qeOy7u8p/wDKK6N/zA23/JlcZc1HJNSQASTQDqcCUBp2uaXqUs0dhN9ZW3oJ J41ZoeRJBVZqem7CnxBWNO+EiltFXd3b2drNd3MgitrdGlmlboqIOTMfkBgVbY31rf2cN7aSCW2u EEkMgBFVYVGxAIPsdxiQqBf/AJSqH/mBl/5PR4eiOqa4EuxVb6kfD1OQ4deVRSnzxVvkvIrUcgKl e9D3xV3JeQWo5EEgd6Dr+vFXKysoZSGU9CNxiqjBqFhPK0MFzFLKlecaOrMKGhqAajGlbub2ytQp uriOANspldUBI8ORGNKveeBEDvIqo32WZgAfkTirkuIJFZkkR1X7TKwIHzpiq17u0RirzRqw6qWA O+/c4q57u1Q0eaNTStCwGx+ZxVdFPDLX0pFkp14kGn3YqpzX9jDMsM1xFHM/2I3dVZq7bAmpxpV0 l3axtwkmRGHVWYA/cTircVxbzFhFKkhWnLgwalelaYqvaRFYKzAM32QTQn5ffirUkkca85GCKOrM QB95xVYl3ayMEjmjdz0VWBJ+gHFV8kkcaNJIwSNRVnYgAAdyTiqy2u7W5T1LaZJ4waF42DivhVSc VVFZWUMpBUioI3BBxVaZ4ApYyKFABLFhShNAfpxV0U8MtfSkWSnXiQafdiqxr2zVirTxhgaEF1BB H040qqrKyhlIZTuCNwRirD7fzKdI8s+XLeOAPPe2VusVxcSC3s42ESCks7BqM3L4UVSzdsnVksbT VfLkt9STzBdfpGu/1GNTFYj5w1Zpf+erMO4UYL7k0naIkaKiKFRRRVUUAA7ADIpSPXVGp6jZ6EN4 KrfamO3oRN+6ib/jNMv0qjjJDbdBa01v0Zr91pDfDa3wfUNO8AxYfW4h8pGEv+zPhidwqJf/AJSq H/mBl/5PR4Oi9U1wJaDKSQCCV6jw74q8zk1DQZvLHljy9rF/BZWN7bC6vjPMkAaGADggZyu7Tsjf JWy2jZIYdEz0PWUuRoeui4juWLSaFq1zEweN5A/GGYMpIIaeMcN+kuRI6JBa1/WI7c6zrLXMdqWe PQNKupWVEjdm/wBIn5NQfBI55b/7pxA6KSo6PLpFzo+v+VNB1S1kt4Iw2mTRTrJGkV4CPSeSMmlJ 1dTTcKy+2E9CVHcjboaSkdjFqOiTaC9rPCbTULZIXhicOKKs0BZkjk/u29RFBDUOBUf5Z02xvo7r Wb2KO7v7u5uY2mkUOY4YZ3hjgTkPhVVT4gOrVPfBI9EhKNXsNI0nUtKtYYTfWa6hNKNJhRJvq/qW MnwJFX4ULAyAHpU02yQNoKC15tPmubs2OlyaPLHpGovcPLCLY3UXo8REoXaT03YOa/Z2p9rEKUfp DaUNQ14XmlvfyfWrejra+uOP6Ms/g5UI+jAeihQvfL9vb+RdeluNNjtRJ9ZmsLWRI2kt4GpwSq8g vxcn4qfh5Uwg7ha2Z3bWNlaBha28cAenIRIqVp0rxAyu2TEoLFbM6iuoaENZtb65nnbUbcQXBkil kLRpNHIyyH0UIiAQMKKPlk7YqWpadoEvkm2mtAl7CJbOOG7njBm9NbyNPTcsoeqD92Q2+1DviCbX omeuadDojDzFpdukRskI1O2hVUE9mPifYAAyQ7vH/sl/awA3skpXPZzzyaZr9+hS+1DULUQwNQm2 tAWaOHbbk1eclP2ttwow+SE289kDSLUm2N4P0hY/6KvDlJ/pKfAPVZE3/wApgMEUlV0gxNer/wA6 vNpbKCVvJF0+imlKf6PPNJU1p9nE+9Qp6jawar5shsL5RNY2NoLxbRwDHJPLKUV3U7N6SxnjXYFq 9aYjYL1UpBolv5ls7iG3n0+8kkezeRLdo4bocGZUdgArcSnNG9iB9o470qL8if8AKEeXv+2ZZ/8A UOmMuZUcmF6LFHLZRRyoJI3sPLIdGAKkHVLjYg5M/rYhlHmfSNM06zTWdPtorTUbKaApNAixtIjz IjwvwpzWRWK8T3oRuBkIm9mRSvQnjFveg+VZ9SP6T1T/AE1BpxV/9yE/T17iKT4fs/Eo6eGSPvQG b2oUW0QWH6svBaW5Cgx7fY+Asnw9PhJGVsks8sQxTeUdIimRZInsLZXjcBlYGFagg7EYZc0DkpL5 bm074vL90bNBv+jpqzWZ9kQkPD7emwUfynDfetI3TdRvpzLFf6fJZTwAFmDCaCQGu8Mi0ZunRkVv bAQqH8s2119Xn1O+jMV/qknryQt9qKIDjBCfApGByH85bxxKhf5jsbieyju7NOeo6dILuyXoWZAV eKv/ABbGzR/TXtiCpWJIJfMltIFZQ+nuwVwVYVljNGB6HHoqcYEpJd6Lq66jdXmk6hFZ/XkQXMc9 sbikkY4CWMrLDRuFAeQYbD6ZWil3l3yxb6IJPTmadjDb20TuAGWC1j4ohI6kuzyE+LYmVqAtvfK8 VydYC3DRJq6RMyqoJiuYV4rcIf5qJHsf5BiJLTrDyxFaPpRNw0y6XFKFVlAMlzPQSXLkH7Zq/wDw bYmS03r/AJYttZnt5ZJngaKOWF2jpzaOXi4o37LRzRRyKaHdem+IlSkKN1oGvX9utjqeqwTaezKb lIbQxTTIrBuDSGaRAGpR+MYqOnHGwtKn6C1S0u7mXRtQjtYLt2mmtLm3a5jWZ93ki4S27Jzb4mUk itSKVxvvWmrPyqlvc2l3JdPcXsVzLeXdw6is8ssBt6UFAiohAVR0AHzx4lpW8weXk1gIGnMPCG5g 2XlUXUJiJ6j7Na4AaUhX0jR106S/dZTJ9enScginEx2sNtTqa1Fvy+nElQF+t6YuqaTd6c0hiW6j aIyAcivIUrSoxBpJRuBUgh0HXLD1oNJ1SGGwkd5YoLq1a4aFpXLssciTQfBVjxVlNPGgpkrCKVf8 MQjQF0hZ3IEy3Mty4DO8v1oXcjEDiP3klenSuPFutJhqtiNQ0u8sC/pi7gkgMgFSokQpWm1aVwAp Quq6NNd2VnDBcLBNZTRTxSyRmRS0IIAZA8Zoa/zYgopC3+i+YL+GOO41G0HozQ3MRjs5F/eQSLIv Kty1VPGhAp88IIWkdawa+s6td3tpLbivOOK1kic7GlHa4lA3/wAk4NlU9X0WW7ure/srn6lqdqrx xTlBLG8UlC8U0dU5oSqtsykEbHrVBWkFL5a1O91PT7/U9TWU6ZMZ7e2toDBCS0bRkuGlmZmo+x5U A7b1w2tLbby3rtjYnTNN1iO30xapah7X1LmCI1pHHL6qR/ANkLRGg68sbC023k6KJGXT5xbKtvpt tbI6GVUXS7h54y1HQvz9Tidx0rXHiWld9Av726gl1i/W5t7aRZ4rK3h+rwmWMho3k5STO/BhyUcg K7kGgxvuWltlo2vWCTQWeoWot5Lm5uUWa0kd1N1cPcMpZbmMHi0pA+EbYkhaTqATiFBO6yTAD1HR Silu5ClnIHtyORSlvlP/AJRXRv8AmBtv+TK4Zc0DkmuBLsVdirsVSp/+Uqh/5gZf+T0eHojqmuBL sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVY75V/TP+GNI4fV uH1K24151p6S0rkpVaAmn+5z/l2/5KYNld/uc/5dv+SmOyu/3Of8u3/JTHZXf7nP+Xb/AJKY7KgY frv+KY/rXp1+oycfS5f7+SteWHovVU1z/CHqxfp39H+rxPo/XvR5ca78fV3pXwwC+imkt/5BZ/2o /wDpzyXq812d/wAgs/7Uf/Tnj6vNdnf8gs/7Uf8A054+rzXZ3/ILP+1H/wBOePq812d/yCz/ALUf /Tnj6vNdnf8AILP+1H/054+rzXZ3/ILP+1H/ANOePq812d/yCz/tR/8ATnj6vNdnf8gs/wC1H/05 4+rzXZ3/ACCz/tR/9OePq812d/yCz/tR/wDTnj6vNdnf8gs/7Uf/AE54+rzXZ3/ILP8AtR/9OePq 812d/wAgs/7Uf/Tnj6vNdnf8gs/7Uf8A054+rzXZ3/ILP+1H/wBOePq812d/yCz/ALUf/Tnj6vNd nf8AILP+1H/054+rzXZ3/ILP+1H/ANOePq812d/yCz/tR/8ATnj6vNdnf8gs/wC1H/054+rzXZ3/ ACCz/tR/9OePq812d/yCz/tR/wDTnj6vNdnf8gs/7Uf/AE54+rzXZ3/ILP8AtR/9OePq812f/9k= - - - - - - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - xmp.did:3372D0EA5BBFE911AAC0D706AAED5FEA - uuid:6c7671d5-6018-44f9-b6bd-efce80ae190d - proof:pdf - - uuid:4978cad7-75c2-834c-a0a4-665e27ce28fa - xmp.did:02801174072068118083917CE3B5B58A - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - proof:pdf - - - - - saved - xmp.iid:3372D0EA5BBFE911AAC0D706AAED5FEA - 2019-08-15T14:55:11+02:00 - Adobe Illustrator CS6 (Windows) - / - - - - - - Basic RGB - Document - - - 1 - False - False - - 888.000000 - 600.000000 - Pixels - - - - Cyan - Magenta - Yellow - Black - - - - - - Standard-Farbfeldgruppe - 0 - - - - Weiß - RGB - PROCESS - 255 - 255 - 255 - - - Schwarz - RGB - PROCESS - 0 - 0 - 0 - - - RGB Rot - RGB - PROCESS - 255 - 0 - 0 - - - RGB Gelb - RGB - PROCESS - 255 - 255 - 0 - - - RGB Grün - RGB - PROCESS - 0 - 255 - 0 - - - RGB Cyan - RGB - PROCESS - 0 - 255 - 255 - - - RGB Blau - RGB - PROCESS - 0 - 0 - 255 - - - RGB Magenta - RGB - PROCESS - 255 - 0 - 255 - - - R=193 G=39 B=45 - RGB - PROCESS - 193 - 39 - 45 - - - R=237 G=28 B=36 - RGB - PROCESS - 237 - 28 - 36 - - - R=241 G=90 B=36 - RGB - PROCESS - 241 - 90 - 36 - - - R=247 G=147 B=30 - RGB - PROCESS - 247 - 147 - 30 - - - R=251 G=176 B=59 - RGB - PROCESS - 251 - 176 - 59 - - - R=252 G=238 B=33 - RGB - PROCESS - 252 - 238 - 33 - - - R=217 G=224 B=33 - RGB - PROCESS - 217 - 224 - 33 - - - R=140 G=198 B=63 - RGB - PROCESS - 140 - 198 - 63 - - - R=57 G=181 B=74 - RGB - PROCESS - 57 - 181 - 74 - - - R=0 G=146 B=69 - RGB - PROCESS - 0 - 146 - 69 - - - R=0 G=104 B=55 - RGB - PROCESS - 0 - 104 - 55 - - - R=34 G=181 B=115 - RGB - PROCESS - 34 - 181 - 115 - - - R=0 G=169 B=157 - RGB - PROCESS - 0 - 169 - 157 - - - R=41 G=171 B=226 - RGB - PROCESS - 41 - 171 - 226 - - - R=0 G=113 B=188 - RGB - PROCESS - 0 - 113 - 188 - - - R=46 G=49 B=146 - RGB - PROCESS - 46 - 49 - 146 - - - R=27 G=20 B=100 - RGB - PROCESS - 27 - 20 - 100 - - - R=102 G=45 B=145 - RGB - PROCESS - 102 - 45 - 145 - - - R=147 G=39 B=143 - RGB - PROCESS - 147 - 39 - 143 - - - R=158 G=0 B=93 - RGB - PROCESS - 158 - 0 - 93 - - - R=212 G=20 B=90 - RGB - PROCESS - 212 - 20 - 90 - - - R=237 G=30 B=121 - RGB - PROCESS - 237 - 30 - 121 - - - R=199 G=178 B=153 - RGB - PROCESS - 199 - 178 - 153 - - - R=153 G=134 B=117 - RGB - PROCESS - 153 - 134 - 117 - - - R=115 G=99 B=87 - RGB - PROCESS - 115 - 99 - 87 - - - R=83 G=71 B=65 - RGB - PROCESS - 83 - 71 - 65 - - - R=198 G=156 B=109 - RGB - PROCESS - 198 - 156 - 109 - - - R=166 G=124 B=82 - RGB - PROCESS - 166 - 124 - 82 - - - R=140 G=98 B=57 - RGB - PROCESS - 140 - 98 - 57 - - - R=117 G=76 B=36 - RGB - PROCESS - 117 - 76 - 36 - - - R=96 G=56 B=19 - RGB - PROCESS - 96 - 56 - 19 - - - R=66 G=33 B=11 - RGB - PROCESS - 66 - 33 - 11 - - - - - - Kalt - 1 - - - - C=56 M=0 Y=20 K=0 - RGB - PROCESS - 101 - 200 - 208 - - - C=51 M=43 Y=0 K=0 - RGB - PROCESS - 131 - 139 - 197 - - - C=26 M=41 Y=0 K=0 - RGB - PROCESS - 186 - 155 - 201 - - - - - - Graustufen - 1 - - - - R=0 G=0 B=0 - RGB - PROCESS - 0 - 0 - 0 - - - R=26 G=26 B=26 - RGB - PROCESS - 26 - 26 - 26 - - - R=51 G=51 B=51 - RGB - PROCESS - 51 - 51 - 51 - - - R=77 G=77 B=77 - RGB - PROCESS - 77 - 77 - 77 - - - R=102 G=102 B=102 - RGB - PROCESS - 102 - 102 - 102 - - - R=128 G=128 B=128 - RGB - PROCESS - 128 - 128 - 128 - - - R=153 G=153 B=153 - RGB - PROCESS - 153 - 153 - 153 - - - R=179 G=179 B=179 - RGB - PROCESS - 179 - 179 - 179 - - - R=204 G=204 B=204 - RGB - PROCESS - 204 - 204 - 204 - - - R=230 G=230 B=230 - RGB - PROCESS - 230 - 230 - 230 - - - R=242 G=242 B=242 - RGB - PROCESS - 242 - 242 - 242 - - - - - - - - - Adobe PDF library 10.01 - - - Arctic Ice Studio - - - True - https://www.arcticicestudio.com - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 7 0 obj <>/Resources<>/Properties<>>>/Thumb 95 0 R/TrimBox[0.0 0.0 888.0 600.0]/Type/Page>> endobj 92 0 obj <>stream -/OC /MC0 BDC -q -0 600 888 -600 re -W n -0.298 0.337 0.416 rg -/GS0 gs -q 1 0 0 1 246.085 295.1201 cm -0 0 m --0.333 -5.037 0.522 -9.791 7.271 -9.791 c -15.112 -9.791 14.732 -4.23 14.732 0.475 c -14.732 23.145 l -16.823 23.145 l -16.823 -0.238 l -16.823 -4.23 16.966 -11.596 7.509 -11.596 c --1.664 -11.596 -2.091 -5.086 -2.091 0 c -h -f -Q -q 1 0 0 1 287.4756 297.0205 cm -0 0 m --7.271 19.2 l --7.366 19.2 l --14.922 0 l -h --6.226 21.244 m -7.176 -12.689 l -4.942 -12.689 l -0.665 -1.807 l --15.588 -1.807 l --19.913 -12.689 l --22.146 -12.689 l --8.507 21.244 l -h -f -Q -q 1 0 0 1 305.77 286.1377 cm -0 0 m -0.095 0 l -11.833 32.127 l -13.924 32.127 l -1.235 -1.807 l --1.188 -1.807 l --13.83 32.127 l --11.644 32.127 l -h -f -Q -q 1 0 0 1 338.5596 297.0205 cm -0 0 m --7.271 19.2 l --7.366 19.2 l --14.922 0 l -h --6.226 21.244 m -7.176 -12.689 l -4.943 -12.689 l -0.666 -1.807 l --15.588 -1.807 l --19.913 -12.689 l --22.146 -12.689 l --8.506 21.244 l -h -f -Q -q 1 0 0 1 370.3022 308.5693 cm -0 0 m --0.237 5.798 -4.609 8.697 -10.882 8.697 c --14.731 8.697 -20.197 7.081 -20.197 1.473 c --20.197 -3.992 -14.399 -4.895 -8.648 -6.082 c --2.851 -7.271 2.947 -8.744 2.947 -15.492 c -2.947 -22.527 -3.801 -25.045 -8.981 -25.045 c --16.918 -25.045 -23.381 -21.766 -23.286 -13.021 c --21.195 -13.021 l --21.623 -20.436 -15.682 -23.24 -8.981 -23.24 c --4.894 -23.24 0.856 -21.387 0.856 -15.492 c -0.856 -9.742 -4.942 -8.744 -10.739 -7.557 c --16.49 -6.368 -22.288 -4.99 -22.288 1.473 c --22.288 7.984 -16.253 10.503 -10.882 10.503 c --3.801 10.503 1.76 7.461 2.092 0 c -h -f -Q -q 1 0 0 1 404.5181 308.1416 cm -0 0 m --0.904 5.703 -5.894 9.125 -11.549 9.125 c --20.436 9.125 -25.616 1.854 -25.616 -6.844 c --25.616 -15.541 -20.436 -22.812 -11.549 -22.812 c --4.944 -22.812 0.189 -16.92 0.57 -10.598 c -2.661 -10.598 l -1.9 -18.678 -4.088 -24.617 -11.549 -24.617 c --21.72 -24.617 -27.707 -16.775 -27.707 -6.844 c --27.707 3.09 -21.72 10.931 -11.549 10.931 c -0.474 10.931 2.043 0.475 2.091 0 c -h -f -Q -q 1 0 0 1 425.71 301.583 cm -0 0 m -4.942 0 8.65 2.329 8.65 7.795 c -8.65 12.927 4.562 14.875 0 14.875 c --12.071 14.875 l --12.071 0 l -h --14.163 16.682 m -0 16.682 l -5.94 16.682 10.741 14.496 10.741 7.937 c -10.741 3.375 7.983 0 3.469 -0.76 c -3.469 -0.855 l -8.507 -1.426 9.743 -4.609 10.076 -8.127 c -10.408 -11.643 9.837 -15.445 11.215 -17.252 c -8.887 -17.252 l -7.604 -14.922 8.364 -11.025 7.983 -7.746 c -7.557 -4.467 5.94 -1.805 0 -1.805 c --12.071 -1.805 l --12.071 -17.252 l --14.163 -17.252 l -h -f -Q -441.484 318.265 2.092 -33.934 re -f -q 1 0 0 1 451.6553 301.251 cm -0 0 m -11.928 0 l -18.058 0 20.149 4.039 20.149 7.556 c -20.149 10.074 19.009 15.207 12.212 15.207 c -0 15.207 l -h --2.093 17.014 m -12.355 17.014 l -16.204 17.014 22.24 15.635 22.24 7.508 c -22.24 1.568 18.343 -1.807 11.595 -1.807 c -0 -1.807 l -0 -16.92 l --2.093 -16.92 l -h -f -Q -q 1 0 0 1 473.9883 316.458 cm -0 0 m -0 1.807 l -25.995 1.807 l -25.995 0 l -14.019 0 l -14.019 -32.127 l -11.928 -32.127 l -11.928 0 l -h -f -Q -q 1 0 0 1 537.666 308.5693 cm -0 0 m --0.236 5.798 -4.609 8.697 -10.883 8.697 c --14.732 8.697 -20.197 7.081 -20.197 1.473 c --20.197 -3.992 -14.399 -4.895 -8.648 -6.082 c --2.852 -7.271 2.947 -8.744 2.947 -15.492 c -2.947 -22.527 -3.801 -25.045 -8.982 -25.045 c --16.918 -25.045 -23.382 -21.766 -23.287 -13.021 c --21.195 -13.021 l --21.623 -20.436 -15.682 -23.24 -8.982 -23.24 c --4.895 -23.24 0.856 -21.387 0.856 -15.492 c -0.856 -9.742 -4.941 -8.744 -10.74 -7.557 c --16.49 -6.368 -22.289 -4.99 -22.289 1.473 c --22.289 7.984 -16.254 10.503 -10.883 10.503 c --3.801 10.503 1.759 7.461 2.092 0 c -h -f -Q -q 1 0 0 1 541.7979 316.458 cm -0 0 m -0 1.807 l -25.995 1.807 l -25.995 0 l -14.021 0 l -14.021 -32.127 l -11.929 -32.127 l -11.929 0 l -h -f -Q -q 1 0 0 1 593.0742 318.2646 cm -0 0 m -2.33 0 l --11.311 -19.723 l --11.311 -33.934 l --13.4 -33.934 l --13.4 -19.723 l --26.945 0 l --24.569 0 l --12.309 -17.965 l -h -f -Q -q 1 0 0 1 597.3965 318.2646 cm -0 0 m -2.091 0 l -2.091 -32.127 l -21.338 -32.127 l -21.338 -33.934 l -0 -33.934 l -h -f -Q -q 1 0 0 1 644.2051 286.1377 cm -0 0 m -0 -1.807 l --23.049 -1.807 l --23.049 32.127 l --0.237 32.127 l --0.237 30.32 l --20.957 30.32 l --20.957 16.729 l --1.473 16.729 l --1.473 14.924 l --20.957 14.924 l --20.957 0 l -h -f -Q -q 1 0 0 1 690.4434 300.9658 cm -0 0 m -0 -16.635 l --1.806 -16.635 l --1.806 -9.41 l --1.9 -9.41 l --3.564 -14.354 -8.744 -17.441 -14.732 -17.441 c --24.998 -17.441 -30.701 -9.6 -30.701 0.143 c --30.701 9.742 -24.903 18.106 -14.685 18.106 c --7.699 18.106 -1.76 13.877 -0.57 6.795 c --2.566 6.795 l --4.135 12.641 -8.46 16.301 -14.639 16.301 c --23.811 16.301 -28.61 8.602 -28.61 0.143 c --28.61 -8.508 -23.953 -15.637 -14.639 -15.637 c --6.559 -15.637 -1.473 -10.123 -1.806 -1.807 c --14.305 -1.807 l --14.305 0 l -h -f -Q -q 1 0 0 1 698.2812 318.2646 cm -0 0 m -0 -20.342 l -0 -24.428 0.855 -32.936 10.645 -32.936 c -18.962 -32.936 21.766 -28.039 21.766 -20.342 c -21.766 0 l -23.856 0 l -23.856 -20.342 l -23.856 -28.42 20.815 -34.74 10.645 -34.74 c --1.426 -34.74 -2.091 -24.855 -2.091 -20.342 c --2.091 0 l -h -f -Q -728.123 318.265 2.092 -33.934 re -f -q 1 0 0 1 738.293 286.1377 cm -0 0 m -9.125 0 l -15.445 0 22.621 3.469 22.621 15.208 c -22.621 29.085 13.734 30.32 8.697 30.32 c -0 30.32 l -h --2.092 32.127 m -9.029 32.127 l -21.148 32.127 24.712 23.811 24.712 15.208 c -24.712 5.607 19.817 -1.807 8.936 -1.807 c --2.092 -1.807 l -h -f -Q -q 1 0 0 1 790.9473 286.1377 cm -0 0 m -0 -1.807 l --23.051 -1.807 l --23.051 32.127 l --0.238 32.127 l --0.238 30.32 l --20.958 30.32 l --20.958 16.729 l --1.475 16.729 l --1.475 14.924 l --20.958 14.924 l --20.958 0 l -h -f -Q -0.298 0.337 0.416 RG -2 w -q 1 0 0 1 224.3535 248.0889 cm -0 0 m -586.412 0 l -S -Q -q 1 0 0 1 224.3535 351.9131 cm -0 0 m -586.412 0 l -S -Q -202.606 237.313 -125.373 125.373 re -S -q 1 0 0 1 144.5532 275.8857 cm -0 0 m -23.007 46.938 l -25.226 46.938 l -48.233 0 l -46.293 0 l -24.117 45.275 l -1.94 0 l -h -f -Q -q 1 0 0 1 133.9932 275.8857 cm -0 0 m --46.939 23.006 l --46.939 25.225 l -0 48.231 l -0 46.291 l --45.276 24.115 l -0 1.939 l -h -f -Q -EMC -Q - -endstream endobj 95 0 obj <>stream -8;Z\s>8"gr#Xp\:0,CiG*8;l'.X(0/q_BY7QfIAi3U=+BIO -Q%)AADSK*1>&:*2;5u2D;Gnn0$V+9Cm,D!,7IKd)gnUMp9D"UG+`b=>?]VOfpZD\[ -z!:W"P!<>Ui>Uf~> -endstream endobj 96 0 obj [/Indexed/DeviceRGB 255 97 0 R] endobj 97 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> -endstream endobj 90 0 obj <> endobj 98 0 obj [/View/Design] endobj 99 0 obj <>>> endobj 94 0 obj <> endobj 93 0 obj <> endobj 100 0 obj <> endobj 101 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (repository-hero.ai) -%%CreationDate: 8/15/2019 4:24 PM -%%Canvassize: 16383 -%%BoundingBox: 76 -364 811 -236 -%%HiResBoundingBox: 76.2334 -363.6865 810.7656 -236.3135 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: 0 -600 888 0 -%AI3_TemplateBox: 444.5 -300.5 444.5 -300.5 -%AI3_TileBox: 23.04 -597.6602 864.96 -2.33984 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -357 147 1 1486 903 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:44 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 102 0 obj <>stream -%%BoundingBox: 76 -364 811 -236 -%%HiResBoundingBox: 76.2334 -363.6865 810.7656 -236.3135 -%AI7_Thumbnail: 128 24 8 -%%BeginData: 4529 Hex Bytes -%0000330000660000990000CC0033000033330033660033990033CC0033FF -%0066000066330066660066990066CC0066FF009900009933009966009999 -%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 -%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 -%3333663333993333CC3333FF3366003366333366663366993366CC3366FF -%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 -%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 -%6600666600996600CC6600FF6633006633336633666633996633CC6633FF -%6666006666336666666666996666CC6666FF669900669933669966669999 -%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 -%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF -%9933009933339933669933999933CC9933FF996600996633996666996699 -%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 -%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF -%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 -%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 -%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF -%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC -%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 -%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 -%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 -%000011111111220000002200000022222222440000004400000044444444 -%550000005500000055555555770000007700000077777777880000008800 -%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB -%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF -%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF -%524C457EA8A884A8A8A884A8A8A884A8A8A884A8A8A884A87DA9FD69FF84 -%FD15FFA8FFFFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 -%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FD14FFA8AFFFFFA9FD66 -%A87EFD14FFA8A8FD69FFA8FD14FFA8FD6AFF7EFD14FFA9A8FD69FFA8FD14 -%FFA8A9FD69FF7DFD07FFA8A8A8FD05FFA8FD04FFAFA8FD51FFA8FD17FFA8 -%FD06FFA8A8A8FD05FF7D7EFD04FFA8A9FD0CFFA8FFA8FD06FFA9FFFFFFA8 -%A8A8FFFFA8A884A9FFFFA8A9A8FFA8FFA8A8A8AFA8A8A8A9A8FFFFFFA8A8 -%7EFFA8A8A8A984FD04FFA8FD04FFA8A9A8A9FD04FF7EA8A8FD07FFA8FFA8 -%A9A8FFFFFFA8A8A8FD04FF7DFD04FFA87DA8A8FD05FFA8A87EA8FD04FFA8 -%FD09FF7DFFA853A8A87EFFFFA8A8FF52FFFF84A8FF7DA8A87EA8FF7DA87D -%A8A8A87DA87D7EA8AF7DA8A87DA8FFFFFF7DA8FFA87DFFA87DA8A87DFFFF -%A87DA8FFFFA87EA8FFA8FFFFFF7DA8A8A87DFF7DFFFFFF7DFD04A8A97DFF -%7DA8A8A9A8FFFFFFA8FFFFA8A87EFD08FFA8A8FF7DFFFFFFA8AFFD09FFA8 -%FFA884A8FFA8FFFF7DFF84A884FF7DFFFFFFA8A8A8FFFFFFA8A8FFFFFFA8 -%7EA884FFFFA97EFF7EFD04FF84A8FFFFAFFFFF7EFFFFA8A9A984FFA8FFFF -%FFA8FD05FFA8A8FFFFFFAFA8A8FFFFFFA87EA9A8FFFFFF84A8FD07FF7EFF -%7DA8A8FD09FF7DFFFF84A8FFFFA8A8FD09FF7DFF7DFF7DFF7DFFFD04A8FF -%84FFFF7D847EFF7DFD05FF7DA8A87D7EA87E7EA8A87DA9FFA8A8FFFFFFA8 -%7E7DA8FFFFA8A8FFFFA87D7DFFA8A8FFFFA87D7D7E7EFFFFA8A8FFA8A8A8 -%AF7DFFFFFF7EA8A8A8FFFFA8A87D7D7D7EA8FFFFFFA8FF7EA8FD09FFA8AF -%FFFFA8A8FFFFA8FD0AFFA8A87DA87DA8FFA8A9A8AF7DA853FFFFFFA8A884 -%A8FD04FFA8A8A8A97DA8A8A87DFFA8FFFFFF7EFD07FFA8A8FFFF7EFFFFFF -%7EA8FFA9A8FFFFFF7EFFA8FFFFFF84FFFFFFFD04A8FFFFFFA87EFFA8FFFF -%FFA8A8A8FFA8FD04FF7EFFFFA87DA8FD07FF7EFD04FF7DFFFFA9A8FD05FF -%A9A8FFFF7D8484FFA87EFFA87DFF7DA8A8A87DA8FFFFFFA87DA8FFFFA87E -%7DFFFFFF7DA87EA8FD05FFA8A8FFFFFF7DFFFFFF7DFFA8A8FFFFFFA8A8FF -%84A8FFFFA8A8FD05FFA87DFFFFFF7DA87DFFFFFF7EA8A8A8FFFF7EA87EFD -%07FFA8FD04FFA8A8A8FD04FFA9A8FD05FF7EFFA8A9FD06FF7EA87DA884FF -%FFFF7DFF7DA8FFA8FFFFFFA87EA8A8A884FF7DA8A884FFA8A8FFFFA87EA8 -%A8FD05FF7DFD04FFA97DA87EA8FFFF7DFFFFFF84FFFFA87DFFA8A87DFFA8 -%A9FFFFFFA87DAFA87DA8A87EA87DFFA8A97DFF8484FFA884A9A8FD04FF7D -%FD05FFA8A87DA8FFFF7DFD06FF7EA8FFA8FD07FFA8A8A8FD07FFA8FFA8FF -%FFFFA8FFA8A8A8FFFFFFA8A8A8FFA8FFFFFFA8FFA8FD07FFA8FD04FFA984 -%A8A8FD07FFA8FFFD09A8FD04FFA87EA9A8FFFFA8A8A8FFFFFFA8A8A8FFFF -%FD05A8FFFFFFA8FD08FF7EFFA8A8FD06FFA8FFA9A9FD69FF7DFD15FFA8FD -%69FFA8FD14FFA8AFFD69FF7EFD14FFA8A8FD69FFA8FD14FFA8FD6AFF7EFD -%14FFA9A8FFFFFFA8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8 -%A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8 -%A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8 -%A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8FD14FFA8A9FFFFFFA8A8 -%A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8 -%A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8 -%A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8 -%A8A8A9A8A8A8A9A8A8A87DFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF -%A8A8A8FD68FFFF -%%EndData - -endstream endobj 103 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.0 -%%For: (virtu-win7) () -%%Title: (repository-hero.ai) -%%CreationDate: 8/15/2019 4:24 PM -%%Canvassize: 16383 -%%BoundingBox: 76 -364 811 -236 -%%HiResBoundingBox: 76.2334 -363.6865 810.7656 -236.3135 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%%DocumentFonts: HelveticaNeueLTStd-Th -%%DocumentNeededFonts: HelveticaNeueLTStd-Th -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 682 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Passermarken]) -%AI3_Cropmarks: 0 -600 888 0 -%AI3_TemplateBox: 444.5 -300.5 444.5 -300.5 -%AI3_TileBox: 23.04 -597.6602 864.96 -2.33984 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -357 147 1 1486 903 2 0 0 145 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 3 -%%PageOrigin:44 -600 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments -%%BeginProlog -%%EndProlog -%%BeginSetup -[ -39/quotesingle 96/grave 128/Euro 130/quotesinglbase/florin/quotedblbase/ellipsis -/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 145/quoteleft -/quoteright/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark -/scaron/guilsinglright/oe/dotlessi 159/Ydieresis /space 164/currency 166/brokenbar -168/dieresis/copyright/ordfeminine 172/logicalnot/hyphen/registered/macron/ring -/plusminus/twosuperior/threesuperior/acute/mu 183/periodcentered/cedilla -/onesuperior/ordmasculine 188/onequarter/onehalf/threequarters 192/Agrave -/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute -/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde -/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave -/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute -/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex -/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute -/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex -/udieresis/yacute/thorn/ydieresis -TE -%AI55J_Tsume: None -%AI3_BeginEncoding: _HelveticaNeueLTStd-Th HelveticaNeueLTStd-Th -[/_HelveticaNeueLTStd-Th/HelveticaNeueLTStd-Th 0 0 1 TZ %AI3_EndEncoding AdobeType -%AI5_Begin_NonPrinting -Np -%AI8_PluginGroupInfo -(Adobe Vectorized Object) (Nachgezeichnetes Bild) (Vectorize.aip) -%AI8_PluginGroupInfo -(Adobe Flare Plugin) (Flare) (flare.aip) -%AI8_PluginGroupInfo -(Adobe Deform Plugin) (Adobe H\374llen-Zusatzmodul) (Envelope and Warp.aip) -%AI8_PluginGroupInfo -(Adobe Planar Group) (Adobe-Zusatzmodul Interaktiv malen) (Live Paint.aip) -%AI8_PluginGroupInfo -(Adobe Perspective Plugin Group) (Adobe Perspective Plugin Group) (Perspective.aip) -%AI8_PluginGroupInfo -(Adobe Path Blends) (Adobe Angleichungen-Zusatzmodul) (Live Blends.aip) -%AI8_PluginGroupInfo -(Adobe Symbolism) (Adobe Symbolism) (Symbolism.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Musterpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Bildpinsel-Zusatzmodul) (ArtOnPath.aip) -%AI8_PluginGroupInfo -(Adobe Calligraphic Brush Tool) (Adobe Kalligrafiepinsel-Zusatzmodul) (Calligraphic Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Spezialpinsel-Zusatzmodul) (Scatter Brush Tool.aip) -%AI8_PluginGroupInfo -(Adobe Pattern Editor Plugin Group) (Adobe Pattern Editor Plugin Group) (Swatch Libraries.aip) -%AI8_PluginGroupInfo -(Pathfinder Suite) (Adobe Zusammengesetzte Form) (PathFinder Suite.aip) -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -9 Bn -%AI5_BeginGradient: (Blauer Himmel) -(Blauer Himmel) 0 2 Bd -[ -0.591974 -0 -0.148531 -0 -0.239216 -0.870588 -0.929412 -4 %_Br -[ -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 0 6 50 100 Bs -0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 %_BS -%_0.591974 0 0.148531 0 0.239216 0.870588 0.929412 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Goldstaub) -(Goldstaub) 0 4 Bd -[ -< -21202121222122222323222323242324242524242525252526262626272727272728282929292929 -2A2A2A2A2B2B2B2B2B2B2B2C2C2C2C2D2D2D2D2D2E2E2F2F30303030303131313132313232323232 -333333333434 -> -< -2D2F30313234343637393B3C3D3E4041434345464749494B4C4D4E4F50525354555658595B5C5D5E -5F616164656768696B6B6D6E6F70727374767778797A7B7D7E8081828384858688888A8B8D8E8F91 -919394959698 -> -< -F4F4F4F5F5F5F5F5F6F6F6F7F7F7F7F7F8F8F8F9F9F9FAFAFAFBFBFBFBFBFCFCFCFCFDFDFEFEFEFE -FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF -FFFFFFFFFFFF -> -< -030404040404050506060606060707070708080808080808090909090A0A0A0B0B0B0B0C0C0D0D0D -0D0D0E0E0E0E0F0F0F0F0F1010101011111011111211121213131414141515161616161717171717 -181819191A19 -> -< -E5E5E4E4E3E3E2E2E1E1E1E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D8D8D8D7D7D6D6D5D5D4D4D4 -D3D3D2D2D1D1D0D0D0CFCFCECECDCDCCCCCCCBCBCACAC9C9C8C8C7C7C7C6C6C5C5C4C4C3C3C3C2C2 -C1C1C0C0BFBF -> -< -C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E -9D9C9B999897969594939291908F8E8D8C8B8A898887868584838281807F7E7D7C7B7A7978777675 -74737271706F -> -0 -4 %_Br -< -171717181818181818181919191A1A1A1A1B1B1B1B1B1C1C1D1D1D1D1D1D1E1E1E1F1F20202021 -> -< -69686765646261605E5D5B5A5856555352514F4C4B4948464543413F3E3C3A3837353332302F2D -> -< -FAFAFAFAFAFAF9FAFAFAFAF9F9F9F9F9F8F8F8F7F7F6F6F6F6F6F6F6F5F5F5F4F5F5F4F4F4F4F4 -> -< -030303030303030303030303030404040404040404040404040404040404040404040404040403 -> -0.898039 -< -9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5 -> -< -030303030303030202020202020202020202020201010101010101010101010100000000000000 -> -4 %_Br -< -00000000000000000000000000000000000000000000000000000000000000000000000102040406 -060808090A0C0E0E0F0F1111131414151517 -> -< -A5A5A5A4A4A3A3A3A3A2A1A0A09F9E9E9D9B9B9A99989796959594939191908F8E8C8B8B89888685 -848281817F7D7C7A7978767472706F6D6B69 -> -< -F0F0F0F1F1F1F1F1F1F1F2F2F2F3F3F3F4F4F4F4F4F5F5F6F6F6F7F7F7F8F8F9F9FAFAFAFAFAFAFA -FAFBFBFBFBFCFCFCFCFCFCFBFBFBFBFBFAFA -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -000000000000010101010101010102020203 -> -< -FFFFFFFEFEFEFEFDFDFDFCFCFCFBFBFBFAFAF9F9F9F8F8F7F7F6F6F5F5F4F4F3F3F2F2F1F1F0F0EF -EFEEEEEDEDECEBEBEAEAE9E9E8E7E7E6E6E5 -> -< -73737374747575767677777878797A7A7B7C7C7D7E7E7F808181828384848586878889898A8B8C8D -8E8F90909192939495969798999A9B9C9D9E -> -< -00000000000000000000000000000001010101010101010101010101010101010101020202020202 -020202020202020202020303030303030303 -> -4 %_Br -[ -0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 %_BS -%_0.202823 0.594781 1 0.099977 0.74902 0.435294 0 2 1 6 50 99.4382 Bs -0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 %_BS -%_0.12842 0.177859 0.957183 0.013581 0.898039 0.772549 0 2 1 6 50 86.5168 Bs -0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 %_BS -%_0.090089 0.413703 0.981842 0.01062 0.898039 0.619608 0.011765 2 1 6 50 55.211 Bs -0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 %_BS -%_0 0.648035 0.942992 0 1 0.45098 0 2 1 6 59.5506 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 1) -(Unnamed gradient 1) 0 2 Bd -[ -< -0000010304050608090B0C0D0F10111213141718191A1B1C1E1F21222324252728292A -> -< -00000102030405060708090A0A0B0C0C0D0E1011111213141516171819191A1B1B1C1D -> -< -000001020304050708090A0B0C0D0E0F101112131415161718191A1B1C1C1D1E1F2021 -> -< -0000000000000000000000000000000000000000000000000000000000000000000000 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDC -> -4 %_Br -[ -0.81 0 1 6 50 100 %_BS -%_0.81 0 1 6 50 100 Bs -1 0 1 6 50 0 %_BS -%_1 0 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 17) -(Unnamed gradient 17) 1 2 Bd -[ -< -26252423222121201E1D1B1A191716151413131211100F0D0C0B09080605050403010000 -> -< -1F1E1D1D1C1B1A19181716151413131211100F0E0D0C0C0B0A0A09070605040302010000 -> -< -2120201F1E1D1C1C1B1A1817161615141312100F0F0E0D0C0B0A09080605040302010000 -> -< -000000000000000000000000000000000000000000000000000000000000000000000000 -> -< -DFE0E1E2E3E4E4E5E6E7E8E9EAEBECEDEEEFEFF0F1F2F3F4F5F6F7F8F9FAFAFBFCFDFEFF -> -< -DCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -< -DBDCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -4 %_Br -[ -0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 %_BS -%_0.150576 0.121614 0.130159 0.000183 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 Bs -0 0 0 0 1 1 1 2 0 6 50 100 %_BS -%_0 0 0 0 1 1 1 2 0 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 2) -(Unnamed gradient 2) 0 2 Bd -[ -< -B7B8B8B9B9BABBBBBCBDBDBEBEBFC0C0C1C1C2C2C3C3C4C4C5C6C6C7C7C7C8C8C9CACACBCBCCCCCD -CDCECECFCFD0D1D1D2D2D3D3D4D4D5D5D6D6D7D7D8D8D9D9DA -> -< -515251535253555455575657575859595A5C5B5C5B5D5E5D5F605F61606163626364636564656766 -6869686A696B6C6B6D6E6D6F6E6F7170727373747475777678 -> -0 -0 -0 -< -9D9C9C9B9B9A999998979796969594949392929191908F8F8E8D8D8C8C8B8A8A8988888787868585 -84838382828180807F7E7E7D7D7C7B7B7A7979787877767675 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDDDCDBDAD9D8D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBE -> -4 %_Br -[ -0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 %_BS -%_0.854643 0.468879 0 0 0 0.458824 0.745098 2 1 6 50 100 Bs -0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 %_BS -%_0.717464 0.316075 0 0 0 0.615686 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 28) -(Unnamed gradient 28) 1 2 Bd -[ -< -0000010304050608090A0C0D0F10111314151617181A1B1C1D1E1F20212324262728292A2B2D2E30 -31323335363738393A3C3D3E404142434445464748494A4B4C4D4E4F5051525354565758595A -> -< -00000100010203040504060708090908090A0B0C0C0C0D0D0E0F100F101112131413141516171816 -1718191A1B1A1B1C1D1E1F1E1F20212223222324252627262728292A2B2A2B2C2D2E2F2E2F30 -> -< -0000000103040304050707080909090B0C0B0C0D0E0E0F100F10111312131415151717171818191A -1B1B1C1C1C1E1D1E1F20202122232223242425252625262829282829282A2B2C2B2D2E2F2F2F -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000001000101010101010202020202020203030303030404 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1 -> -< -FFFEFDFDFCFBFAF9F8F8F7F6F5F4F3F3F2F1F0EFEEEEEDECEBEAE9E9E8E7E6E5E4E4E3E2E1E0DFDF -DEDDDCDBDADAD9D8D7D6D5D5D4D3D2D1D0D0CFCECDCCCBCBCAC9C8C7C6C6C5C4C3C2C1C1C0BF -> -< -FFFEFEFDFCFBFBFAF9F8F8F7F6F6F5F4F3F3F2F1F0F0EFEEEEEDECEBEBEAE9E8E8E7E6E6E5E4E3E3 -E2E1E0E0DFDEDEDDDCDBDBDAD9D8D8D7D6D6D5D4D3D3D2D1D0D0CFCECECDCCCBCBCAC9C8C8C7 -> -4 %_Br -[ -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 %_BS -%_0.35288 0.187259 0.186221 0.014984 0.694118 0.74902 0.780392 2 1 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 3) -(Unnamed gradient 3) 0 2 Bd -[ -< -2C2D2E2F303132333435363738393B3C3D3E3F4142434445464748494A4B4C4D4F50505152535454 -5556575858595A5B5C5D5E5F606162636364656667686969 -> -< -00000000000000000000000000000000000000000000000001000000000100000000000000010000 -010002010002010201000201020101030204040305040606 -> -0 -0 -< -DAD9D8D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBB9B8B7B6B5B4B3B2 -B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A -> -< -F1F1F0F0EFEFEFEEEEEDEDEDECECEBEBEBEAEAE9E9E9E8E8E7E7E7E6E6E5E5E5E4E4E4E3E3E2E2E2 -E1E1E0E0E0DFDFDEDEDEDDDDDCDCDCDBDBDADADAD9D9D8D8 -> -1 -4 %_Br -[ -0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 %_BS -%_0.413245 0.021576 0 0 0.603922 0.847059 1 2 1 6 50 100 Bs -0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 %_BS -%_0.17142 0 0 0 0.854902 0.945098 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 7) -(Unnamed gradient 7) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Weiß, Schwarz) -(Weiß, Schwarz) 0 2 Bd -[ -< -0000010304050608090B0C0D0F1011121314151718191A1B1C1E1F21222324252728292A2B2C2D2E -2F3031323435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F5050515253545556 -5758595A5B5C5D5D5E5F5F6061626263646565666768696A6A6B6C6E6F7070717273747475767777 -78797A7A7B7C7D7E7E7F808181828383848585868687888889898A8B8B8C8D8D8E8F8F9090919292 -93949495959697979899999A9B9B9C9C9D9E9E9F9FA0A1A2A2A3A4A5A5A6A7A8A8A9AAAAABABACAD -ADAEAFB0B0B1B1B2B3B4B4B5B6B6B7B8B9B9BABBBCBDBDBEBFBFC0C1C1C2C3C4C5C6C7C8C9C9CACC -CED0D1D2D4D5D7D8DADCDEE0E3E5E7E9 -> -< -00000102030405060708090A0A0B0C0C0D0E0F1011111213141516171819191A1B1B1C1D1E1F2020 -2122232425262728292A2B2C2C2D2E2E2F303131323334353637373839393A3B3C3C3D3E3E3F4041 -424243444546474748494A4B4B4C4D4D4E4E4F4F505152525354555657575859595A5B5B5C5C5D5D -5E5F5F60616162636364656667676869696A6A6B6C6C6D6E6E6F6F70707172727374747576767778 -79797A7B7C7C7D7E7F7F80808182828384858586878888898A8A8B8C8C8D8E8E8F90919192939494 -959697979898999A9B9B9C9D9D9E9FA0A0A1A2A3A3A4A5A6A6A7A7A8A9AAABACADAEAFB0B1B1B2B3 -B5B6B7B8B9BABCBDBEC0C1C3C4C6C7C9 -> -< -000001020304050708090A0B0C0D0E0F10111112131415161718191A1B1C1C1D1E1F202121222323 -2425262728292A2B2C2D2D2E2F2F3031323233343536373738393A3B3B3C3D3D3E3F404041424243 -44444546464748494A4A4B4C4D4D4E4E4F505051515253535454555657575859595A5B5B5C5C5D5D -5E5F5F606161626263636465656667676869696A6A6B6C6C6D6D6E6F6F7070717272737474757676 -777778787879797A7B7B7C7D7D7E7E7F7F80808181828283838485858687878888898A8A8B8C8C8D -8D8E8E8E8F8F8F909091919293939494959596969798989999999A9A9B9B9B9B9C9C9C9C9C9D9D9D -9D9D9D9D9D9D9D9D9E9E9E9E9E9E9E9E -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000001 -01010101010101020202020202030303040404050506060607070808080909090A0A0A0B0B0C0C0D -0D0E0F0F1011121213131414151616171819191A1B1B1C1D1E1E1F202122232425262728292A2B2C -2D2E2E2F3031323435363738393A3B3D3E3F40414344454647494A4B4C4E4F505253555658595B5C -5E5F6162646567686A6B6D6F7072737577787A7B7D7F8082848688898B8D8F91939496989A9C9E9F -A1A3A5A6A7A9AAACAEB0B2B3B5B7B9BBBDBFC1C3C5C7C9CACBCDCED0D1D3D5D7D9DADCDEDFE1E2E4 -E5E7E8E9E9EBECEDEEF0F1F3F4F6F7F9 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 %_BS -%_0.912474 0.787625 0.619837 0.97467 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI3_BeginPattern: (Jive) -(Jive) 47.5615 109.6396 155.9004 219.2813 -%_0 A -%_0 Xw -%_u -%_0 1 0 0 0 Xy -%_0 J 0 j 1 w 10 M []0 d %_0 XR -%_47.5615 219.2813 m -%_155.9004 219.2813 L -%_155.9004 109.6396 L -%_47.5615 109.6396 L -%_47.5615 219.2813 L -%_n -%_/ArtDictionary : -%_1 /Bool (AIPattern_Editor_Backing_Tile_Rect) , -%_; -%_ -%_u -%_*u -%_1 D -%_0 O -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_135.0352 74.9453 m -%_135.0566 75.0645 135.1602 75.1504 135.2813 75.1523 c -%_148.1875 75.2871 160.0352 78.4199 169.2529 86.667 C -%_161.2227 81.1094 146.3105 79.1563 137.7256 83.0488 c -%_137.6152 83.0986 137.5566 83.2188 137.584 83.3369 c -%_137.6104 83.4551 137.7168 83.5371 137.8379 83.5332 c -%_148.5176 83.2441 157.1172 86.54 163.8223 92.498 C -%_156.9531 92.9199 151.248 97.2383 151.2656 102.3428 c -%_151.2656 102.4619 151.3496 102.5645 151.4668 102.5898 c -%_151.583 102.6152 151.7012 102.5547 151.75 102.4463 c -%_152.8711 99.957 156.498 98.666 160.333 99.5664 c -%_164.5127 100.5469 167.333 103.7559 166.6338 106.7314 c -%_166.1621 108.7461 164.1973 110.1348 161.6816 110.5186 c -%_161.5547 110.5371 161.4619 110.6484 161.4648 110.7764 c -%_161.4688 110.9043 161.5674 111.0098 161.6953 111.0215 c -%_162.7637 111.124 163.875 111.1279 165.0127 111.0195 c -%_171.5029 110.4023 176.5264 106.4238 176.9619 101.8418 C -%_181.6748 102.3887 185.8467 104.998 187.3408 108.6152 c -%_187.3857 108.7236 187.501 108.7871 187.6162 108.7695 c -%_187.7314 108.75 187.8193 108.6553 187.8291 108.5391 c -%_188.2061 103.7871 186.5713 100.7002 182.8584 97.6846 C -%_188.2432 99.7441 194.3027 99.8496 200.1133 97.1465 c -%_200.2188 97.0977 200.2773 96.9824 200.2559 96.8672 c -%_200.2324 96.752 200.1328 96.668 200.0156 96.6641 c -%_195.1367 96.4736 191.5996 94.9082 188.2861 91.5918 C -%_206.5391 96.7256 221.3711 85.3906 216.2383 68.5391 c -%_216.2031 68.4238 216.0918 68.3486 215.9707 68.3613 c -%_215.8496 68.373 215.7539 68.4688 215.7441 68.5898 c -%_214.8262 78.3037 208.041 84.7051 197.8828 85.666 C -%_203.2695 83.6055 208.8828 78.6895 209.4395 70.1318 c -%_209.4473 70.0098 209.3672 69.8984 209.248 69.8691 c -%_209.1289 69.8398 209.0059 69.8984 208.9551 70.0098 c -%_206.1563 76.1641 200.6582 79.2754 194.7949 79.8223 C -%_201.1289 77.2422 205.1914 71.2207 206.3652 63.4023 c -%_206.3848 63.2793 206.3105 63.1602 206.1914 63.123 c -%_206.0742 63.084 205.9453 63.1387 205.8887 63.248 c -%_202.0234 70.8311 193.7324 76.042 183.4424 72.0605 c -%_172.8252 67.9512 168.168 55.6738 167.1387 47.0195 c -%_167.124 46.8984 167.0234 46.8047 166.9004 46.7969 c -%_166.7783 46.7891 166.668 46.8711 166.6396 46.9922 c -%_162.9199 62.6797 170.2227 78.9414 183.2764 85.832 C -%_176.1807 83.8291 169.8369 79.5723 166.249 72.4775 C -%_157.9551 71.459 152.2451 68.6152 149.3916 63.2383 c -%_149.335 63.1309 149.2109 63.0781 149.0957 63.1133 c -%_148.9805 63.1465 148.9043 63.2578 148.9141 63.3789 c -%_149.0967 65.4883 149.8555 69.709 152.9883 71.6494 C -%_146.0234 71.6387 140.4824 72.543 135.1895 74.6621 c -%_135.0781 74.708 135.0127 74.8262 135.0352 74.9453 c -%_f -%_0 D -%_164.5215 21.4746 m -%_164.4229 21.541 164.293 21.5293 164.2061 21.4492 c -%_164.1201 21.3672 164.1016 21.2383 164.1602 21.1367 c -%_165.7803 18.3398 164.3008 14.3223 161.1094 14.3223 c -%_155.3887 14.3223 152.6387 25.0918 153.5137 34.916 C -%_155.6768 29.1602 157.5469 26.8613 160.8613 24.1211 c -%_160.9551 24.043 161.0898 24.043 161.1836 24.1191 c -%_161.2773 24.1973 161.3047 24.3281 161.2471 24.4355 c -%_156.3906 33.5156 155.3496 40.502 155.3496 48.5215 C -%_156.8125 42.5625 158.5449 39.1992 163.4766 34.1406 c -%_163.5625 34.0527 163.6992 34.0391 163.8018 34.1074 c -%_163.9033 34.1777 163.9404 34.3105 163.8887 34.4238 c -%_158.5908 46.0137 158.9951 58.8711 162.9414 68.6875 c -%_162.9805 68.7852 162.9561 68.8965 162.8789 68.9688 c -%_162.8018 69.0391 162.6895 69.0566 162.5938 69.0098 c -%_157.3887 66.459 154.3301 64.7832 149.8418 58.6211 C -%_151.1992 51.2227 150.0703 47.5723 146.6699 41.4258 C -%_150.6074 51.3438 148.5117 65.3203 138.4824 71.0176 c -%_138.373 71.0791 138.2344 71.0518 138.1582 70.9531 c -%_138.0801 70.8535 138.0869 70.7119 138.1738 70.6211 c -%_141.9551 66.666 144.7051 59.9863 142.3301 52.6934 C -%_143.8594 63.082 134.7344 71.8086 124.5508 71.8086 c -%_114.9512 71.8086 108.4004 64.2988 108.9414 56.8672 c -%_109.4785 49.502 114.3848 45.8984 118.6133 44.3691 c -%_118.7246 44.3301 118.8496 44.3711 118.9131 44.4707 c -%_118.9766 44.5723 118.9629 44.7012 118.8799 44.7871 c -%_113.2695 50.4785 112.502 61.2793 122.4629 64.5469 C -%_116.6035 59.4902 118.7734 47.7168 128.1523 46.8223 c -%_128.2695 46.8105 128.3789 46.8809 128.417 46.9922 c -%_128.4551 47.1035 128.4121 47.2266 128.3135 47.2891 c -%_126.3047 48.5664 124.6348 51.0605 124.6348 53.8633 c -%_124.6348 58.5371 128.0566 60.373 130.3105 60.373 c -%_133.7324 60.373 136.5703 57.1172 136.5703 52.1934 c -%_136.5703 46.3496 131.3105 41.5098 124.5508 40.7578 c -%_117.9248 40.0234 111.7686 42.9121 108.8008 47.2168 c -%_108.7314 47.3184 108.5996 47.3555 108.4873 47.3047 c -%_108.375 47.2539 108.3164 47.1289 108.3467 47.0098 c -%_111.3652 35.3066 125.1426 30.1328 135.2344 37.5039 C -%_128.6211 30.002 118.2285 29.8984 109.5127 37.5898 c -%_109.4219 37.6699 109.2871 37.6738 109.1904 37.5996 c -%_109.0938 37.5273 109.0635 37.3945 109.1172 37.2871 c -%_111.7842 31.8789 118.3701 25.4668 127.7227 26.4023 c -%_136.2793 27.2578 141.2441 35.416 142.2461 42.0938 C -%_142.8027 33.5723 140.8525 27.5566 133.4922 21.9473 c -%_133.3955 21.873 133.3652 21.7402 133.4199 21.6309 c -%_133.4746 21.5234 133.5996 21.4688 133.7168 21.502 c -%_140.502 23.4629 145.9473 26.9277 148.7656 34.0469 C -%_148.7656 27.8848 146.627 21.6738 141.2402 17.5352 c -%_141.1426 17.4609 141.1133 17.3301 141.168 17.2207 c -%_141.2227 17.1113 141.3467 17.0566 141.4639 17.0898 c -%_144.917 18.0742 147.6348 19.5781 149.6016 22.2754 C -%_150.9121 11.1758 156.123 4.58398 162.127 4.58398 c -%_166.252 4.58398 169.332 7.61719 169.332 12.4551 c -%_169.332 15.2852 167.8438 19.2578 164.5215 21.4746 c -%_f -%_263.748 113.0938 m -%_260.5859 116.998 254.209 118.4863 247.3164 117.082 C -%_247.8262 121.3828 246.9824 125.873 245.7051 128.5664 c -%_245.6523 128.6758 245.5313 128.7334 245.4141 128.7051 c -%_245.2969 128.6758 245.2168 128.5684 245.2207 128.4473 c -%_245.5957 119.6807 240.5977 112.6035 231.7715 109.5371 C -%_238.6777 114.293 240.6973 123.7305 237.4102 128.6035 c -%_237.3418 128.7021 237.2148 128.7412 237.1035 128.6953 c -%_236.9922 128.6504 236.9277 128.5332 236.9492 128.416 c -%_237.3223 126.3555 236.3438 123.7314 234.2363 121.6895 c -%_231.3301 118.875 227.3867 118.2363 225.4258 120.2598 c -%_223.4648 122.2852 224.2285 126.207 227.1328 129.0215 c -%_228.1934 130.0488 229.3926 130.7832 230.582 131.2061 c -%_230.6953 131.2461 230.7637 131.3594 230.748 131.4775 c -%_230.7344 131.5967 230.6387 131.6885 230.5195 131.6982 c -%_224.1309 132.2529 219.75 128.4463 217.0039 123.8203 c -%_214.209 119.1152 209.4336 115.4102 203.793 116.1504 c -%_203.6738 116.166 203.5605 116.0957 203.5195 115.9824 c -%_203.4805 115.8691 203.5254 115.7422 203.6289 115.6807 c -%_206.4258 113.9961 209.5 113.2969 213.4922 114.6289 C -%_207.6973 109.7197 199.4453 106.8867 191.6523 109.4014 c -%_191.543 109.4375 191.4238 109.3945 191.3613 109.2979 c -%_191.2988 109.2012 191.3105 109.0752 191.3867 108.9902 c -%_197.2949 102.4258 209.0762 102.2949 216.4961 107.6172 C -%_213.459 103.3008 209.4277 100.1328 202.2031 99.1387 c -%_202.0879 99.123 201.998 99.0313 201.9844 98.916 c -%_201.9727 98.7998 202.0391 98.6904 202.1484 98.6504 c -%_210.4395 95.5723 218.748 98.6953 225.5938 106.8652 C -%_222.6016 100.4883 217.6875 95.3809 210.8262 92.8535 c -%_210.7109 92.8115 210.6426 92.6934 210.6641 92.5742 c -%_210.6836 92.4531 210.7871 92.3643 210.9082 92.3613 c -%_214.8516 92.2803 218.3945 93.2188 223.1738 95.9316 C -%_219.666 90.2422 220.4336 80.293 225.543 73.6738 c -%_225.6133 73.582 225.7383 73.5498 225.8457 73.5957 c -%_225.9512 73.6426 226.0137 73.7549 225.9941 73.8691 c -%_224.8145 81.0703 227.293 89.1992 231.6035 93.5117 C -%_229.4512 85.8799 231.5977 78.9355 237.5 73.8672 c -%_237.5703 73.8066 237.6699 73.79 237.7559 73.8232 c -%_237.8438 73.8564 237.9043 73.9355 237.918 74.0273 c -%_239.1523 83.4453 249.6875 93.002 258.5195 93.8027 c -%_258.6445 93.8135 258.7422 93.9141 258.75 94.0381 c -%_258.7578 94.1621 258.6758 94.2754 258.5527 94.3027 c -%_254.2734 95.2715 249.8613 94.793 246.1641 93.2715 C -%_248.8242 96.2051 252.1035 98.3828 255.7188 99.5176 c -%_255.8359 99.5537 255.9082 99.668 255.8945 99.7891 c -%_255.8809 99.9102 255.7813 100.0039 255.6602 100.0127 c -%_251.1504 100.3242 246.7363 99.0068 242.9297 96.4746 C -%_247.291 103.0957 253.9102 108.0195 262.3574 109.9805 c -%_262.4785 110.0088 262.5605 110.1191 262.5547 110.2432 c -%_262.5469 110.3672 262.4512 110.4668 262.3281 110.4805 c -%_250.4102 111.7822 240.582 107.1621 234.1074 98.5625 C -%_235.7559 103.4629 240.4727 108.3184 247.0527 111.1816 c -%_252.8984 113.7266 258.9023 114.1279 263.4746 112.6914 c -%_263.5801 112.6582 263.6973 112.6982 263.7598 112.791 c -%_263.8223 112.8828 263.8184 113.0059 263.748 113.0938 c -%_f -%_210.8438 37.5215 m -%_215.6504 48.0078 215.3086 56.207 211.4375 66.5762 c -%_211.3926 66.6934 211.2715 66.7607 211.1484 66.7363 c -%_211.0254 66.7109 210.9395 66.5996 210.9453 66.4746 c -%_211.5664 53.8535 208.1191 44.8203 200.6465 38.668 C -%_208.8965 48.5195 205 68.2275 191.8242 68.2275 c -%_182.2393 68.2275 174.3086 60.252 172.3691 50.7031 c -%_172.3447 50.582 172.4111 50.459 172.5273 50.416 c -%_172.6426 50.3711 172.7734 50.416 172.8359 50.5215 c -%_175.6787 55.2832 180.2451 58.373 185.2939 58.373 c -%_193.4277 58.373 195.834 51.9063 195.834 47.375 c -%_195.834 41.1875 190.9082 36.0313 187.1279 36.0313 c -%_183.6904 36.0313 182.0869 38.8555 182.0869 40.959 c -%_182.0869 44.8574 185.085 48.125 188.4639 49.123 c -%_188.583 49.1582 188.6611 49.2773 188.6436 49.4023 c -%_188.624 49.5273 188.5186 49.6191 188.3936 49.6211 c -%_184.2861 49.6465 180.8154 47.7656 178.7627 44.0527 C -%_178.4932 46.9277 178.4902 48.7383 179.4033 51.7754 c -%_179.4385 51.8926 179.3848 52.0176 179.2773 52.0742 c -%_179.168 52.1309 179.0352 52.1016 178.9609 52.0059 c -%_171.6045 42.6133 175.125 26.3809 180.9404 19.6484 C -%_175.4082 23.6309 170.5234 32.2813 170.6006 44.041 c -%_170.6016 44.1641 170.5156 44.2676 170.3955 44.291 c -%_170.2754 44.3164 170.1563 44.25 170.1113 44.1367 c -%_166.0029 33.8848 168.1826 14.8887 179.3926 4.28516 C -%_176.5088 3.88867 173.5254 3.93945 170.2676 4.97852 c -%_170.1523 5.01367 170.0273 4.96484 169.9688 4.85938 c -%_169.9102 4.75195 169.9336 4.61914 170.0273 4.54102 c -%_174.1191 1.08594 179.8418 0 185.2939 0 C -%_180.5967 5.5 182.1572 16.5547 189.6494 16.5547 c -%_194.9961 16.5547 197.4238 8.25586 193.2949 3.77344 c -%_193.2168 3.6875 193.207 3.55859 193.2695 3.46289 c -%_193.334 3.36523 193.4551 3.32227 193.5664 3.36133 c -%_198.3457 5.01563 203.5117 9.15039 203.5117 14.377 c -%_203.5117 19.4199 198.6992 23.7715 191.7109 23.4277 C -%_200.5293 25.9336 209.7617 23.1602 214.5918 17.1758 c -%_214.666 17.082 214.7969 17.0547 214.9023 17.1074 c -%_215.0098 17.1621 215.0645 17.2832 215.0352 17.3984 c -%_212.2441 28.1152 203.0684 32.5977 191.5957 31.1055 C -%_200.877 34.8613 214.8457 31.5859 221.0195 23.7949 c -%_221.0918 23.7031 221.2188 23.6738 221.3262 23.7227 c -%_221.4316 23.7734 221.4902 23.8906 221.4668 24.0039 c -%_220.0957 30.6191 216.6035 35.5664 210.8438 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 56.8086 m -%_237.2051 56.6895 237.1016 56.6016 236.9805 56.6016 c -%_224.0742 56.4648 212.2266 53.334 203.0098 45.0859 C -%_211.0391 50.6445 225.9512 52.5957 234.5371 48.7051 c -%_234.6465 48.6543 234.7051 48.5332 234.6777 48.416 c -%_234.6523 48.2988 234.5449 48.2168 234.4238 48.2188 c -%_223.7441 48.5098 215.1445 45.2129 208.4395 39.2559 C -%_215.3086 38.832 221.0137 34.5156 220.9961 29.4102 c -%_220.9961 29.291 220.9121 29.1875 220.7949 29.1621 c -%_220.6797 29.1387 220.5605 29.1973 220.5117 29.3066 c -%_219.3906 31.7949 215.7637 33.0879 211.9297 32.1875 c -%_207.75 31.2051 204.9297 27.998 205.6289 25.0215 c -%_206.0996 23.0078 208.0645 21.6191 210.5801 21.2344 c -%_210.707 21.2148 210.8008 21.1055 210.7969 20.9766 c -%_210.793 20.8496 210.6953 20.7441 210.5664 20.7305 c -%_209.498 20.6289 208.3867 20.625 207.25 20.7344 c -%_200.7598 21.3516 195.7363 25.3281 195.3008 29.9121 C -%_190.5889 29.3652 186.417 26.7539 184.9229 23.1387 c -%_184.8779 23.0293 184.7646 22.9668 184.6475 22.9844 c -%_184.5322 23.002 184.4443 23.0977 184.4346 23.2148 c -%_184.0576 27.9648 185.6924 31.0527 189.4053 34.0684 C -%_184.0205 32.0098 177.959 31.9043 172.1484 34.6055 c -%_172.043 34.6563 171.9844 34.7715 172.0059 34.8867 c -%_172.0293 35.002 172.1289 35.0859 172.2461 35.0898 c -%_177.125 35.2793 180.6631 36.8457 183.9795 40.1621 C -%_165.7227 35.0273 150.8906 46.3633 156.0234 63.2129 c -%_156.0586 63.3301 156.1699 63.4043 156.291 63.3926 c -%_156.4121 63.3809 156.5078 63.2852 156.5176 63.1641 c -%_157.4355 53.4492 164.2207 47.0469 174.3789 46.0879 C -%_168.9922 48.1465 163.3789 53.0625 162.8223 61.6211 c -%_162.8145 61.7441 162.8945 61.8535 163.0137 61.8848 c -%_163.1328 61.9141 163.2559 61.8535 163.3066 61.7422 c -%_166.1055 55.5879 171.6035 52.4785 177.4668 51.9297 C -%_171.1328 54.5117 167.0703 60.5332 165.8965 68.3516 c -%_165.877 68.4746 165.9512 68.5918 166.0703 68.6309 c -%_166.1875 68.668 166.3164 68.6152 166.373 68.5039 c -%_170.2383 60.9219 178.5293 55.7109 188.8213 59.6934 c -%_199.4375 63.8027 204.0938 76.0781 205.123 84.7324 c -%_205.1387 84.8555 205.2383 84.9492 205.3613 84.957 c -%_205.4844 84.9629 205.5938 84.8809 205.623 84.7617 c -%_209.3418 69.0723 202.0391 52.8125 188.9873 45.9219 C -%_196.082 47.9238 202.4258 52.1816 206.0137 59.2754 C -%_214.3066 60.293 220.0176 63.1387 222.8711 68.5156 c -%_222.9277 68.6211 223.0508 68.6738 223.166 68.6406 c -%_223.2813 68.6055 223.3574 68.4941 223.3477 68.375 c -%_223.166 66.2656 222.4063 62.0449 219.2734 60.1035 C -%_226.2383 60.1152 231.7793 59.2109 237.0723 57.0898 c -%_237.1836 57.0449 237.25 56.9277 237.2266 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 110.2773 m -%_207.8398 110.2129 207.9688 110.2227 208.0566 110.3047 c -%_208.1426 110.3848 208.1602 110.5137 208.1016 110.6172 c -%_206.4824 113.4141 207.9609 117.4297 211.1523 117.4297 c -%_216.873 117.4297 219.623 106.6602 218.748 96.8379 C -%_216.5859 102.5918 214.7148 104.8926 211.4004 107.6328 c -%_211.3066 107.709 211.1719 107.7109 211.0781 107.6328 c -%_210.9844 107.5566 210.957 107.4238 211.0156 107.3164 c -%_215.8711 98.2383 216.9121 91.252 216.9121 83.2324 C -%_215.4492 89.1895 213.7168 92.5527 208.7852 97.6133 c -%_208.6992 97.7012 208.5625 97.7148 208.4609 97.6445 c -%_208.3594 97.5742 208.3223 97.4414 208.373 97.3301 c -%_213.6719 85.7383 213.2676 72.8828 209.3203 63.0664 c -%_209.2813 62.9688 209.3066 62.8574 209.3828 62.7852 c -%_209.4609 62.7129 209.5723 62.6973 209.668 62.7422 c -%_214.873 65.293 217.9316 66.9688 222.4199 73.1328 C -%_221.0625 80.5313 222.1914 84.1797 225.5918 90.3262 C -%_221.6543 80.4102 223.75 66.4336 233.7793 60.7363 c -%_233.8887 60.6738 234.0273 60.7012 234.1035 60.8008 c -%_234.1816 60.9004 234.1758 61.041 234.0879 61.1328 c -%_230.3066 65.0879 227.5566 71.7676 229.9316 79.0586 C -%_228.4023 68.6699 237.5273 59.9453 247.7109 59.9453 c -%_257.3105 59.9453 263.8613 67.4531 263.3203 74.8848 c -%_262.7832 82.25 257.877 85.8555 253.6484 87.3828 c -%_253.5371 87.4238 253.4121 87.3809 253.3496 87.2813 c -%_253.2852 87.1816 253.2988 87.0508 253.3828 86.9668 c -%_258.9922 81.2734 259.7598 70.4746 249.7988 67.207 C -%_255.6582 72.2637 253.4883 84.0352 244.1094 84.9316 c -%_243.9922 84.9414 243.8828 84.8711 243.8457 84.7598 c -%_243.8066 84.6504 243.8496 84.5273 243.9492 84.4648 c -%_245.957 83.1855 247.627 80.6934 247.627 77.8906 c -%_247.627 73.2168 244.2051 71.3789 241.9512 71.3789 c -%_238.5293 71.3789 235.6914 74.6348 235.6914 79.5605 c -%_235.6914 85.4023 240.9512 90.2441 247.7109 90.9941 c -%_254.3379 91.7305 260.4941 88.8398 263.4609 84.5352 c -%_263.5313 84.4336 263.6621 84.3984 263.7754 84.4492 c -%_263.8867 84.5 263.9453 84.623 263.916 84.7422 c -%_260.8965 96.4453 247.1191 101.6191 237.0273 94.25 C -%_243.6406 101.75 254.0332 101.8555 262.75 94.1641 c -%_262.8398 94.084 262.9746 94.0781 263.0723 94.1523 c -%_263.168 94.2266 263.1992 94.3574 263.1445 94.4668 c -%_260.4785 99.873 253.8926 106.2852 244.5391 105.3516 c -%_235.9824 104.4961 231.0176 96.3359 230.0156 89.6602 C -%_229.459 98.1816 231.4102 104.1953 238.7695 109.8047 c -%_238.8672 109.8789 238.8965 110.0117 238.8418 110.1211 c -%_238.7871 110.2305 238.6621 110.2852 238.5449 110.25 c -%_231.7598 108.291 226.3145 104.8262 223.4961 97.707 C -%_223.4961 103.8672 225.6348 110.0781 231.0215 114.2168 c -%_231.1191 114.291 231.1484 114.4238 231.0938 114.5332 c -%_231.0391 114.6406 230.916 114.6953 230.7988 114.6621 c -%_227.3457 113.6797 224.627 112.1738 222.6602 109.4785 C -%_221.3496 120.5781 216.1387 127.168 210.1348 127.168 c -%_206.0098 127.168 202.9297 124.1348 202.9297 119.2988 c -%_202.9297 116.4688 204.418 112.4961 207.7402 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 18.6602 m -%_111.6758 14.7559 118.0527 13.2676 124.9453 14.6719 C -%_124.4355 10.3691 125.2793 5.88086 126.5566 3.18555 c -%_126.6094 3.07813 126.7305 3.01953 126.8477 3.04883 c -%_126.9648 3.07813 127.0449 3.18555 127.041 3.30664 c -%_126.666 12.0723 131.6641 19.1484 140.4902 22.2148 C -%_133.584 17.459 131.5645 8.02148 134.8516 3.15039 c -%_134.9199 3.05078 135.0469 3.01172 135.1582 3.05664 c -%_135.2695 3.10156 135.334 3.21875 135.3125 3.33789 c -%_134.9395 5.39844 135.918 8.02148 138.0254 10.0625 c -%_140.9316 12.877 144.875 13.5156 146.8359 11.4922 c -%_148.7969 9.4668 148.0332 5.54492 145.1289 2.73242 c -%_144.0684 1.70508 142.8691 0.96875 141.6797 0.546875 c -%_141.5664 0.505859 141.498 0.392578 141.5137 0.275391 c -%_141.5273 0.15625 141.623 0.064453 141.7422 0.054688 c -%_148.1309 -0.5 152.5117 3.30664 155.2578 7.93164 c -%_158.0527 12.6367 162.8281 16.3438 168.4688 15.6035 c -%_168.5879 15.5879 168.7012 15.6582 168.7422 15.7715 c -%_168.7813 15.8848 168.7363 16.0098 168.6328 16.0723 c -%_165.8359 17.7559 162.7617 18.4551 158.7695 17.125 C -%_164.5645 22.0332 172.8164 24.8652 180.6104 22.3516 c -%_180.7197 22.3164 180.8389 22.3594 180.9014 22.4551 c -%_180.9639 22.5508 180.9541 22.6777 180.876 22.7637 c -%_174.9668 29.3281 163.1855 29.459 155.7656 24.1348 C -%_158.8027 28.4512 162.834 31.6211 170.0586 32.6133 c -%_170.1738 32.6289 170.2637 32.7227 170.2773 32.8379 c -%_170.2891 32.9531 170.2227 33.0625 170.1133 33.1035 c -%_161.8223 36.1797 153.5137 33.0586 146.668 24.8867 C -%_149.6602 31.2656 154.5742 36.373 161.4355 38.9004 c -%_161.5508 38.9414 161.6191 39.0586 161.5977 39.1797 c -%_161.5781 39.3008 161.4746 39.3887 161.3535 39.3906 c -%_157.4102 39.4727 153.8672 38.5332 149.0879 35.8203 C -%_152.5957 41.5117 151.8281 51.459 146.7188 58.0801 c -%_146.6484 58.1719 146.5234 58.2031 146.416 58.1582 c -%_146.3105 58.1113 146.248 57.998 146.2676 57.8828 c -%_147.4473 50.6836 144.9688 42.5547 140.6582 38.2422 C -%_142.8105 45.873 140.6641 52.8184 134.7617 57.8848 c -%_134.6914 57.9453 134.5918 57.9629 134.5059 57.9297 c -%_134.418 57.8965 134.3574 57.8184 134.3438 57.7266 c -%_133.1094 48.3086 122.5742 38.752 113.7422 37.9512 c -%_113.6172 37.9395 113.5195 37.8398 113.5117 37.7148 c -%_113.5039 37.5898 113.5859 37.4785 113.709 37.4512 c -%_117.9883 36.4824 122.4004 36.9609 126.0977 38.4805 C -%_123.4375 35.5488 120.1582 33.3711 116.543 32.2363 c -%_116.4258 32.1992 116.3535 32.0859 116.3672 31.9648 c -%_116.3809 31.8438 116.4805 31.748 116.6016 31.7402 c -%_121.1113 31.4297 125.5254 32.7461 129.332 35.2793 C -%_124.9707 28.6582 118.3516 23.7344 109.9043 21.7715 c -%_109.7832 21.7441 109.7012 21.6328 109.707 21.5098 c -%_109.7148 21.3867 109.8105 21.2871 109.9336 21.2734 c -%_121.8516 19.9707 131.6797 24.5918 138.1543 33.1914 C -%_136.5059 28.2891 131.7891 23.4355 125.209 20.5723 c -%_119.3633 18.0273 113.3594 17.625 108.7871 19.0625 c -%_108.6816 19.0957 108.5645 19.0547 108.502 18.9629 c -%_108.4395 18.8691 108.4434 18.7461 108.5137 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 94.2324 m -%_156.6113 83.7461 156.9531 75.5469 160.8242 65.1777 c -%_160.8691 65.0605 160.9902 64.9922 161.1133 65.0176 c -%_161.2363 65.043 161.3223 65.1543 161.3164 65.2773 c -%_160.6953 77.9004 164.1426 86.9316 171.6152 93.0859 C -%_163.3652 83.2324 167.2617 63.5254 180.4385 63.5254 c -%_190.0244 63.5254 197.9531 71.502 199.8926 81.0508 c -%_199.918 81.1719 199.8516 81.293 199.7344 81.3379 c -%_199.6191 81.3828 199.4883 81.3379 199.4258 81.2305 c -%_196.584 76.4688 192.0176 73.3789 186.9697 73.3789 c -%_178.834 73.3789 176.4277 79.8457 176.4277 84.3789 c -%_176.4277 90.5645 181.3545 95.7207 185.1357 95.7207 c -%_188.5732 95.7207 190.1768 92.8984 190.1768 90.7949 c -%_190.1768 86.8965 187.1787 83.6289 183.8018 82.6309 c -%_183.6807 82.5938 183.6045 82.4766 183.6221 82.3516 c -%_183.6396 82.2266 183.7451 82.1328 183.8721 82.1328 c -%_187.9775 82.1074 191.4473 83.9863 193.5 87.7012 C -%_193.7695 84.8262 193.7715 83.0156 192.8594 79.9766 c -%_192.8242 79.8594 192.877 79.7344 192.9844 79.6777 c -%_193.0938 79.623 193.2266 79.6504 193.3008 79.748 c -%_200.6582 89.1406 197.1367 105.3711 191.3223 112.1055 C -%_196.8535 108.123 201.7383 99.4707 201.6621 87.7109 c -%_201.6602 87.5898 201.7461 87.4844 201.8672 87.4609 c -%_201.9863 87.4375 202.1055 87.502 202.1504 87.6152 c -%_206.2598 97.8691 204.0801 116.8633 192.8691 127.4668 C -%_195.7539 127.8652 198.7363 127.8145 201.9941 126.7754 c -%_202.1094 126.7383 202.2344 126.7891 202.293 126.8945 c -%_202.3516 127 202.3281 127.1328 202.2344 127.2109 c -%_198.1426 130.666 192.4199 131.752 186.9697 131.752 C -%_191.666 126.252 190.1064 115.1992 182.6162 115.1992 c -%_177.2656 115.1992 174.8379 123.498 178.9668 127.9805 c -%_179.0449 128.0664 179.0547 128.1934 178.9922 128.291 c -%_178.9277 128.3887 178.8066 128.4297 178.6953 128.3926 c -%_173.916 126.7363 168.75 122.6035 168.75 117.375 c -%_168.75 112.334 173.5625 107.9805 180.5537 108.3242 C -%_171.7324 105.8203 162.5 108.5918 157.6699 114.5781 c -%_157.5957 114.6699 157.4648 114.6992 157.3594 114.6445 c -%_157.252 114.5918 157.1973 114.4707 157.2266 114.3535 c -%_160.0176 103.6387 169.1934 99.1543 180.667 100.6484 C -%_171.3848 96.8906 157.416 100.166 151.2422 107.957 c -%_151.1699 108.0488 151.043 108.0801 150.9355 108.0293 c -%_150.8301 107.9805 150.7715 107.8633 150.7949 107.748 c -%_152.166 101.1328 155.6582 96.1875 161.418 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 74.9453 m -%_26.7178 75.0645 26.8213 75.1504 26.9424 75.1523 c -%_39.8486 75.2871 51.6963 78.4199 60.9141 86.667 C -%_52.8838 81.1094 37.9717 79.1563 29.3867 83.0488 c -%_29.2764 83.0986 29.2178 83.2188 29.2451 83.3369 c -%_29.2715 83.4551 29.3779 83.5371 29.499 83.5332 c -%_40.1787 83.2441 48.7783 86.54 55.4834 92.498 C -%_48.6143 92.9199 42.9092 97.2383 42.9268 102.3428 c -%_42.9268 102.4619 43.0107 102.5645 43.1279 102.5898 c -%_43.2441 102.6152 43.3623 102.5547 43.4111 102.4463 c -%_44.5322 99.957 48.1592 98.666 51.9941 99.5664 c -%_56.1738 100.5469 58.9941 103.7559 58.2949 106.7314 c -%_57.8232 108.7461 55.8584 110.1348 53.3428 110.5186 c -%_53.2158 110.5371 53.123 110.6484 53.126 110.7764 c -%_53.1299 110.9043 53.2285 111.0098 53.3564 111.0215 c -%_54.4248 111.124 55.5361 111.1279 56.6738 111.0195 c -%_63.1641 110.4023 68.1875 106.4238 68.623 101.8418 C -%_73.3359 102.3887 77.5078 104.998 79.002 108.6152 c -%_79.0469 108.7236 79.1621 108.7871 79.2773 108.7695 c -%_79.3926 108.75 79.4805 108.6553 79.4902 108.5391 c -%_79.8672 103.7871 78.2324 100.7002 74.5195 97.6846 C -%_79.9043 99.7441 85.9648 99.8496 91.7754 97.1465 c -%_91.8809 97.0977 91.9395 96.9824 91.918 96.8672 c -%_91.8945 96.752 91.7949 96.668 91.6777 96.6641 c -%_86.7988 96.4736 83.2617 94.9082 79.9473 91.5918 C -%_98.2012 96.7256 113.0332 85.3906 107.9004 68.5391 c -%_107.8652 68.4238 107.7539 68.3486 107.6328 68.3613 c -%_107.5117 68.373 107.416 68.4688 107.4063 68.5898 c -%_106.4883 78.3037 99.7031 84.7051 89.5449 85.666 C -%_94.9316 83.6055 100.5449 78.6895 101.1016 70.1318 c -%_101.1094 70.0098 101.0293 69.8984 100.9102 69.8691 c -%_100.791 69.8398 100.668 69.8984 100.6172 70.0098 c -%_97.8184 76.1641 92.3203 79.2754 86.457 79.8223 C -%_92.791 77.2422 96.8535 71.2207 98.0273 63.4023 c -%_98.0469 63.2793 97.9727 63.1602 97.8535 63.123 c -%_97.7363 63.084 97.6074 63.1387 97.5508 63.248 c -%_93.6855 70.8311 85.3945 76.042 75.1035 72.0605 c -%_64.4863 67.9512 59.8291 55.6738 58.7998 47.0195 c -%_58.7852 46.8984 58.6846 46.8047 58.5615 46.7969 c -%_58.4395 46.7891 58.3291 46.8711 58.3008 46.9922 c -%_54.5811 62.6797 61.8838 78.9414 74.9375 85.832 C -%_67.8418 83.8291 61.498 79.5723 57.9102 72.4775 C -%_49.6162 71.459 43.9063 68.6152 41.0527 63.2383 c -%_40.9961 63.1309 40.8721 63.0781 40.7568 63.1133 c -%_40.6416 63.1465 40.5654 63.2578 40.5752 63.3789 c -%_40.7578 65.4883 41.5166 69.709 44.6494 71.6494 C -%_37.6846 71.6387 32.1436 72.543 26.8506 74.6621 c -%_26.7393 74.708 26.6738 74.8262 26.6963 74.9453 c -%_f -%_0 D -%_56.1826 21.4746 m -%_56.084 21.541 55.9541 21.5293 55.8672 21.4492 c -%_55.7813 21.3672 55.7627 21.2383 55.8213 21.1367 c -%_57.4414 18.3398 55.9619 14.3223 52.7705 14.3223 c -%_47.0498 14.3223 44.2998 25.0918 45.1748 34.916 C -%_47.3379 29.1602 49.208 26.8613 52.5225 24.1211 c -%_52.6162 24.043 52.751 24.043 52.8447 24.1191 c -%_52.9385 24.1973 52.9658 24.3281 52.9082 24.4355 c -%_48.0518 33.5156 47.0107 40.502 47.0107 48.5215 C -%_48.4736 42.5625 50.2061 39.1992 55.1377 34.1406 c -%_55.2236 34.0527 55.3604 34.0391 55.4629 34.1074 c -%_55.5645 34.1777 55.6016 34.3105 55.5498 34.4238 c -%_50.252 46.0137 50.6563 58.8711 54.6025 68.6875 c -%_54.6416 68.7852 54.6172 68.8965 54.54 68.9688 c -%_54.4629 69.0391 54.3506 69.0566 54.2549 69.0098 c -%_49.0498 66.459 45.9912 64.7832 41.5029 58.6211 C -%_42.8604 51.2227 41.7314 47.5723 38.3311 41.4258 C -%_42.2686 51.3438 40.1729 65.3203 30.1436 71.0176 c -%_30.0342 71.0791 29.8955 71.0518 29.8193 70.9531 c -%_29.7412 70.8535 29.748 70.7119 29.835 70.6211 c -%_33.6162 66.666 36.3662 59.9863 33.9912 52.6934 C -%_35.5205 63.082 26.3955 71.8086 16.2119 71.8086 c -%_6.6123 71.8086 0.061523 64.2988 0.602539 56.8672 c -%_1.13965 49.502 6.0459 45.8984 10.2744 44.3691 c -%_10.3857 44.3301 10.5107 44.3711 10.5742 44.4707 c -%_10.6377 44.5723 10.624 44.7012 10.541 44.7871 c -%_4.93066 50.4785 4.16309 61.2793 14.124 64.5469 C -%_8.26465 59.4902 10.4346 47.7168 19.8135 46.8223 c -%_19.9307 46.8105 20.04 46.8809 20.0781 46.9922 c -%_20.1162 47.1035 20.0732 47.2266 19.9746 47.2891 c -%_17.9658 48.5664 16.2959 51.0605 16.2959 53.8633 c -%_16.2959 58.5371 19.7178 60.373 21.9717 60.373 c -%_25.3936 60.373 28.2314 57.1172 28.2314 52.1934 c -%_28.2314 46.3496 22.9717 41.5098 16.2119 40.7578 c -%_9.58594 40.0234 3.42969 42.9121 0.461914 47.2168 c -%_0.392578 47.3184 0.260742 47.3555 0.148438 47.3047 c -%_0.036133 47.2539 -0.022461 47.1289 0.007813 47.0098 c -%_3.02637 35.3066 16.8037 30.1328 26.8955 37.5039 C -%_20.2822 30.002 9.88965 29.8984 1.17383 37.5898 c -%_1.08301 37.6699 0.948242 37.6738 0.851563 37.5996 c -%_0.754883 37.5273 0.724609 37.3945 0.77832 37.2871 c -%_3.44531 31.8789 10.0313 25.4668 19.3838 26.4023 c -%_27.9404 27.2578 32.9053 35.416 33.9072 42.0938 C -%_34.4639 33.5723 32.5137 27.5566 25.1533 21.9473 c -%_25.0566 21.873 25.0264 21.7402 25.0811 21.6309 c -%_25.1357 21.5234 25.2607 21.4688 25.3779 21.502 c -%_32.1631 23.4629 37.6084 26.9277 40.4268 34.0469 C -%_40.4268 27.8848 38.2881 21.6738 32.9014 17.5352 c -%_32.8037 17.4609 32.7744 17.3301 32.8291 17.2207 c -%_32.8838 17.1113 33.0078 17.0566 33.125 17.0898 c -%_36.5781 18.0742 39.2959 19.5781 41.2627 22.2754 C -%_42.5732 11.1758 47.7842 4.58398 53.7881 4.58398 c -%_57.9131 4.58398 60.9932 7.61719 60.9932 12.4551 c -%_60.9932 15.2852 59.5049 19.2578 56.1826 21.4746 c -%_f -%_155.4102 113.0938 m -%_152.248 116.998 145.8711 118.4863 138.9785 117.082 C -%_139.4883 121.3828 138.6445 125.873 137.3672 128.5664 c -%_137.3145 128.6758 137.1934 128.7334 137.0762 128.7051 c -%_136.959 128.6758 136.8789 128.5684 136.8828 128.4473 c -%_137.2578 119.6807 132.2598 112.6035 123.4336 109.5371 C -%_130.3398 114.293 132.3594 123.7305 129.0723 128.6035 c -%_129.0039 128.7021 128.877 128.7412 128.7656 128.6953 c -%_128.6543 128.6504 128.5898 128.5332 128.6113 128.416 c -%_128.9844 126.3555 128.0059 123.7314 125.8984 121.6895 c -%_122.9922 118.875 119.0488 118.2363 117.0879 120.2598 c -%_115.127 122.2852 115.8906 126.207 118.7949 129.0215 c -%_119.8555 130.0488 121.0547 130.7832 122.2441 131.2061 c -%_122.3574 131.2461 122.4258 131.3594 122.4102 131.4775 c -%_122.3965 131.5967 122.3008 131.6885 122.1816 131.6982 c -%_115.793 132.2529 111.4121 128.4463 108.666 123.8203 c -%_105.8711 119.1152 101.0957 115.4102 95.4551 116.1504 c -%_95.3359 116.166 95.2227 116.0957 95.1816 115.9824 c -%_95.1426 115.8691 95.1875 115.7422 95.291 115.6807 c -%_98.0879 113.9961 101.1621 113.2969 105.1543 114.6289 C -%_99.3594 109.7197 91.1074 106.8867 83.3145 109.4014 c -%_83.2051 109.4375 83.0859 109.3945 83.0234 109.2979 c -%_82.9609 109.2012 82.9727 109.0752 83.0488 108.9902 c -%_88.957 102.4258 100.7383 102.2949 108.1582 107.6172 C -%_105.1211 103.3008 101.0898 100.1328 93.8652 99.1387 c -%_93.75 99.123 93.6602 99.0313 93.6465 98.916 c -%_93.6348 98.7998 93.7012 98.6904 93.8105 98.6504 c -%_102.1016 95.5723 110.4102 98.6953 117.2559 106.8652 C -%_114.2637 100.4883 109.3496 95.3809 102.4883 92.8535 c -%_102.373 92.8115 102.3047 92.6934 102.3262 92.5742 c -%_102.3457 92.4531 102.4492 92.3643 102.5703 92.3613 c -%_106.5137 92.2803 110.0566 93.2188 114.8359 95.9316 C -%_111.3281 90.2422 112.0957 80.293 117.2051 73.6738 c -%_117.2754 73.582 117.4004 73.5498 117.5078 73.5957 c -%_117.6133 73.6426 117.6758 73.7549 117.6563 73.8691 c -%_116.4766 81.0703 118.9551 89.1992 123.2656 93.5117 C -%_121.1133 85.8799 123.2598 78.9355 129.1621 73.8672 c -%_129.2324 73.8066 129.332 73.79 129.418 73.8232 c -%_129.5059 73.8564 129.5664 73.9355 129.5801 74.0273 c -%_130.8145 83.4453 141.3496 93.002 150.1816 93.8027 c -%_150.3066 93.8135 150.4043 93.9141 150.4121 94.0381 c -%_150.4199 94.1621 150.3379 94.2754 150.2148 94.3027 c -%_145.9355 95.2715 141.5234 94.793 137.8262 93.2715 C -%_140.4863 96.2051 143.7656 98.3828 147.3809 99.5176 c -%_147.498 99.5537 147.5703 99.668 147.5566 99.7891 c -%_147.543 99.9102 147.4434 100.0039 147.3223 100.0127 c -%_142.8125 100.3242 138.3984 99.0068 134.5918 96.4746 C -%_138.9531 103.0957 145.5723 108.0195 154.0195 109.9805 c -%_154.1406 110.0088 154.2227 110.1191 154.2168 110.2432 c -%_154.209 110.3672 154.1133 110.4668 153.9902 110.4805 c -%_142.0723 111.7822 132.2441 107.1621 125.7695 98.5625 C -%_127.418 103.4629 132.1348 108.3184 138.7148 111.1816 c -%_144.5605 113.7266 150.5645 114.1279 155.1367 112.6914 c -%_155.2422 112.6582 155.3594 112.6982 155.4219 112.791 c -%_155.4844 112.8828 155.4805 113.0059 155.4102 113.0938 c -%_f -%_102.5059 37.5215 m -%_107.3125 48.0078 106.9707 56.207 103.0996 66.5762 c -%_103.0547 66.6934 102.9336 66.7607 102.8105 66.7363 c -%_102.6875 66.7109 102.6016 66.5996 102.6074 66.4746 c -%_103.2285 53.8535 99.7813 44.8203 92.3086 38.668 C -%_100.5586 48.5195 96.6621 68.2275 83.4863 68.2275 c -%_73.9004 68.2275 65.9697 60.252 64.0303 50.7031 c -%_64.0059 50.582 64.0723 50.459 64.1885 50.416 c -%_64.3037 50.3711 64.4346 50.416 64.4971 50.5215 c -%_67.3398 55.2832 71.9063 58.373 76.9551 58.373 c -%_85.0898 58.373 87.4961 51.9063 87.4961 47.375 c -%_87.4961 41.1875 82.5703 36.0313 78.7891 36.0313 c -%_75.3516 36.0313 73.748 38.8555 73.748 40.959 c -%_73.748 44.8574 76.7461 48.125 80.125 49.123 c -%_80.2441 49.1582 80.3223 49.2773 80.3047 49.4023 c -%_80.2852 49.5273 80.1797 49.6191 80.0547 49.6211 c -%_75.9473 49.6465 72.4766 47.7656 70.4238 44.0527 C -%_70.1543 46.9277 70.1514 48.7383 71.0645 51.7754 c -%_71.0996 51.8926 71.0459 52.0176 70.9385 52.0742 c -%_70.8291 52.1309 70.6963 52.1016 70.6221 52.0059 c -%_63.2656 42.6133 66.7861 26.3809 72.6016 19.6484 C -%_67.0693 23.6309 62.1846 32.2813 62.2617 44.041 c -%_62.2627 44.1641 62.1768 44.2676 62.0566 44.291 c -%_61.9365 44.3164 61.8174 44.25 61.7725 44.1367 c -%_57.6641 33.8848 59.8438 14.8887 71.0537 4.28516 C -%_68.1699 3.88867 65.1865 3.93945 61.9287 4.97852 c -%_61.8135 5.01367 61.6885 4.96484 61.6299 4.85938 c -%_61.5713 4.75195 61.5947 4.61914 61.6885 4.54102 c -%_65.7803 1.08594 71.5029 0 76.9551 0 C -%_72.2578 5.5 73.8184 16.5547 81.3105 16.5547 c -%_86.6582 16.5547 89.0859 8.25586 84.957 3.77344 c -%_84.8789 3.6875 84.8691 3.55859 84.9316 3.46289 c -%_84.9961 3.36523 85.1172 3.32227 85.2285 3.36133 c -%_90.0078 5.01563 95.1738 9.15039 95.1738 14.377 c -%_95.1738 19.4199 90.3613 23.7715 83.373 23.4277 C -%_92.1914 25.9336 101.4238 23.1602 106.2539 17.1758 c -%_106.3281 17.082 106.459 17.0547 106.5645 17.1074 c -%_106.6719 17.1621 106.7266 17.2832 106.6973 17.3984 c -%_103.9063 28.1152 94.7305 32.5977 83.2578 31.1055 C -%_92.5391 34.8613 106.5078 31.5859 112.6816 23.7949 c -%_112.7539 23.7031 112.8809 23.6738 112.9883 23.7227 c -%_113.0938 23.7734 113.1523 23.8906 113.1289 24.0039 c -%_111.7578 30.6191 108.2656 35.5664 102.5059 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 56.8086 m -%_128.8672 56.6895 128.7637 56.6016 128.6426 56.6016 c -%_115.7363 56.4648 103.8887 53.334 94.6719 45.0859 C -%_102.7012 50.6445 117.6133 52.5957 126.1992 48.7051 c -%_126.3086 48.6543 126.3672 48.5332 126.3398 48.416 c -%_126.3145 48.2988 126.207 48.2168 126.0859 48.2188 c -%_115.4063 48.5098 106.8066 45.2129 100.1016 39.2559 C -%_106.9707 38.832 112.6758 34.5156 112.6582 29.4102 c -%_112.6582 29.291 112.5742 29.1875 112.457 29.1621 c -%_112.3418 29.1387 112.2227 29.1973 112.1738 29.3066 c -%_111.0527 31.7949 107.4258 33.0879 103.5918 32.1875 c -%_99.4121 31.2051 96.5918 27.998 97.291 25.0215 c -%_97.7617 23.0078 99.7266 21.6191 102.2422 21.2344 c -%_102.3691 21.2148 102.4629 21.1055 102.459 20.9766 c -%_102.4551 20.8496 102.3574 20.7441 102.2285 20.7305 c -%_101.1602 20.6289 100.0488 20.625 98.9121 20.7344 c -%_92.4219 21.3516 87.3984 25.3281 86.9629 29.9121 C -%_82.25 29.3652 78.0781 26.7539 76.584 23.1387 c -%_76.5391 23.0293 76.4258 22.9668 76.3086 22.9844 c -%_76.1934 23.002 76.1055 23.0977 76.0957 23.2148 c -%_75.7188 27.9648 77.3535 31.0527 81.0664 34.0684 C -%_75.6816 32.0098 69.6201 31.9043 63.8096 34.6055 c -%_63.7041 34.6563 63.6455 34.7715 63.667 34.8867 c -%_63.6904 35.002 63.79 35.0859 63.9072 35.0898 c -%_68.7861 35.2793 72.3242 36.8457 75.6406 40.1621 C -%_57.3838 35.0273 42.5518 46.3633 47.6846 63.2129 c -%_47.7197 63.3301 47.8311 63.4043 47.9521 63.3926 c -%_48.0732 63.3809 48.1689 63.2852 48.1787 63.1641 c -%_49.0967 53.4492 55.8818 47.0469 66.04 46.0879 C -%_60.6533 48.1465 55.04 53.0625 54.4834 61.6211 c -%_54.4756 61.7441 54.5557 61.8535 54.6748 61.8848 c -%_54.7939 61.9141 54.917 61.8535 54.9678 61.7422 c -%_57.7666 55.5879 63.2646 52.4785 69.1279 51.9297 C -%_62.7939 54.5117 58.7314 60.5332 57.5576 68.3516 c -%_57.5381 68.4746 57.6123 68.5918 57.7314 68.6309 c -%_57.8486 68.668 57.9775 68.6152 58.0342 68.5039 c -%_61.8994 60.9219 70.1904 55.7109 80.4824 59.6934 c -%_91.0996 63.8027 95.7559 76.0781 96.7852 84.7324 c -%_96.8008 84.8555 96.9004 84.9492 97.0234 84.957 c -%_97.1465 84.9629 97.2559 84.8809 97.2852 84.7617 c -%_101.0039 69.0723 93.7012 52.8125 80.6484 45.9219 C -%_87.7441 47.9238 94.0879 52.1816 97.6758 59.2754 C -%_105.9688 60.293 111.6797 63.1387 114.5332 68.5156 c -%_114.5898 68.6211 114.7129 68.6738 114.8281 68.6406 c -%_114.9434 68.6055 115.0195 68.4941 115.0098 68.375 c -%_114.8281 66.2656 114.0684 62.0449 110.9355 60.1035 C -%_117.9004 60.1152 123.4414 59.2109 128.7344 57.0898 c -%_128.8457 57.0449 128.9121 56.9277 128.8887 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 110.2773 m -%_99.502 110.2129 99.6309 110.2227 99.7188 110.3047 c -%_99.8047 110.3848 99.8223 110.5137 99.7637 110.6172 c -%_98.1445 113.4141 99.623 117.4297 102.8145 117.4297 c -%_108.5352 117.4297 111.2852 106.6602 110.4102 96.8379 C -%_108.248 102.5918 106.377 104.8926 103.0625 107.6328 c -%_102.9688 107.709 102.834 107.7109 102.7402 107.6328 c -%_102.6465 107.5566 102.6191 107.4238 102.6777 107.3164 c -%_107.5332 98.2383 108.5742 91.252 108.5742 83.2324 C -%_107.1113 89.1895 105.3789 92.5527 100.4473 97.6133 c -%_100.3613 97.7012 100.2246 97.7148 100.123 97.6445 c -%_100.0215 97.5742 99.9844 97.4414 100.0352 97.3301 c -%_105.334 85.7383 104.9297 72.8828 100.9824 63.0664 c -%_100.9434 62.9688 100.9688 62.8574 101.0449 62.7852 c -%_101.123 62.7129 101.2344 62.6973 101.3301 62.7422 c -%_106.5352 65.293 109.5938 66.9688 114.082 73.1328 C -%_112.7246 80.5313 113.8535 84.1797 117.2539 90.3262 C -%_113.3164 80.4102 115.4121 66.4336 125.4414 60.7363 c -%_125.5508 60.6738 125.6895 60.7012 125.7656 60.8008 c -%_125.8438 60.9004 125.8379 61.041 125.75 61.1328 c -%_121.9688 65.0879 119.2188 71.7676 121.5938 79.0586 C -%_120.0645 68.6699 129.1895 59.9453 139.373 59.9453 c -%_148.9727 59.9453 155.5234 67.4531 154.9824 74.8848 c -%_154.4453 82.25 149.5391 85.8555 145.3105 87.3828 c -%_145.1992 87.4238 145.0742 87.3809 145.0117 87.2813 c -%_144.9473 87.1816 144.9609 87.0508 145.0449 86.9668 c -%_150.6543 81.2734 151.4219 70.4746 141.4609 67.207 C -%_147.3203 72.2637 145.1504 84.0352 135.7715 84.9316 c -%_135.6543 84.9414 135.5449 84.8711 135.5078 84.7598 c -%_135.4688 84.6504 135.5117 84.5273 135.6113 84.4648 c -%_137.6191 83.1855 139.2891 80.6934 139.2891 77.8906 c -%_139.2891 73.2168 135.8672 71.3789 133.6133 71.3789 c -%_130.1914 71.3789 127.3535 74.6348 127.3535 79.5605 c -%_127.3535 85.4023 132.6133 90.2441 139.373 90.9941 c -%_146 91.7305 152.1563 88.8398 155.123 84.5352 c -%_155.1934 84.4336 155.3242 84.3984 155.4375 84.4492 c -%_155.5488 84.5 155.6074 84.623 155.5781 84.7422 c -%_152.5586 96.4453 138.7813 101.6191 128.6895 94.25 C -%_135.3027 101.75 145.6953 101.8555 154.4121 94.1641 c -%_154.502 94.084 154.6367 94.0781 154.7344 94.1523 c -%_154.8301 94.2266 154.8613 94.3574 154.8066 94.4668 c -%_152.1406 99.873 145.5547 106.2852 136.2012 105.3516 c -%_127.6445 104.4961 122.6797 96.3359 121.6777 89.6602 C -%_121.1211 98.1816 123.0723 104.1953 130.4316 109.8047 c -%_130.5293 109.8789 130.5586 110.0117 130.5039 110.1211 c -%_130.4492 110.2305 130.3242 110.2852 130.207 110.25 c -%_123.4219 108.291 117.9766 104.8262 115.1582 97.707 C -%_115.1582 103.8672 117.2969 110.0781 122.6836 114.2168 c -%_122.7813 114.291 122.8105 114.4238 122.7559 114.5332 c -%_122.7012 114.6406 122.5781 114.6953 122.4609 114.6621 c -%_119.0078 113.6797 116.2891 112.1738 114.3223 109.4785 C -%_113.0117 120.5781 107.8008 127.168 101.7969 127.168 c -%_97.6719 127.168 94.5918 124.1348 94.5918 119.2988 c -%_94.5918 116.4688 96.0801 112.4961 99.4023 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 18.6602 m -%_3.33691 14.7559 9.71387 13.2676 16.6064 14.6719 C -%_16.0967 10.3691 16.9404 5.88086 18.2178 3.18555 c -%_18.2705 3.07813 18.3916 3.01953 18.5088 3.04883 c -%_18.626 3.07813 18.7061 3.18555 18.7021 3.30664 c -%_18.3271 12.0723 23.3252 19.1484 32.1514 22.2148 C -%_25.2451 17.459 23.2256 8.02148 26.5127 3.15039 c -%_26.5811 3.05078 26.708 3.01172 26.8193 3.05664 c -%_26.9307 3.10156 26.9951 3.21875 26.9736 3.33789 c -%_26.6006 5.39844 27.5791 8.02148 29.6865 10.0625 c -%_32.5928 12.877 36.5361 13.5156 38.4971 11.4922 c -%_40.458 9.4668 39.6943 5.54492 36.79 2.73242 c -%_35.7295 1.70508 34.5303 0.96875 33.3408 0.546875 c -%_33.2275 0.505859 33.1592 0.392578 33.1748 0.275391 c -%_33.1885 0.15625 33.2842 0.064453 33.4033 0.054688 c -%_39.792 -0.5 44.1729 3.30664 46.9189 7.93164 c -%_49.7139 12.6367 54.4893 16.3438 60.1299 15.6035 c -%_60.249 15.5879 60.3623 15.6582 60.4033 15.7715 c -%_60.4424 15.8848 60.3975 16.0098 60.2939 16.0723 c -%_57.4971 17.7559 54.4229 18.4551 50.4307 17.125 C -%_56.2256 22.0332 64.4775 24.8652 72.2715 22.3516 c -%_72.3809 22.3164 72.5 22.3594 72.5625 22.4551 c -%_72.625 22.5508 72.6152 22.6777 72.5371 22.7637 c -%_66.6279 29.3281 54.8467 29.459 47.4268 24.1348 C -%_50.4639 28.4512 54.4951 31.6211 61.7197 32.6133 c -%_61.835 32.6289 61.9248 32.7227 61.9385 32.8379 c -%_61.9502 32.9531 61.8838 33.0625 61.7744 33.1035 c -%_53.4834 36.1797 45.1748 33.0586 38.3291 24.8867 C -%_41.3213 31.2656 46.2354 36.373 53.0967 38.9004 c -%_53.2119 38.9414 53.2803 39.0586 53.2588 39.1797 c -%_53.2393 39.3008 53.1357 39.3887 53.0146 39.3906 c -%_49.0713 39.4727 45.5283 38.5332 40.749 35.8203 C -%_44.2568 41.5117 43.4893 51.459 38.3799 58.0801 c -%_38.3096 58.1719 38.1846 58.2031 38.0771 58.1582 c -%_37.9717 58.1113 37.9092 57.998 37.9287 57.8828 c -%_39.1084 50.6836 36.6299 42.5547 32.3193 38.2422 C -%_34.4717 45.873 32.3252 52.8184 26.4229 57.8848 c -%_26.3525 57.9453 26.2529 57.9629 26.167 57.9297 c -%_26.0791 57.8965 26.0186 57.8184 26.0049 57.7266 c -%_24.7705 48.3086 14.2354 38.752 5.40332 37.9512 c -%_5.27832 37.9395 5.18066 37.8398 5.17285 37.7148 c -%_5.16504 37.5898 5.24707 37.4785 5.37012 37.4512 c -%_9.64941 36.4824 14.0615 36.9609 17.7588 38.4805 C -%_15.0986 35.5488 11.8193 33.3711 8.2041 32.2363 c -%_8.08691 32.1992 8.01465 32.0859 8.02832 31.9648 c -%_8.04199 31.8438 8.1416 31.748 8.2627 31.7402 c -%_12.7725 31.4297 17.1865 32.7461 20.9932 35.2793 C -%_16.6318 28.6582 10.0127 23.7344 1.56543 21.7715 c -%_1.44434 21.7441 1.3623 21.6328 1.36816 21.5098 c -%_1.37598 21.3867 1.47168 21.2871 1.59473 21.2734 c -%_13.5127 19.9707 23.3408 24.5918 29.8154 33.1914 C -%_28.167 28.2891 23.4502 23.4355 16.8701 20.5723 c -%_11.0244 18.0273 5.02051 17.625 0.448242 19.0625 c -%_0.342773 19.0957 0.225586 19.0547 0.163086 18.9629 c -%_0.100586 18.8691 0.104492 18.7461 0.174805 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 94.2324 m -%_48.2725 83.7461 48.6143 75.5469 52.4854 65.1777 c -%_52.5303 65.0605 52.6514 64.9922 52.7744 65.0176 c -%_52.8975 65.043 52.9834 65.1543 52.9775 65.2773 c -%_52.3564 77.9004 55.8037 86.9316 63.2764 93.0859 C -%_55.0264 83.2324 58.9229 63.5254 72.0996 63.5254 c -%_81.6855 63.5254 89.6152 71.502 91.5547 81.0508 c -%_91.5801 81.1719 91.5137 81.293 91.3965 81.3379 c -%_91.2813 81.3828 91.1504 81.3379 91.0879 81.2305 c -%_88.2461 76.4688 83.6797 73.3789 78.6309 73.3789 c -%_70.4951 73.3789 68.0889 79.8457 68.0889 84.3789 c -%_68.0889 90.5645 73.0156 95.7207 76.7969 95.7207 c -%_80.2344 95.7207 81.8379 92.8984 81.8379 90.7949 c -%_81.8379 86.8965 78.8398 83.6289 75.4629 82.6309 c -%_75.3418 82.5938 75.2656 82.4766 75.2832 82.3516 c -%_75.3008 82.2266 75.4063 82.1328 75.5332 82.1328 c -%_79.6387 82.1074 83.1094 83.9863 85.1621 87.7012 C -%_85.4316 84.8262 85.4336 83.0156 84.5215 79.9766 c -%_84.4863 79.8594 84.5391 79.7344 84.6465 79.6777 c -%_84.7559 79.623 84.8887 79.6504 84.9629 79.748 c -%_92.3203 89.1406 88.7988 105.3711 82.9844 112.1055 C -%_88.5156 108.123 93.4004 99.4707 93.3242 87.7109 c -%_93.3223 87.5898 93.4082 87.4844 93.5293 87.4609 c -%_93.6484 87.4375 93.7676 87.502 93.8125 87.6152 c -%_97.9219 97.8691 95.7422 116.8633 84.5313 127.4668 C -%_87.416 127.8652 90.3984 127.8145 93.6563 126.7754 c -%_93.7715 126.7383 93.8965 126.7891 93.9551 126.8945 c -%_94.0137 127 93.9902 127.1328 93.8965 127.2109 c -%_89.8047 130.666 84.082 131.752 78.6309 131.752 C -%_83.3281 126.252 81.7676 115.1992 74.2773 115.1992 c -%_68.9268 115.1992 66.499 123.498 70.6279 127.9805 c -%_70.7061 128.0664 70.7158 128.1934 70.6533 128.291 c -%_70.5889 128.3887 70.4678 128.4297 70.3564 128.3926 c -%_65.5771 126.7363 60.4111 122.6035 60.4111 117.375 c -%_60.4111 112.334 65.2236 107.9805 72.2148 108.3242 C -%_63.3936 105.8203 54.1611 108.5918 49.3311 114.5781 c -%_49.2568 114.6699 49.126 114.6992 49.0205 114.6445 c -%_48.9131 114.5918 48.8584 114.4707 48.8877 114.3535 c -%_51.6787 103.6387 60.8545 99.1543 72.3281 100.6484 C -%_63.0459 96.8906 49.0771 100.166 42.9033 107.957 c -%_42.8311 108.0488 42.7041 108.0801 42.5967 108.0293 c -%_42.4912 107.9805 42.4326 107.8633 42.4561 107.748 c -%_43.8 -endstream endobj 104 0 obj <>stream -271 101.1328 47.3193 96.1875 53.0791 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_135.0352 184.5869 m -%_135.0566 184.7061 135.1602 184.792 135.2813 184.7939 c -%_148.1875 184.9287 160.0352 188.0615 169.2529 196.3086 C -%_161.2227 190.751 146.3105 188.7979 137.7256 192.6904 c -%_137.6152 192.7402 137.5566 192.8604 137.584 192.9785 c -%_137.6104 193.0967 137.7168 193.1787 137.8379 193.1748 c -%_148.5176 192.8857 157.1172 196.1816 163.8223 202.1396 C -%_156.9531 202.5615 151.248 206.8799 151.2656 211.9844 c -%_151.2656 212.1035 151.3496 212.2061 151.4668 212.2314 c -%_151.583 212.2568 151.7012 212.1963 151.75 212.0879 c -%_152.8711 209.5986 156.498 208.3076 160.333 209.208 c -%_164.5127 210.1885 167.333 213.3975 166.6338 216.373 c -%_166.1621 218.3877 164.1973 219.7764 161.6816 220.1602 c -%_161.5547 220.1787 161.4619 220.29 161.4648 220.418 c -%_161.4688 220.5459 161.5674 220.6514 161.6953 220.6631 c -%_162.7637 220.7656 163.875 220.7695 165.0127 220.6611 c -%_171.5029 220.0439 176.5264 216.0654 176.9619 211.4834 C -%_181.6748 212.0303 185.8467 214.6396 187.3408 218.2568 c -%_187.3857 218.3652 187.501 218.4287 187.6162 218.4111 c -%_187.7314 218.3916 187.8193 218.2969 187.8291 218.1807 c -%_188.2061 213.4287 186.5713 210.3418 182.8584 207.3262 C -%_188.2432 209.3857 194.3027 209.4912 200.1133 206.7881 c -%_200.2188 206.7393 200.2773 206.624 200.2559 206.5088 c -%_200.2324 206.3936 200.1328 206.3096 200.0156 206.3057 c -%_195.1367 206.1152 191.5996 204.5498 188.2861 201.2334 C -%_206.5391 206.3672 221.3711 195.0322 216.2383 178.1807 c -%_216.2031 178.0654 216.0918 177.9902 215.9707 178.0029 c -%_215.8496 178.0146 215.7539 178.1104 215.7441 178.2314 c -%_214.8262 187.9453 208.041 194.3467 197.8828 195.3076 C -%_203.2695 193.2471 208.8828 188.3311 209.4395 179.7734 c -%_209.4473 179.6514 209.3672 179.54 209.248 179.5107 c -%_209.1289 179.4814 209.0059 179.54 208.9551 179.6514 c -%_206.1563 185.8057 200.6582 188.917 194.7949 189.4639 C -%_201.1289 186.8838 205.1914 180.8623 206.3652 173.0439 c -%_206.3848 172.9209 206.3105 172.8018 206.1914 172.7646 c -%_206.0742 172.7256 205.9453 172.7803 205.8887 172.8896 c -%_202.0234 180.4727 193.7324 185.6836 183.4424 181.7021 c -%_172.8252 177.5928 168.168 165.3154 167.1387 156.6611 c -%_167.124 156.54 167.0234 156.4463 166.9004 156.4385 c -%_166.7783 156.4307 166.668 156.5127 166.6396 156.6338 c -%_162.9199 172.3213 170.2227 188.583 183.2764 195.4736 C -%_176.1807 193.4707 169.8369 189.2139 166.249 182.1191 C -%_157.9551 181.1006 152.2451 178.2568 149.3916 172.8799 c -%_149.335 172.7725 149.2109 172.7197 149.0957 172.7549 c -%_148.9805 172.7881 148.9043 172.8994 148.9141 173.0205 c -%_149.0967 175.1299 149.8555 179.3506 152.9883 181.291 C -%_146.0234 181.2803 140.4824 182.1846 135.1895 184.3037 c -%_135.0781 184.3496 135.0127 184.4678 135.0352 184.5869 c -%_f -%_0 D -%_164.5215 131.1162 m -%_164.4229 131.1826 164.293 131.1709 164.2061 131.0908 c -%_164.1201 131.0088 164.1016 130.8799 164.1602 130.7783 c -%_165.7803 127.9814 164.3008 123.9639 161.1094 123.9639 c -%_155.3887 123.9639 152.6387 134.7334 153.5137 144.5576 C -%_155.6768 138.8018 157.5469 136.5029 160.8613 133.7627 c -%_160.9551 133.6846 161.0898 133.6846 161.1836 133.7607 c -%_161.2773 133.8389 161.3047 133.9697 161.2471 134.0771 c -%_156.3906 143.1572 155.3496 150.1436 155.3496 158.1631 C -%_156.8125 152.2041 158.5449 148.8408 163.4766 143.7822 c -%_163.5625 143.6943 163.6992 143.6807 163.8018 143.749 c -%_163.9033 143.8193 163.9404 143.9521 163.8887 144.0654 c -%_158.5908 155.6553 158.9951 168.5127 162.9414 178.3291 c -%_162.9805 178.4268 162.9561 178.5381 162.8789 178.6104 c -%_162.8018 178.6807 162.6895 178.6982 162.5938 178.6514 c -%_157.3887 176.1006 154.3301 174.4248 149.8418 168.2627 C -%_151.1992 160.8643 150.0703 157.2139 146.6699 151.0674 C -%_150.6074 160.9854 148.5117 174.9619 138.4824 180.6592 c -%_138.373 180.7207 138.2344 180.6934 138.1582 180.5947 c -%_138.0801 180.4951 138.0869 180.3535 138.1738 180.2627 c -%_141.9551 176.3076 144.7051 169.6279 142.3301 162.335 C -%_143.8594 172.7236 134.7344 181.4502 124.5508 181.4502 c -%_114.9512 181.4502 108.4004 173.9404 108.9414 166.5088 c -%_109.4785 159.1436 114.3848 155.54 118.6133 154.0107 c -%_118.7246 153.9717 118.8496 154.0127 118.9131 154.1123 c -%_118.9766 154.2139 118.9629 154.3428 118.8799 154.4287 c -%_113.2695 160.1201 112.502 170.9209 122.4629 174.1885 C -%_116.6035 169.1318 118.7734 157.3584 128.1523 156.4639 c -%_128.2695 156.4521 128.3789 156.5225 128.417 156.6338 c -%_128.4551 156.7451 128.4121 156.8682 128.3135 156.9307 c -%_126.3047 158.208 124.6348 160.7021 124.6348 163.5049 c -%_124.6348 168.1787 128.0566 170.0146 130.3105 170.0146 c -%_133.7324 170.0146 136.5703 166.7588 136.5703 161.835 c -%_136.5703 155.9912 131.3105 151.1514 124.5508 150.3994 c -%_117.9248 149.665 111.7686 152.5537 108.8008 156.8584 c -%_108.7314 156.96 108.5996 156.9971 108.4873 156.9463 c -%_108.375 156.8955 108.3164 156.7705 108.3467 156.6514 c -%_111.3652 144.9482 125.1426 139.7744 135.2344 147.1455 C -%_128.6211 139.6436 118.2285 139.54 109.5127 147.2314 c -%_109.4219 147.3115 109.2871 147.3154 109.1904 147.2412 c -%_109.0938 147.1689 109.0635 147.0361 109.1172 146.9287 c -%_111.7842 141.5205 118.3701 135.1084 127.7227 136.0439 c -%_136.2793 136.8994 141.2441 145.0576 142.2461 151.7354 C -%_142.8027 143.2139 140.8525 137.1982 133.4922 131.5889 c -%_133.3955 131.5146 133.3652 131.3818 133.4199 131.2725 c -%_133.4746 131.165 133.5996 131.1104 133.7168 131.1436 c -%_140.502 133.1045 145.9473 136.5693 148.7656 143.6885 C -%_148.7656 137.5264 146.627 131.3154 141.2402 127.1768 c -%_141.1426 127.1025 141.1133 126.9717 141.168 126.8623 c -%_141.2227 126.7529 141.3467 126.6982 141.4639 126.7314 c -%_144.917 127.7158 147.6348 129.2197 149.6016 131.917 C -%_150.9121 120.8174 156.123 114.2256 162.127 114.2256 c -%_166.252 114.2256 169.332 117.2588 169.332 122.0967 c -%_169.332 124.9268 167.8438 128.8994 164.5215 131.1162 c -%_f -%_263.748 222.7354 m -%_260.5859 226.6396 254.209 228.1279 247.3164 226.7236 C -%_247.8262 231.0244 246.9824 235.5146 245.7051 238.208 c -%_245.6523 238.3174 245.5313 238.375 245.4141 238.3467 c -%_245.2969 238.3174 245.2168 238.21 245.2207 238.0889 c -%_245.5957 229.3223 240.5977 222.2451 231.7715 219.1787 C -%_238.6777 223.9346 240.6973 233.3721 237.4102 238.2451 c -%_237.3418 238.3438 237.2148 238.3828 237.1035 238.3369 c -%_236.9922 238.292 236.9277 238.1748 236.9492 238.0576 c -%_237.3223 235.9971 236.3438 233.373 234.2363 231.3311 c -%_231.3301 228.5166 227.3867 227.8779 225.4258 229.9014 c -%_223.4648 231.9268 224.2285 235.8486 227.1328 238.6631 c -%_228.1934 239.6904 229.3926 240.4248 230.582 240.8477 c -%_230.6953 240.8877 230.7637 241.001 230.748 241.1191 c -%_230.7344 241.2383 230.6387 241.3301 230.5195 241.3398 c -%_224.1309 241.8945 219.75 238.0879 217.0039 233.4619 c -%_214.209 228.7568 209.4336 225.0518 203.793 225.792 c -%_203.6738 225.8076 203.5605 225.7373 203.5195 225.624 c -%_203.4805 225.5107 203.5254 225.3838 203.6289 225.3223 c -%_206.4258 223.6377 209.5 222.9385 213.4922 224.2705 C -%_207.6973 219.3613 199.4453 216.5283 191.6523 219.043 c -%_191.543 219.0791 191.4238 219.0361 191.3613 218.9395 c -%_191.2988 218.8428 191.3105 218.7168 191.3867 218.6318 c -%_197.2949 212.0674 209.0762 211.9365 216.4961 217.2588 C -%_213.459 212.9424 209.4277 209.7744 202.2031 208.7803 c -%_202.0879 208.7646 201.998 208.6729 201.9844 208.5576 c -%_201.9727 208.4414 202.0391 208.332 202.1484 208.292 c -%_210.4395 205.2139 218.748 208.3369 225.5938 216.5068 C -%_222.6016 210.1299 217.6875 205.0225 210.8262 202.4951 c -%_210.7109 202.4531 210.6426 202.335 210.6641 202.2158 c -%_210.6836 202.0947 210.7871 202.0059 210.9082 202.0029 c -%_214.8516 201.9219 218.3945 202.8604 223.1738 205.5732 C -%_219.666 199.8838 220.4336 189.9346 225.543 183.3154 c -%_225.6133 183.2236 225.7383 183.1914 225.8457 183.2373 c -%_225.9512 183.2842 226.0137 183.3965 225.9941 183.5107 c -%_224.8145 190.7119 227.293 198.8408 231.6035 203.1533 C -%_229.4512 195.5215 231.5977 188.5771 237.5 183.5088 c -%_237.5703 183.4482 237.6699 183.4316 237.7559 183.4648 c -%_237.8438 183.498 237.9043 183.5771 237.918 183.6689 c -%_239.1523 193.0869 249.6875 202.6436 258.5195 203.4443 c -%_258.6445 203.4551 258.7422 203.5557 258.75 203.6797 c -%_258.7578 203.8037 258.6758 203.917 258.5527 203.9443 c -%_254.2734 204.9131 249.8613 204.4346 246.1641 202.9131 C -%_248.8242 205.8467 252.1035 208.0244 255.7188 209.1592 c -%_255.8359 209.1953 255.9082 209.3096 255.8945 209.4307 c -%_255.8809 209.5518 255.7813 209.6455 255.6602 209.6543 c -%_251.1504 209.9658 246.7363 208.6484 242.9297 206.1162 C -%_247.291 212.7373 253.9102 217.6611 262.3574 219.6221 c -%_262.4785 219.6504 262.5605 219.7607 262.5547 219.8848 c -%_262.5469 220.0088 262.4512 220.1084 262.3281 220.1221 c -%_250.4102 221.4238 240.582 216.8037 234.1074 208.2041 C -%_235.7559 213.1045 240.4727 217.96 247.0527 220.8232 c -%_252.8984 223.3682 258.9023 223.7695 263.4746 222.333 c -%_263.5801 222.2998 263.6973 222.3398 263.7598 222.4326 c -%_263.8223 222.5244 263.8184 222.6475 263.748 222.7354 c -%_f -%_210.8438 147.1631 m -%_215.6504 157.6494 215.3086 165.8486 211.4375 176.2178 c -%_211.3926 176.335 211.2715 176.4023 211.1484 176.3779 c -%_211.0254 176.3525 210.9395 176.2412 210.9453 176.1162 c -%_211.5664 163.4951 208.1191 154.4619 200.6465 148.3096 C -%_208.8965 158.1611 205 177.8691 191.8242 177.8691 c -%_182.2393 177.8691 174.3086 169.8936 172.3691 160.3447 c -%_172.3447 160.2236 172.4111 160.1006 172.5273 160.0576 c -%_172.6426 160.0127 172.7734 160.0576 172.8359 160.1631 c -%_175.6787 164.9248 180.2451 168.0146 185.2939 168.0146 c -%_193.4277 168.0146 195.834 161.5479 195.834 157.0166 c -%_195.834 150.8291 190.9082 145.6729 187.1279 145.6729 c -%_183.6904 145.6729 182.0869 148.4971 182.0869 150.6006 c -%_182.0869 154.499 185.085 157.7666 188.4639 158.7646 c -%_188.583 158.7998 188.6611 158.9189 188.6436 159.0439 c -%_188.624 159.1689 188.5186 159.2607 188.3936 159.2627 c -%_184.2861 159.2881 180.8154 157.4072 178.7627 153.6943 C -%_178.4932 156.5693 178.4902 158.3799 179.4033 161.417 c -%_179.4385 161.5342 179.3848 161.6592 179.2773 161.7158 c -%_179.168 161.7725 179.0352 161.7432 178.9609 161.6475 c -%_171.6045 152.2549 175.125 136.0225 180.9404 129.29 C -%_175.4082 133.2725 170.5234 141.9229 170.6006 153.6826 c -%_170.6016 153.8057 170.5156 153.9092 170.3955 153.9326 c -%_170.2754 153.958 170.1563 153.8916 170.1113 153.7783 c -%_166.0029 143.5264 168.1826 124.5303 179.3926 113.9268 C -%_176.5088 113.5303 173.5254 113.5811 170.2676 114.6201 c -%_170.1523 114.6553 170.0273 114.6064 169.9688 114.501 c -%_169.9102 114.3936 169.9336 114.2607 170.0273 114.1826 c -%_174.1191 110.7275 179.8418 109.6416 185.2939 109.6416 C -%_180.5967 115.1416 182.1572 126.1963 189.6494 126.1963 c -%_194.9961 126.1963 197.4238 117.8975 193.2949 113.415 c -%_193.2168 113.3291 193.207 113.2002 193.2695 113.1045 c -%_193.334 113.0068 193.4551 112.9639 193.5664 113.0029 c -%_198.3457 114.6572 203.5117 118.792 203.5117 124.0186 c -%_203.5117 129.0615 198.6992 133.4131 191.7109 133.0693 C -%_200.5293 135.5752 209.7617 132.8018 214.5918 126.8174 c -%_214.666 126.7236 214.7969 126.6963 214.9023 126.749 c -%_215.0098 126.8037 215.0645 126.9248 215.0352 127.04 c -%_212.2441 137.7568 203.0684 142.2393 191.5957 140.7471 C -%_200.877 144.5029 214.8457 141.2275 221.0195 133.4365 c -%_221.0918 133.3447 221.2188 133.3154 221.3262 133.3643 c -%_221.4316 133.415 221.4902 133.5322 221.4668 133.6455 c -%_220.0957 140.2607 216.6035 145.208 210.8438 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 166.4502 m -%_237.2051 166.3311 237.1016 166.2432 236.9805 166.2432 c -%_224.0742 166.1064 212.2266 162.9756 203.0098 154.7275 C -%_211.0391 160.2861 225.9512 162.2373 234.5371 158.3467 c -%_234.6465 158.2959 234.7051 158.1748 234.6777 158.0576 c -%_234.6523 157.9404 234.5449 157.8584 234.4238 157.8604 c -%_223.7441 158.1514 215.1445 154.8545 208.4395 148.8975 C -%_215.3086 148.4736 221.0137 144.1572 220.9961 139.0518 c -%_220.9961 138.9326 220.9121 138.8291 220.7949 138.8037 c -%_220.6797 138.7803 220.5605 138.8389 220.5117 138.9482 c -%_219.3906 141.4365 215.7637 142.7295 211.9297 141.8291 c -%_207.75 140.8467 204.9297 137.6396 205.6289 134.6631 c -%_206.0996 132.6494 208.0645 131.2607 210.5801 130.876 c -%_210.707 130.8564 210.8008 130.7471 210.7969 130.6182 c -%_210.793 130.4912 210.6953 130.3857 210.5664 130.3721 c -%_209.498 130.2705 208.3867 130.2666 207.25 130.376 c -%_200.7598 130.9932 195.7363 134.9697 195.3008 139.5537 C -%_190.5889 139.0068 186.417 136.3955 184.9229 132.7803 c -%_184.8779 132.6709 184.7646 132.6084 184.6475 132.626 c -%_184.5322 132.6436 184.4443 132.7393 184.4346 132.8564 c -%_184.0576 137.6064 185.6924 140.6943 189.4053 143.71 C -%_184.0205 141.6514 177.959 141.5459 172.1484 144.2471 c -%_172.043 144.2979 171.9844 144.4131 172.0059 144.5283 c -%_172.0293 144.6436 172.1289 144.7275 172.2461 144.7314 c -%_177.125 144.9209 180.6631 146.4873 183.9795 149.8037 C -%_165.7227 144.6689 150.8906 156.0049 156.0234 172.8545 c -%_156.0586 172.9717 156.1699 173.0459 156.291 173.0342 c -%_156.4121 173.0225 156.5078 172.9268 156.5176 172.8057 c -%_157.4355 163.0908 164.2207 156.6885 174.3789 155.7295 C -%_168.9922 157.7881 163.3789 162.7041 162.8223 171.2627 c -%_162.8145 171.3857 162.8945 171.4951 163.0137 171.5264 c -%_163.1328 171.5557 163.2559 171.4951 163.3066 171.3838 c -%_166.1055 165.2295 171.6035 162.1201 177.4668 161.5713 C -%_171.1328 164.1533 167.0703 170.1748 165.8965 177.9932 c -%_165.877 178.1162 165.9512 178.2334 166.0703 178.2725 c -%_166.1875 178.3096 166.3164 178.2568 166.373 178.1455 c -%_170.2383 170.5635 178.5293 165.3525 188.8213 169.335 c -%_199.4375 173.4443 204.0938 185.7197 205.123 194.374 c -%_205.1387 194.4971 205.2383 194.5908 205.3613 194.5986 c -%_205.4844 194.6045 205.5938 194.5225 205.623 194.4033 c -%_209.3418 178.7139 202.0391 162.4541 188.9873 155.5635 C -%_196.082 157.5654 202.4258 161.8232 206.0137 168.917 C -%_214.3066 169.9346 220.0176 172.7803 222.8711 178.1572 c -%_222.9277 178.2627 223.0508 178.3154 223.166 178.2822 c -%_223.2813 178.2471 223.3574 178.1357 223.3477 178.0166 c -%_223.166 175.9072 222.4063 171.6865 219.2734 169.7451 C -%_226.2383 169.7568 231.7793 168.8525 237.0723 166.7314 c -%_237.1836 166.6865 237.25 166.5693 237.2266 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 219.9189 m -%_207.8398 219.8545 207.9688 219.8643 208.0566 219.9463 c -%_208.1426 220.0264 208.1602 220.1553 208.1016 220.2588 c -%_206.4824 223.0557 207.9609 227.0713 211.1523 227.0713 c -%_216.873 227.0713 219.623 216.3018 218.748 206.4795 C -%_216.5859 212.2334 214.7148 214.5342 211.4004 217.2744 c -%_211.3066 217.3506 211.1719 217.3525 211.0781 217.2744 c -%_210.9844 217.1982 210.957 217.0654 211.0156 216.958 c -%_215.8711 207.8799 216.9121 200.8936 216.9121 192.874 C -%_215.4492 198.8311 213.7168 202.1943 208.7852 207.2549 c -%_208.6992 207.3428 208.5625 207.3564 208.4609 207.2861 c -%_208.3594 207.2158 208.3223 207.083 208.373 206.9717 c -%_213.6719 195.3799 213.2676 182.5244 209.3203 172.708 c -%_209.2813 172.6104 209.3066 172.499 209.3828 172.4268 c -%_209.4609 172.3545 209.5723 172.3389 209.668 172.3838 c -%_214.873 174.9346 217.9316 176.6104 222.4199 182.7744 C -%_221.0625 190.1729 222.1914 193.8213 225.5918 199.9678 C -%_221.6543 190.0518 223.75 176.0752 233.7793 170.3779 c -%_233.8887 170.3154 234.0273 170.3428 234.1035 170.4424 c -%_234.1816 170.542 234.1758 170.6826 234.0879 170.7744 c -%_230.3066 174.7295 227.5566 181.4092 229.9316 188.7002 C -%_228.4023 178.3115 237.5273 169.5869 247.7109 169.5869 c -%_257.3105 169.5869 263.8613 177.0947 263.3203 184.5264 c -%_262.7832 191.8916 257.877 195.4971 253.6484 197.0244 c -%_253.5371 197.0654 253.4121 197.0225 253.3496 196.9229 c -%_253.2852 196.8232 253.2988 196.6924 253.3828 196.6084 c -%_258.9922 190.915 259.7598 180.1162 249.7988 176.8486 C -%_255.6582 181.9053 253.4883 193.6768 244.1094 194.5732 c -%_243.9922 194.583 243.8828 194.5127 243.8457 194.4014 c -%_243.8066 194.292 243.8496 194.1689 243.9492 194.1064 c -%_245.957 192.8271 247.627 190.335 247.627 187.5322 c -%_247.627 182.8584 244.2051 181.0205 241.9512 181.0205 c -%_238.5293 181.0205 235.6914 184.2764 235.6914 189.2021 c -%_235.6914 195.0439 240.9512 199.8857 247.7109 200.6357 c -%_254.3379 201.3721 260.4941 198.4814 263.4609 194.1768 c -%_263.5313 194.0752 263.6621 194.04 263.7754 194.0908 c -%_263.8867 194.1416 263.9453 194.2646 263.916 194.3838 c -%_260.8965 206.0869 247.1191 211.2607 237.0273 203.8916 C -%_243.6406 211.3916 254.0332 211.4971 262.75 203.8057 c -%_262.8398 203.7256 262.9746 203.7197 263.0723 203.7939 c -%_263.168 203.8682 263.1992 203.999 263.1445 204.1084 c -%_260.4785 209.5146 253.8926 215.9268 244.5391 214.9932 c -%_235.9824 214.1377 231.0176 205.9775 230.0156 199.3018 C -%_229.459 207.8232 231.4102 213.8369 238.7695 219.4463 c -%_238.8672 219.5205 238.8965 219.6533 238.8418 219.7627 c -%_238.7871 219.8721 238.6621 219.9268 238.5449 219.8916 c -%_231.7598 217.9326 226.3145 214.4678 223.4961 207.3486 C -%_223.4961 213.5088 225.6348 219.7197 231.0215 223.8584 c -%_231.1191 223.9326 231.1484 224.0654 231.0938 224.1748 c -%_231.0391 224.2822 230.916 224.3369 230.7988 224.3037 c -%_227.3457 223.3213 224.627 221.8154 222.6602 219.1201 C -%_221.3496 230.2197 216.1387 236.8096 210.1348 236.8096 c -%_206.0098 236.8096 202.9297 233.7764 202.9297 228.9404 c -%_202.9297 226.1104 204.418 222.1377 207.7402 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 128.3018 m -%_111.6758 124.3975 118.0527 122.9092 124.9453 124.3135 C -%_124.4355 120.0107 125.2793 115.5225 126.5566 112.8271 c -%_126.6094 112.7197 126.7305 112.6611 126.8477 112.6904 c -%_126.9648 112.7197 127.0449 112.8271 127.041 112.9482 c -%_126.666 121.7139 131.6641 128.79 140.4902 131.8564 C -%_133.584 127.1006 131.5645 117.6631 134.8516 112.792 c -%_134.9199 112.6924 135.0469 112.6533 135.1582 112.6982 c -%_135.2695 112.7432 135.334 112.8604 135.3125 112.9795 c -%_134.9395 115.04 135.918 117.6631 138.0254 119.7041 c -%_140.9316 122.5186 144.875 123.1572 146.8359 121.1338 c -%_148.7969 119.1084 148.0332 115.1865 145.1289 112.374 c -%_144.0684 111.3467 142.8691 110.6104 141.6797 110.1885 c -%_141.5664 110.1475 141.498 110.0342 141.5137 109.917 c -%_141.5273 109.7979 141.623 109.7061 141.7422 109.6963 c -%_148.1309 109.1416 152.5117 112.9482 155.2578 117.5732 c -%_158.0527 122.2783 162.8281 125.9854 168.4688 125.2451 c -%_168.5879 125.2295 168.7012 125.2998 168.7422 125.4131 c -%_168.7813 125.5264 168.7363 125.6514 168.6328 125.7139 c -%_165.8359 127.3975 162.7617 128.0967 158.7695 126.7666 C -%_164.5645 131.6748 172.8164 134.5068 180.6104 131.9932 c -%_180.7197 131.958 180.8389 132.001 180.9014 132.0967 c -%_180.9639 132.1924 180.9541 132.3193 180.876 132.4053 c -%_174.9668 138.9697 163.1855 139.1006 155.7656 133.7764 C -%_158.8027 138.0928 162.834 141.2627 170.0586 142.2549 c -%_170.1738 142.2705 170.2637 142.3643 170.2773 142.4795 c -%_170.2891 142.5947 170.2227 142.7041 170.1133 142.7451 c -%_161.8223 145.8213 153.5137 142.7002 146.668 134.5283 C -%_149.6602 140.9072 154.5742 146.0146 161.4355 148.542 c -%_161.5508 148.583 161.6191 148.7002 161.5977 148.8213 c -%_161.5781 148.9424 161.4746 149.0303 161.3535 149.0322 c -%_157.4102 149.1143 153.8672 148.1748 149.0879 145.4619 C -%_152.5957 151.1533 151.8281 161.1006 146.7188 167.7217 c -%_146.6484 167.8135 146.5234 167.8447 146.416 167.7998 c -%_146.3105 167.7529 146.248 167.6396 146.2676 167.5244 c -%_147.4473 160.3252 144.9688 152.1963 140.6582 147.8838 C -%_142.8105 155.5146 140.6641 162.46 134.7617 167.5264 c -%_134.6914 167.5869 134.5918 167.6045 134.5059 167.5713 c -%_134.418 167.5381 134.3574 167.46 134.3438 167.3682 c -%_133.1094 157.9502 122.5742 148.3936 113.7422 147.5928 c -%_113.6172 147.5811 113.5195 147.4814 113.5117 147.3564 c -%_113.5039 147.2314 113.5859 147.1201 113.709 147.0928 c -%_117.9883 146.124 122.4004 146.6025 126.0977 148.1221 C -%_123.4375 145.1904 120.1582 143.0127 116.543 141.8779 c -%_116.4258 141.8408 116.3535 141.7275 116.3672 141.6064 c -%_116.3809 141.4854 116.4805 141.3896 116.6016 141.3818 c -%_121.1113 141.0713 125.5254 142.3877 129.332 144.9209 C -%_124.9707 138.2998 118.3516 133.376 109.9043 131.4131 c -%_109.7832 131.3857 109.7012 131.2744 109.707 131.1514 c -%_109.7148 131.0283 109.8105 130.9287 109.9336 130.915 c -%_121.8516 129.6123 131.6797 134.2334 138.1543 142.833 C -%_136.5059 137.9307 131.7891 133.0771 125.209 130.2139 c -%_119.3633 127.6689 113.3594 127.2666 108.7871 128.7041 c -%_108.6816 128.7373 108.5645 128.6963 108.502 128.6045 c -%_108.4395 128.5107 108.4434 128.3877 108.5137 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 203.874 m -%_156.6113 193.3877 156.9531 185.1885 160.8242 174.8193 c -%_160.8691 174.7021 160.9902 174.6338 161.1133 174.6592 c -%_161.2363 174.6846 161.3223 174.7959 161.3164 174.9189 c -%_160.6953 187.542 164.1426 196.5732 171.6152 202.7275 C -%_163.3652 192.874 167.2617 173.167 180.4385 173.167 c -%_190.0244 173.167 197.9531 181.1436 199.8926 190.6924 c -%_199.918 190.8135 199.8516 190.9346 199.7344 190.9795 c -%_199.6191 191.0244 199.4883 190.9795 199.4258 190.8721 c -%_196.584 186.1104 192.0176 183.0205 186.9697 183.0205 c -%_178.834 183.0205 176.4277 189.4873 176.4277 194.0205 c -%_176.4277 200.2061 181.3545 205.3623 185.1357 205.3623 c -%_188.5732 205.3623 190.1768 202.54 190.1768 200.4365 c -%_190.1768 196.5381 187.1787 193.2705 183.8018 192.2725 c -%_183.6807 192.2354 183.6045 192.1182 183.6221 191.9932 c -%_183.6396 191.8682 183.7451 191.7744 183.8721 191.7744 c -%_187.9775 191.749 191.4473 193.6279 193.5 197.3428 C -%_193.7695 194.4678 193.7715 192.6572 192.8594 189.6182 c -%_192.8242 189.501 192.877 189.376 192.9844 189.3193 c -%_193.0938 189.2646 193.2266 189.292 193.3008 189.3896 c -%_200.6582 198.7822 197.1367 215.0127 191.3223 221.7471 C -%_196.8535 217.7646 201.7383 209.1123 201.6621 197.3525 c -%_201.6602 197.2314 201.7461 197.126 201.8672 197.1025 c -%_201.9863 197.0791 202.1055 197.1436 202.1504 197.2568 c -%_206.2598 207.5107 204.0801 226.5049 192.8691 237.1084 C -%_195.7539 237.5068 198.7363 237.4561 201.9941 236.417 c -%_202.1094 236.3799 202.2344 236.4307 202.293 236.5361 c -%_202.3516 236.6416 202.3281 236.7744 202.2344 236.8525 c -%_198.1426 240.3076 192.4199 241.3936 186.9697 241.3936 C -%_191.666 235.8936 190.1064 224.8408 182.6162 224.8408 c -%_177.2656 224.8408 174.8379 233.1396 178.9668 237.6221 c -%_179.0449 237.708 179.0547 237.835 178.9922 237.9326 c -%_178.9277 238.0303 178.8066 238.0713 178.6953 238.0342 c -%_173.916 236.3779 168.75 232.2451 168.75 227.0166 c -%_168.75 221.9756 173.5625 217.6221 180.5537 217.9658 C -%_171.7324 215.4619 162.5 218.2334 157.6699 224.2197 c -%_157.5957 224.3115 157.4648 224.3408 157.3594 224.2861 c -%_157.252 224.2334 157.1973 224.1123 157.2266 223.9951 c -%_160.0176 213.2803 169.1934 208.7959 180.667 210.29 C -%_171.3848 206.5322 157.416 209.8076 151.2422 217.5986 c -%_151.1699 217.6904 151.043 217.7217 150.9355 217.6709 c -%_150.8301 217.6221 150.7715 217.5049 150.7949 217.3896 c -%_152.166 210.7744 155.6582 205.8291 161.418 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.771237 0.226078 0.073854 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 184.5869 m -%_26.7178 184.7061 26.8213 184.792 26.9424 184.7939 c -%_39.8486 184.9287 51.6963 188.0615 60.9141 196.3086 C -%_52.8838 190.751 37.9717 188.7979 29.3867 192.6904 c -%_29.2764 192.7402 29.2178 192.8604 29.2451 192.9785 c -%_29.2715 193.0967 29.3779 193.1787 29.499 193.1748 c -%_40.1787 192.8857 48.7783 196.1816 55.4834 202.1396 C -%_48.6143 202.5615 42.9092 206.8799 42.9268 211.9844 c -%_42.9268 212.1035 43.0107 212.2061 43.1279 212.2314 c -%_43.2441 212.2568 43.3623 212.1963 43.4111 212.0879 c -%_44.5322 209.5986 48.1592 208.3076 51.9941 209.208 c -%_56.1738 210.1885 58.9941 213.3975 58.2949 216.373 c -%_57.8232 218.3877 55.8584 219.7764 53.3428 220.1602 c -%_53.2158 220.1787 53.123 220.29 53.126 220.418 c -%_53.1299 220.5459 53.2285 220.6514 53.3564 220.6631 c -%_54.4248 220.7656 55.5361 220.7695 56.6738 220.6611 c -%_63.1641 220.0439 68.1875 216.0654 68.623 211.4834 C -%_73.3359 212.0303 77.5078 214.6396 79.002 218.2568 c -%_79.0469 218.3652 79.1621 218.4287 79.2773 218.4111 c -%_79.3926 218.3916 79.4805 218.2969 79.4902 218.1807 c -%_79.8672 213.4287 78.2324 210.3418 74.5195 207.3262 C -%_79.9043 209.3857 85.9648 209.4912 91.7754 206.7881 c -%_91.8809 206.7393 91.9395 206.624 91.918 206.5088 c -%_91.8945 206.3936 91.7949 206.3096 91.6777 206.3057 c -%_86.7988 206.1152 83.2617 204.5498 79.9473 201.2334 C -%_98.2012 206.3672 113.0332 195.0322 107.9004 178.1807 c -%_107.8652 178.0654 107.7539 177.9902 107.6328 178.0029 c -%_107.5117 178.0146 107.416 178.1104 107.4063 178.2314 c -%_106.4883 187.9453 99.7031 194.3467 89.5449 195.3076 C -%_94.9316 193.2471 100.5449 188.3311 101.1016 179.7734 c -%_101.1094 179.6514 101.0293 179.54 100.9102 179.5107 c -%_100.791 179.4814 100.668 179.54 100.6172 179.6514 c -%_97.8184 185.8057 92.3203 188.917 86.457 189.4639 C -%_92.791 186.8838 96.8535 180.8623 98.0273 173.0439 c -%_98.0469 172.9209 97.9727 172.8018 97.8535 172.7646 c -%_97.7363 172.7256 97.6074 172.7803 97.5508 172.8896 c -%_93.6855 180.4727 85.3945 185.6836 75.1035 181.7021 c -%_64.4863 177.5928 59.8291 165.3154 58.7998 156.6611 c -%_58.7852 156.54 58.6846 156.4463 58.5615 156.4385 c -%_58.4395 156.4307 58.3291 156.5127 58.3008 156.6338 c -%_54.5811 172.3213 61.8838 188.583 74.9375 195.4736 C -%_67.8418 193.4707 61.498 189.2139 57.9102 182.1191 C -%_49.6162 181.1006 43.9063 178.2568 41.0527 172.8799 c -%_40.9961 172.7725 40.8721 172.7197 40.7568 172.7549 c -%_40.6416 172.7881 40.5654 172.8994 40.5752 173.0205 c -%_40.7578 175.1299 41.5166 179.3506 44.6494 181.291 C -%_37.6846 181.2803 32.1436 182.1846 26.8506 184.3037 c -%_26.7393 184.3496 26.6738 184.4678 26.6963 184.5869 c -%_f -%_0 D -%_56.1826 131.1162 m -%_56.084 131.1826 55.9541 131.1709 55.8672 131.0908 c -%_55.7813 131.0088 55.7627 130.8799 55.8213 130.7783 c -%_57.4414 127.9814 55.9619 123.9639 52.7705 123.9639 c -%_47.0498 123.9639 44.2998 134.7334 45.1748 144.5576 C -%_47.3379 138.8018 49.208 136.5029 52.5225 133.7627 c -%_52.6162 133.6846 52.751 133.6846 52.8447 133.7607 c -%_52.9385 133.8389 52.9658 133.9697 52.9082 134.0771 c -%_48.0518 143.1572 47.0107 150.1436 47.0107 158.1631 C -%_48.4736 152.2041 50.2061 148.8408 55.1377 143.7822 c -%_55.2236 143.6943 55.3604 143.6807 55.4629 143.749 c -%_55.5645 143.8193 55.6016 143.9521 55.5498 144.0654 c -%_50.252 155.6553 50.6563 168.5127 54.6025 178.3291 c -%_54.6416 178.4268 54.6172 178.5381 54.54 178.6104 c -%_54.4629 178.6807 54.3506 178.6982 54.2549 178.6514 c -%_49.0498 176.1006 45.9912 174.4248 41.5029 168.2627 C -%_42.8604 160.8643 41.7314 157.2139 38.3311 151.0674 C -%_42.2686 160.9854 40.1729 174.9619 30.1436 180.6592 c -%_30.0342 180.7207 29.8955 180.6934 29.8193 180.5947 c -%_29.7412 180.4951 29.748 180.3535 29.835 180.2627 c -%_33.6162 176.3076 36.3662 169.6279 33.9912 162.335 C -%_35.5205 172.7236 26.3955 181.4502 16.2119 181.4502 c -%_6.6123 181.4502 0.061523 173.9404 0.602539 166.5088 c -%_1.13965 159.1436 6.0459 155.54 10.2744 154.0107 c -%_10.3857 153.9717 10.5107 154.0127 10.5742 154.1123 c -%_10.6377 154.2139 10.624 154.3428 10.541 154.4287 c -%_4.93066 160.1201 4.16309 170.9209 14.124 174.1885 C -%_8.26465 169.1318 10.4346 157.3584 19.8135 156.4639 c -%_19.9307 156.4521 20.04 156.5225 20.0781 156.6338 c -%_20.1162 156.7451 20.0732 156.8682 19.9746 156.9307 c -%_17.9658 158.208 16.2959 160.7021 16.2959 163.5049 c -%_16.2959 168.1787 19.7178 170.0146 21.9717 170.0146 c -%_25.3936 170.0146 28.2314 166.7588 28.2314 161.835 c -%_28.2314 155.9912 22.9717 151.1514 16.2119 150.3994 c -%_9.58594 149.665 3.42969 152.5537 0.461914 156.8584 c -%_0.392578 156.96 0.260742 156.9971 0.148438 156.9463 c -%_0.036133 156.8955 -0.022461 156.7705 0.007813 156.6514 c -%_3.02637 144.9482 16.8037 139.7744 26.8955 147.1455 C -%_20.2822 139.6436 9.88965 139.54 1.17383 147.2314 c -%_1.08301 147.3115 0.948242 147.3154 0.851563 147.2412 c -%_0.754883 147.1689 0.724609 147.0361 0.77832 146.9287 c -%_3.44531 141.5205 10.0313 135.1084 19.3838 136.0439 c -%_27.9404 136.8994 32.9053 145.0576 33.9072 151.7354 C -%_34.4639 143.2139 32.5137 137.1982 25.1533 131.5889 c -%_25.0566 131.5146 25.0264 131.3818 25.0811 131.2725 c -%_25.1357 131.165 25.2607 131.1104 25.3779 131.1436 c -%_32.1631 133.1045 37.6084 136.5693 40.4268 143.6885 C -%_40.4268 137.5264 38.2881 131.3154 32.9014 127.1768 c -%_32.8037 127.1025 32.7744 126.9717 32.8291 126.8623 c -%_32.8838 126.7529 33.0078 126.6982 33.125 126.7314 c -%_36.5781 127.7158 39.2959 129.2197 41.2627 131.917 C -%_42.5732 120.8174 47.7842 114.2256 53.7881 114.2256 c -%_57.9131 114.2256 60.9932 117.2588 60.9932 122.0967 c -%_60.9932 124.9268 59.5049 128.8994 56.1826 131.1162 c -%_f -%_155.4102 222.7354 m -%_152.248 226.6396 145.8711 228.1279 138.9785 226.7236 C -%_139.4883 231.0244 138.6445 235.5146 137.3672 238.208 c -%_137.3145 238.3174 137.1934 238.375 137.0762 238.3467 c -%_136.959 238.3174 136.8789 238.21 136.8828 238.0889 c -%_137.2578 229.3223 132.2598 222.2451 123.4336 219.1787 C -%_130.3398 223.9346 132.3594 233.3721 129.0723 238.2451 c -%_129.0039 238.3438 128.877 238.3828 128.7656 238.3369 c -%_128.6543 238.292 128.5898 238.1748 128.6113 238.0576 c -%_128.9844 235.9971 128.0059 233.373 125.8984 231.3311 c -%_122.9922 228.5166 119.0488 227.8779 117.0879 229.9014 c -%_115.127 231.9268 115.8906 235.8486 118.7949 238.6631 c -%_119.8555 239.6904 121.0547 240.4248 122.2441 240.8477 c -%_122.3574 240.8877 122.4258 241.001 122.4102 241.1191 c -%_122.3965 241.2383 122.3008 241.3301 122.1816 241.3398 c -%_115.793 241.8945 111.4121 238.0879 108.666 233.4619 c -%_105.8711 228.7568 101.0957 225.0518 95.4551 225.792 c -%_95.3359 225.8076 95.2227 225.7373 95.1816 225.624 c -%_95.1426 225.5107 95.1875 225.3838 95.291 225.3223 c -%_98.0879 223.6377 101.1621 222.9385 105.1543 224.2705 C -%_99.3594 219.3613 91.1074 216.5283 83.3145 219.043 c -%_83.2051 219.0791 83.0859 219.0361 83.0234 218.9395 c -%_82.9609 218.8428 82.9727 218.7168 83.0488 218.6318 c -%_88.957 212.0674 100.7383 211.9365 108.1582 217.2588 C -%_105.1211 212.9424 101.0898 209.7744 93.8652 208.7803 c -%_93.75 208.7646 93.6602 208.6729 93.6465 208.5576 c -%_93.6348 208.4414 93.7012 208.332 93.8105 208.292 c -%_102.1016 205.2139 110.4102 208.3369 117.2559 216.5068 C -%_114.2637 210.1299 109.3496 205.0225 102.4883 202.4951 c -%_102.373 202.4531 102.3047 202.335 102.3262 202.2158 c -%_102.3457 202.0947 102.4492 202.0059 102.5703 202.0029 c -%_106.5137 201.9219 110.0566 202.8604 114.8359 205.5732 C -%_111.3281 199.8838 112.0957 189.9346 117.2051 183.3154 c -%_117.2754 183.2236 117.4004 183.1914 117.5078 183.2373 c -%_117.6133 183.2842 117.6758 183.3965 117.6563 183.5107 c -%_116.4766 190.7119 118.9551 198.8408 123.2656 203.1533 C -%_121.1133 195.5215 123.2598 188.5771 129.1621 183.5088 c -%_129.2324 183.4482 129.332 183.4316 129.418 183.4648 c -%_129.5059 183.498 129.5664 183.5771 129.5801 183.6689 c -%_130.8145 193.0869 141.3496 202.6436 150.1816 203.4443 c -%_150.3066 203.4551 150.4043 203.5557 150.4121 203.6797 c -%_150.4199 203.8037 150.3379 203.917 150.2148 203.9443 c -%_145.9355 204.9131 141.5234 204.4346 137.8262 202.9131 C -%_140.4863 205.8467 143.7656 208.0244 147.3809 209.1592 c -%_147.498 209.1953 147.5703 209.3096 147.5566 209.4307 c -%_147.543 209.5518 147.4434 209.6455 147.3223 209.6543 c -%_142.8125 209.9658 138.3984 208.6484 134.5918 206.1162 C -%_138.9531 212.7373 145.5723 217.6611 154.0195 219.6221 c -%_154.1406 219.6504 154.2227 219.7607 154.2168 219.8848 c -%_154.209 220.0088 154.1133 220.1084 153.9902 220.1221 c -%_142.0723 221.4238 132.2441 216.8037 125.7695 208.2041 C -%_127.418 213.1045 132.1348 217.96 138.7148 220.8232 c -%_144.5605 223.3682 150.5645 223.7695 155.1367 222.333 c -%_155.2422 222.2998 155.3594 222.3398 155.4219 222.4326 c -%_155.4844 222.5244 155.4805 222.6475 155.4102 222.7354 c -%_f -%_102.5059 147.1631 m -%_107.3125 157.6494 106.9707 165.8486 103.0996 176.2178 c -%_103.0547 176.335 102.9336 176.4023 102.8105 176.3779 c -%_102.6875 176.3525 102.6016 176.2412 102.6074 176.1162 c -%_103.2285 163.4951 99.7813 154.4619 92.3086 148.3096 C -%_100.5586 158.1611 96.6621 177.8691 83.4863 177.8691 c -%_73.9004 177.8691 65.9697 169.8936 64.0303 160.3447 c -%_64.0059 160.2236 64.0723 160.1006 64.1885 160.0576 c -%_64.3037 160.0127 64.4346 160.0576 64.4971 160.1631 c -%_67.3398 164.9248 71.9063 168.0146 76.9551 168.0146 c -%_85.0898 168.0146 87.4961 161.5479 87.4961 157.0166 c -%_87.4961 150.8291 82.5703 145.6729 78.7891 145.6729 c -%_75.3516 145.6729 73.748 148.4971 73.748 150.6006 c -%_73.748 154.499 76.7461 157.7666 80.125 158.7646 c -%_80.2441 158.7998 80.3223 158.9189 80.3047 159.0439 c -%_80.2852 159.1689 80.1797 159.2607 80.0547 159.2627 c -%_75.9473 159.2881 72.4766 157.4072 70.4238 153.6943 C -%_70.1543 156.5693 70.1514 158.3799 71.0645 161.417 c -%_71.0996 161.5342 71.0459 161.6592 70.9385 161.7158 c -%_70.8291 161.7725 70.6963 161.7432 70.6221 161.6475 c -%_63.2656 152.2549 66.7861 136.0225 72.6016 129.29 C -%_67.0693 133.2725 62.1846 141.9229 62.2617 153.6826 c -%_62.2627 153.8057 62.1768 153.9092 62.0566 153.9326 c -%_61.9365 153.958 61.8174 153.8916 61.7725 153.7783 c -%_57.6641 143.5264 59.8438 124.5303 71.0537 113.9268 C -%_68.1699 113.5303 65.1865 113.5811 61.9287 114.6201 c -%_61.8135 114.6553 61.6885 114.6064 61.6299 114.501 c -%_61.5713 114.3936 61.5947 114.2607 61.6885 114.1826 c -%_65.7803 110.7275 71.5029 109.6416 76.9551 109.6416 C -%_72.2578 115.1416 73.8184 126.1963 81.3105 126.1963 c -%_86.6582 126.1963 89.0859 117.8975 84.957 113.415 c -%_84.8789 113.3291 84.8691 113.2002 84.9316 113.1045 c -%_84.9961 113.0068 85.1172 112.9639 85.2285 113.0029 c -%_90.0078 114.6572 95.1738 118.792 95.1738 124.0186 c -%_95.1738 129.0615 90.3613 133.4131 83.373 133.0693 C -%_92.1914 135.5752 101.4238 132.8018 106.2539 126.8174 c -%_106.3281 126.7236 106.459 126.6963 106.5645 126.749 c -%_106.6719 126.8037 106.7266 126.9248 106.6973 127.04 c -%_103.9063 137.7568 94.7305 142.2393 83.2578 140.7471 C -%_92.5391 144.5029 106.5078 141.2275 112.6816 133.4365 c -%_112.7539 133.3447 112.8809 133.3154 112.9883 133.3643 c -%_113.0938 133.415 113.1523 133.5322 113.1289 133.6455 c -%_111.7578 140.2607 108.2656 145.208 102.5059 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.41001 0 0.011078 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 166.4502 m -%_128.8672 166.3311 128.7637 166.2432 128.6426 166.2432 c -%_115.7363 166.1064 103.8887 162.9756 94.6719 154.7275 C -%_102.7012 160.2861 117.6133 162.2373 126.1992 158.3467 c -%_126.3086 158.2959 126.3672 158.1748 126.3398 158.0576 c -%_126.3145 157.9404 126.207 157.8584 126.0859 157.8604 c -%_115.4063 158.1514 106.8066 154.8545 100.1016 148.8975 C -%_106.9707 148.4736 112.6758 144.1572 112.6582 139.0518 c -%_112.6582 138.9326 112.5742 138.8291 112.457 138.8037 c -%_112.3418 138.7803 112.2227 138.8389 112.1738 138.9482 c -%_111.0527 141.4365 107.4258 142.7295 103.5918 141.8291 c -%_99.4121 140.8467 96.5918 137.6396 97.291 134.6631 c -%_97.7617 132.6494 99.7266 131.2607 102.2422 130.876 c -%_102.3691 130.8564 102.4629 130.7471 102.459 130.6182 c -%_102.4551 130.4912 102.3574 130.3857 102.2285 130.3721 c -%_101.1602 130.2705 100.0488 130.2666 98.9121 130.376 c -%_92.4219 130.9932 87.3984 134.9697 86.9629 139.5537 C -%_82.25 139.0068 78.0781 136.3955 76.584 132.7803 c -%_76.5391 132.6709 76.4258 132.6084 76.3086 132.626 c -%_76.1934 132.6436 76.1055 132.7393 76.0957 132.8564 c -%_75.7188 137.6064 77.3535 140.6943 81.0664 143.71 C -%_75.6816 141.6514 69.6201 141.5459 63.8096 144.2471 c -%_63.7041 144.2979 63.6455 144.4131 63.667 144.5283 c -%_63.6904 144.6436 63.79 144.7275 63.9072 144.7314 c -%_68.7861 144.9209 72.3242 146.4873 75.6406 149.8037 C -%_57.3838 144.6689 42.5518 156.0049 47.6846 172.8545 c -%_47.7197 172.9717 47.8311 173.0459 47.9521 173.0342 c -%_48.0732 173.0225 48.1689 172.9268 48.1787 172.8057 c -%_49.0967 163.0908 55.8818 156.6885 66.04 155.7295 C -%_60.6533 157.7881 55.04 162.7041 54.4834 171.2627 c -%_54.4756 171.3857 54.5557 171.4951 54.6748 171.5264 c -%_54.7939 171.5557 54.917 171.4951 54.9678 171.3838 c -%_57.7666 165.2295 63.2646 162.1201 69.1279 161.5713 C -%_62.7939 164.1533 58.7314 170.1748 57.5576 177.9932 c -%_57.5381 178.1162 57.6123 178.2334 57.7314 178.2725 c -%_57.8486 178.3096 57.9775 178.2568 58.0342 178.1455 c -%_61.8994 170.5635 70.1904 165.3525 80.4824 169.335 c -%_91.0996 173.4443 95.7559 185.7197 96.7852 194.374 c -%_96.8008 194.4971 96.9004 194.5908 97.0234 194.5986 c -%_97.1465 194.6045 97.2559 194.5225 97.2852 194.4033 c -%_101.0039 178.7139 93.7012 162.4541 80.6484 155.5635 C -%_87.7441 157.5654 94.0879 161.8232 97.6758 168.917 C -%_105.9688 169.9346 111.6797 172.7803 114.5332 178.1572 c -%_114.5898 178.2627 114.7129 178.3154 114.8281 178.2822 c -%_114.9434 178.2471 115.0195 178.1357 115.0098 178.0166 c -%_114.8281 175.9072 114.0684 171.6865 110.9355 169.7451 C -%_117.9004 169.7568 123.4414 168.8525 128.7344 166.7314 c -%_128.8457 166.6865 128.9121 166.5693 128.8887 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 219.9189 m -%_99.502 219.8545 99.6309 219.8643 99.7188 219.9463 c -%_99.8047 220.0264 99.8223 220.1553 99.7637 220.2588 c -%_98.1445 223.0557 99.623 227.0713 102.8145 227.0713 c -%_108.5352 227.0713 111.2852 216.3018 110.4102 206.4795 C -%_108.248 212.2334 106.377 214.5342 103.0625 217.2744 c -%_102.9688 217.3506 102.834 217.3525 102.7402 217.2744 c -%_102.6465 217.1982 102.6191 217.0654 102.6777 216.958 c -%_107.5332 207.8799 108.5742 200.8936 108.5742 192.874 C -%_107.1113 198.8311 105.3789 202.1943 100.4473 207.2549 c -%_100.3613 207.3428 100.2246 207.3564 100.123 207.2861 c -%_100.0215 207.2158 99.9844 207.083 100.0352 206.9717 c -%_105.334 195.3799 104.9297 182.5244 100.9824 172.708 c -%_100.9434 172.6104 100.9688 172.499 101.0449 172.4268 c -%_101.123 172.3545 101.2344 172.3389 101.3301 172.3838 c -%_106.5352 174.9346 109.5938 176.6104 114.082 182.7744 C -%_112.7246 190.1729 113.8535 193.8213 117.2539 199.9678 C -%_113.3164 190.0518 115.4121 176.0752 125.4414 170.3779 c -%_125.5508 170.3154 125.6895 170.3428 125.7656 170.4424 c -%_125.8438 170.542 125.8379 170.6826 125.75 170.7744 c -%_121.9688 174.7295 119.2188 181.4092 121.5938 188.7002 C -%_120.0645 178.3115 129.1895 169.5869 139.373 169.5869 c -%_148.9727 169.5869 155.5234 177.0947 154.9824 184.5264 c -%_154.4453 191.8916 149.5391 195.4971 145.3105 197.0244 c -%_145.1992 197.0654 145.0742 197.0225 145.0117 196.9229 c -%_144.9473 196.8232 144.9609 196.6924 145.0449 196.6084 c -%_150.6543 190.915 151.4219 180.1162 141.4609 176.8486 C -%_147.3203 181.9053 145.1504 193.6768 135.7715 194.5732 c -%_135.6543 194.583 135.5449 194.5127 135.5078 194.4014 c -%_135.4688 194.292 135.5117 194.1689 135.6113 194.1064 c -%_137.6191 192.8271 139.2891 190.335 139.2891 187.5322 c -%_139.2891 182.8584 135.8672 181.0205 133.6133 181.0205 c -%_130.1914 181.0205 127.3535 184.2764 127.3535 189.2021 c -%_127.3535 195.0439 132.6133 199.8857 139.373 200.6357 c -%_146 201.3721 152.1563 198.4814 155.123 194.1768 c -%_155.1934 194.0752 155.3242 194.04 155.4375 194.0908 c -%_155.5488 194.1416 155.6074 194.2646 155.5781 194.3838 c -%_152.5586 206.0869 138.7813 211.2607 128.6895 203.8916 C -%_135.3027 211.3916 145.6953 211.4971 154.4121 203.8057 c -%_154.502 203.7256 154.6367 203.7197 154.7344 203.7939 c -%_154.8301 203.8682 154.8613 203.999 154.8066 204.1084 c -%_152.1406 209.5146 145.5547 215.9268 136.2012 214.9932 c -%_127.6445 214.1377 122.6797 205.9775 121.6777 199.3018 C -%_121.1211 207.8232 123.0723 213.8369 130.4316 219.4463 c -%_130.5293 219.5205 130.5586 219.6533 130.5039 219.7627 c -%_130.4492 219.8721 130.3242 219.9268 130.207 219.8916 c -%_123.4219 217.9326 117.9766 214.4678 115.1582 207.3486 C -%_115.1582 213.5088 117.2969 219.7197 122.6836 223.8584 c -%_122.7813 223.9326 122.8105 224.0654 122.7559 224.1748 c -%_122.7012 224.2822 122.5781 224.3369 122.4609 224.3037 c -%_119.0078 223.3213 116.2891 221.8154 114.3223 219.1201 C -%_113.0117 230.2197 107.8008 236.8096 101.7969 236.8096 c -%_97.6719 236.8096 94.5918 233.7764 94.5918 228.9404 c -%_94.5918 226.1104 96.0801 222.1377 99.4023 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 128.3018 m -%_3.33691 124.3975 9.71387 122.9092 16.6064 124.3135 C -%_16.0967 120.0107 16.9404 115.5225 18.2178 112.8271 c -%_18.2705 112.7197 18.3916 112.6611 18.5088 112.6904 c -%_18.626 112.7197 18.7061 112.8271 18.7021 112.9482 c -%_18.3271 121.7139 23.3252 128.79 32.1514 131.8564 C -%_25.2451 127.1006 23.2256 117.6631 26.5127 112.792 c -%_26.5811 112.6924 26.708 112.6533 26.8193 112.6982 c -%_26.9307 112.7432 26.9951 112.8604 26.9736 112.9795 c -%_26.6006 115.04 27.5791 117.6631 29.6865 119.7041 c -%_32.5928 122.5186 36.5361 123.1572 38.4971 121.1338 c -%_40.458 119.1084 39.6943 115.1865 36.79 112.374 c -%_35.7295 111.3467 34.5303 110.6104 33.3408 110.1885 c -%_33.2275 110.1475 33.1592 110.0342 33.1748 109.917 c -%_33.1885 109.7979 33.2842 109.7061 33.4033 109.6963 c -%_39.792 109.1416 44.1729 112.9482 46.9189 117.5732 c -%_49.7139 122.2783 54.4893 125.9854 60.1299 125.2451 c -%_60.249 125.2295 60.3623 125.2998 60.4033 125.4131 c -%_60.4424 125.5264 60.3975 125.6514 60.2939 125.7139 c -%_57.4971 127.3975 54.4229 128.0967 50.4307 126.7666 C -%_56.2256 131.6748 64.4775 134.5068 72.2715 131.9932 c -%_72.3809 131.958 72.5 132.001 72.5625 132.0967 c -%_72.625 132.1924 72.6152 132.3193 72.5371 132.4053 c -%_66.6279 138.9697 54.8467 139.1006 47.4268 133.7764 C -%_50.4639 138.0928 54.4951 141.2627 61.7197 142.2549 c -%_61.835 142.2705 61.9248 142.3643 61.9385 142.4795 c -%_61.9502 142.5947 61.8838 142.7041 61.7744 142.7451 c -%_53.4834 145.8213 45.1748 142.7002 38.3291 134.5283 C -%_41.3213 140.9072 46.2354 146.0146 53.0967 148.542 c -%_53.2119 148.583 53.2803 148.7002 53.2588 148.8213 c -%_53.2393 148.9424 53.1357 149.0303 53.0146 149.0322 c -%_49.0713 149.1143 45.5283 148.1748 40.749 145.4619 C -%_44.2568 151.1533 43.4893 161.1006 38.3799 167.7217 c -%_38.3096 167.8135 38.1846 167.8447 38.0771 167.7998 c -%_37.9717 167.7529 37.9092 167.6396 37.9287 167.5244 c -%_39.1084 160.3252 36.6299 152.1963 32.3193 147.8838 C -%_34.4717 155.5146 32.3252 162.46 26.4229 167.5264 c -%_26.3525 167.5869 26.2529 167.6045 26.167 167.5713 c -%_26.0791 167.5381 26.0186 167.46 26.0049 167.3682 c -%_24.7705 157.9502 14.2354 148.3936 5.40332 147.5928 c -%_5.27832 147.5811 5.18066 147.4814 5.17285 147.3564 c -%_5.16504 147.2314 5.24707 147.1201 5.37012 147.0928 c -%_9.64941 146.124 14.0615 146.6025 17.7588 148.1221 C -%_15.0986 145.1904 11.8193 143.0127 8.2041 141.8779 c -%_8.08691 141.8408 8.01465 141.7275 8.02832 141.6064 c -%_8.04199 141.4854 8.1416 141.3896 8.2627 141.3818 c -%_12.7725 141.0713 17.1865 142.3877 20.9932 144.9209 C -%_16.6318 138.2998 10.0127 133.376 1.56543 131.4131 c -%_1.44434 131.3857 1.3623 131.2744 1.36816 131.1514 c -%_1.37598 131.0283 1.47168 130.9287 1.59473 130.915 c -%_13.5127 129.6123 23.3408 134.2334 29.8154 142.833 C -%_28.167 137.9307 23.4502 133.0771 16.8701 130.2139 c -%_11.0244 127.6689 5.02051 127.2666 0.448242 128.7041 c -%_0.342773 128.7373 0.225586 128.6963 0.163086 128.6045 c -%_0.100586 128.5107 0.104492 128.3877 0.174805 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 203.874 m -%_48.2725 193.3877 48.6143 185.1885 52.4854 174.8193 c -%_52.5303 174.7021 52.6514 174.6338 52.7744 174.6592 c -%_52.8975 174.6846 52.9834 174.7959 52.9775 174.9189 c -%_52.3564 187.542 55.8037 196.5732 63.2764 202.7275 C -%_55.0264 192.874 58.9229 173.167 72.0996 173.167 c -%_81.6855 173.167 89.6152 181.1436 91.5547 190.6924 c -%_91.5801 190.8135 91.5137 190.9346 91.3965 190.9795 c -%_91.2813 191.0244 91.1504 190.9795 91.0879 190.8721 c -%_88.2461 186.1104 83.6797 183.0205 78.6309 183.0205 c -%_70.4951 183.0205 68.0889 189.4873 68.0889 194.0205 c -%_68.0889 200.2061 73.0156 205.3623 76.7969 205.3623 c -%_80.2344 205.3623 81.8379 202.54 81.8379 200.4365 c -%_81.8379 196.5381 78.8398 193.2705 75.4629 192.2725 c -%_75.3418 192.2354 75.2656 192.1182 75.2832 191.9932 c -%_75.3008 191.8682 75.4063 191.7744 75.5332 191.7744 c -%_79.6387 191.749 83.1094 193.6279 85.1621 197.3428 C -%_85.4316 194.4678 85.4336 192.6572 84.5215 189.6182 c -%_84.4863 189.501 84.5391 189.376 84.6465 189.3193 c -%_84.7559 189.2646 84.8887 189.292 84.9629 189.3896 c -%_92.3203 198.7822 88.7988 215.0127 82.9844 221.7471 C -%_88.5156 217.7646 93.4004 209.1123 93.3242 197.3525 c -%_93.3223 197.2314 93.4082 197.126 93.5293 197.1025 c -%_93.6484 197.0791 93.7676 197.1436 93.8125 197.2568 c -%_97.9219 207.5107 95.7422 226.5049 84.5313 237.1084 C -%_87.416 237.5068 90.3984 237.4561 93.6563 236.417 c -%_93.7715 236.3799 93.8965 236.4307 93.9551 236.5361 c -%_94.0137 236.6416 93.9902 236.7744 93.8965 236.8525 c -%_89.8047 240.3076 84.082 241.3936 78.6309 241.3936 C -%_83.3281 235.8936 81.7676 224.8408 74.2773 224.8408 c -%_68.9268 224.8408 66.499 233.1396 70.6279 237.6221 c -%_70.7061 237.708 70.7158 237.835 70.6533 237.9326 c -%_70.5889 238.0303 70.4678 238.0713 70.3564 238.0342 c -%_65.5771 236.3779 60.4111 232.2451 60.4111 227.0166 c -%_60.4111 221.9756 65.2236 217.6221 72.2148 217.9658 C -%_63.3936 215.4619 54.1611 218.2334 49.3311 224.2197 c -%_49.2568 224.3115 49.126 224.3408 49.0205 224.2861 c -%_48.9131 224.2334 48.8584 224.1123 48.8877 223.9951 c -%_51.6787 213.2803 60.8545 208.7959 72.3281 210.29 C -%_63.0459 206.5322 49.0771 209.8076 42.9033 217.5986 c -%_42.8311 217.6904 42.7041 217.7217 42.5967 217.6709 c -%_42.4912 217.6221 42.4326 217.5049 42.4561 217.3896 c -%_43.8271 210.7744 47.3193 205.8291 53.0791 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_; -%_ -%_9 () XW -%_U -%_/ArtDictionary : -%_5 /Int (AIPattern_Editor_Preview_Rows) , -%_109.6416 /Real (AIPattern_Editor_Tile_Height) , -%_1 /Bool (AIPattern_Editor_Top_in_Front) , -%_1 /Bool (AIPattern_Editor_Left_in_Front) , -%_1 /Bool (AIPattern_Editor_Dim_Copies_Key) , -%_5 /Int (AIPattern_Editor_Preview_Cols) , -%_108.3384 /Real (AIPattern_Editor_Tile_Width) , -%_4 /Int (AIPattern_Editor_Editable_Copy_Loc_Key) , -%_50 /Real (AIPattern_Editor_Dim_Percent_Key) , -%_; -%_ -%_9 () XW -E -%AI3_EndPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginBrushPattern -(Unnamed 6) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --3874.5 4018.5 m --3773.1816 4018.5 L --3773.1816 4010.7832 L --3874.5 4010.7832 L --3874.5 4018.5 L -n -u -0 O -0.720851 0.673426 0.586358 0.790768 0.137255 0.121569 0.12549 Xa --3773.3 4012.2073 m --3773.1504 4012.2439 -3773.2041 4011.8247 -3773.1816 4011.7495 C --3773.4319 4011.8423 -3773.2937 4012.3159 -3773.3 4012.2073 C -f --3775.7693 4013.1582 m --3775.7256 4012.9871 L --3776.0896 4013.4063 L --3775.7693 4013.1582 L -f --3778.0784 4013.1504 m --3777.8601 4013.8643 -3777.2417 4013.0352 -3776.8303 4013.2888 C --3776.7625 4013.4524 L --3776.5769 4012.8772 L --3777.0769 4012.9683 -3777.7263 4013.3499 -3778.0784 4013.1504 C -f --3779.3096 4011.6072 m --3779.2336 4011.8843 -3779.5759 4011.8455 -3779.0225 4011.6936 C --3779.0503 4011.6631 -3779.0583 4011.6455 -3779.0745 4011.6233 C --3779.1243 4011.6272 -3779.1929 4011.6262 -3779.3096 4011.6072 C -f --3779.0745 4011.6233 m --3778.8313 4011.6033 -3779.2336 4011.3904 -3779.0745 4011.6233 C --3779.0745 4011.6233 L -f --3780.1975 4011.7822 m --3779.8772 4011.5342 L --3779.9441 4011.3704 -3780.2292 4011.3333 -3780.1233 4011.2134 C --3780.4519 4011.3496 -3780.3843 4011.5127 -3780.1975 4011.7822 C -f --3780.5012 4012.3032 m --3780.3352 4012.1982 L --3780.3643 4012.1294 -3780.4082 4012.1052 -3780.5012 4012.3032 C -f --3779.9832 4011.9768 m --3780.3352 4012.1982 L --3780.2888 4012.3132 -3780.2839 4012.5447 -3780.1736 4012.1184 C --3780.2024 4012.3296 -3780.1328 4012.1262 -3779.9832 4011.9768 C -f --3779.7839 4012.0852 m --3779.6042 4012.24 -3779.3721 4012.3384 -3779.6936 4012.5852 C --3779.0808 4012.4871 -3779.1711 4011.9856 -3779.7839 4012.0852 C -f --3778.1963 4013.8887 m --3777.9561 4014.0984 L --3777.7483 4013.8584 L --3777.8521 4013.9771 -3778.2112 4013.6653 -3778.1963 4013.8887 C -f --3782.1929 4011.4126 m --3782.2129 4011.5647 -3782.0852 4011.8174 -3782.0613 4012.0122 C --3781.8247 4011.8374 L --3781.9463 4011.7334 -3782.1768 4011.6375 -3782.1929 4011.4126 C -f --3782.0613 4012.0122 m --3782.4153 4012.2727 L --3782.0991 4012.3032 -3782.0413 4012.1792 -3782.0613 4012.0122 C -f --3780.5583 4013.0955 m --3779.9768 4012.5479 L --3780.6704 4013.1033 L --3780.5583 4013.0955 L -f --3783.5449 4011.3936 m --3783.3442 4011.0422 L --3783.7017 4011.5735 L --3783.5449 4011.3936 L -f --3784.4417 4011.4551 m --3784.2932 4011.1638 -3784.6453 4010.9624 -3784.4883 4010.7832 C --3784.7319 4010.8352 -3784.9399 4011.0852 -3785.1272 4011.3103 C --3784.9282 4011.1848 -3784.7161 4011.2168 -3784.4417 4011.4551 C -f --3785.4417 4011.6375 m --3785.3423 4011.5679 -3785.2393 4011.4431 -3785.1272 4011.3103 C --3785.2329 4011.3772 -3785.3369 4011.4744 -3785.4417 4011.6375 C -f --3783.0183 4012.1975 m --3783.0457 4012.1055 -3783.0984 4011.8655 -3783.2969 4011.7639 C --3783.1577 4012.1912 L --3783.1152 4012.1936 -3783.0671 4012.1951 -3783.0183 4012.1975 C -f --3783.1528 4012.2046 m --3783.1577 4012.1912 L --3783.3088 4012.1814 -3783.4136 4012.1719 -3783.4585 4012.1672 c --3783.4199 4012.1707 -3783.3279 4012.1824 -3783.1528 4012.2046 C -f --3782.9832 4012.1992 m --3782.9961 4012.1982 -3783.0056 4012.1975 -3783.0183 4012.1975 C --3783.0049 4012.24 -3782.9968 4012.2534 -3782.9832 4012.1992 C -f --3781.4863 4012.7092 m --3781.6943 4012.9482 -3782.1279 4013.2039 -3781.7083 4013.5686 C --3781.5591 4013.2759 -3781.7993 4013.0686 -3781.4863 4012.7092 c -f --3782.8103 4012.7334 m --3782.4343 4012.8311 L --3782.4417 4012.7183 -3782.5095 4012.5535 -3782.4065 4012.4351 C --3782.8103 4012.7334 L -f --3782.9944 4012.8694 m --3782.8103 4012.7334 L --3782.9497 4012.6975 L --3782.9944 4012.8694 L -f --3784.7976 4012.0376 m --3784.96 4012.2239 -3785.1377 4012.2393 -3785.3384 4012.2693 C --3785.1233 4012.3533 -3784.9009 4012.3992 -3784.6897 4012.3972 C --3784.6599 4012.2632 -3784.5671 4012.0222 -3784.7976 4012.0376 C -f --3783.9983 4012.1563 m --3784.0095 4012.1663 -3784.0239 4012.1707 -3784.0344 4012.1807 C --3784.0122 4012.2173 -3783.9944 4012.2283 -3783.9983 4012.1563 C -f --3787.3142 4012.2664 m --3787.3032 4012.2896 -3787.2937 4012.3196 -3787.2825 4012.3442 C --3787.28 4012.3196 -3787.2783 4012.2952 -3787.2751 4012.27 C --3787.3142 4012.2664 L -f --3784.6536 4012.4771 m --3784.4919 4012.5598 -3784.3953 4012.4551 -3784.3032 4012.3242 C --3784.4241 4012.3662 -3784.5522 4012.3943 -3784.6897 4012.3972 C --3784.7031 4012.4583 -3784.7056 4012.4983 -3784.6536 4012.4771 C -f --3785.9929 4011.8374 m --3785.9087 4011.927 -3785.8132 4012.0032 -3785.7129 4012.0723 C --3785.7952 4011.9373 -3785.9631 4011.7263 -3785.9929 4011.8374 C -f --3784.0889 4012.0623 m --3784.0808 4012.0559 -3784.0735 4012.0479 -3784.0647 4012.0432 C --3784.1177 4011.9524 -3784.1111 4011.9966 -3784.0889 4012.0623 C -f --3784.0889 4012.0623 m --3784.1721 4012.1243 -3784.2375 4012.2295 -3784.3032 4012.3242 C --3784.2048 4012.2896 -3784.1135 4012.2439 -3784.0344 4012.1807 C --3784.0544 4012.1504 -3784.0745 4012.1042 -3784.0889 4012.0623 C -f --3787.9128 4015.0093 m --3787.8843 4014.6133 -3787.4592 4014.2471 -3787.0923 4014.6719 C --3786.7312 4014.3752 -3786.9673 4013.0723 -3787.2825 4012.3442 C --3787.2937 4012.5166 -3787.2937 4012.6763 -3787.6653 4012.9104 C --3787.5352 4013.1262 -3786.8408 4013.4163 -3787.1543 4013.7747 C --3787.6465 4013.9783 -3787.5576 4013.6343 -3787.7969 4013.4253 C --3787.5935 4013.9182 -3788.4231 4014.1431 -3788.3159 4014.8687 C --3787.8843 4014.6133 L --3787.8762 4014.7263 -3788.0327 4014.9063 -3787.9128 4015.0093 C -f --3786.5745 4012.3843 m --3786.4216 4012.3352 L --3786.5959 4012.2664 -3786.7207 4012.1079 -3786.9504 4011.7976 C --3787.2048 4011.9915 -3787.2576 4012.1382 -3787.2751 4012.27 C --3786.5222 4012.3252 L --3786.5745 4012.3843 L -f --3785.7351 4012.3335 m --3785.8545 4012.7644 -3786.2217 4012.9482 -3785.9968 4013.4143 C --3785.5481 4013.3843 -3785.6824 4013.0542 -3785.4143 4012.8672 C --3786.1384 4012.9744 -3785.2063 4012.6272 -3785.7295 4012.3831 C --3785.5872 4012.3096 -3785.4592 4012.2871 -3785.3384 4012.2693 C --3785.4688 4012.2173 -3785.5945 4012.1519 -3785.7129 4012.0723 C --3785.7063 4012.0823 -3785.7017 4012.0896 -3785.6963 4012.0984 C --3785.6929 4012.0984 L --3785.6929 4012.1006 -3785.6936 4012.1016 -3785.6936 4012.1042 C --3785.6624 4012.1582 -3785.6521 4012.1912 -3785.6873 4012.1604 C --3785.6897 4012.1653 -3785.6985 4012.1672 -3785.7024 4012.1692 C --3785.7073 4012.2283 -3785.7207 4012.2808 -3785.7351 4012.3311 C --3785.9448 4012.2422 -3785.7681 4012.22 -3785.7024 4012.1692 C --3785.7 4012.1472 -3785.6943 4012.1272 -3785.6936 4012.1042 C --3785.6943 4012.1023 -3785.6953 4012.1006 -3785.6963 4012.0984 C --3786.4216 4012.3352 L --3786.2681 4012.3953 -3786.0759 4012.3831 -3785.7351 4012.3335 C -f --3782.0952 4014.4951 m --3782.1177 4014.4573 -3782.1167 4014.4263 -3782.1184 4014.3953 C --3782.1653 4014.4482 -3782.1831 4014.4839 -3782.0952 4014.4951 C -f --3782.3936 4014.2351 m --3782.3408 4014.1753 -3782.2969 4014.0032 -3782.1255 4014.0471 C --3781.9768 4014.1763 -3782.1262 4014.2534 -3782.1184 4014.3953 C --3782.0151 4014.2808 -3781.7568 4014.0862 -3782.0808 4013.876 C --3782.1321 4013.9351 L --3782.4241 4013.7871 -3782.7993 4013.2495 -3782.7483 4013.1902 C --3782.6631 4013.5784 -3782.5879 4013.8542 -3782.3936 4014.2351 C -f --3784.0852 4013.3943 m --3784.6892 4013.6055 L --3784.3816 4013.9783 L --3784.3972 4013.7544 L --3784.0537 4013.8423 -3784.1279 4013.5667 -3784.0852 4013.3943 C -f --3787.3833 4012.0522 m --3787.3032 4011.5967 L --3787.6521 4012.24 L --3787.3833 4012.0522 L -f --3788.1682 4012.1062 m --3788.1392 4011.7112 L --3788.3464 4011.9495 L --3788.1682 4012.1062 L -f --3832.4617 4017.0166 m --3832.6392 4017.1287 L --3832.5552 4017.0942 -3832.5012 4017.0564 -3832.4617 4017.0166 C -f --3831.1768 4017.0435 m --3831.1453 4016.8484 L --3831.2048 4016.9558 -3831.2292 4017.0352 -3831.1768 4017.0435 C -f --3807.4456 4012.1504 m --3807.7041 4011.7815 -3807.9929 4011.2083 -3807.9617 4011.6536 C --3807.8823 4012.0872 L --3807.7017 4012.0093 -3807.5632 4012.0576 -3807.4456 4012.1504 C -f --3820.6479 4014.7415 m --3820.6233 4014.7832 -3820.5977 4014.8286 -3820.5723 4014.8728 C --3820.5095 4014.7246 -3820.4504 4014.5872 -3820.3977 4014.4583 C --3820.4729 4014.5471 -3820.5583 4014.6416 -3820.6479 4014.7415 C -f --3820.8303 4016.5364 m --3821.1711 4016.2566 L --3821.0945 4016.3542 -3820.9849 4016.4482 -3820.8303 4016.5364 C -f --3839.4792 4017.4768 m --3839.6863 4017.9182 L --3839.3623 4017.9163 -3839.5049 4017.6936 -3839.4792 4017.4768 C -f --3796.2073 4012.2664 m --3796.4304 4012.0967 -3796.6079 4012.0254 -3796.7639 4012.0044 C --3796.4951 4012.2534 -3796.2783 4012.6272 -3796.2073 4012.2664 C -f --3831.9561 4012.4126 m --3832.0647 4012.4912 -3832.1111 4012.5796 -3832.1079 4012.6763 C --3831.9961 4012.6023 -3831.9329 4012.5193 -3831.9561 4012.4126 C -f --3797.4082 4012.0059 m --3797.3689 4012.0496 -3797.3303 4012.0713 -3797.2903 4012.1079 C --3797.1272 4012.0352 -3796.9631 4011.9768 -3796.7639 4012.0044 C --3796.9624 4011.8196 -3797.1897 4011.7046 -3797.4082 4012.0059 C -f --3864.9297 4017.1172 m --3864.9482 4017.0984 -3864.9705 4017.0884 -3864.9873 4017.0652 C --3864.9929 4017.1243 -3864.9673 4017.1272 -3864.9297 4017.1172 C -f --3872.3442 4012.74 m --3872.2712 4012.7124 -3872.1521 4012.7119 -3872.0398 4012.7063 C --3872.0945 4012.6763 -3872.1863 4012.6792 -3872.3442 4012.74 c -f --3791.3264 4011.9172 m --3791.1599 4011.8887 -3791.3 4011.8694 -3791.3264 4011.9172 C --3791.3264 4011.9172 L -f --3790.5168 4013.6331 m --3790.5522 4013.6814 -3790.5791 4013.7439 -3790.5833 4013.8442 C --3790.5696 4013.74 -3790.5464 4013.6736 -3790.5168 4013.6331 c -f --3799.0664 4014.7063 m --3799.0713 4014.7063 -3799.0752 4014.7046 -3799.0808 4014.7046 C --3799.0313 4014.7896 -3799.0398 4014.7732 -3799.0664 4014.7063 C -f --3791.0759 4012.1143 m --3791.1384 4012.0613 -3791.2104 4012.0166 -3791.2888 4011.9856 C --3791.2544 4012.0193 -3791.1897 4012.0613 -3791.0759 4012.1143 C -f --3791.1096 4011.9092 m --3791.0522 4011.9287 -3791.0071 4011.9395 -3790.9641 4011.9512 C --3790.9431 4011.8792 -3790.9617 4011.8335 -3791.1096 4011.9092 C -f --3791.5583 4011.9407 m --3791.4631 4011.9336 -3791.3743 4011.9539 -3791.2888 4011.9856 C --3791.3215 4011.9558 -3791.3352 4011.9319 -3791.3264 4011.9172 C --3791.3752 4011.9236 -3791.4441 4011.9326 -3791.5583 4011.9407 c -f --3851.2932 4015.9558 m --3851.3042 4015.9424 -3851.3169 4015.9336 -3851.3289 4015.9153 C --3851.4968 4016.0952 -3851.4231 4016.0667 -3851.2932 4015.9558 C -f --3811.7783 4016.6563 m --3811.7705 4016.6519 -3811.7664 4016.6404 -3811.7593 4016.6362 C --3811.7671 4016.6311 -3811.7769 4016.6252 -3811.7839 4016.6199 C --3811.7783 4016.6563 L -f --3812.3762 4016.9792 m --3812.1216 4016.4392 -3811.9768 4016.5056 -3811.7839 4016.6199 C --3811.9817 4015.3694 L --3812.3762 4016.9792 L -f -*u --3835.5383 4017.1416 m --3835.1184 4017.5322 L --3835.6252 4018.1736 -3835.9919 4017.9524 -3835.5977 4018.5 C --3835.5383 4017.1416 -3833.9656 4018.3616 -3833.9072 4017.0039 C --3833.6304 4017.2896 L --3833.7097 4017.2766 -3833.7224 4017.3562 -3833.8008 4017.3433 C --3833.2625 4017.9934 -3833.4009 4016.3616 -3832.7073 4016.5542 C --3832.4656 4016.6582 -3832.2969 4016.8552 -3832.4617 4017.0166 C --3831.9231 4016.6807 L --3831.7664 4016.7073 -3831.8047 4016.9431 -3831.9607 4016.9172 C --3831.1392 4016.8086 L --3831.1453 4016.8484 L --3831.0281 4016.6362 -3830.7625 4016.3064 -3830.6328 4016.1663 C --3830.4241 4016.3616 -3830.7375 4016.3103 -3830.6841 4016.4792 C --3830.2292 4016.1504 L --3830.0439 4016.5032 -3830.4209 4016.8442 -3830.7351 4016.7935 C --3830.3103 4018.1494 -3830.3577 4016.4524 -3829.4409 4017.2444 C --3829.8704 4017.4163 L --3829.5935 4018.1863 -3829.2583 4017.907 -3828.7727 4018.3875 C --3828.8879 4018.1367 -3829.7449 4017.1775 -3829.2512 4016.8391 C --3829.1121 4016.9414 -3828.9287 4016.99 -3828.6624 4016.7168 C --3828.6599 4017.2 -3828.3999 4017.0811 -3828.0745 4017.0535 C --3828.0967 4017.6936 L --3827.7449 4017.5088 -3827.7727 4017.1831 -3827.5657 4016.8953 C --3827.1736 4016.9583 -3827.0923 4017.4536 -3827 4017.8711 C --3826.3721 4017.9727 -3827.4336 4017.0767 -3826.6904 4016.9558 C --3826.1682 4017.2007 -3825.8015 4016.9392 -3825.1768 4016.5564 C --3824.8113 4016.7776 -3825.2407 4016.9482 -3825.1096 4017.1311 C --3824.7856 4016.6206 L --3824.7063 4016.6331 -3824.7319 4016.7896 -3824.7449 4016.8687 C --3824.4719 4016.6707 -3824.7224 4016.2292 -3824.2932 4016.0559 C --3824.1775 4015.3511 -3823.4121 4017.0852 -3822.8809 4016.2854 C --3822.75 4016.4673 -3822.9441 4016.6775 -3822.9041 4016.9253 C --3822.1753 4016.3999 -3822.2793 4016.5435 -3821.6809 4015.8367 C --3821.1711 4016.2566 L --3821.5457 4015.7766 -3821.0671 4015.2083 -3820.6479 4014.7415 C --3820.7808 4014.5093 -3820.8943 4014.3064 -3820.9705 4014.2095 C --3820.3015 4013.8662 L --3820.2207 4013.9712 -3820.2881 4014.1912 -3820.3977 4014.4583 C --3820.3521 4014.4055 -3820.3088 4014.3533 -3820.2751 4014.3047 C --3820.0359 4014.5413 -3820.1599 4014.9104 -3820.3313 4015.2676 C --3820.4128 4015.1416 -3820.4937 4015.0071 -3820.5723 4014.8728 C --3820.7375 4015.2615 -3820.8921 4015.6919 -3820.8577 4016.0667 C --3820.8142 4015.9927 -3820.7305 4015.9292 -3820.6384 4015.8936 C --3820.6816 4015.9993 -3820.7092 4016.0935 -3820.6892 4016.1575 c --3820.6665 4016.2246 -3820.5967 4016.0833 -3820.4873 4015.9192 C --3820.3352 4016.6331 L --3820.2983 4016.3499 L --3819.4231 4016.7959 L --3818.7969 4016.0784 -3818.2522 4015.0212 -3817.2583 4014.7271 C --3817.5049 4015.25 -3817.3113 4015.5811 -3817.3247 4016.2007 C --3817.5959 4015.5447 -3818.0945 4016.4792 -3818.6096 4016.3462 c --3818.3408 4016.4153 -3818.3999 4016.7112 -3818.4683 4016.8132 C --3817.5496 4016.2168 L --3817.5703 4016.7239 -3817.3545 4016.5967 -3817.1145 4016.8064 C --3817.2959 4015.8047 -3816.4297 4016.1392 -3816.0559 4015.8323 C --3816.0327 4016.1682 -3816.1223 4016.5122 -3816.5784 4016.4304 C --3816.0752 4017.1848 -3815.9282 4015.2544 -3815.4343 4015.8953 C --3815.5457 4015.9031 -3815.6057 4015.8518 -3815.6497 4016.0232 C --3815.3896 4015.7239 -3814.7537 4015.9612 -3814.9033 4016.2534 C --3815.0144 4016.2603 L --3814.2751 4016.3792 -3812.7639 4016.2676 -3812.6536 4015.4172 C --3812.6462 4015.5276 -3812.7505 4016.4424 -3812.7952 4016.6143 C --3811.4761 4013.7527 L --3811.5923 4014.4832 -3811.1462 4016.2224 -3811.7593 4016.6362 C --3811.5833 4016.74 -3811.3655 4016.8616 -3810.9944 4016.6033 C --3811.1145 4016.4993 -3811.2937 4015.5471 -3811.1296 4015.48 C --3810.6792 4016.2932 -3810.8169 4015.9153 -3810.2617 4016.6084 C --3810.4417 4016.4524 -3810.2417 4015.3064 -3809.9573 4015.3433 C --3810.0017 4015.5144 -3809.9336 4016.4734 -3810.0376 4016.5928 C --3809.3296 4015.4683 L --3809.5063 4015.6707 -3809.3608 4016.4214 -3809.2024 4016.74 C --3809.2759 4016.5193 -3808.5903 4016.76 -3808.4016 4016.6487 C --3808.7017 4016.3875 L --3807.9023 4016.5579 -3807.9121 4014.8064 -3807.1191 4014.8655 C --3807.2151 4015.0974 -3807.3562 4016.2952 -3806.9529 4016.4363 C --3806.7681 4015.8606 -3806.1345 4013.6663 -3805.4329 4013.2227 C --3805.2983 4013.5522 L --3804.76 4013.1768 L --3805.0952 4014.0435 -3806.0359 4015.8672 -3806.5496 4016.5767 C --3806.2505 4016.8374 -3806.4663 4016.9656 -3806.0183 4016.9351 C --3805.8601 4017.2439 -3806.2625 4017.4031 -3806.3943 4017.4214 C --3805.3513 4017.6206 L --3805.3977 4016.9482 -3804.5537 4016.9463 -3804.5935 4016.3862 C --3805.7263 4017.0833 L --3805.7722 4016.4119 -3805.0713 4015.1753 -3804.3323 4015.2932 C --3804.1443 4015.5613 -3804.4729 4016.49 -3804.4575 4016.7144 C --3804.3616 4016.4832 -3803.7561 4016.2722 -3803.6882 4016.4363 C --3804.0017 4016.7959 L --3803.5903 4017.0486 -3803.3303 4015.9048 -3802.8359 4016.5464 C --3802.6653 4016.5896 -3802.3264 4017.4119 -3802.2969 4017.0144 C --3802.5752 4016.2471 -3802.6296 4013.8743 -3802.4441 4013.2979 C --3802.3843 4013.3499 -3801.5481 4014.0313 -3801.3533 4014.4104 C --3801.0723 4015.0122 -3801.7751 4015.8442 -3801.5359 4016.3606 C --3801.5256 4016.1768 -3801.3704 4015.9502 -3801.3057 4015.8772 C --3801.1265 4016.0342 -3801.3799 4016.4463 -3800.9905 4016.3633 C --3800.9255 4015.6824 -3800.1985 4016.4207 -3800.8064 4015.7871 C --3800.4255 4015.5923 -3800.4016 4015.928 -3799.9543 4015.8975 C --3800.0967 4015.4573 -3799.5527 4014.3992 -3799.1711 4014.2039 C --3799.1936 4014.3772 -3799.1079 4014.6033 -3799.0664 4014.7063 C --3798.2856 4014.7676 -3797.8665 4015.0774 -3797.1384 4015.0833 C --3797.0713 4015.2483 -3796.72 4015.4482 -3796.8696 4015.7415 C --3796.7649 4015.6206 -3796.6687 4015.3894 -3796.4441 4015.3733 C --3796.0095 4015.9624 -3796.9448 4015.4646 -3796.6135 4016.1736 C --3796.5852 4015.7776 -3796.0327 4015.6262 -3795.7129 4015.3792 C --3795.8113 4014.7671 -3796.4519 4015.2615 -3796.7722 4015.5088 C --3796.7737 4014.6653 -3796.2161 4013.7815 -3795.4551 4013.3911 C --3794.8503 4013.1814 -3795.1929 4013.9363 -3795.0879 4013.8167 C --3793.9519 4013.9639 -3794.1201 4012.3433 -3793.1768 4012.9524 C --3792.8025 4013.4895 -3793.1599 4014.0212 -3793.0769 4014.4092 C --3793.5696 4014.6128 -3793.8333 4014.0679 -3794.1672 4014.0896 C --3793.7561 4014.3442 L --3793.9128 4014.5232 -3794.2417 4014.6582 -3794.4209 4014.5032 C --3794.1072 4014.9856 -3792.5017 4014.5952 -3791.6252 4015.0413 C --3791.4695 4014.8616 -3791.2007 4014.6743 -3791.3279 4014.4583 C --3791.6052 4014.5332 L --3791.8601 4014.0999 -3791.0833 4013.9336 -3791.4343 4013.7312 C --3791.0623 4013.4263 -3790.6453 4012.9473 -3790.1216 4013.1924 C --3790.0232 4013.8054 L --3790.0344 4013.6262 -3790.3655 4013.4407 -3790.5127 4013.6272 c --3790.2944 4013.3552 -3789.7097 4014.4573 -3789.4705 4013.6543 C --3789.8376 4013.2295 L --3789.4641 4012.9214 -3789.0024 4012.2703 -3788.5383 4012.4639 C --3788.7495 4011.8584 -3788.6453 4012.5332 -3788.9751 4011.8247 C --3788.6892 4012.7063 -3790.1624 4011.7876 -3789.7031 4012.7134 C --3790.0415 4011.8916 -3790.2888 4012.3655 -3790.7312 4011.6638 C --3 -endstream endobj 105 0 obj <>stream -790.7175 4011.8662 -3790.5745 4012.0513 -3790.9641 4011.9512 C --3790.9817 4012.0103 -3791.0232 4012.0852 -3791.0496 4012.1294 C --3791.0615 4012.1243 -3791.0657 4012.1206 -3791.0759 4012.1143 C --3791.0681 4012.1223 -3791.0623 4012.1311 -3791.0544 4012.1382 C --3791.0713 4012.1687 -3791.0728 4012.1753 -3791.0464 4012.1462 C --3790.9536 4012.2356 -3790.8784 4012.3416 -3790.8479 4012.4539 C --3791.0413 4012.9182 -3791.6609 4012.9038 -3791.8704 4013.1443 C --3792.1016 4013.0479 -3791.7737 4012.9119 -3791.8999 4012.6963 C --3792.2129 4013.0559 L --3792.2439 4012.6072 -3792.8271 4012.3096 -3792.2825 4012.0464 C --3792.7727 4012.0264 L --3793.0613 4011.7747 -3793.4583 4011.6743 -3793.7031 4011.8633 C --3793.9343 4011.7664 -3794.2871 4012.3606 -3794.0857 4012.0088 C --3794.8545 4012.2871 L --3794.8616 4012.1753 L --3795.6201 4012.1184 -3796.4231 4012.9192 -3797.2903 4012.1079 C --3797.5457 4012.2212 -3797.8096 4012.3599 -3798.2368 4012.2327 C --3798.3201 4011.8442 L --3798.6479 4011.9792 -3799.3047 4011.4551 -3799.4456 4011.8599 C --3799.7993 4010.8142 -3801.0369 4011.6316 -3801.6135 4011.4463 C --3801.6353 4011.9536 L --3802.0322 4011.9253 -3802.4128 4012.0696 -3802.9055 4012.2727 C --3802.8752 4012.7207 L --3803.3 4013.0884 -3803.9673 4012.4019 -3804.6392 4012.4482 C --3804.5935 4012.2766 -3804.4231 4012.3213 -3804.3025 4012.4253 C --3805.1052 4011.4119 -3805.9961 4013.1614 -3806.7241 4012.4236 C --3806.9055 4012.5872 -3807.0369 4012.5313 -3807.1641 4012.4192 C --3807.1472 4012.4175 -3807.1321 4012.4092 -3807.1191 4012.3953 C --3807.1377 4012.3904 -3807.1653 4012.3887 -3807.1936 4012.3894 C --3807.2737 4012.3123 -3807.3562 4012.2227 -3807.4456 4012.1504 C --3807.3696 4012.26 -3807.2969 4012.3496 -3807.2336 4012.3911 C --3807.3735 4012.4004 -3807.5857 4012.4558 -3807.7937 4012.5686 C --3807.8823 4012.0872 L --3807.8992 4012.0935 -3807.9128 4012.0923 -3807.9304 4012.1006 C --3808.1345 4011.9231 -3808.0945 4012.3286 -3807.9856 4012.6912 C --3808.0903 4012.77 -3808.1863 4012.8655 -3808.2607 4012.9812 C --3808.4265 4012.2039 -3808.8064 4013.2432 -3809.0327 4012.4143 C --3809.1729 4012.8184 -3810.0784 4012.7183 -3810.1892 4013.5696 C --3810.1963 4013.4583 -3810.2576 4013.4055 -3810.1453 4013.3982 C --3810.3772 4013.3015 -3810.6089 4013.2046 -3810.8169 4013.4446 C --3810.9153 4012.8323 L --3811.4216 4013.6553 L --3811.7292 4013.2822 -3811.8567 4013.0652 -3811.5513 4012.5942 C --3812.2888 4013.3196 -3812.1497 4012.8672 -3812.7769 4013.5852 C --3812.7463 4013.1895 L --3812.9705 4013.2046 -3813.3289 4013.7356 -3813.4641 4013.4082 C --3813.9656 4012.6553 -3815.9456 4013.3042 -3817.2329 4012.6042 C --3816.9832 4013.77 -3817.8313 4012.0823 -3817.8823 4012.9856 C --3817.9573 4012.7102 -3818.1367 4012.5542 -3817.9282 4012.3152 C --3818.5852 4012.5852 -3818.9153 4011.8772 -3819.3689 4012.6392 C --3819.4441 4012.3623 -3819.2283 4012.2356 -3819.2952 4012.0713 C --3819.3479 4012.1311 -3819.5039 4012.3113 -3819.5723 4012.1462 c --3819.6392 4011.9822 -3819.4761 4011.9153 -3819.3721 4011.7952 C --3820.0432 4011.8416 -3820.1111 4012.6912 -3820.1599 4013.4883 C --3820.5 4013.1111 -3820.6697 4013.1638 -3820.9153 4013.6873 C --3821.0337 4013.4263 -3821.2312 4013.1536 -3820.8142 4013.0598 C --3821.0488 4013.0215 -3822.2473 4012.6775 -3822.2712 4013.3167 C --3822.3447 4013.1543 -3822.5991 4013.2693 -3822.6609 4013.3433 C --3823.1873 4013.3047 -3823.2336 4013.2471 -3823.7505 4013.3079 C --3823.6072 4013.4119 L --3823.8113 4014.1831 -3824.0369 4013.5842 -3824.4536 4013.6768 C --3824.4417 4013.5984 L --3825.3972 4013.0415 -3824.8542 4013.8643 -3825.7969 4013.2292 C --3825.7456 4013.7092 L --3825.8335 4014.74 -3826.5808 4013.1006 -3827.1279 4013.4951 C --3826.9304 4013.7693 L --3827.2292 4014.1223 -3827.7656 4012.3662 -3828.0657 4012.2371 C --3828.1311 4012.1472 -3827.9624 4012.0935 -3827.8711 4012.0276 C --3828.6567 4011.4182 -3827.9729 4012.6553 -3828.5583 4012.8015 C --3828.6663 4012.4624 -3828.4192 4011.9392 -3828.8132 4011.8762 C --3829.0095 4011.6023 -3829.9561 4012.9768 -3830.4937 4012.3267 C --3830.3752 4012.5879 -3830.2576 4012.8484 -3830.5295 4013.0447 C --3830.9463 4013.1382 -3831.6563 4012.0579 -3832.0327 4012.8816 C --3832.0857 4012.8096 -3832.1057 4012.7415 -3832.1079 4012.6763 C --3832.4265 4012.8887 -3833.1433 4013.0291 -3833.3352 4013.4756 C --3833.6296 4011.8191 -3835.3159 4014.2815 -3835.3088 4012.7534 C --3836.2888 4012.8352 L --3836.2632 4012.6792 L --3836.8896 4012.5784 -3837.1111 4012.9446 -3837.3313 4013.3113 C --3837.4761 4013.2073 -3837.3704 4013.0642 -3837.3584 4012.9846 C --3838.2737 4012.6763 -3838.3647 4012.7415 -3839.1321 4013.5032 C --3839.2119 4013.0071 L --3839.4199 4013.2952 -3840.5352 4012.2295 -3841.4329 4012.8079 C --3841.4241 4012.7512 -3841.4055 4012.6553 -3841.3342 4012.5852 C --3842.3442 4013.1672 -3843.7522 4011.2112 -3844.1223 4013.0159 C --3844.7888 4013.4607 L --3843.9265 4013.6006 -3844.9172 4014.2444 -3844.5625 4014.5435 C --3844.9016 4014.6494 -3845.4392 4013.9993 -3845.0225 4013.9063 C --3844.9573 4013.9966 L --3844.8042 4013.0559 -3846.0288 4013.6631 -3846.0056 4013.0222 C --3847.7024 4013.0696 -3849.3562 4012.5479 -3850.9456 4012.5078 C --3850.7625 4013.2393 L --3851.3169 4013.1975 L --3851.4624 4013.0276 -3851.5122 4012.6252 -3851.1167 4012.6553 C --3851.3247 4012.24 -3851.78 4013.0032 -3851.7913 4013.1614 C --3852.5657 4012.8655 -3851.4888 4012.3086 -3851.7263 4012.2913 C --3852.0488 4012.3455 L --3851.9761 4012.4312 L --3852.2375 4012.73 -3852.2607 4013.0471 -3852.7361 4013.011 C --3853.0369 4012.8643 -3852.8904 4012.5598 -3853.0088 4012.5322 C --3853.0081 4012.4792 -3853.0481 4012.4551 -3853.1904 4012.5103 C --3853.8889 4012.4482 L --3853.6096 4013.0254 L --3853.9192 4013.3103 -3854.2664 4012.9951 -3853.9441 4013.6494 c --3854.4172 4012.6404 -3856.5496 4013.2871 -3856.8401 4012.9744 C --3857.2737 4013.3953 -3857.7017 4013.3875 -3858.2319 4013.3367 C --3858.1001 4013.4573 -3858.0212 4014.1062 -3858.4785 4014.0271 C --3858.3113 4012.6873 -3859.3159 4013.4456 -3859.6855 4012.4812 C --3859.3552 4013.1206 -3860.9856 4012.6392 -3860.4673 4013.5471 C --3860.8489 4013.4382 -3860.4905 4013.0454 -3860.78 4012.73 C --3861.6882 4013.2493 -3862.7815 4012.3926 -3863.9041 4012.5679 C --3863.9216 4012.7444 -3863.7336 4013.0127 -3863.9744 4013.2747 C --3864.5671 4012.3953 L --3864.7888 4012.4812 -3864.7712 4013.4104 -3865.1763 4012.8 C --3865.1191 4012.9482 -3865.0337 4013.1707 -3865.1824 4013.2271 C --3867.3816 4012.3704 -3869.6763 4013.9292 -3871.9097 4012.3191 C --3871.6072 4012.6604 -3871.8088 4012.6936 -3872.0398 4012.7063 C --3871.8896 4012.7876 -3872.0432 4013.1404 -3872.0137 4013.3792 C --3872.9487 4012.7168 L --3873.1191 4013.3784 -3873.9512 4012.7615 -3874.0488 4013.3943 C --3873.7527 4013.28 L --3874.1465 4014.0271 -3873.2017 4014.9395 -3873.2593 4015.8975 C --3872.8184 4015.0486 -3872.0967 4017.1543 -3871.3733 4015.9395 C --3871.2136 4016.1353 -3871.5095 4016.2483 -3871.4241 4016.4702 C --3871.2407 4016.0598 -3871.0193 4015.9744 -3870.6089 4016.1582 C --3870.6553 4016.26 L --3869.5024 4016.1599 -3869.0081 4016.5647 -3867.7129 4016.8342 C --3867.8088 4016.3606 L --3867.5305 4016.4236 -3867.4719 4016.5723 -3867.3416 4016.6912 C --3867.0222 4015.9727 -3868.1233 4016.6504 -3867.8323 4015.8584 C --3867.4631 4016.8223 -3865.8696 4015.8728 -3865.6201 4016.9683 C --3865.1919 4016.9744 -3865.7456 4016.4192 -3865.3176 4016.4263 C --3865.2041 4016.7227 L --3865.0959 4016.3408 L --3864.8152 4016.4038 -3864.6736 4016.7747 -3864.6631 4017.0254 C --3864.7312 4016.9956 -3864.8567 4017.0955 -3864.9297 4017.1172 C --3864.5657 4017.4663 -3863.9033 4016.9983 -3863.7783 4017.1118 C --3864.1897 4016.9292 L --3863.0212 4016.6519 -3861.5945 4017.0413 -3860.4656 4016.4382 C --3860.5513 4016.2151 L --3859.6892 4015.8015 -3859.8608 4016.4607 -3858.9143 4016.2693 C --3858.9487 4016.3223 L --3858.7593 4016.0999 -3858.5063 4015.9871 -3858.2473 4016.0127 C --3858.4863 4016.2747 -3857.7976 4016.5212 -3858.1111 4016.8113 C --3857.1763 4016.3672 -3857.6487 4016.4624 -3857.0313 4015.6316 C --3856.8889 4016.0032 L --3856.6785 4015.6672 -3856.6609 4015.49 -3856.1882 4015.3943 C --3856.5759 4015.7124 -3855.8865 4015.9592 -3856.3208 4016.3799 C --3855.3289 4017.1912 -3854.8479 4015.5613 -3854.3928 4016.7471 C --3853.9373 4015.7207 -3855.2512 4016.1775 -3854.9961 4015.9575 C --3855.2097 4015.6223 -3854.6201 4015.1902 -3854.3088 4015.2932 C --3853.9919 4015.3167 -3853.77 4016.6072 -3852.9729 4016.5872 C --3853.0522 4016.5823 -3853.0576 4016.6604 -3853.1367 4016.6553 C --3852.8384 4016.9172 -3852.5522 4016.3008 -3852.1863 4016.7263 C --3851.9812 4016.1052 -3851.7112 4016.7615 -3851.6521 4015.9702 C --3852.3833 4016.1536 L --3851.9688 4015.9463 -3851.5801 4015.02 -3850.8972 4015.4695 C --3850.9504 4015.6287 -3851.1536 4015.8391 -3851.2932 4015.9558 C --3851.0935 4016.1895 -3850.9087 4015.8015 -3850.7017 4016.0413 C --3850.7607 4016.8335 -3851.5903 4016.2134 -3852.0344 4016.8174 C --3851.8201 4017.1519 -3851.1943 4016.2439 -3851.4175 4017.1016 c --3851.0967 4016.011 -3850.6321 4017.24 -3850.0923 4016.4063 C --3850.1279 4016.8806 L --3850.0425 4016.8064 -3849.8655 4016.5823 -3849.7083 4016.5942 C --3849.9929 4017.2095 L --3849.5559 4016.6848 -3849.1504 4017.6692 -3848.7312 4017.3831 C --3849.6089 4017.3975 -3848.9282 4016.8113 -3849.2993 4016.4646 C --3848.2168 4015.8296 -3848.6768 4017.7063 -3847.4648 4017.4783 C --3847.6289 4017.5454 -3848.0808 4017.1936 -3847.8242 4016.9734 C --3847.5935 4017.0713 -3847.2888 4017.2534 -3847.1472 4017.5032 C --3846.3442 4017.4038 -3847.2705 4017.0144 -3846.9287 4016.7224 C --3846.6553 4017.3008 -3846.5344 4016.4871 -3846.1824 4016.3022 C --3846.1799 4016.7847 L --3845.2649 4017.0942 -3845.9373 4015.7791 -3845.1135 4016.1536 C --3845.4617 4016.8223 L --3845.0322 4016.6494 L --3845.1208 4017.1982 L --3844.6536 4016.7913 -3844.5081 4016.8962 -3844.0503 4017.0503 C --3844.1567 4016.7112 -3843.9905 4016.1753 -3843.5852 4016.1599 C --3843.3088 4016.4463 -3843.74 4016.6184 -3843.1655 4016.5496 C --3843.2952 4016.8511 -3843.4373 4017.23 -3843.6873 4016.7864 C --3843.7129 4016.9436 -3843.8152 4017.0884 -3843.8416 4017.2444 C --3843.5439 4017.5735 -3843.0935 4017.3191 -3842.8855 4017.3142 C --3842.9656 4017.2964 -3843.0613 4017.2703 -3843.1104 4017.2024 C --3842.2776 4016.5332 L --3842.1465 4016.7144 -3842.2505 4016.8599 -3842.3535 4017.0032 C --3842.1848 4016.9502 -3842.0681 4016.7283 -3841.8201 4016.6873 C --3841.8843 4017.0791 -3841.8689 4017.4839 -3842.22 4017.6687 C --3841.4265 4017.2334 L --3841.3735 4017.4038 -3841.0193 4017.7024 -3841.1223 4017.8462 C --3840.6824 4018.0767 -3840.0432 4017.0852 -3839.46 4017.3894 C --3839.4297 4017.3135 -3839.3689 4017.24 -3839.2449 4017.1848 C --3838.6968 4017.2732 -3838.2112 4017.7544 -3837.5615 4017.2173 C --3837.1929 4017.9192 L --3836.6841 4017.7603 -3837.6919 4017.0342 -3836.8447 4016.7693 C --3836.2449 4016.5447 -3836.6208 4017.3687 -3836.4104 4017.5642 C --3836.1121 4017.2102 -3835.5935 4016.4888 -3835.0425 4017.0613 C --3835.2249 4017.1936 -3835.3679 4017.0896 -3835.5383 4017.1416 C -f -1 D --3829.2632 4016.8296 m --3829.3848 4016.9312 -3829.6272 4017.2439 -3829.7161 4016.9592 C --3829.5776 4016.4063 -3829.4705 4016.6707 -3829.2632 4016.8296 C -f --3819.7241 4015.6692 m --3819.8145 4015.8279 -3819.9543 4015.7493 -3820.1121 4015.5667 C --3819.9976 4015.5271 -3819.8679 4015.5447 -3819.7241 4015.6692 C -f --3793.1511 4012.3096 m --3793.1563 4012.3174 -3793.1599 4012.323 -3793.1641 4012.3333 C --3793.4353 4012.1453 -3793.3391 4012.22 -3793.1511 4012.3096 C -f -0 D --3792.5879 4012.5193 m --3792.5313 4012.4524 -3792.5352 4012.3848 -3792.5591 4012.3174 C --3792.5984 4012.4392 -3792.7249 4012.4482 -3792.8689 4012.4136 C --3792.8289 4012.5398 -3792.7561 4012.6272 -3792.5879 4012.5193 C -f -1 D --3853.0713 4012.7092 m --3852.9617 4012.8352 L --3853.2092 4012.9744 -3853.1399 4012.8484 -3853.0713 4012.7092 C -f -*U -0 D --3820.8057 4016.3286 m --3820.8401 4016.2471 -3820.8496 4016.1575 -3820.8577 4016.0667 C --3820.9055 4016.1475 -3820.9065 4016.2415 -3820.8057 4016.3286 C -f --3839.4409 4017.3953 m --3839.4473 4017.3911 -3839.4536 4017.3926 -3839.46 4017.3894 C --3839.4705 4017.4182 -3839.4761 4017.4482 -3839.4792 4017.4768 C --3839.4409 4017.3953 L -f --3801.3123 4016.6096 m --3801.4282 4016.5398 -3801.4929 4016.4524 -3801.5359 4016.3606 C --3801.5422 4016.4783 -3801.4895 4016.5784 -3801.3123 4016.6096 C -f --3789.6033 4011.6992 m --3789.9641 4011.8247 L --3789.7896 4011.8008 -3789.7273 4011.9063 -3789.6392 4011.9832 C --3789.6472 4011.8704 -3789.7161 4011.7073 -3789.6033 4011.6992 C -f --3786.4719 4014.6848 m --3786.4192 4014.6255 -3786.3601 4014.6782 -3786.3081 4014.6184 C --3786.3225 4014.3943 L --3786.5471 4014.4087 -3786.7041 4014.5896 -3786.4719 4014.6848 C -f --3789.2693 4013.3022 m --3789.2407 4013.7083 -3789.0144 4013.5703 -3788.7617 4013.4951 C --3788.7769 4013.4966 -3788.7913 4013.5 -3788.8064 4013.4951 C --3788.7319 4012.928 -3789.0012 4013.115 -3789.2693 4013.3022 C -f --3788.7031 4013.4812 m --3788.6252 4013.4624 -3788.5457 4013.4524 -3788.4695 4013.4712 C --3788.4399 4013.2439 -3788.5642 4013.4236 -3788.7031 4013.4812 C -f --3791.8735 4012.25 m --3791.7537 4012.3542 -3791.7983 4011.7312 -3791.7305 4011.8962 C --3791.5967 4011.3799 -3792.5295 4012.5212 -3791.8735 4012.25 C -f --3789.0647 4014.6392 m --3789.1553 4014.1382 L --3789.2969 4014.5422 L --3789.0647 4014.6392 L -f --3791.0601 4014.2712 m --3790.6563 4014.4104 L --3790.6624 4014.3264 -3790.6111 4014.2776 -3790.5481 4014.24 C --3790.7969 4014.2224 -3791.0696 4014.1233 -3791.0601 4014.2712 C -f --3790.5481 4014.24 m --3790.4185 4014.2493 -3790.2952 4014.2383 -3790.2231 4014.1563 C --3790.2932 4014.1614 -3790.4441 4014.1782 -3790.5481 4014.24 C -f --3789.6167 4014.7896 m --3789.7361 4014.6851 L --3790.0212 4014.6487 L --3789.6167 4014.7896 L -f --3795.4009 4014.1753 m --3795.8416 4014.3184 L --3795.8865 4014.49 -3795.7664 4014.5952 -3795.6023 4014.5271 C --3795.4968 4014.407 -3795.3333 4014.3408 -3795.4009 4014.1753 C -f --3794.0681 4015.5471 m --3794.1873 4015.4431 -3794.1953 4015.3311 -3794.2625 4015.1663 C --3794.2759 4015.7871 L --3794.0681 4015.5471 L -f --3795.3533 4015.6919 m --3795.3972 4015.8643 -3795.9929 4016.1863 -3795.4343 4016.1475 C --3795.3896 4015.9768 -3794.9482 4015.8335 -3795.3533 4015.6919 C -f --3801.9937 4014.9063 m --3801.8816 4014.8982 L --3801.8977 4013.8799 L --3801.9937 4014.9063 L -f --3807.8464 4017.3433 m --3807.3242 4017.5872 -3807.7224 4016.7144 -3807.2505 4017.0193 C --3807.1279 4016.7783 -3807.6362 4016.7703 -3807.5105 4016.5623 C --3807.8257 4016.8167 -3807.9912 4016.6736 -3807.8464 4017.3433 C -f --3807.5105 4016.5623 m --3807.46 4016.5222 -3807.4065 4016.4734 -3807.3496 4016.4082 C --3807.4409 4016.4712 -3807.4839 4016.52 -3807.5105 4016.5623 C -f --3873.5745 4012.1924 m --3873.9104 4011.98 L --3873.6936 4012.3223 L --3873.5745 4012.1924 L -f --3874.2192 4012.9482 m --3874.2983 4012.2991 L --3874.5 4012.8862 L --3874.4241 4012.8572 -3874.2769 4012.8015 -3874.2192 4012.9482 C -f --3828.3303 4018.1375 m --3828.3047 4017.9812 L --3828.3567 4017.8123 -3828.4353 4017.8 -3828.5928 4017.7732 C --3828.3303 4018.1375 L -f --3832.8848 4017.6519 m --3832.8064 4017.6653 L --3832.9529 4017.0784 L --3832.8848 4017.6519 L -f --3836.7073 4018.4004 m --3836.5513 4018.4253 -3836.3679 4018.2942 -3836.2112 4018.3196 C --3836.5513 4018.4253 -3836.7495 4017.6692 -3836.7073 4018.4004 C -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 45) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7746 7859.3877 L --7721.1748 7859.3877 L --7721.1748 7890 L --7746 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7746 7881.4985 m --7721.1738 7881.4985 L --7721.1738 7880.5142 L --7746 7880.5142 L --7746 7881.4985 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7746 7880.5176 m --7721.1738 7880.5176 L --7721.1738 7873.7935 L --7746 7873.7935 L --7746 7880.5176 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7746 7873.7959 m --7721.1738 7873.7959 L --7721.1738 7872.6367 L --7746 7872.6367 L --7746 7873.7959 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7721.1738 7872.6367 m --7721.1738 7860.5278 L --7746 7860.5278 L --7746 7872.6367 L --7721.1738 7872.6367 L -f -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 47) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7746 7859.3877 L --7715.3848 7859.3877 L --7715.3848 7890 L --7746 7890 L -n -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7715.3848 7880.5142 m --7724.8672 7880.5142 L --7724.8711 7889.9985 L --7723.8896 7889.9985 L --7723.8896 7881.4951 L --7715.3848 7881.4951 L --7715.3848 7880.5142 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa --7715.3848 7873.7935 m --7731.5928 7873.7915 L --7731.5928 7890 L --7724.8672 7890 L --7724.8672 7880.5132 L --7715.3848 7880.5132 L --7715.3848 7873.7935 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa --7715.3848 7872.6357 m --7732.7485 7872.6357 L --7732.7485 7889.9995 L --7731.5957 7889.9995 L --7731.5957 7873.7915 L --7715.3848 7873.7915 L --7715.3848 7872.6357 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa --7715.3848 7860.5244 m --7744.8594 7860.5244 L --7744.8594 7889.9985 L --7732.7495 7890 L --7732.7495 7872.6357 L --7715.3848 7872.6357 L --7715.3848 7860.5244 L -f -0 0 0 0 1 1 1 Xa --7731.5918 7874.1533 m --7732.7207 7872.6733 l --7731.5918 7873.7959 l --7731.5918 7874.1533 l -f --7723.8896 7881.8096 m --7724.8232 7880.5615 l --7723.8896 7881.4951 l --7723.8896 7881.8096 l -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI8_BeginBrushPattern -(Unnamed Brush Pattern 49) 0 A -0 Xw -u -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --7746 7890 m --7715.3335 7890 L --7715.3335 7859.3345 L --7746 7859.3345 L --7746 7890 L -n -u -u -u -0 O -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7737.4219 7889.9688 m --7736.5039 7889.9688 L --7736.5039 7868.8013 L --7715.3389 7868.8013 L --7715.3389 7867.8853 L --7737.4219 7867.8853 L --7737.4219 7889.9688 L -f -0.531884 0.324193 0.203311 0.042145 0.513726 0.6 0.694118 Xa -0 XR --7736.5039 7889.9688 m --7729.7539 7889.9688 L --7729.7539 7875.5527 L --7715.3389 7875.5527 L --7715.3389 7876.7173 L --7715.3389 7876.7173 L --7715.3389 7868.8013 L --7736.5039 7868.8013 L --7736.5039 7889.9688 L -f -0.258488 0.130922 0.134035 0.001434 0.784314 0.823529 0.847059 Xa -1 XR --7715.3389 7876.7173 m --7715.3389 7875.5527 L --7729.7539 7875.5527 L --7729.7539 7889.9688 L --7728.5889 7889.9688 L --7728.5889 7876.7173 L --7715.3389 7876.7173 L -f -0.420172 0.234684 0.133211 0.010101 0.627451 0.701961 0.792157 Xa -0 XR --7728.5889 7876.7173 m --7728.5889 7889.9688 L --7716.5039 7889.9688 L --7716.5352 7888.8135 L --7715.3389 7888.8135 L --7715.3389 7876.7173 L --7728.5889 7876.7173 L -f -U -9 () XW -1 Ap -1 XR --7746 7890 m --7746 7859.3345 L --7715.3335 7859.3345 L --7715.3335 7890 L --7746 7890 L -n -U -9 () XW -0 Ap -0 O -0 0 0 0 1 1 1 Xa -0 XR --7728.5986 7877.0796 m --7729.7285 7875.6016 l --7728.5986 7876.7212 L --7728.5986 7877.0796 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ --7736.5 7869.1255 m --7737.3848 7867.9287 l --7736.5 7868.8101 L --7736.5 7869.1255 l -f -%_/ArtDictionary : -%_(12.566368) /String (BBAccumRotation) , -%_; -%_ -U -9 () XW -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSVGFilter -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_AbgeflachteKanteMitSchatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color:white) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20000) /UnicodeString (xmlnode-nodevalue) , -(z) /UnicodeString (xmlnode-nodename) , -; (z) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5000) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10000) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(fePointLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.1) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dehnen_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erodieren_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaußscherWeichzeichner_7) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Holzmaserung) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offset) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(flood-color:black; flood-opacity:0.4) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFlood) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(shadowColor) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; -endstream endobj 106 0 obj <>stream -(in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.5) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncR) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.7 0 ) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncG) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.1 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncB) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComponentTransfer) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(MergeAll) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(110%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_KühleBrise) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-40%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.2) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(freeze) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(stdDeviation) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(spline) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 1;20 15;200 200; 15 20;1 1 ) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Pixelspiel_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50;20 20;50 50) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow;green;blue;indigo;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(red) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indigo;green;yellow;blue;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(130%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Schatten_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) -endstream endobj 107 0 obj <>stream - , -2 /Int (xmlnode-nodetype) , -(AI_Statisch) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(baseFrequency) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.7) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Verwirbelung_5) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.4) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -%AI10_EndSVGFilter -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI14_BeginSymbol -(Kombinationsfeld) 0 A -0 Xw -u -u -0 O -9 0.7 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -6.5 -10 m -6.5 -10 L --10.5 -10 L --10.5 10 L -6.5 10 L -6.5 10 L -8.15625 10 9.5 8.6582 9.5 7 C -9.5 -7 L -9.5 -8.65625 8.15625 -10 6.5 -10 C -Bb -1 (Unnamed gradient 1) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -24 0.000001 -7735.5 7901 Xm --0.000001 -23.5 -24 0.000001 -7735.5 7924.5 Bc --0.000001 -20 -24 0.000001 -7735.5 7901 Bm --0.000001 -23.5 -24 0.000001 -7735.5 7881 Bc -f -0 BB -0 1 0 0 0 Xy -6.5 -11 m -6.5 -11 L --10.5 -11 L --10.5 -10 L -6.5 -10 L -6.5 -10 L -8.15625 -10 9.5 -8.65625 9.5 -7 C -9.5 7 L -9.5 8.6582 8.15625 10 6.5 10 C -6.5 10 L --9.5 10 L --10.5 10 L --10.5 11 L -6.5 11 L -6.5 11 L -8.70898 11 10.5 9.20898 10.5 7 C -10.5 -7 L -10.5 -9.20898 8.70898 -11 6.5 -11 C -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -25 0.000001 -7734.5 7902 Xm --0.000001 -25 -25 0.000001 -7734.5 7927 Bc --0.000001 -22 -25 0.000001 -7734.5 7902 Bm --0.000001 -25 -25 0.000001 -7734.5 7880 Bc -f -0 BB -U -9 () XW -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa --3.5 -2 m -2.5 -2 L --0.5 2 l --3.5 -2 L -f -U -%_/ArtDictionary : -%_0 17 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Schaltfläche) 0 A -0 Xw -u -*u -1 D -0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -0 g -28.0005 -11 m -28 -11 L --28 -11 L --30.21 -11 -32 -9.20898 -32 -7 C --32 7 L --32 9.20801 -30.21 10.999 -28 11 C -28 11 L -28.0005 11 L -30.2085 11 32 9.20898 32 7 C -32 -7 L -32 -9.20898 30.2085 -11 28.0005 -11 C -f -0 D -31 7 m -31 8.6582 29.6563 10 28.0005 10 C -28 10 L --28 10 L --29.6572 9.99902 -31 8.65625 -31 7 C --31 -7 L --31 -8.65527 -29.6572 -10 -28 -10 C -28 -10 L -28.0005 -10 L -29.6563 -10 31 -8.65625 31 -7 C -31 7 L -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -22 -68 0.000003 -7713 7902 Xm --0.000001 -25 -68 0.000003 -7713 7927 Bc --0.000001 -22 -68 0.000003 -7713 7902 Bm --0.000001 -25 -68 0.000003 -7713 7880 Bc -f -0 BB -*U -9 0.85 0 0 0 Xy -28.0005 -10 m -28 -10 L -28 -10 L --28 -10 L --28 -10 L --29.6572 -10 -31 -8.65527 -31 -7 C --31 7 L --31 8.65625 -29.6572 9.99902 -28 10 C --28 10 L -28 10 L -28 10 L -28.0005 10 l -29.6563 10 31 8.6582 31 7 C -31 -7 L -31 -8.65625 29.6563 -10 28.0005 -10 c -Bb -1 (Unnamed gradient 3) 0 0 -90 1 1 0 0 1 0 0 1 Bg --0.000001 -20 -66 0.000003 -7714 7901 Xm --0.000001 -23 -66 0.000003 -7714 7924 Bc --0.000001 -20 -66 0.000003 -7714 7901 Bm --0.000001 -23 -66 0.000003 -7714 7881 Bc -f -0 BB -U -%_/ArtDictionary : -%_4 60 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Suchen) 0 A -0 Xw -u -1 Ap -0 O -1 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -31 21.5322 m -31 24.0166 17.1211 26.0303 0 26.0303 c --17.1191 26.0303 -31 24.0166 -31 21.5322 c --31 19.0459 -17.1191 17.0303 0 17.0303 c -17.1211 17.0303 31 19.0459 31 21.5322 c -Bb -0 0 0 0 Bh -1 (Unnamed gradient 17) 0 0 0 1 1.4762 0 0 0.2143 -3789.1475 6144.7451 1 Bg -30.9986 0 0 -4.50006 -7747 7869.4692 Bm -f -0 BB -%_/ArtDictionary : -%_/Dictionary : /NotRecorded , -%_1.4762 0 0 0.2143 -3789.1475 6144.7451 /RealMatrix -%_ (CAIGradientTformMatrix) , -%_; (Adobe_AI9_ArtStyle_Dictionary) , -%_; -%_ -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 17) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -6 () XW -u -0 Ap -0 1 0 0 0 Xy -10 M -18.4502 21.9706 m --18.7514 21.9706 -19.0387 21.8438 -19.2384 21.6228 C --23.965 16.396 L --24.1564 16.1854 -24.2537 15.9123 -24.2398 15.6264 c --24.2259 15.3403 -24.1025 15.0776 -23.8923 14.8867 C --10.655 2.8613 L --10.4594 2.68388 -10.205 2.58601 -9.93892 2.58601 c --9.63749 2.58601 -9.35004 2.7128 -9.15027 2.93386 C --4.42351 8.15868 L --4.23263 8.36885 -4.13573 8.64198 -4.15001 8.92848 c --4.16429 9.21497 -4.28761 9.47757 -4.49724 9.66792 C --17.7366 21.6953 L --17.9317 21.873 -18.1849 21.9706 -18.4502 21.9706 C -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -18.1731 0 0 -18.1731 -7764.2183 7866.1729 Bm -f -0 BB -u -*u -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 Xa --9.93896 3.08594 m --9.84473 3.08594 -9.66504 3.10986 -9.521 3.26953 C --4.79297 8.49561 L --4.65771 8.64453 -4.64502 8.81494 -4.64941 8.90381 C --4.65723 9.05713 -4.72217 9.19678 -4.8335 9.29785 C --18.0737 21.3262 L --18.1763 21.4194 -18.3096 21.4707 -18.4502 21.4707 C --18.5444 21.4707 -18.7236 21.4468 -18.8677 21.2871 C --23.5957 16.0591 L --23.8022 15.8315 -23.7842 15.4639 -23.5562 15.2568 C --10.3193 3.23193 L --10.2158 3.1377 -10.0806 3.08594 -9.93896 3.08594 C -F -1 D --9.93896 2.08594 m --10.3145 2.08594 -10.6919 2.21973 -10.9912 2.49121 C --24.2285 14.5166 L --24.8672 15.0967 -24.916 16.0928 -24.3359 16.7314 C --19.6094 21.958 L --19.3022 22.2979 -18.877 22.4707 -18.4502 22.4707 C --18.0747 22.4707 -17.6982 22.3369 -17.4004 22.0654 C --4.16113 10.0381 L --3.52441 9.45996 -3.47266 8.46191 -4.05273 7.82324 C --8.7793 2.59863 L --9.08643 2.25879 -9.51172 2.08594 -9.93896 2.08594 C --9.93896 2.08594 L -f -*U -U -0 0 Xd -6 () XW -U -0 0 Xd -6 () XW -%_0 D -%_-24.3359 16.7314 m -%_-24.916 16.0928 -24.8672 15.0967 -24.2285 14.5166 c -%_-10.9912 2.49121 l -%_-10.3516 1.91113 -9.35645 1.95996 -8.7793 2.59863 c -%_-4.05273 7.82324 l -%_-3.47266 8.46191 -3.52441 9.45996 -4.16113 10.0381 c -%_-17.4004 22.0654 l -%_-18.0371 22.6455 -19.0322 22.5967 -19.6094 21.958 c -%_-24.3359 16.7314 l -%_n -1 (Anon) XW -*u -0 O -0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -4 M 0 g -7.40234 -25.5303 m -9.28125 -25.5303 11.1943 -25.2197 13.0703 -24.5713 C -22.1172 -21.4404 26.9102 -11.5713 23.7832 -2.52441 C -21.3018 4.64551 14.5879 9.14551 7.40234 9.14551 C -5.52344 9.14551 3.61328 8.83496 1.73438 8.18652 C --7.3125 5.05762 -12.1084 -4.81348 -8.97852 -13.8584 C --6.49707 -21.0283 0.219727 -25.5303 7.40234 -25.5303 C -B -1 D -7.40234 -20.374 m -2.21582 -20.374 -2.40918 -17.0791 -4.1084 -12.1729 C --5.1709 -9.09863 -4.97363 -5.7959 -3.55176 -2.86816 C --2.12988 0.055664 0.34668 2.25293 3.42188 3.31738 C -4.71191 3.76465 6.05176 3.99121 7.40234 3.99121 C -12.5889 3.99121 17.2139 0.696289 18.9131 -4.20801 C -19.9756 -7.28223 19.7783 -10.5869 18.3564 -13.5127 C -16.9346 -16.4404 14.458 -18.6377 11.3857 -19.7002 C -11.3857 -19.7002 L -10.0898 -20.1475 8.75 -20.374 7.40234 -20.374 C -7.40234 -20.374 L -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) 0.007548 0.433959 0 1.40083 1 0 0 1 0 0 1 Bg -17.0658 0 0 -17.0658 -7739.3364 7884.1445 Bm -b -2 BB -*U -u -0 D -10 M -8.90137 7.71973 m --8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C --9.96973 4.26465 L --22.5664 15.708 L --20.3691 18.1377 L --8.90137 7.71973 L -Bb -1 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -17.6244 -20.6243 -16.0703 -13.7328 -7766.499 7901.1626 Xm -33.9039 -39.6748 -16.0703 -13.7328 -7800.4028 7940.8374 Bc -17.6244 -20.6243 -16.0703 -13.7328 -7766.499 7901.1626 Bm -33.9039 -39.6748 -16.0703 -13.7328 -7748.8745 7880.5381 Bc -f -0 BB -U -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-8.90137 7.71973 m -%_-8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-20.3691 18.1377 L -%_-8.90137 7.71973 L -%_n -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -1 (Anon 437) XW -0 O -4 M 12.5801 -23.1553 m -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.3125 -8.30762 -8.32813 -2.95605 -5.40723 1.08691 C --5.00293 -0.069336 -4.43066 -1.18066 -3.72559 -2.23926 C --3.80273 -2.38379 -3.88965 -2.52051 -3.96191 -2.66895 c --5.43652 -5.70605 -5.6416 -9.13379 -4.53906 -12.3232 c --2.77637 -17.4111 2.02148 -20.8291 7.40234 -20.8291 c -8.80078 -20.8291 10.1904 -20.5947 11.5352 -20.1299 c -14.7217 -19.0283 17.291 -16.749 18.7666 -13.7119 c -19.0146 -13.2021 19.2129 -12.6787 19.3887 -12.1494 C -19.7041 -12.1279 20.0215 -12.1143 20.3359 -12.0811 c -21.1885 -11.9932 22.0146 -11.8623 22.8184 -11.7021 C -21.6367 -16.8506 17.9277 -21.3037 12.5801 -23.1553 c -Bb -1 (Unnamed gradient 7) -0.837511 0 -63.554 2.1927 1 0 0 1 0 0 1 Bg -19.0977 -38.3947 -33.1435 -16.4857 -7737.2896 7936.3179 Xm -20.434 -41.0812 -33.1435 -16.4857 -7757.7231 7977.3994 Bc -19.0977 -38.3947 -33.1435 -16.4857 -7737.2896 7936.3179 Bm -20.434 -41.0812 -33.1435 -16.4857 -7718.1919 7897.9233 Bc -f -0 BB --6.4707 -11.915 m --4.26367 -18.292 1.75 -22.5752 8.49316 -22.5752 c -10.251 -22.5752 11.9922 -22.2822 13.6709 -21.7021 c -16.4521 -20.7393 18.7813 -19.0635 20.5557 -16.9619 C -18.7041 -19.7471 15.9766 -21.9795 12.5801 -23.1553 c -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.45313 -7.90137 -8.14941 -2.10254 -4.66309 2.02637 C --7.30762 -1.9502 -8.14941 -7.06348 -6.4707 -11.915 c -Bb -1 (Unnamed gradient 7) -0.284451 0 -62.8867 1.31311 1 0 0 1 0 0 1 Bg -11.6282 -22.7105 -32.3312 -16.5542 -7733.5737 7926.2744 Xm -13.8263 -27.0035 -32.3312 -16.5542 -7747.3999 7953.2778 Bc -11.6282 -22.7105 -32.3312 -16.5542 -7733.5737 7926.2744 Bm -13.8263 -27.0035 -32.3312 -16.5542 -7721.9453 7903.564 Bc -f -0 BB -u -0 1 0 0 0 Xy -10 M -9.12402 5.19824 m --9.96973 4.26465 L --22.5664 15.708 L --21.7207 16.6436 L --9.12402 5.19824 L -Bb -1 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -3.53784 -7.91375 -18.7709 -8.3915 -7755.1191 7888.4551 Xm -11.3559 -25.4018 -18.7709 -8.3915 -7766.4751 7913.8569 Bc -3.53784 -7.91375 -18.7709 -8.3915 -7755.1191 7888.4551 Bm -11.3559 -25.4018 -18.7709 -8.3915 -7751.5815 7880.541 Bc -f -0 BB -U -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-9.12402 5.19824 m -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-21.7207 16.6436 L -%_-9.12402 5.19824 L -%_n -1 (Anon 438) XW -U -%_/ArtDictionary : -%_15.5 46.5 39.0454 13.0151 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_0 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Textbereich) 0 A -0 Xw -u -1 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 0.991358 w 4 M []0 d 0 XR -77.5 45.5 m --77.5 45.5 L --77.5 -45.5 L -77.5 -45.5 L -77.5 45.5 L -s -0 0.6 0 0 0 Xy -1.00864 w 78.5 46.5 m --78.5 46.5 L --78.5 -46.5 L -78.5 -46.5 L -78.5 46.5 L -s -U -%_/ArtDictionary : -%_2.0811 156.0811 91.4609 2.4609 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Texteingabe) 0 A -0 Xw -u -0 Ap -0 R -0.702296 0.157443 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -77.5 11.5 m --77.5 11.5 L --77.5 -11.5 L -77.5 -11.5 L -77.5 11.5 L -s -0 0.6 0 0 0 Xy -78.5 12.5 m --78.5 12.5 L --78.5 -12.5 L -78.5 -12.5 L -78.5 12.5 L -s -U -%_/ArtDictionary : -%_1.7002 155.7002 24 2 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Brush Manager Order) -(Adobe Brush Manager Order) -( Adobe Calligraphic Brush Tool/ Rund - 3 Pt./ Adobe Calligraph) - -(ic Brush Tool/ Rund - 10 Pt./ Adobe Calligraphic Brush Tool/ O) - -(val - 3 Pt./ Adobe ArtOnPath Brush Tool/ Kohle - Feder/ Adobe ) - -(dBrush Brush Tool/ Stupfpinsel/ Adobe PatternOnPath Brush Tool) - -(/ Silber/) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe dBrush Brush Tool) -(Stupfpinsel) -(0 4 0.75 0.75 0.33 0.75 1 3 AI_BristleBrushLibary_CS5 02_Round) - -(_Blunt) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Oval - 3 Pt.) -(1 3 3 26 74 15 15 0 1 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 10 Pt.) -(1 10 10 100 100 0 0 1 0 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Rund - 3 Pt.) -(1 3 3 100 100 0 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe ArtOnPath Brush Tool) -(Kohle - Feder) -(2 / Unnamed 6/ / / / / 0 1 / 1 1 1 0 1 0 0 0 1 1 0 0 0 0 1) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe PatternOnPath Brush Tool) -(Silber) -(2 / Unnamed Brush Pattern 45/ Unnamed Brush Pattern 49/ Unname) - -(d Brush Pattern 47/ / / 5 0.623529 0.67451 0.737255 / 1 0 1 0) - -( 1 0 0 0 1 1 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyles -/KnownStyle : -(Anon) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 R -0.478614 0.312474 0.290532 0.089723 0.54902 0.596078 0.627451 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -1 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 119) /Name , -/SimpleStyle : -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Paint ; - /Def ; -/KnownStyle : -(Anon 120) /Name , -/SimpleStyle : -0 O -0.808438 0.673884 0.495369 0.548699 0.180392 0.203922 0.25098 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Paint ; - /Def ; -/KnownStyle : -(Anon 437) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 438) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Konturverschiebung: Live-Effekt) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -(Inside) /String (DisplayString) , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Jive_GS) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -(Jive) 0 0 1 1 0 0 0 0 0 [0 1.47 -1.47 0 3549.7441 19033.0313] p -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0.389013 0.068635 0.08426 0 0.65098 0.815686 0.894118 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schein nach außen - 5 Pt.) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Outer Glow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schein nach au\337en) /Title , -/Dictionary : /NotRecorded , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -2 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Schlagschatten) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Adobe Drop Shadow) 1 0 /Filter , -1 /Visible , -(Drop Shadow.aip) /PluginFileName , -(Schlagschatten) /Title , -/Dictionary : /NotRecorded , -1 /Bool (pair) , -7 /Real (vert) , -50 /Real (dark) , -7 /Real (horz) , -1 /Int (csrc) , -1 /Bool (usePSLBlur) , -/FillStyle : 0 O -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (sclr) , -0.75 /Real (opac) , -5 /Real (blur) , -1 /Int (blnd) , -16 /Int (Adobe Effect Expand Before Version) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -([Standard]) /Name , -/SimpleStyle : -0 O -0 0 0 0 1 1 1 Xa -0 R -0.912474 0.787625 0.619837 0.97467 0 0 0 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -1 1 Xd -/Paint ; - /Def ; -%AI9_EndArtStyles -%AI5_End_NonPrinting-- -%AI5_BeginPalette -0 0 Pb -0.912474 0.787625 0.619837 0.97467 0 0 0 ([Passermarken]) 0 1 Xz -([Passermarken]) -Pc -0 0 0 0 1 1 1 Xa -(Weiß) -Pc -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(Schwarz) -Pc -0 0.94641 0.916289 0 1 0 0 Xa -(RGB Rot) -Pc -0.096254 0 0.951965 0 1 1 0 Xa -(RGB Gelb) -Pc -0.647547 0 1 0 0 1 0 Xa -(RGB Grün) -Pc -0.570733 0 0.153567 0 0 1 1 Xa -(RGB Cyan) -Pc -0.934081 0.745846 0 0 0 0 1 Xa -(RGB Blau) -Pc -0.409979 0.77676 0 0 1 0 1 Xa -(RGB Magenta) -Pc -0.168978 0.950286 0.823636 0.068666 0.756863 0.152941 0.176471 Xa -(R=193 G=39 B=45) -Pc -0 0.946624 0.85211 0 0.929412 0.109804 0.141176 Xa -(R=237 G=28 B=36) -Pc -0 0.752956 0.887388 0 0.945098 0.352941 0.141176 Xa -(R=241 G=90 B=36) -Pc -0 0.501823 0.907988 0 0.968627 0.576471 0.117647 Xa -(R=247 G=147 B=30) -Pc -0 0.365637 0.819852 0 0.984314 0.690196 0.231373 Xa -(R=251 G=176 B=59) -Pc -0.065736 0 0.852628 0 0.988235 0.933333 0.129412 Xa -(R=252 G=238 B=33) -Pc -0.231907 0 0.892332 0 0.85098 0.878431 0.129412 Xa -(R=217 G=224 B=33) -Pc -0.524254 0 0.880919 0 0.54902 0.776471 0.247059 Xa -(R=140 G=198 B=63) -Pc -0.718288 0 0.876951 0 0.223529 0.709804 0.290196 Xa -(R=57 G=181 B=74) -Pc -0.842954 0.14374 0.926757 0.021576 0 0.572549 0.270588 Xa -(R=0 G=146 B=69) -Pc -0.899077 0.322972 0.925994 0.247654 0 0.407843 0.215686 Xa -(R=0 G=104 B=55) -Pc -0.735958 0 0.689784 0 0.133333 0.709804 0.45098 Xa -(R=34 G=181 B=115) -Pc -0.766171 0.045533 0.450782 0 0 0.662745 0.615686 Xa -(R=0 G=169 B=157) -Pc -0.709987 0.132143 0.001953 0 0.160784 0.670588 0.886275 Xa -(R=41 G=171 B=226) -Pc -0.866178 0.492958 0 0 0 0.443137 0.737255 Xa -(R=0 G=113 B=188) -Pc -0.975586 0.89572 0 0.000824 0.180392 0.192157 0.572549 Xa -(R=46 G=49 B=146) -Pc -1 0.970001 0.322484 0.218753 0.105882 0.078431 0.392157 Xa -(R=27 G=20 B=100) -Pc -0.755703 0.923125 0 0.000031 0.4 0.176471 0.568627 Xa -(R=102 G=45 B=145) -Pc -0.5393 0.930297 0 0 0.576471 0.152941 0.560784 Xa -(R=147 G=39 B=143) -Pc -0.323583 1 0.236301 0.1673 0.619608 0 0.364706 Xa -(R=158 G=0 B=93) -Pc -0.097993 0.983551 0.407263 0.020691 0.831373 0.078431 0.352941 Xa -(R=212 G=20 B=90) -Pc -0 0.935058 0.142763 0 0.929412 0.117647 0.47451 Xa -(R=237 G=30 B=121) -Pc -0.220859 0.272648 0.389227 0.061189 0.780392 0.698039 0.6 Xa -(R=199 G=178 B=153) -Pc -0.354864 0.386694 0.466072 0.211734 0.6 0.52549 0.458824 Xa -(R=153 G=134 B=117) -Pc -0.446387 0.47068 0.52636 0.380346 0.45098 0.388235 0.341176 Xa -(R=115 G=99 B=87) -Pc -0.535302 0.542443 0.552728 0.542199 0.32549 0.278431 0.254902 Xa -(R=83 G=71 B=65) -Pc -0.204685 0.376715 0.593042 0.084871 0.776471 0.611765 0.427451 Xa -(R=198 G=156 B=109) -Pc -0.280308 0.462287 0.671046 0.207126 0.65098 0.486275 0.321569 Xa -(R=166 G=124 B=82) -Pc -0.324376 0.536675 0.760494 0.329229 0.54902 0.384314 0.223529 Xa -(R=140 G=98 B=57) -Pc -0.359228 0.605188 0.857359 0.451545 0.458824 0.298039 0.141176 Xa -(R=117 G=76 B=36) -Pc -0.391424 0.683131 0.943023 0.57116 0.376471 0.219608 0.07451 Xa -(R=96 G=56 B=19) -Pc -0.474617 0.7467 0.825315 0.730831 0.258824 0.129412 0.043137 Xa -(R=66 G=33 B=11) -Pc -Bb -2 (Weiß, Schwarz) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Weiß, Schwarz) -Pc -Bb -2 (Goldstaub) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Goldstaub) -Pc -Bb -2 (Blauer Himmel) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Blauer Himmel) -Pc -(Jive) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p -(Jive) -Pc -1 (Kalt) 1 Pg -0.584497 0 0.222965 0 0.396078 0.784314 0.815686 Xa -(C=56 M=0 Y=20 K=0) -Pc -0.55404 0.445533 0 0 0.513726 0.545098 0.772549 Xa -(C=51 M=43 Y=0 K=0) -Pc -0.313512 0.439063 0.001465 0 0.729412 0.607843 0.788235 Xa -(C=26 M=41 Y=0 K=0) -Pc -1 (Graustufen) 1 Pg -0.912474 0.787625 0.619837 0.97467 0 0 0 Xa -(R=0 G=0 B=0) -Pc -0.762295 0.667414 0.60705 0.828763 0.101961 0.101961 0.101961 Xa -(R=26 G=26 B=26) -Pc -0.690608 0.595209 0.559747 0.655817 0.2 0.2 0.2 Xa -(R=51 G=51 B=51) -Pc -0.620386 0.5234 0.503532 0.47776 0.301961 0.301961 0.301961 Xa -(R=77 G=77 B=77) -Pc -0.559442 0.453803 0.448554 0.326848 0.4 0.4 0.4 Xa -(R=102 G=102 B=102) -Pc -0.492378 0.386633 0.38529 0.202182 0.501961 0.501961 0.501961 Xa -(R=128 G=128 B=128) -Pc -0.410864 0.319738 0.323857 0.110109 0.6 0.6 0.6 Xa -(R=153 G=153 B=153) -Pc -0.32575 0.244968 0.255344 0.043549 0.701961 0.701961 0.701961 Xa -(R=179 G=179 B=179) -Pc -0.231479 0.170962 0.180972 0.008301 0.8 0.8 0.8 Xa -(R=204 G=204 B=204) -Pc -0.11664 0.082246 0.092653 0 0.901961 0.901961 0.901961 Xa -(R=230 G=230 B=230) -Pc -0.062196 0.043153 0.05127 0 0.94902 0.94902 0.94902 Xa -(R=242 G=242 B=242) -Pc -PB -%AI5_EndPalette -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyleList -([Standard]) -(Schlagschatten) -(Schein nach außen - 5 Pt.) -(Jive_GS) -%AI9_EndArtStyleList -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSymbolList -(Textbereich) -(Schaltfläche) -(Kombinationsfeld) -(Texteingabe) -(Suchen) -%AI10_EndSymbolList -%AI5_End_NonPrinting-- -%AI9_BeginDocumentData -%_/Document : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(binding1) /String (xmlnode-nodevalue) , -%_(varSetName) /String (xmlnode-nodename) , -%_; (varSetName) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(none) /String (xmlnode-nodevalue) , -%_(locked) /String (xmlnode-nodename) , -%_; (locked) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variables) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns:v) /String (xmlnode-nodename) , -%_; (xmlns:v) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_custom;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(v:sampleDataSets) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSet) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSets) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_sfw;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(slices) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_734.5322 /Real (xmlnode-nodevalue) , -%_(width) /String (xmlnode-nodename) , -%_; (width) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_127.373 /Real (xmlnode-nodevalue) , -%_(height) /String (xmlnode-nodename) , -%_; (height) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_76.2334 /Real (xmlnode-nodevalue) , -%_(x) /String (xmlnode-nodename) , -%_; (x) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_-363.6865 /Real (xmlnode-nodevalue) , -%_(y) /String (xmlnode-nodename) , -%_; (y) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_1 /Bool (xmlnode-nodevalue) , -%_(bottomLeftOrigin) /String (xmlnode-nodename) , -%_; (bottomLeftOrigin) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sliceSourceBounds) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sfw) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(metadata) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_9 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(#document) /String (xmlnode-nodename) , -%_; (#document) , -%_0 /Real (BleedLeftValue) , -%_0 /Int (CropAreaActive) , -%_/Array : -%_/Dictionary : -%_7747 7891 /RealPoint -%_ (RulerOrigin) , -%_0 /Int (DisplayMark) , -%_(Zeichenfläche 1) /UnicodeString (Name) , -%_1 /Real (PAR) , -%_888 -600 /RealPointRelToROrigin -%_ (PositionPoint2) , -%_0 0 /RealPointRelToROrigin -%_ (PositionPoint1) , -%_1 /Bool (IsArtboardDefaultName) , -%_; , -%_; (ArtboardArray) , -%_0 /Bool (AI11 document knockout group) , -%_0 /Bool (AI11 document isolate blending) , -%_0 /Bool (AI9 paper simulation) , -%_2 /Int (AI9 transparency grid size) , -%_1 /Int (AI9 artboard color) , -%_52428 /Int (AI9 artboard color 2 blue) , -%_52428 /Int (AI9 artboard color 2 green) , -%_52428 /Int (AI9 artboard color 2 red) , -%_65535 /Int (AI9 artboard color 1 blue) , -%_65535 /Int (AI9 artboard color 1 green) , -%_65535 /Int (AI9 artboard color 1 red) , -%_16383 /Int (AIDocumentCanvasSize) , -%_1 /Bool (AI11 Preserve Text Editability) , -%_([Mittlere Auflösung]) /UnicodeString (AI11 Document Setup Flattener Preset Name) , -%_150 /Real (AI9 Mesh Rasterization Resolution) , -%_300 /Real (AI9 Output Rasterization Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_/Dictionary : -%_36 /Real (padd) , -%_0 /Bool (mask) , -%_1 /Bool (spot) , -%_0 /Bool (alis) , -%_72 /Int (dpi.) , -%_4 /Int (colr) , -%_; (AI Auto Rasterize) , -%_5 /Real (GlobalRepulsion) , -%_0 /Real (BleedRightValue) , -%_0 /Real (BleedTopValue) , -%_0 /Int (PerspectiveGrid_RightBlue) , -%_65535 /Int (PerspectiveGrid_RightRed) , -%_50 /Real (PerspectiveGrid_RightOpacity) , -%_45 /Real (PerspectiveGrid_RightFaceAngle) , -%_45 /Real (PerspectiveGrid_LeftFaceAngle) , -%_480 /Real (PerspectiveGrid_ViewingDistance) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_StationPoint) , -%_26214 /Int (PerspectiveGrid_LeftGreen) , -%_58981 /Int (PerspectiveGrid_LeftBlue) , -%_6553 /Int (PerspectiveGrid_LeftRed) , -%_50 /Real (PerspectiveGrid_LeftOpacity) , -%_0 /Real (PerspectiveGrid_FloorOffset) , -%_0 /Bool (AI16 flattener anti alias) , -%_1 /Bool (AI10 flattener outline strokes) , -%_1 1 /RealPoint -%_ (PerspectiveGrid_Scale) , -%_0 /Bool (AI10 flattener outline text) , -%_0 /Int (PerspectiveGrid_Unit) , -%_15 /Real (PerspectiveGrid_CellCount) , -%_4 /Int (AI9 Flattening Quality Level) , -%_1 /Int (AI12_SpotColorMode) , -%_580 /Real (PerspectiveGrid_RightExtent) , -%_30 /Real (PerspectiveGrid_CellSize) , -%_250 /Real (PerspectiveGrid_HorizonHeight) , -%_580 /Real (PerspectiveGrid_LeftExtent) , -%_45874 /Int (PerspectiveGrid_FloorGreen) , -%_2 /Int (PerspectiveGrid_Type) , -%_32767 /Int (PerspectiveGrid_FloorBlue) , -%_32767 /Int (PerspectiveGrid_FloorRed) , -%_50 /Real (PerspectiveGrid_FloorOpacity) , -%_(14.0.0) /String (kAIFullDocumentVersionStr) , -%_32767 /Int (PerspectiveGrid_RightGreen) , -%_0 /Real (BleedBottomValue) , -%_/Dictionary : -%_/Array : -%_; (SelHatDocInterIDsArray) , -%_/Array : -%_; (SelHatDocLocalNamesArray) , -%_; (SelHatDocTableDict) , -%_2 /Int (kAIParametersWhichProfileKey) , -%_0 /Bool (kAIParametersCompression) , -%_0 /Int (kAIParametersEmbedProfileKey) , -%_1 /Bool (kAIParametersPDFCompatibility) , -%_0 -500 /RealPoint -%_ (PerspectiveGrid_RelativeFloorVanishingPoint) , -%_8431 8316 /RealPoint -%_ (PerspectiveGrid_RightPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RightPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_RightPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_RightPlaneBottomPoint) , -%_8671 8191 /RealPoint -%_ (PerspectiveGrid_RightVanishingPoint) , -%_7951 8316 /RealPoint -%_ (PerspectiveGrid_LeftPlaneCellExtent) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexSecond) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexFirst) , -%_0 /Int (PerspectiveGrid_FloorPlaneVisibilityState) , -%_0 /Int (PerspectiveGrid_LeftPlaneVisibilityState) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_LeftPlaneTopPoint) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_LeftPlaneBottomPoint) , -%_7711 8191 /RealPoint -%_ (PerspectiveGrid_LeftVanishingPoint) , -%_1 /Bool (AI10 flattener preserve overprints) , -%_1 /Bool (AI10 flattener clip complex regions) , -%_75 /Int (AI10 flattener raster-vector balance) , -%_100 /Real (kAIParametersSubsetFontsRatioKey) , -%_; /Recorded , -%_/Dictionary : /NotRecorded , -%_1 /Int (LastArtboardID) , -%_1 /Bool (AI12 AI Outline Strokes) , -%_1 /Int (AI11 EPS Overprints) , -%_1 /Bool (AI11 EPS Clip Complex Regions) , -%_1 /Bool (AI12 AI Clip Complex Regions) , -%_([Medium Resolution]) /String (AI11 EPS Flattener Preset Name) , -%_1 /Bool (AI11 EPS Outline Strokes) , -%_1 /Int (AI12 AI Overprints) , -%_/Dictionary : /NotRecorded , -%_ /String (/attributes/job.pagerange) , -%_1 /Int (/attributes/job.printall) , -%_1 /Int (/attributes/job.skipblank) , -%_0 /Int (/attributes/job.reverseorder) , -%_0 /Int (/attributes/job.collate) , -%_() /UnicodeString (/attributes/job.artboardrange) , -%_1 /Int (/attributes/job.printallartboards) , -%_; (AI11 Print JobInfo Dict) , -%_0 /Bool (AI12 AI Outline Text) , -%_0 /Bool (AI11 EPS Outline Text) , -%_75 /Int (AI12 AI Raster/Vector Balance) , -%_0 /Bool (AI16 EPS Anti Aliasing) , -%_75 /Int (AI11 EPS Raster/Vector Balance) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/job.bitmapresolution) , -%_0 /Real (/attributes/pgmk.bleedoff.bottom) , -%_6 /Real (/attributes/pgmk.marksoff.bottom) , -%_1 /Int (/attributes/pgmk.bleedoff.useDocBleeds) , -%_([Standard]) /UnicodeString (/attributes/collectionName) , -%_1 /Int (/attributes/stl.defaultprinter) , -%_() /UnicodeString (/attributes/stl.printername) , -%_() /UnicodeString (/attributes/stl.ppdmodelname) , -%_1 /Int (/attributes/stl.defaultppd) , -%_() /UnicodeString (/attributes/stl.customppd) , -%_0 /Int (/attributes/ppr.custom) , -%_1 /Int (/attributes/ppr.default) , -%_595.32 /Real (/attributes/ppr.width) , -%_841.92 /Real (/attributes/ppr.height) , -%_0 /Real (/attributes/ppr.image.left) , -%_0 /Real (/attributes/ppr.image.top) , -%_595.32 /Real (/attributes/ppr.image.right) , -%_841.92 /Real (/attributes/ppr.image.bottom) , -%_(Durch Treiber definiert) /UnicodeString (/attributes/ppr.name) , -%_0 /Real (/attributes/cppr.width) , -%_0 /Real (/attributes/cppr.height) , -%_0 /Real (/attributes/cppr.woffset) , -%_0 /Real (/attributes/cppr.hoffset) , -%_0 /Int (/attributes/cppr.trans) , -%_0 /Int (/attributes/job.designation) , -%_2 /Int (/attributes/job.printbounds) , -%_0 /Int (/attributes/job.printofile) , -%_0 /Int (/attributes/job.printasbitmap) , -%_() /UnicodeString (/attributes/job.name) , -%_0 /Int (/attributes/clr.mode) , -%_0 /Int (/attributes/clr.convertspots) , -%_0 /Int (/attributes/clr.overprintblack) , -%_720 /Int (/attributes/crd.orientation) , -%_0 /Int (/attributes/crd.fliphorz) , -%_5 /Int (/attributes/crd.position) , -%_0 /Real (/attributes/crd.org.h) , -%_0 /Real (/attributes/crd.org.v) , -%_100 /Real (/attributes/crd.scale.h) , -%_100 /Real (/attributes/crd.scale.v) , -%_0 /Int (/attributes/crd.scplcy) , -%_1 /Int (/attributes/crd.sccnst) , -%_0 /Int (/attributes/crd.tiling) , -%_0 /Real (/attributes/crd.overlap.h) , -%_0 /Real (/attributes/crd.overlap.v) , -%_0 /Int (/attributes/pgmk.enabled) , -%_0 /Int (/attributes/pgmk.style) , -%_() /UnicodeString (/attributes/pgmk.customfile) , -%_() /UnicodeString (/attributes/pgmk.jobtitle) , -%_0.25 /Real (/attributes/pgmk.deflinewidth) , -%_0 /Int (/attributes/pgmk.bleed) , -%_0 /Int (/attributes/pgmk.crop) , -%_0 /Int (/attributes/pgmk.pageinfo) , -%_0 /Int (/attributes/pgmk.registration) , -%_0 /Int (/attributes/pgmk.colorbars) , -%_0 /Real (/attributes/pgmk.bleedoff.left) , -%_0 /Real (/attributes/pgmk.bleedoff.top) , -%_0 /Real (/attributes/pgmk.bleedoff.right) , -%_6 /Real (/attributes/pgmk.marksoff.left) , -%_6 /Real (/attributes/pgmk.marksoff.top) , -%_6 /Real (/attributes/pgmk.marksoff.right) , -%_1 /Int (/attributes/fnt.dlmode) , -%_0 /Int (/attributes/fnt.dlprfonts) , -%_0 /Int (/attributes/fnt.subst) , -%_3 /Int (/attributes/ps.level) , -%_1 /Int (/attributes/ps.binary) , -%_0 /Int (/attributes/ps.negative) , -%_0 /Int (/attributes/ps.compression) , -%_0 /Int (/attributes/ps.contone) , -%_0 /Int (/attributes/ps.l1compat) , -%_300 /Real (/attributes/ps.shaderes) , -%_0 /Int (/attributes/ps.setflatness) , -%_1 /Real (/attributes/ps.flatness) , -%_75 /Int (/attributes/xp.balance) , -%_300 /Int (/attributes/xp.rresolution) , -%_150 /Int (/attributes/xp.gresolution) , -%_0 /Int (/attributes/xp.converttext) , -%_1 /Int (/attributes/xp.convertstroke) , -%_1 /Int (/attributes/xp.clip) , -%_0 /Int (/attributes/xp.antialiasing) , -%_0 /Int (/attributes/xp.opco) , -%_0 /Int (/attributes/xp.opse) , -%_0 /Int (/attributes/xp.opdu) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/xp.name) , -%_0 /Int (/attributes/rdrs.enabled) , -%_0 /Int (/attributes/rdrs.func) , -%_1 /Real (/attributes/rdrs.flatteness) , -%_() /UnicodeString (/attributes/rdrs.annot) , -%_ /String (/attributes/rdrs.custom) , -%_1 /Int (/attributes/cm.mode) , -%_(Coated FOGRA39 \(ISO 12647-2:2004\)) /UnicodeString (/attributes/cm.profile) , -%_2 /Int (/attributes/cm.inteint) , -%_1 /Int (/attributes/cm.preservecmyk) , -%_0 /Int (/attributes/cm.preserveother) , -%_; (AI11 Print Attribute Dict) , -%_0 /Bool (AI15 Document PixelPerfect) , -%_150 /Real (AI12 AI Gradient and Mesh Resolution) , -%_300 /Real (AI12 AI Line Art and Text Resolution) , -%_150 /Real (AI11 EPS Gradient and Mesh Resolution) , -%_300 /Real (AI11 EPS Line Art and Text Resolution) , -%_42 /Int (AI11 Document Setup Language Popup) , -%_1 /Bool (AI9 no overprint in composite) , -%_([Medium Resolution]) /String (AI12 AI Flattener Preset Name) , -%_0 /Bool (AI16 AI Anti Aliasing) , -%_0 /Bool (SVGTextOnPath) , -%_1 /Bool (SVGAutoKern) , -%_0 /Int (SVGFontType) , -%_0 /Bool (SVGXap) , -%_0 /Bool (SVGPgf) , -%_0 /Bool (SVGTemplate) , -%_0 /Int (SVGDTD) , -%_2 /Int (SVGEncoding) , -%_4 /Int (SVGStyleType) , -%_2 /Int (SVGEmbedRaster) , -%_3 /Int (SVGPrecision) , -%_1 /Int (SVGFontLocation) , -%_1 /Int (SVGFontSubsetting) , -%_0 /Bool (SVGAdobeNamespace) , -%_1 /Bool (PerspectiveGrid_Snap) , -%_0 /Bool (PerspectiveGrid_ShowHide) , -%_/Dictionary : /NotRecorded , -%_([Illustrator-Standard]) /UnicodeString (/attributes/collectionName) , -%_0 /Int (/attributes/AI11PDF_PageInfo) , -%_0 /Real (/attributes/AI11PDF_BleedTop) , -%_0 /Real (/attributes/AI11PDF_BleedBottom) , -%_0 /Int (/attributes/AI11PDF_RegMarks) , -%_1 /Int (/attributes/AI11PDF_CompressArt) , -%_0 /Real (/attributes/AI11PDF_BleedRight) , -%_(Dies sind die Standardeinstellungen beim Speichern einer Illustrator-Datei als PDF-Dokument. Verwenden Sie diese Einstellungen, wenn Sie die Datei später in Illustrator oder in einem Layoutprogramm wie z. B. InDesign bearbeiten möchten oder der endgültige Verwendungszweck der Datei unbekannt ist.) /UnicodeString (/attributes/AI12PDF_Description) , -%_0 /Int (/attributes/AI11PDF_FastWebView) , -%_1 /Int (/attributes/AI11PDF_BleedLink) , -%_1 /Int (/attributes/AI11PDF_Overprint) , -%_0 /Int (/attributes/AI11PDF_ColorBars) , -%_0 /Int (/attributes/AI12PDF_Trapped) , -%_1 /Int (/attributes/AI14PDF_DocBleed) , -%_0 /Real (/attributes/AI11PDF_BleedLeft) , -%_1 /Int (/attributes/AI12PDF_Standard) , -%_0 /Int (/attributes/AI11PDF_TrimMarks) , -%_300 /Int (/attributes/AI11PDF_MonochromeDownsampleResolution) , -%_1 /Int (/attributes/AI11PDF_PreserveIllustratorEditingCapabilities) , -%_1 /Int (/attributes/AI12PDF_OutputIntentProfileNamePolicy) , -%_75 /Int (/attributes/AI10 flattener raster-vector balance) , -%_1 /Int (/attributes/AI11PDF_ColorDownsampleKind) , -%_0.25 /Real (/attributes/AI11PDF_TrimMarkWeight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputCondition) , -%_1 /Int (/attributes/AI12PDF_DestinationPolicy) , -%_() /UnicodeString (/attributes/AI12PDF_DestinationName) , -%_() /UnicodeString (/attributes/AI12PDF_RegistryName) , -%_0 /Int (/attributes/AI11PDF_PrinterMarkType) , -%_0 /Int (/attributes/AI16 flattener anti alias) , -%_6 /Int (/attributes/AI11PDF_GrayCompressionKind) , -%_1 /Int (/attributes/AI11PDF_GenerateThumbnails) , -%_0 /Int (/attributes/AI11PDF_FlattenTransparency) , -%_0 /Int (/attributes/AI12PDF_UsePrintTiling) , -%_256 /Int (/attributes/AI11PDF_GrayTileSize) , -%_100 /Int (/attributes/AI11PDF_SubsetFontRatio) , -%_1 /Int (/attributes/AI11PDF_GrayDownsampleKind) , -%_3 /Int (/attributes/AI11PDF_Compatibility) , -%_0 /Int (/attributes/AI10 flattener outline text) , -%_256 /Int (/attributes/AI11PDF_ColorTileSize) , -%_() /UnicodeString (/attributes/AI12PDF_OutputIntentProfileName) , -%_225 /Int (/attributes/AI11PDF_ColorDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkTop) , -%_1 /Int (/attributes/AI11PDF_PreserveAcrobatLayers) , -%_4 /Int (/attributes/AI11PDF_MonochromeCompressionKind) , -%_225 /Int (/attributes/AI11PDF_GrayDownsampleImageAbove) , -%_1 /Int (/attributes/AI11PDF_ColorCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkRight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputConditionIdentifier) , -%_1 /Int (/attributes/AI10 flattener clip complex regions) , -%_150 /Int (/attributes/AI11PDF_GrayDownsampleResolution) , -%_6 /Int (/attributes/AI11PDF_ColorCompressionKind) , -%_([Mittlere Auflösung]) /UnicodeString (/attributes/AI11PDF_FlatteningPresetName) , -%_150 /Real (/attributes/AI9 Mesh Rasterization Resolution) , -%_450 /Int (/attributes/AI11PDF_MonoDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkLeft) , -%_1 /Int (/attributes/AI12PDF_ColorConversionPolicy) , -%_1 /Int (/attributes/AI11PDF_MonochromeDownsampleKind) , -%_150 /Int (/attributes/AI11PDF_ColorDownsampleResolution) , -%_300 /Real (/attributes/AI9 Output Rasterization Resolution) , -%_1 /Int (/attributes/AI11PDF_GrayCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkBottom) , -%_1 /Int (/attributes/AI10 flattener outline strokes) , -%_1 /Int (/attributes/AI12PDF_ProfileInclusionPolicy) , -%_; (PDFPresetCollection) , -%_1 /Int (AI9 Document Setup panel) , -%_0 /Bool (AISaveMultipleArtboards) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/inklst.count) , -%_; (AI11 Ink List Dict) , -%_(Adobe PDF-Vorgabe.joboptions) /String (AI12 Job Options Name) , -%_7842 /Int (AI12 Job Options Size) , -%_/Binary : /ASCII85Decode , -%4?O&[+M4?:L\'M@ruc7FE2M8%144#00sDjDg,0$@;^.*@<,ps@sK2/ -%@;L!r%144#00sJtBgHQL@<4eSCi=>cD..'gF!,('Cia.s$6UHE6#LdY6#:7DF%:7ZGtDj]B4Z-,AmoLsAISth+>6#uFD4$WBjl'W -%Df0JbD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC.VCi=>cD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC:]@6#sC^g^o+>6&qDIdI!B-8j$AS-#n$6UHE6Xadu -%9j(+cEc5Q(Ch4_;VJ#h;ccak>VJ#i+EfLh%144#010/a7ri$`:i^JdBl%?'-r+\uALS&q+7Co^+n%,`+>6*#Ci=>[6W6Qn@:s.>Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+6>`77Rdo+6*#Ci=>cD..'g -%6tp.Q+?Vaq$6UH6+>68a@;Tt"ATJtu%144#+F<4+6S]@:OCt -%EZd%g2`OB5+n%,`+?hsu$6UHE -%6Z6dZE_1+VB4XJLGA_J1D/a<&<+p;`F(fK.A06*#Ci=>cD..'g6uR9eF(&p)Ch6RkE+L.F:2b#]%144#010Yo -%DfSEd@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+6*#Ci=>cD..'g9keKC -%ATMd+F`_>9DBLYk0F\@3+>6*#Ci=>cD..'g9keKCATMd+F`_>9DGY7fBk)E202G4M$6UHE6Z6dZE_1+VB4XtPF)Pl;FD5Z2+>G`- -%%144#010YoDfScfFED57B6-OVCh4_;.1HV,+>6*#D/`p*BjtdmBlnVoAThX$+>GK+%144#010YpE,oN2F&-7[ARfh'+>6N&Ado(i -%+>6*#D/aN,F)t/dB4Z-,FE2M8%144#010YqG%G]98SqmKATLgh8T&'MG\(D.FE2M8%144#010bk@2FT;R2Dd*A2DHm>2_m'@2Dd*A2Dm0B2E2Dm0B2E2`*3B2F]AS2_m'@1.3fM1c-m?2DHm>2`*3B -%2Dm0B2E2FB/P2`!-A1,(C92)$^<1c-m?1c@$A1.3fM1c-m?2F]AS2F9)O2`39C2FK5Q2Dm0B2FT;R2`*3B1.2`*3B2Dm0B2E75Q\P2`*3B2Dm0B -%2_m'@1,(C92E2`*3B2F]AS2_m'@1,(C92F]AS2Dd*A2Dm0B -%2_m'@1,(C92E2`WQG2F]AS2`39C2`*3B2_Zp>2_m'@2F]AS -%2E*2FK5Q2FK5Q1,(C92`EEE2E2_m'@2DQs?2Dm0B2E2`*3B2Dm0B2E2FT;R2FT;R2`*3B -%1,(C92E6,oFCes(6>U4NA9/l8Eckq&$6UHE6tLIO@rt(\Ecu#8+>>E&0JG17%144#019_X -%BQ\0$DII6qF!,RFF_)!h+6-$GA_J1D/a<&9lFof8SqmKATJu+@;L!r%144#01B_eARn)CCdr>\FE8RHEckq&$6UHE7;ZLFA4gcL:N1DiDf0V=AmoLsAISth -%+>60#@V'(GE+NodH#R=;AmoLsAISth+>60#BllaA6W[]:DJ=!$F!,('Cia.s$6UHE7;cURA7\,HCi=>cD..'gF!,RFF_)!h+66*@OB5+n%,`+6bo@;Tt"ATJtu%144#+F<4+66* -%@66*@Bk)6-4?O&[+F<4+>E,2D?g=%144# -%+7Co^+OB5+66*@6M`%144#01U%kGtDj]B4XtPF)Pl;FD5Z2+>G`-%144#01g"hB4XeKD/XH?+>GQ, -%3&NWQ%144#01o&07kubP0LKbpDfS-2;b:h7B4XJF@rrhU4:MW?+6].Ch6[^A9;K-1,Us!$6UHT4q.iA+>6>`77T*e0JGk4Ci=>cD..'g6tp.Q+?Vaq$6UH6+>6T7@;KY"Gp"h!%144#+6T7@;KY" -%Gp"h!%144#+>stream -=7F^]*#FEnu`2%9m8+6GtGZ/`oF(KGi@rrhJ0JEqC+f@%144#5!BD_+6H-DJr*`@:s.@Bl%m&EZd#)CghEs7;cURA7Z2W+9DBL_h0F\@3+>6H- -%DJr*`@:s.GBl6g[F)Pl;FD5Z2:iC/a@sK1M:J2-(+n%,`+>6Me9cu/"$6UHE:N1DiD/"<-+D,%uF(Gdf+6<(@r-9uAOglWA7]gPEbT'*+D,%uF(Gdf+6JuD.Rd-@:Njk>7Co^+6E"B45:q%144#+&S=r<,Y<,9h\#pDKJfkH=\42@;L!r%144#+\ASuTuFD5Z2+>6Q0 -%Ecc>1Bljdk+6Z,EbTE,6Z6jaASuT4FE2M8%144#+6`9AOUHFARo=_A5I;bAnc'mF!,('Cia.s$6UH6+6<(@r-9uAOq)cATDU$DJO;9AmoLsAISth+6<(@r-9uAP$c]ATD3hFD5o0+D,%uF(Gdf+6<(@r-9uAPdDcAnc'mF!,('Cia.s$6UH6+6GtEbf_tASGdjF0F\@3+6H3CijB.ARoL`87?CHCh[d"+>6`9APZcMARfg\ATW$.DJ+#"$6UH6+n%,`+6PZ7T`H/FDuAE8T&W] -%DKJ]qDe<^"AQ*/VARfh#EZd#15n+/D+6Q"B4XeGEbf_cBl%?'02c_*@;\JEAmoguF:AR"+6Q3ATMF'G%F*QBln', -%B-;;:F_)!h+6`9AOLHHF_t]-F@'eTARlp*Eckq&$6UH6+?hsu$6UHs%144#02P&+=@-h8ARn,GGZ8T\EbTAW -%Dg5&iAohO*+Bo9^+=63+6PZ7T`H/FDuAE6Z6jQBln'-DFnAMDKKT) -%Bk;<--n,T4+6PZ7T`Q"B5)F/Ed:DgD.Oh<.1HV,+>6PZ7T`T#F@'eTARn,G -%GZ8TUARoL`6>q)kFE2M8%144#02P&+=B'62mCia.s$6UHE:ddcT<,u\i6>q*JDbXeRBjj>HGY_p`F(KG9>7Co^+=63+6Q3ATMF'G%FHmATDa1Bl8#kATW$.DJ+#5FE2M8%144#02lt$Ecb,dB4W2?%144#02m"&F(KG_Df0Z<+EVXHAISth -%+>6]7@;^-uATC7_DI[d&Df/-aAoAeF:i^,gATDs*%144#03(A;@;]UB7nIT1D]g]2ASl@/AISth+>6`9APdDcCi -%_; (AI12 Job Options Data) , -%_1 /Bool (AISaveMultipleArtboardsAllSelected) , -%_; /NotRecorded , -%_; -%AI9_EndDocumentData -%AI11_BeginTextDocument -/AI11TextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24k&!+c.Q!+c.(!)rqs!-A3O!%e1M!,*f(0/=Y(+?ht35!C)Q4s2sM+>5Dk4?O`>3B8386Z6mZ<-`Fo7W30d+>5Dk -%4?O`>0H_eCrr>anGlVjbB`MQAA,oF+EWC"X/HAZKAH6?CFT?4X@/t5Jm0H`PC+?ht35!C)O4kJ.3L9!+>=p%4s3$Q+?ht34?O`>0H`J?+>5`8 -%+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H5lbEqDZF5HAH5:%D?+h[B`N2S7K@?,D?+c-+>5Jm0H`PC+?ht35!C)p+>5Gl>9H$j -%+>5Dk0d&YD+C-*R4s2L6+?Vb/0/+MQ+?Vb/0/+M24 -%0H_eCs8FtV2^ok&0d&1n5!C)O4G!&4s2sM+>5Dk./s8G48q;j+>5Gl0d&YD+?Vb/0/+Lsrr;s\r]M\Q -%0/4S(+?ht34?O`>0H_eCs8G7^5:I^.0d&1n5!C)O4G!&4s2sM+>5Dk./s8G6iKG%+>5Gl0d&YD+?Vb/ -%0/+Lsrr0H_eCs8P1\4"2:*0d&1n5!C)O4G!&4s2sM+>5Dk./s5h(a'YE -%+>5Gl0d&YD+?Vb/0/+Lsrr4)\+<2gQ0/4S(+?ht34?O`>0H_eCs"F^4#UplL0d&1n5!C)O4G!&4s2sM -%+>5Dk./s6#$nr)=+>5Gl0d&YD+?Vb/0/+Lsrr4Y^0FfNS0/4S(+?ht34?O`>0H_eCs"G!<&1J_T0d&1n5!C)O4G!&4s2sM+>5Dk./s8G2Z>T`+>5Gl1*AbE+?Vb/0/+Lsrr;sWr\u>L0/4S)+?ht34?O`>0H_eCs8G(Y3[l1)0d&4o5!C)O -%4P''4s2sM+>5Dk./s8G55m_p+>5Gl1*AbE+?Vb/0/+Lsrr;s_r]hnT0/4S)+?ht34?O`>0H_eCs8G@a -%67F$10d&4o5!C)O4P''4s2sM+>5Dk./s8H$3(;\+>5Gl1*AbE+?Vb/0/+Lsrr0H_eCs8QC)>q$mL0d&4o5!C)O4.3L8u+>P''4s2sM+>5Dk./s5h*?Z@O+>5Gl1*AbE+?Vb/0/+Lsrr4YY -%0F90N0/4S)+?ht34?O`>0H_eCs"Fg7$Rm2O0d&4o5!C)O4P''4s2sM+>5Dk./s6#%knMC+>5Gl1*AbE -%+?Vb/0/+Lsrr4Ya0G,`V0/4S)+?ht34?O`>0H_eCs"G0A'e(7Y0d&4o5!C)O4Y-(4s2sM+>5Dk./s8H -%?N4=\+>5Gl1E\kF+?Vb/0/+Lsrr4Z<0L7-10/4S*+?ht34?O`>0H_eCs"Heo6Ra-20d&7p5!C)O4Y-( -%4s2sM+>5Dk./s6#7kdF^+>5Gl1E\kF+?Vb/0/+Lsrr4ZD0M*]90/4S*+?ht34?O`>0H_eCs"Iq:@jrNR0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#KeS30+>5Gl1E\kF+?Vb/0/+Lsrr4[-0S_)"0/4S*+?ht34?O`>0H_eCs"KHeN[Z)(0d&7p -%5!C)O4Y-(4s2sM+>5Dk./s6#ShQ`b+>5Gl1E\kF+?Vb/0/+Lsrr4[G0VKp<0/4S*+?ht34?O`>0H_eC -%s"L3%UF@<=0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#V_G"t+>5Gl1E\kF+?Vb/0/+Lsrr4[O0W?KD0/4S* -%+?ht34?O`>0H_eCs"M>E_^Q]]0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#jY5dF+>5Gl1E\kF+?Vb/0/+Ls -%rr4\80]sl-0/4S*+?ht34?O`>0H_eCs"NjpmO9830d&7p5!C)O4Y-(4s2sM+>5Dk./s6#r%S+!+>5Gl -%1E\kF+?Vb/0/+Lsrr4YU0EimJ0/4S*+?ht34?O`>0H_eCs8N-"!@]-E0d&:q5!C)O4b3)4s2sM+>5Dk -%./s8H)ZLa*+>5Gl2'>(H+?Vb/0/+Lsrr4\L0`*:A0/4S,+?ht34?O`>0H_eCru_jq&1J_T0d&=r5!C)O4t?+4s2sM+>5Dk./s6#!\a[)+>5Gl2BY1I+?Vb/0/+Lsrr!0/4S.+?ht34?O`>0H_eCs"FI-!@]-E0d&Ct5!C)O45Dk./s5h,p4N`+>5Gl3$:CK+?Vb/0/+Lsrr0H_eCrrAeoUF@<= -%0d&J!5!C)O45Dk./s8H"oe`T+>5Gl0ea_64s2sM+>5Dk./s5HU&^o:+>5Gl0ea_64s2sM -%+>5Dk./s5HYQ1mV+>5Gl0ea_64s2sM+>5Dk./s5h0H`%u+>5Gl0ea_64s2sM+>5Dk./s5h1*AD&+>5Gl0ea_64s2sM+>5Dk./s6# -%!&+C%+>5Gl0eje74s2sM+>5Dk./s6#681_T+>5Gl0esk84s2sM+>5Dk./s6#6nh"X+>5Gl0esk84s2sM+>5Dk./s6#7PI:\+>5Gl -%0esk84s2sM+>5Dk./s6#82*R`+>5Gl0esk84s2sM+>5Dk./s6#8ha^'+>5Gl0esk84s2sM+>5Dk./s6#A2&Zc+>5Gl0esk84s2sM -%+>5Dk./s6#L+n?2+>5Gl0esk84s2sM+>5Dk./s6#LbOf;+>5Gl0esk84s2sM+>5Dk./s6#O"cbH+>5Gl0esk84s2sM+>5Dk./s8H -%&H5Gl0f'q94s2sM+>5Dk./s6#U+i;j+>5Gl0f1":4s2sM+>5Dk./s6#UbJSn+>5Gl0f1":4s2sM+>5Dk./s6#VD+kr+>5Gl -%0f1":4s2sM+>5Dk./s6#W%b/!+>5Gl0f1":4s2sM+>5Dk./s6#W\D:=+>5Gl0f1":4s2sM+>5Dk./s6#`%^7$+>5Gl0f1":4s2sM -%+>5Dk./s6#jtPpH+>5Gl0f1":4s2sM+>5Dk./s6#kV2BQ+>5Gl0f1":4s2sM+>5Dk./s6#mkF>^+>5Gl0f1":4s2sM+>5Dk./s6% -%+>Q;5+>5Gl0f1":4s2sM+>5Dk./s6%J24>X+>5Gl0f1":4s2sM+>5Dk./s6%cnbSL+>5Gl0f1":4s2sM+>5Dk./s6&!&I\*+>5Gl -%0f1":4s2sM+>5Dk./s6&EAMbe+>5Gl0f1":4s2sM+>5Dk./s6&J2?"1+>5Gl0f1":4s2sM+>5Dk./s6A!2$):+>5Gl0f1":4s2sM -%+>5Dk./s5H0E=*^+>5Gl0f:(;4s2sM+>5Dk./s5H+TQs?+>5Gl0fC.<4s2sM+>5Dk./s5HT`G*A+>5Gl0fC.<4s4,R5!C)Q4s3$Q -%+C-*C0d'[C4?O`>0H`%l5!C)p+?ht30/F_54kC!-J9Y!,hjT!,hj.!+>kF!,DRC!,DRW -%.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB4?O`>0H_r"2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n' -%0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`.-+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[ -%4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3' -%+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n'0/=Xurr4Yd.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR -%5!C)O4#3'+>5Jm./s8H>q$m[4s2sM+>5Gl/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&&# -%2'=P-+=R6h0F90N5!C)O4#3'+>5Jm./s6#$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4 -%+?ht34?O`>0d&'=P-+=R6h0G,`V5!C)O4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6hrsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9 -%+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM -%+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h&1J_c4s4,R5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C -%0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/ -%0/+MQ+>P&r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G[D2]uBK0/4S34>E%+>>E%+>>E%+C-*C -%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>P'!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*AS">p(dT+?Vb/0/+M245Dk>9G[D0ea_U+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o0d'aE0/4S34>E%+>>E%+>>E%+C-*C0d&7p -%5!C)Q4s3$Q+?Vb/0/+MQ+>P&o1*BjF0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;- -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Dk>9G[D0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q -%4s3$Q+?Vb/0/+MQ+>P&o2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht3>p)5Gl -%>9H$j+>5Dk>9G^E0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1E\Ir>p(dT+?Vb/ -%0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1E\D1+C-*C0d&S@ -%+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GaF0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1a"Xu>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk -%>9GaF0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S3 -%4p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GdG0d'aE0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8s+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB2'=[t>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2'?0I0/4S34>E%+>,Mo/i=bW+>5Gl0d&YD+?ht35!C)O4t?J+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG2]uBK0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9$+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=n%>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GPm>p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O4GSn>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GVo>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GYp>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O4G_r>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Gbs>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)p+?ht34?O`>0H`7r0/4SR+?Vb/0/+MQ+>t>s+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u* -%+C-*R4s3$Q+?ht34?O`>0HaRB2BXh!>p(dT+?Vb/0/+M24t?"+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`> -%0HaRB2BY"&>p(dT+?Vb/0/+M24t>s0HaXD0/4S34>E%+>>E%+>,Mo>p)GSn>p(dT+?Vb/0/+M24t>s1*BjF0/4S34>E%+>>E%+>,Mo>p)GYp>p(dT+?Vb/0/+M24t>s1a$'H0/4S34>E%+>>E%+>,Mo>p)G_r>p(dT+?Vb/0/+M245Dk>9GgH0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk2]sb.+BosN4G!E+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(E!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl -%1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(E# -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q -%4s3$Q+?Vb/0/+MQ+?(E'+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1*AbE+?ht35!C)O4GPm>p(dT -%+?Vb/0/+M245Dk>9GjI0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&% -%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt1E]sG0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]sh3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/ -%0/+M245Dk>9GjI0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u* -%+C-*C0d&4o5!C)Q4s3$Q+C-*R4s2sM+>5Dk3$9k/+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+?1K"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)k9I -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GmJ2]uBK0/4S34>E% -%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?1K'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GmJ0f1"Y+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2'?0I0/4S34>E%+>>E%+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB3$9q6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`> -%0H`@u0/4SR+?Vb/0/+MQ+?:Q!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3?U7'>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q)+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GpK0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

G_r>p(dT+?Vb/0/4S345Dk>9GpK0fC.[ -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0ea_'0d'[C4?O`>0HaRB0ea_)+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GXS+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXS+?1KL+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1*BjF -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0ea_)2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_)2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl -%1*AbE+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB -%0eje*2BZ9J0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0esk)0d'[C4?O`>0HaRB -%0esk++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GXU+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E% -%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0esk+1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0esk+2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f'q.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S3 -%45Dk>9GXV+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0eskW+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp -%0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0fC.[+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f1"+0d'[C4?O`>0HaRB0f1"-+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXW+?(EK+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXW+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB -%0f1"-0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0f1"-1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1, -%2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4G_r0/4SR+?Vb/0/+MQ+>G_r0d'aE0/4S34>E%+>>E%+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G_r1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>k9I+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G_r3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM -%+>5Dk0fC.-0d'[C4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`> -%0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht3 -%5!C)Q4s2sM+>5Dk>9GXY+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Mn0d&YD+?ht35!C)O4kC!-J9Y!,hjT!,hj.!+>kF!,DRC!,DRW.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB -%4?O`>0H_r"2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n'0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b) -%1*A"Eru`.-+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf< -%+?Vb/0/+M#/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3'+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n' -%0/=Xurr4Yd.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR5!C)O4#3'+>5Jm./s8H>q$m[ -%4s2sM+>5Gl/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&'=P-+=R6h0F90N5!C)O4#3' -%+>5Jm./s6#$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4+?ht34?O`>0d&'=P-+=R6h0G,`V -%5!C)O4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&&# -%2'=P-+=R6hrsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9 -%+>5Gl/M8e9+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h -%&1J_c4s4,R5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:, -%/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S34>E%+>,Mo/i=bW -%+>5Gl1E\kF+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk -%>9G[D1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD -%+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G[D3$;KL -%0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;*+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9G[D0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0eskW+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB -%1*A;/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0fC.[+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G^E0d'aE0/4S34>E% -%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>Y,t+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S3 -%45Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD -%5!C)Q4s3$Q+?Vb/0/+MQ+>Y-#+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT -%+?Vb/0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/ -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht3 -%5!C)p+?ht34?O`>0H`1p0/4SR+?Vb/0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM -%+>5Dk>9GaF2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>b3"+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1a"M1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E, -%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2BZ9J0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s4,R -%5!C)O4k8p0d'[C4?O`>0HaRB2'=Ur>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB2'=b!>p(dT+?Vb/0/+M24k9" -%+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=h#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG3?VTM0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0HaXD -%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0d'aE0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1*BjF0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>k8r1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1a$'H -%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2'?0I0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2BZ9J0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk2BXY-+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB2BXdu>p(dT+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S3 -%4>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM0/4S34>E%+>,Mo/i=bW+?ht3 -%5!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GSn>p(dT+?Vb/ -%0/+M240HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q -%4s3$Q+?Vb/0/+MQ+>t>s1E]sG0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G_r>p(dT+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`:s -%0/4SR+?Vb/0/+MQ+?(Dt+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1E]sG0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0eskW -%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+?1K$+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3$:.&>p(dT -%+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1K(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GmJ0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB3$9q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GmJ0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q -%5!C)Q4s3$Q+C-*R4s2sM+>5Dk3?Tt0+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%% -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3?U:(>p(dT+?Vb/0/4S345Dk>9GpK -%3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk -%>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht3 -%5!C)O4Gbs>p(dT+?Vb/0/4S34GPm0/4SR -%+?Vb/0/+MQ+>GPm0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/ -%0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I -%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXS+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk -%>9GXS+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0ea_)1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_) -%2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3) -%4s3$Q+?ht34?O`>0HaRB0eje*2BZ9J0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk -%0esk)0d'[C4?O`>0HaRB0esk++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXU+>Y-G -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E%+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q -%+?Vb/0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`> -%0HaRB0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C4?O`> -%0HaRB0f'q,+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXV+>Y-G+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GYp -%3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`),+>5Gl>9H$j+>5Dk>9GXW+>G!E+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S3 -%45Dk>9GXW+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q -%0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q -%5!C)Q4s3$Q+?Vb/0/+MQ+>G_r1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX -%+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q -%5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(. -%0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+= -%+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk0fC.-0d'[C4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q -%4s2sM+>5Dk>9GXY+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT -%+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB0fC.6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT -%+?Vb/0/4S345Dk>9GXY+>GPm>p(dT+?Vb/0/4S34Gbs0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM -%+>5Dk>9GXY+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht3>p)5Dk4?O`>0H_eCrr>OhGlVa_D#duEF9$@^FT>PE@/t'CFT?7YDZFYTDZEr@AH6TJCB.cCCB/K++>5Sp4?O`>0H`%l -%0/4S34#3'+>5Jm./s8H#Upl[4s2sM+>5Dk/M8n'0/=Xurr0H_r"2'=P-+=R6h+;cOM5!C)O4#3'+>5Jm./s5h*%5Dk/M8n'0/=Xurr4YX.3Lf<+?Vb/0/+M#/i=b) -%1*A"Es"Fd/+?ht34?O`>0H_r"2'=P-+=R6h0FTBQ5!C)O4#3'+>5Jm./s6#%OiMa4s2sM+>5Dk/M8n'0/=Xurr4Y`.3Lf< -%+?Vb/0/+M#/i=b)1*A"Es"G-9+?ht34?O`>0d&'=P-+=R6hrs:+s5!C)O4#3'+>5Jm./s8H4XhL;4s2sM+>5Gl/M8n' -%0/=Xurr<"(.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`1.+?ht34?O`>0d&'=P-+=R6h+<;mR5!C)O4#3'+>5Jm./s6##q6u\ -%4s2sM+>5Gl/M8n'0/=Xurr4Y[.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fm2+?ht34?O`>0d&'=P-+=R6h0FoTT5!C)O4#3' -%+>5Jm./s6#&Lehd4s2sM+>5Gl/M8n'0/=Xurr4Ye.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NQX+?ht34?O`>0d&'=P-+=R6h0EN[G -%5!C)O4#3'+>5Jm./s8H$n3;_4s2sM+>5Gl/M8n'0/=Xurr4YQ.3Lf<+?Vb/0/+M#/i#:,0/4S$/i#:,0/=XurrFul0d'[C4?O`>0HaRB0d&=r>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)p+?ht34?O`>0H`+n0/4SR+?Vb/0/+MQ+>P&o+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1*BjF0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q -%4s3$Q+?Vb/0/+MQ+>P&q+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1a$'H0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M, -%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9G[D2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/ -%0/+MQ+>P'!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D3?VTM0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GPm>p(dT+?Vb/0/+M24P&o0d'aE0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o -%1*BjF0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GYp>p(dT+?Vb/0/+M24P&o1a$'H0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4G_r>p(dT+?Vb/0/+M24P&o2BZ9J0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Get>p(dT+?Vb/0/+M24p)5Gl>9H$j+>5Dk>9G^E0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF -%+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,t+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1E\V!>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>Y-#+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9G^E0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>Y,p1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D/+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Gl1a"tG -%+?ht35!C)O4Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`1p -%0/4SR+?Vb/0/+MQ+>b2q+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GaF2'?0I0/4S3 -%4>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>b3"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1a"M1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q -%+?Vb/0/+MQ+>b2q2BZ9J0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4k8p0d'[C -%4?O`>0HaRB2'=Ur>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4P'F+>5Gl4?O`> -%0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1E]sG0/4S34>E%+>,E,+>,E, -%+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB2'=b!>p(dT+?Vb/0/+M24k9"+C-*C0d&S@+>5Dk4?O`> -%0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=h#>p(dT+?Vb/0/+M245Gl -%0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG -%3?VTM0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0HaXD0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r0d'aE0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1*BjF0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r -%1E]sG0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n -%5!C)Q4s3$Q+?Vb/0/+MQ+>k8r2BZ9J0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk -%2BXY-+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT -%+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E% -%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH -%0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GSn>p(dT+?Vb/0/+M240HaRB2BX_0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s -%1E]sG0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p)G_r>p(dT+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo/i=bW+>5Gl1a"tG+?ht35!C)O4Get>p(dT+?Vb/0/+M24p)5Gl>9H$j+>5Dk>9GjI0d'aE0/4S34>E%+>,Mo -%/i=bW+>5Gl1*AbE+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`> -%0HaRB2]sq">p(dT+?Vb/0/+M245Dk4?O`> -%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M245Gl -%1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]t+' -%>p(dT+?Vb/0/+M24>E% -%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4G\q>p(dT+?Vb/ -%0/+M24>E%+>,Mo/i=bW -%+>5Gl1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O40HaRB3$9pu>p(dT -%+?Vb/0/4S345Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk -%>9GmJ2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?1K'+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+?1Ju0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q2+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GmJ0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2'?0I0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3$9q6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`@u0/4SR+?Vb/0/+MQ+?:Q!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9GpK1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U1% -%>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GpK3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U=)>p(dT+?Vb/0/4S345Dk>9GpK0ea_U+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB3?U%4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/ -%0/4S345Dk>9GpK0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34GPm -%1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0ea_/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB0ea_0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/ -%0/4S345Dk>9GXS+>GPm>p(dT+?Vb/0/4S345Dk>9GXS+>GVo>p(dT+?Vb/0/4S345Dk>9GXS+>GYp -%>p(dT+?Vb/0/4S345Dk>9GXS+>G\q>p(dT+?Vb/0/4S345Dk>9GXS+>G_r>p(dT+?Vb/0/4S345Dk>9GXS+>Gbs>p(dT+?Vb/0/4S34GSn0/4SR+?Vb/ -%0/+MQ+>GSn2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GSn2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S++?ht35!C)Q4s2sM+>5Dk>9GXT+>Gbs>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p -%+?ht34?O`>0H`)*+>5Gl>9H$j+>5Dk>9GXU+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`> -%0HaRB0esk-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl -%1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+?:QM -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+>GVo0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f1"Y+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht3 -%5!C)Q4s2sM+>5Dk>9GXU+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)+ -%+>5Gl>9H$j+>5Dk>9GXV+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f'q.+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%4p(dT+?Vb/0/4S345Dk>9GXV+?:QM+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f'qX+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>GYp0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f1"+0d'[C4?O`>0HaRB -%0f1"-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXW+>Y-G+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>G\q2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3$;KL -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f1"-2BZ9J0/4S3 -%4,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f:(,0d'[C4?O`>0HaRB0f:(.+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXX+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1, -%1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB0f:(2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f:(4+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f:(5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXX+>GPm>p(dT+?Vb/0/4S34G_r0eskW+>5Gl4?O`>0d&S@ -%+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>G\q>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)p+?ht34?O`>0H`).+>5Gl>9H$j+>5Dk>9GXY+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB0fC.1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs1a$'H0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>k9I+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXY+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD -%0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXY+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>Gbs3?VTM0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC./0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3) -%4s3$Q+?ht34?O`>0HaRB0fC./1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s4,R5!C)Q -%4s2L7+>b3)4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H=TDk1CB/JWD#eJSD?+ST=o`+6D?+GP@/t'CFX\Fd2'>"D+>5Dk0H`#'+?Vb/ -%0/+MQ+?Vb/0/+M#/i=b)1*A"Es8N?R+?ht34?O`>0H_r"2'=P-+=R6hs#VYP5!C)O4#3'+>5Jm./s8H>:C[Y4s2sM+>5Dk -%/M8n'0/=Xurr4)X.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`:1+?ht34?O`>0H_r"2'=P-+=R6h0F0*M5!C)O4#3'+>5Jm./s6# -%$7R)]4s2sM+>5Dk/M8n'0/=Xurr4Y\.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fp3+?ht34?O`>0H_r"2'=P-+=R6h0G#ZU5!C)O4#3'+>5Jm./s6#'Ib.g4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6h -%s'7&r5!C)O4#3'+>5Jm./s5h)(?[l4s2sM+>5Gl/M8n'0/=Xurr4)].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fa.+?ht34?O`> -%0d&'=P-+=R6h0FK#3'+>5Jm./s6#%4ND`4s2sM+>5Gl/M8n'0/=Xurr4Y_.3Lf<+?Vb/0/4S$/i=b)1*A"E -%s"G$6+?ht34?O`>0d&'=P-+=R6h0GQ#Z5!C)O4#3'+>5Jm./s8H%OiMa4s2sM+>5Gl/M8n'0/=Xurr4YR.3Lf<+?Vb/ -%0/4S$/i=b)1*A"Es8NKV+?ht34?O`>0d&'=P-+=R6h0EEUF5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru*=/5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru3C05!C)O4#3$2'=P,+>#3$2'=P-+=R6h0`*:A5!C)O4#3$2'=P,+>#3$2'=P- -%+=R6h+:otE5!C)p+?ht30/=Y445Gl>9H$j+>5Dk>9GXC2'?0I0/4S34,E, -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk1*A5)+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A=p>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O -%4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*ACr>p(dT+?Vb/0/+M2 -%4P&s+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB1*ALu>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AS">p(dT+?Vb/0/+M24P&o0HaXD0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht3 -%5!C)O4GSn>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4GVo>p(dT -%+?Vb/0/+M24P&o1E]sG0/4S34>E%+>,Mo -%/i=bW+>5Gl1E\kF+?ht35!C)O4G\q>p(dT+?Vb/0/+M24P&o2'?0I0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Gbs>p(dT+?Vb/0/+M2 -%4P&o2]uBK0/4S34,Mo/i=b(2'?0I5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk1E\>*+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB1E\Ir>p(dT+?Vb/0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E -%0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB1E\D1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j -%+>5Dk>9GaF0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C -%0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk -%>9GaF0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ -%+>k8r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S( -%+?ht35!C)Q4s2sM+>5Dk>9GdG1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9! -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E, -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB2'=k$>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GdG0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0fL4\+>5Gl -%4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I5!C)Q4s3$Q+C-*R4s2sM+>5Dk2BXY-+BosN4G!E+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT+?Vb/0/+M240HaRB2BXh!>p(dT+?Vb/0/+M240HaRB2BXk">p(dT+?Vb/0/+M2 -%45Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD -%0/4S)+?ht35!C)Q4s2sM+>5Dk>9GgH3$;KL0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH3?VTM -%0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p)GSn>p(dT+?Vb/0/+M240HaRB2BX_0+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1E]sG0/4S34>E%+>,Mo/i=bW -%+?ht35!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G_r>p(dT -%+?Vb/0/+M24t>s2BZ9J0/4S34>E%+>,Mo -%/i=bW+>5Gl1a"tG+?ht35!C)O4Get>p(dT+?Vb/0/+M24,Mo>p) -%0H`:s0/4SR+?Vb/0/+MQ+?(Dt+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI1E]sG -%0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]st#>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O -%45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI -%0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh2+C-*C0d&S@+>5Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fC.[+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh6+C-*C0d&S@+>5Dk4?O`>0HaRB/i=b(2'=M/ -%+C-*R4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GmJ0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF -%+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1K$+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3$:.&>p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ -%+?1K(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GmJ0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+?1Ju1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q4+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk>9GmJ0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk3?Tt0 -%+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/ -%0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%3?U:(>p(dT+?Vb/0/4S345Dk>9GpK3?VTM0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U%6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/ -%0/4S34GPm0/4SR+?Vb/0/+MQ+>GPm0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXS -%+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXS+?1KL+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0ea_)0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)1E]sG0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0ea_)1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_)2'?0I -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0ea_)2BZ9J0/4S34>E% -%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht3 -%5!C)O45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0eje*2BZ9J -%0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0esk)0d'[C4?O`>0HaRB0esk++C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXU+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GVo2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0esk+2BZ9J0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0f'q*0d'[C4?O`>0HaRB0f'q,+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXV+>Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GYp2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>GYp2]uBK -%0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GYp3$;KL0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`),+>5Gl>9H$j+>5Dk>9GXW+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q -%0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ -%1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG -%+?ht35!C)p+?ht34?O`>0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB0f:(0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r1a$'H -%0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXX+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht3 -%5!C)Q4s2sM+>5Dk>9GXX+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3?VTM -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f:(.0HaXD0/4S34>E% -%+>>E%+>,Mo>p)>stream -d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB0f:(.1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0fC.-0d'[C -%4?O`>0HaRB0fC./+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXY+>Y-G+>5Gl4?O`> -%0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3 -%4?O`>0HaRB0fC.5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0fC.6+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXY+>GPm>p(dT+?Vb/0/4S34Gbs0eskW+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>G\q>p(dT+?Vb/0/4S3 -%45Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)/+>5Gl>9H$j+>5Dk>9GXZ+>G!E+>5Gl4?O`>0d&S@ -%+>5Dk>9GOU+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O4Ghu0/4SR+?Vb/0/+MQ+>Ghu0d'aE0/4S34,Mo -%/i=b(2'?0I5!C)Q4s3$Q+C-*R4s4,R5!C)Q4s2L7+>P''4s3$Q+?ht3>p(dT+BosN4=p%4s2sM+>5Dk0d&YD+?Vb/0/+M( -%+?ht34?O`>0H`.o5!C)p+?ht30/Oe64kJ!+[N$0/Xk74I.0(n!/c[p4 -%3rhJF>l]9QU*(-m)'BqB0HgNA#quB6!\ad3#qu`@%58;H&MOqR5qkY[75.4c8MFX.K.r!5LG4`BRkU?dSM6WhTeN5qV(ef$WA)4D -%j"TRKk:l5Gl./s5H>UTSV!.+^@!2gqV+<3'@0FBKB0FfcJ0G6&Rrr`9( -%rs8WIs#^6bs5b[P0/=Xurr4)T+=/-W.3L9"+=R6h0EEj/rs\o;.3L9#+>G!&4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H;ZL_9AcQp% -%+>5Sp4?O`>0H_eCru`1%*A@LJ!\ad3#qu`@%58;H&MOqRSM6Whq_7t&rr3$!$3(G6%f[II)uh#[4o\e:+>5Gl./s5h(a'eP#VZT> -%$nr/F&24gu#ld!d>:C[J1*A"Eru`!u,p4N`+>5Mn./s6#!AFTT%0$ed+>5Po1*AbE+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+?Vb/ -%0/+M'+?ht3>p)5Sp4?O`>0HaRB4?O`>0H`J?+>5Dk./s5H>6%CuDZFeXD#duEC]J#HEr[<_=o`+6B`MWCBE2TDD?+8KDZFeX -%D#duEF9#Sq+>5Vq4?O`>0H`+n0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr0eP.&0/t(. -%+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0+D,%uF(HII -%1,'hmEckq90/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C-AmoLsAKWW]2BZU?Cia/10/>I/FE2M8+>5K0 -%+D,%uF(HII1-$Ih@;L!r+>5N)+>=ok1GL"a@;L!r+>5N++D,%uF(HII1G^.c@;L!r+>5N-+D,%uF(HII1Gp:0+>5N/+>>E%+>5N0 -%+>P&m1H6L61*A5+3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b84s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#* -%3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ -%0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD -%5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%uF(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9 -%Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q -%0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)f -%Ch6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p -%+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kL!*q#r0/Xk74=ok0d&/&0H`#(+>>E%+>5Mn0J5%%0/Oe*/heD$2'=S*0H`#,+>Ful2]sh-1*A50+>=ok -%3?WEaF_)[K0ea_.+>5H(+>P&m0esk,+>5H*+>=ok0f1"/2D-[+0/5=,FE2M8+>5H-+>,Mo0/5C.>9GOX+>GK&+>GK)1E]sG0/5F/ -%>9GUP0H`&%0H`&%0HaXD0/5I0>9GXQ0H`)&0H`)&0HaXD0/>4(2BXY.0d((:Cia/10/>:*0H`#(1E^:@,0H`#(2'=Rq -%0/>I/05bK?+>5K.+D,%uF(HII1,pC0DJO1AmoLsAKWW^0H`J?+?ht30/G=*1H$j>+>5N++?Vb/5!C)B1G^.-+>5N-+>=ok -%1Gp:/+>5N/+>7VHC`kAe2]sds0/GR1AmoLsAKWW^3?U!u0/P@*1*AbE+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L<+?Vb/ -%0/+MQ+?Vb/0/+M245Jm>9GXQ -%0H`&%0H`&%0H`)&0H`,'3AEEG1*A/'3A*-E1c737>p(dZ+>Gi.0H`#.+>Gi.0H`PC+?ht35!C)p+?ht35!C)B0d&S@+>5Dk4?O`> -%0H`J?+>5Dk1E\>*+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D -%0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq -%/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h -%+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rt -%rr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4k8p0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN -%5!C)O45Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h -%*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM -%+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a -%1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk -%0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1- -%0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`1. -%+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6#*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM -%+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a -%1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+, -%0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nD -%ru`@3+>5Jm./s5h*%5Po./s5h)(?[l4s2sM+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K -%+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm -%./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L10d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk -%4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h -%*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM -%+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a -%1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk -%1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA -%4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9#+?ht30/5@-AmoLsAKX0#+>5Gl>9H$j+>5Dk4?O`>0H_eCrr>Xk -%5lapc5lag`6NC!a8H;Qe;ue$@;ZKbs=TD+q70"G17fZNh8H;-Y70!cG+>5Sp4?O`>0HaRB4?O`>0H`J?+>5Dk4?O`>0H_eCs!]'D -%2'>"D+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/G:)4?O`M4s2L70d&5-/iP[20/GC,0H`#)2'=Rq5!C)B2BX[r -%5!C)Q4s2L5+>P_q5!C)p+?ht30/aq84=ok2BY+E+>5Dk0H`#'+>c#02)6:- -%2BX_,0H`#/+>>E%+>5T.+?Vb/00)$801/#s<+U;r:gn'UF5Gl>9GXQ -%0H_u'3B/]L+>,H+2_m65/i5:?2E;mc+?ht35!C)B2)ZS!Eckq90/bX00eb46+>5Z6+?Vb/00)$802lS%E,9)^@;0V$+>5Dk4?O`> -%0H`(m0/4SR+>GK&+>GK&+>GK&+>>E%+C-*R4s3$Q+>5]4+?Vb/00)$802lS%E,9)QF`VYCD+8)FFEMV8+?ht35!C)Q4s3$Q+>5Gl -%1,C%:4s4,R5!C)B0ea_44b2o1*C[ZF_)[Z4s3$Q+>5Gl4?O`>0HaRB4?O`>0H`%l5!C)p+>5Jm>9H$j+>5`8+>6PY+>5Sp -%0H`#,+BosN45H'+>=ok0H`J?+>5Dk>9Gjb3&`HE0JYLB+?2)91+k:?1H705>p)5Gl>9GUP0H`&%0H`510J5== -%3Ai`<1H$jC1,(R?+C-*C2'=Xs0/aqW+?Vb/00)$802`oG0d'[C0J5%%0J5%%2)R'?3&!?M2]sn7/i>C<2)-4Z+>5Vq>9H$j+>5`8 -%+>6V80/4SR+>>E%+>>E%+>l#1/iYOF2)cX62D-jB0JtR->p(dX+>P&m2BZ3H4?O`>3B8389HYuC0H`/-/ib[H2`Dj40f1")1H@'E -%1bgsM+>5H,+>GQ&0fD$P1*A5(+?Vb/0/+MQ+>>E%+>Yf+3ANQQ2]uBK5!C)B0d'[C0J5%%/MfC>1c-pF3?U1:0J5==3Ai`<0eb47 -%2E3B838;]m_J2'>"D+>5Dk1,C%+1*A7n0/Xka@;L!r+?ht30/aqW+?Vb/00)$801R-<0d'[C0J5%%/MfC> -%1c-pF3?U193%d$H1,_$50eb472EYhs2)6:12BXk3+>bhr1cZ[91E\Cp2)6:31E\P7+>bqu1H6L3 -%+>bbp2)HF41*AA3+>Yu"0d'aE0/t(Y+?);?2_Hg=1,Um23&*BN/iGUA2DcO92)@*B2)dBJ+?2,42D-aD1,Lm3>p(d\+BosI3B/rM -%0eb@?1a"b43&WBI2D@$G+?2591bL[A3B/u@3&39J/i#@@1c?I^+>5H(+EVXHAKWW\1*A/)3A*-F0fD$70/57*0eb472E5K( -%+>=p%4s4,R5!C)p+?ht3>p)p)p(dU+?Vb/0/+M(+>5Gl0et@8+>5JmAmoLsAKWW^+D,%u -%F(HII1a$m\F_)[K2'=Y5/heD$2BX_,0H`#-+>GK&+>5\s0H`#/+>>E%+>5H'+>>E%+>5H(+>Ful0esk*+>5H*+>=ok0f1",+>5H, -%+>=ok0fC..+>5H.+>>E%+>5H/+EVXHAKWW\3?VpBCia/10/>4(FE2M8+>5K)+D,%uF(HII1,9ta@;L!r+>5K++D,%uF(HII1,L+c -%@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/+EVXHAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l0/G=*AmoLsAKWW^1*C1;Cia/1 -%0/GC,AmoLsAKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR11bp1,1H?R3+>5Q*+D,%uF(HII1bg+.+>5Q,+>=ok1c$7: -%4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4-+>5T-+D,%uF(HII2)?@; -%45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF<45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXH -%AKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%uF(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0+>b])+>5W1+>>E%+>5W2 -%+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z-+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII2`2^i@;L!r+>5Z3+D,%u -%F(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>GK&+>GK&+>>E%+C-*R -%4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW(+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$802lS%E,9)QF`VYCD+8)F -%FEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z4s2L7+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/aq- -%+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLsAKWW]1*A7n0/>=+AmoLs -%AKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L70d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ -7747 7891 /RulerOrigin , -; -/AI11UndoFreeTextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M-+?ht30/+M240/+M24=p%4s3$Q+?ht34?O`>0H`J?+>5`8+>6*#DerBuE+MLWDKI!S0H`J?+>5Dk./s5H9`TG= -%EWBeR@/sg5Jm0H`PC+?ht35!C)p+?ht30/Xk74kD -%!$D8/!,)@@!-/'J!+Q"N!+c.N!$D8?!-A3d!,MXH!*q#r0/aq84Ful0d&2+/heD$1*C1;Cia/10/F__@;L!r+>5PoFE2M8 -%+>5Sp1,gg>+>5Vq0eP.&0/k"./heD$3$9mt00(.//heD$0ea_(/heD$0eje*+>5H)+>=ok0f'q++>5H++>=ok0f:(-+>5H-+>=ok -%0fL4//heD$0fU:tEckq90/5I0AmoLsAKWW]0Hat9Cia/10/>7)AmoLsAKWW]1*C1;Cia/10/>=+AmoLsAKWW]1a$C=Cia/10/>C- -%AmoLsAKWW]2BZU?Cia/10/>I/AmoLsAKWW]3$;gACia/10/>O1AmoLsAKWW^0H`%l0/G=*AmoLsAKWW^1*C1;Cia/10/GC,AmoLs -%AKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR10H`#)3?U!u0/P@*AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b8 -%4s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#*3$9mt0/P[3/MSk3+>5T++>#<#0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z- -%D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L92'>"D+>5`8+>6)J8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%u -%F(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9Cia/10/bO-0H`#,1*A7n0/bU/0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3 -%>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q0/kX/0J5%%0/k[00J5%%0/k^1AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_ -%F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B -%3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R4s2L:+?Vb/0/+MQ+?Vb/0/+M24kH!,)?T!)il>!-nQ\!+c.9.3L9$+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#* -%+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K -%0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLs -%AKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L7 -%0d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ0H`%l5!C)p+?ht35!C)B0d&S@+>5Dk4?O`>0H`J?+>5Dk0H`#'+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D0d%nDrr=c&+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R -%5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq/i,:>+>5Yr/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\ -%.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h -%)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"E -%rrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O -%4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9" -%+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t -%0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nD -%ru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0f1"+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2 -%+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0fU:/0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm -%./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l18 -%4s2sM+>5Dk1,pC00d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6# -%*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM+>5Dk0ea_'0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po -%./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1 -%+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f^@00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm -%./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+,0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l -%4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h -%*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nDru`@3+>5Jm./s5h*%5Po./s5h)(?[l4s2sM -%+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk -%1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L1 -%0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1 -%+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nD -%rrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1bp1,0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K -%+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1c6C/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA4s4,R0/51(2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9# -%+?ht30/5@-AmoLsAKX0#+>5Jm4?O`>0H`(m0/4S(1+k7'0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr -%0eP.&0/t(.+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0 -%+D,%uF(HII1,'h_@;L!r+>5K)+D,%uF(HII1,9ta@;L!r+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/ -%+D,%uF(HII1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful -%1H$@0/heD$1H-F3+>5N1+>=ok1H?R3+>5Q*+D,%uF(HII1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8 -%+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4-+>5T-+D,%uF(HII2)?@;45Dk -%0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF<45Dk0d&,(+BosC/heD%/heD% -%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%u -%F(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z- -%+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/ -%00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW( -%+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$802lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z -%4s2L7+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q -%0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%% -%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLsAKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e -%@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L70d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ -; -%AI11_EndTextDocument -%%EndSetup -%AI5_BeginLayer -1 1 0 1 0 0 1 0 79 128 255 0 50 0 Lb -(repository-hero) Ln -%_/ArtDictionary : -%_/XMLUID : (repository-hero) ; (AI10_ArtUID) , -%_; -%_ -1 A -0 Xw -0 A -u -1 A -1 Xw -/AI11Text : -0 /FreeUndo , -0 /FrameIndex , -0 /StoryIndex , -/Art : -X= -0 A -0 Xw -1 Ap -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -793.8281 -318.2607 m -243.0186 -318.2607 L -243.0186 -281.7393 L -793.8281 -281.7393 L -793.8281 -318.2607 L -n -X+ -; /ConfiningPath , -2 /TextAntialiasing , -; - -%_/ArtDictionary : -%_/XMLUID : (characters-src) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -246.085 -304.8799 m -245.752 -309.917 246.6074 -314.6709 253.356 -314.6709 c -261.1973 -314.6709 260.8169 -309.1104 260.8169 -304.4053 c -260.8169 -281.7354 L -262.9082 -281.7354 L -262.9082 -305.1182 L -262.9082 -309.1104 263.0508 -316.4756 253.5938 -316.4756 c -244.4214 -316.4756 243.9937 -309.9658 243.9937 -304.8799 C -246.085 -304.8799 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -281.2495 -281.7354 m -294.6519 -315.6689 L -292.418 -315.6689 L -288.1406 -304.7861 L -271.8877 -304.7861 L -267.563 -315.6689 L -265.3291 -315.6689 L -278.9688 -281.7354 L -281.2495 -281.7354 l -f -1 D -287.4756 -302.9795 m -280.2041 -283.7793 L -280.1094 -283.7793 L -272.5532 -302.9795 L -287.4756 -302.9795 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -0 D -305.77 -313.8623 m -305.8652 -313.8623 L -317.6035 -281.7354 L -319.6943 -281.7354 L -307.0054 -315.6689 L -304.5815 -315.6689 L -291.9404 -281.7354 L -294.1265 -281.7354 L -305.77 -313.8623 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -332.334 -281.7354 m -345.7358 -315.6689 L -343.5024 -315.6689 L -339.2251 -304.7861 L -322.9717 -304.7861 L -318.647 -315.6689 L -316.4136 -315.6689 L -330.0532 -281.7354 L -332.334 -281.7354 l -f -1 D -338.5596 -302.9795 m -331.2886 -283.7793 L -331.1938 -283.7793 L -323.6372 -302.9795 L -338.5596 -302.9795 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -0 D -370.3022 -291.4307 m -370.0649 -285.6328 365.6929 -282.7334 359.4199 -282.7334 c -355.5708 -282.7334 350.105 -284.3496 350.105 -289.958 c -350.105 -295.4229 355.9033 -296.3252 361.6538 -297.5127 c -367.4512 -298.7021 373.249 -300.1748 373.249 -306.9229 c -373.249 -313.958 366.5015 -316.4756 361.3213 -316.4756 c -353.3843 -316.4756 346.9209 -313.1963 347.0166 -304.4521 c -349.1074 -304.4521 L -348.6792 -311.8662 354.6201 -314.6709 361.3213 -314.6709 c -365.4082 -314.6709 371.1582 -312.8174 371.1582 -306.9229 c -371.1582 -301.1729 365.3604 -300.1748 359.563 -298.9873 c -353.8125 -297.7988 348.0142 -296.4209 348.0142 -289.958 c -348.0142 -283.4463 354.0493 -280.9277 359.4199 -280.9277 c -366.5015 -280.9277 372.062 -283.9697 372.3945 -291.4307 C -370.3022 -291.4307 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -404.5181 -291.8584 m -403.6143 -286.1553 398.6245 -282.7334 392.9692 -282.7334 c -384.0825 -282.7334 378.9019 -290.0049 378.9019 -298.7021 c -378.9019 -307.3994 384.0825 -314.6709 392.9692 -314.6709 c -399.5742 -314.6709 404.7075 -308.7783 405.0879 -302.4561 c -407.1787 -302.4561 L -406.418 -310.5361 400.4302 -316.4756 392.9692 -316.4756 c -382.7983 -316.4756 376.811 -308.6338 376.811 -298.7021 c -376.811 -288.7686 382.7983 -280.9277 392.9692 -280.9277 c -404.9922 -280.9277 406.561 -291.3838 406.6089 -291.8584 C -404.5181 -291.8584 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -411.5474 -281.7354 m -425.71 -281.7354 L -431.6499 -281.7354 436.4507 -283.9209 436.4507 -290.4805 c -436.4507 -295.042 433.6934 -298.417 429.1792 -299.1768 c -429.1792 -299.2725 L -434.2168 -299.8428 435.4526 -303.0264 435.7856 -306.5439 c -436.1182 -310.0596 435.5469 -313.8623 436.9248 -315.6689 c -434.5972 -315.6689 L -433.3145 -313.3389 434.0737 -309.4424 433.6934 -306.1631 c -433.2666 -302.8838 431.6499 -300.2217 425.71 -300.2217 c -413.6392 -300.2217 L -413.6392 -315.6689 L -411.5474 -315.6689 L -411.5474 -281.7354 l -f -1 D -425.71 -298.417 m -430.6523 -298.417 434.3599 -296.0879 434.3599 -290.6221 c -434.3599 -285.4902 430.272 -283.542 425.71 -283.542 c -413.6392 -283.542 L -413.6392 -298.417 L -425.71 -298.417 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -0 D -441.4844 -281.7354 m -443.5767 -281.7354 L -443.5767 -315.6689 L -441.4844 -315.6689 L -441.4844 -281.7354 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -449.5625 -281.7354 m -464.0107 -281.7354 L -467.8594 -281.7354 473.8955 -283.1143 473.8955 -291.2412 c -473.8955 -297.1807 469.998 -300.5557 463.25 -300.5557 c -451.6553 -300.5557 L -451.6553 -315.6689 L -449.5625 -315.6689 L -449.5625 -281.7354 l -f -1 D -451.6553 -298.749 m -463.583 -298.749 L -469.7129 -298.749 471.8047 -294.71 471.8047 -291.1934 c -471.8047 -288.6748 470.6641 -283.542 463.8672 -283.542 c -451.6553 -283.542 L -451.6553 -298.749 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -0 D -473.9883 -283.542 m -473.9883 -281.7354 L -499.9834 -281.7354 L -499.9834 -283.542 L -488.0068 -283.542 L -488.0068 -315.6689 L -485.916 -315.6689 L -485.916 -283.542 L -473.9883 -283.542 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -537.666 -291.4307 m -537.4297 -285.6328 533.0566 -282.7334 526.7832 -282.7334 c -522.9336 -282.7334 517.4688 -284.3496 517.4688 -289.958 c -517.4688 -295.4229 523.2666 -296.3252 529.0176 -297.5127 c -534.8145 -298.7021 540.6133 -300.1748 540.6133 -306.9229 c -540.6133 -313.958 533.8652 -316.4756 528.6836 -316.4756 c -520.748 -316.4756 514.2842 -313.1963 514.3789 -304.4521 c -516.4707 -304.4521 L -516.043 -311.8662 521.9844 -314.6709 528.6836 -314.6709 c -532.7715 -314.6709 538.5225 -312.8174 538.5225 -306.9229 c -538.5225 -301.1729 532.7246 -300.1748 526.9258 -298.9873 c -521.1758 -297.7988 515.377 -296.4209 515.377 -289.958 c -515.377 -283.4463 521.4121 -280.9277 526.7832 -280.9277 c -533.8652 -280.9277 539.4248 -283.9697 539.7578 -291.4307 C -537.666 -291.4307 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -541.7979 -283.542 m -541.7979 -281.7354 L -567.793 -281.7354 L -567.793 -283.542 L -555.8184 -283.542 L -555.8184 -315.6689 L -553.7266 -315.6689 L -553.7266 -283.542 L -541.7979 -283.542 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -593.0742 -281.7354 m -595.4043 -281.7354 L -581.7637 -301.458 L -581.7637 -315.6689 L -579.6738 -315.6689 L -579.6738 -301.458 L -566.1289 -281.7354 L -568.5049 -281.7354 L -580.7656 -299.7002 L -593.0742 -281.7354 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -597.3965 -281.7354 m -599.4873 -281.7354 L -599.4873 -313.8623 L -618.7344 -313.8623 L -618.7344 -315.6689 L -597.3965 -315.6689 L -597.3965 -281.7354 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -644.2051 -313.8623 m -644.2051 -315.6689 L -621.1563 -315.6689 L -621.1563 -281.7354 L -643.9678 -281.7354 L -643.9678 -283.542 L -623.248 -283.542 L -623.248 -297.1338 L -642.7324 -297.1338 L -642.7324 -298.9385 L -623.248 -298.9385 L -623.248 -313.8623 L -644.2051 -313.8623 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -690.4434 -299.0342 m -690.4434 -315.6689 L -688.6377 -315.6689 L -688.6377 -308.4443 L -688.543 -308.4443 L -686.8789 -313.3877 681.6992 -316.4756 675.7109 -316.4756 c -665.4453 -316.4756 659.7422 -308.6338 659.7422 -298.8916 c -659.7422 -289.292 665.54 -280.9277 675.7588 -280.9277 c -682.7441 -280.9277 688.6836 -285.1572 689.873 -292.2393 c -687.877 -292.2393 L -686.3086 -286.3936 681.9834 -282.7334 675.8047 -282.7334 c -666.6328 -282.7334 661.833 -290.4326 661.833 -298.8916 c -661.833 -307.542 666.4902 -314.6709 675.8047 -314.6709 c -683.8848 -314.6709 688.9707 -309.1572 688.6377 -300.8408 c -676.1387 -300.8408 L -676.1387 -299.0342 L -690.4434 -299.0342 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -698.2813 -281.7354 m -698.2813 -302.0771 L -698.2813 -306.1631 699.1367 -314.6709 708.9258 -314.6709 c -717.2432 -314.6709 720.0469 -309.7744 720.0469 -302.0771 c -720.0469 -281.7354 L -722.1377 -281.7354 L -722.1377 -302.0771 L -722.1377 -310.1553 719.0967 -316.4756 708.9258 -316.4756 c -696.8555 -316.4756 696.1904 -306.5908 696.1904 -302.0771 c -696.1904 -281.7354 L -698.2813 -281.7354 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -728.123 -281.7354 m -730.2148 -281.7354 L -730.2148 -315.6689 L -728.123 -315.6689 L -728.123 -281.7354 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -736.2012 -281.7354 m -747.3223 -281.7354 L -759.4414 -281.7354 763.0049 -290.0518 763.0049 -298.6543 c -763.0049 -308.2549 758.1104 -315.6689 747.2285 -315.6689 c -736.2012 -315.6689 L -736.2012 -281.7354 l -f -1 D -738.293 -313.8623 m -747.418 -313.8623 L -753.7383 -313.8623 760.9141 -310.3936 760.9141 -298.6543 c -760.9141 -284.7773 752.0273 -283.542 746.9902 -283.542 c -738.293 -283.542 L -738.293 -313.8623 l -f -*U -%_/ArtDictionary : -%_; -%_ -*u -0 D -790.9473 -313.8623 m -790.9473 -315.6689 L -767.8965 -315.6689 L -767.8965 -281.7354 L -790.709 -281.7354 L -790.709 -283.542 L -769.9893 -283.542 L -769.9893 -297.1338 L -789.4727 -297.1338 L -789.4727 -298.9385 L -769.9893 -298.9385 L -769.9893 -313.8623 L -790.9473 -313.8623 l -f -*U -%_/ArtDictionary : -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (characters) ; (AI10_ArtUID) , -%_; -%_ -0 0 Xd -6 () XW -u -0 R -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 XA -2 w 224.3535 -351.9111 m -810.7656 -351.9111 L -S -%_/ArtDictionary : -%_/XMLUID : (bottom) ; (AI10_ArtUID) , -%_; -%_ -224.3535 -248.0869 m -810.7656 -248.0869 L -S -%_/ArtDictionary : -%_/XMLUID : (top) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (lines) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -U -%_/ArtDictionary : -%_/XMLUID : (text_1_) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -u -1 Ap -202.6064 -362.6865 m -77.2334 -362.6865 L -77.2334 -237.3135 L -202.6064 -237.3135 L -202.6064 -362.6865 L -s -%_/ArtDictionary : -%_/XMLUID : (frame) ; (AI10_ArtUID) , -%_; -%_ -*u -0 Ap -0 O -0.723293 0.577508 0.383032 0.274357 0.298039 0.337255 0.415686 Xa -1 w 144.5532 -324.1143 m -167.5605 -277.1768 L -169.7788 -277.1768 L -192.7861 -324.1143 L -190.8462 -324.1143 L -168.6704 -278.8389 L -146.4937 -324.1143 L -144.5532 -324.1143 l -f -%_/ArtDictionary : -%_(-1.570796) /String (BBAccumRotation) , -%_; -%_ -*U -%_/ArtDictionary : -%_/XMLUID : (character) ; (AI10_ArtUID) , -%_; -%_ -*u -133.9932 -324.1143 m -87.0542 -301.1084 L -87.0542 -298.8896 L -133.9932 -275.8828 L -133.9932 -277.8232 L -88.7173 -299.999 L -133.9932 -322.1748 L -133.9932 -324.1143 l -f -*U -%_/ArtDictionary : -%_/XMLUID : (code) ; (AI10_ArtUID) , -%_; -%_ -U -%_/ArtDictionary : -%_/XMLUID : (box) ; (AI10_ArtUID) , -%_; -%_ -9 () XW -LB -%AI5_EndLayer-- -%%PageTrailer -gsave annotatepage grestore showpage -%%Trailer -%%EOF - -endstream endobj 5 0 obj <> endobj 27 0 obj <> endobj 48 0 obj <> endobj 69 0 obj <> endobj 77 0 obj [/View/Design] endobj 78 0 obj <>>> endobj 56 0 obj [/View/Design] endobj 57 0 obj <>>> endobj 35 0 obj [/View/Design] endobj 36 0 obj <>>> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 91 0 obj [90 0 R] endobj 110 0 obj <> endobj xref -0 111 -0000000004 65535 f -0000000016 00000 n -0000000201 00000 n -0000038713 00000 n -0000000006 00000 f -0000475188 00000 n -0000000008 00000 f -0000038764 00000 n -0000000009 00000 f -0000000010 00000 f -0000000011 00000 f -0000000012 00000 f -0000000013 00000 f -0000000016 00000 f -0000475851 00000 n -0000475882 00000 n -0000000017 00000 f -0000000018 00000 f -0000000019 00000 f -0000000020 00000 f -0000000021 00000 f -0000000022 00000 f -0000000023 00000 f -0000000024 00000 f -0000000025 00000 f -0000000026 00000 f -0000000028 00000 f -0000475266 00000 n -0000000029 00000 f -0000000030 00000 f -0000000031 00000 f -0000000032 00000 f -0000000033 00000 f -0000000034 00000 f -0000000037 00000 f -0000475735 00000 n -0000475766 00000 n -0000000038 00000 f -0000000039 00000 f -0000000040 00000 f -0000000041 00000 f -0000000042 00000 f -0000000043 00000 f -0000000044 00000 f -0000000045 00000 f -0000000046 00000 f -0000000047 00000 f -0000000049 00000 f -0000475345 00000 n -0000000050 00000 f -0000000051 00000 f -0000000052 00000 f -0000000053 00000 f -0000000054 00000 f -0000000055 00000 f -0000000058 00000 f -0000475619 00000 n -0000475650 00000 n -0000000059 00000 f -0000000060 00000 f -0000000061 00000 f -0000000062 00000 f -0000000063 00000 f -0000000064 00000 f -0000000065 00000 f -0000000066 00000 f -0000000067 00000 f -0000000068 00000 f -0000000000 00000 f -0000475424 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000475503 00000 n -0000475534 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000045962 00000 n -0000475967 00000 n -0000039101 00000 n -0000046270 00000 n -0000046157 00000 n -0000044977 00000 n -0000045400 00000 n -0000045448 00000 n -0000046041 00000 n -0000046072 00000 n -0000046345 00000 n -0000046639 00000 n -0000047698 00000 n -0000052437 00000 n -0000118027 00000 n -0000183617 00000 n -0000249207 00000 n -0000314797 00000 n -0000380387 00000 n -0000445977 00000 n -0000475992 00000 n -trailer -<]>> -startxref -476235 -%%EOF diff --git a/assets/images/repository-hero.svg b/assets/images/repository-hero.svg deleted file mode 100644 index c2bc240..0000000 --- a/assets/images/repository-hero.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..d380977 --- /dev/null +++ b/changelog.md @@ -0,0 +1,1301 @@ +

+ + + + + +

+ +

+ + + + + + +

+ +

+ + + + + + + + + +

+ + + +# 0.11.0 + +![Release Date: 2021-04-14](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2021-04-14&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.11.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/users/svengreb/projects/10/views/109) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.11.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/svengreb/styleguide-javascript/milestone/6) + +⇅ [Show all commits][237] + +## Improvements + +
+Allow void operator as a statement for React Hooks — #55 ⇄ #56 (⊶ af9c38b8) + +↠ To run `async` code in a React [`useEffect` Hook][242] the [official React Hook FAQ section about how to fetch data][241] recommends and [shows in a demo][234] how to define a scoped fat arrow function and run it immediately. Unfortunately this collided with the [`@typescript/no-floating-promises`][238] rule because the returned `Promise` of the called function must not be handled anymore. + +```tsx +useEffect(() => { + const init = async () => { + try { + const data = await fetchData(); + setInitialized(isInit); + if (data) initStores(data); + } catch (err) { + handleError(err); + } + }; + // This will trigger the "@typescript/no-floating-promises" rule because the returned "Promise" is not handled. + init(); +}, [fetchData, handleError, initStores, setInitialized]); +``` + +Explicitly disabling the rule for these specific code lines would have been an option, but it is recommended to [use the `void` operator instead][240]. + +```tsx +// ... +// This will trigger the "no-void" rule because the "void" operator is currently not allowed as a statement. +void init(); +// ... +``` + +However, the [`no-void`][235] rule did not allow the `void` operator to be used as statement which resulted in this rule to also throw an error. +To resolve both problems, the [`allowAsStatement` option][236] of the `no-void` rule has been enabled. + +Also see [typescript-eslint/typescript-eslint#1184][239] where this solution is also recommended by one of the `@typescript-eslint` package maintainers. + +
+ +# 0.10.0 + +![Release Date: 2021-04-08](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2021-04-08&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.10.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/users/svengreb/projects/10/views/108) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.10.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/svengreb/styleguide-javascript/milestone/5) + +⇅ [Show all commits][229] + +## Improvements + +
+@arcticicestudio/remark-preset-lint migration — #47 ⇄ #48 (⊶ 90953d7c) + +↠ The `remark-preset-lint-arcticicestudio` package has been deprecated [during the migration into a monorepo][231] and replaced by the new [`@arcticicestudio/remark-preset-lint` package][230]. This package also [introduced support for remark `13.0.0`][232] which comes with some new features and great improvements. +To migrate to the new package the `remark-preset-lint-arcticicestudio` preset has been replaced by the new `@arcticicestudio/remark-preset-lint` preset in the `.remarkrc.js` file. + +
+ +## Bug Fixes + +
+Invalid usage of prettier/@typescript-eslint configuration — #49 ⇄ #52 (⊶ c1aca60a) + +↠ As of [`eslint-config-prettier`][19] version [`8.0.0`][17] all configurations have been merged into the `prettier` configuration that now includes not just ESLint core rules, but also rules from all plugins. +In #32 the `eslint-config-prettier` version was bumped from version [v6.0.0 to v8.1.0][18], but the `@arcticicestudio/eslint-config-typescript` package still explicitly extends the `prettier/@typescript-eslint` configuration which results in an error when consuming the package. + +To fix this problem, the `prettier/@typescript-eslint` has been removed entirely from the `extend` field, leaving only the all-in-one `prettier` configuration. + +
+ +
+Loop on TypeScript configuration override — #50 ⇄ #53 (⊶ ddc16cc7) + +↠ In #32 the `@arcticicestudio/eslint-config-typescript` package migrated to the latest plugin versions and added [the `override` field][228] to its index to simplify the usage for consumers by removing the need to explicitly define it per project. Unfortunately this resulted in a crash loop when doing so and also blocked users from overriding single rules based on the project needs. + +To fix this problem, the `override` field has been removed again, leaving it up to the user to define and customize the ESLint configuration for TypeScript to fit the project needs. + +
+ +
+Invalid usage of prettier/@typescript-eslint configuration — #51 ⇄ #54 (⊶ aba45876) + +↠ TypeScript uses [triple-slash directives][233] (single-line comments containing a single XML tag) to define compiler directives. The `@arcticicestudio/eslint-config-base` configures the ESLint core rule [`spaced-comment`][227] and already defines exceptions and comment markers for special use cases, but did not support triple-slash directives. When running `eslint --fix` these comments in `*.d.ts` files were malformed (`///` → `// /`) which resulted in invalid TypeScript syntax. + +To support triple-slash directives, the `/` marker has been added to the `line` field. + +
+ +# 0.9.0 + +![Release Date: 2021-04-04](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2021-04-04&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.9.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/users/svengreb/projects/10/views/107) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.9.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/svengreb/styleguide-javascript/milestone/4) + +⇅ [Show all commits][178] + +## Features + +
+Update ESLint and plugins — #31 ⇄ #32 (⊶ 486b2d18) + +↠ ESLint and most of the used plugins released new major versions so trying to use later versions of these plugins as well as ESLint itself caused errors when using npm v7 because [peer dependencies are installed automatically][177] now, which is a fantastic change, but also breaks and blocks the usage of the configuration packages due to outdated `peerDependencies` like `eslint@^6`. + +### Core + +The latest version 7 comes with great features and improvements. +See the [official v7 migration guide][157] for all details. + +- **Updated ESLint package version** — updated from [`v6.2.0` to `v7.23.0`][179]. +- **Allowed to define additional file extensions in configuration packages** — [files matched by `overrides[].files` are now linted by default][159] which allows to add extensions like `*.ts` and `*.tsx` to the `@arcticicestudio/eslint-config-typescript` without the need to specify this override over and over again in each project. +- **Removed deprecated rules** — [some rules have been deprecated][158] and have been removed in favor of the support for `eslint-plugin-node` like documented in #30. + - [`callback-return`][161] → [`node/callback-return`][188] + - [`global-require`][162] → [`node/global-require`][189] + - [`handle-callback-err`][163] → [`node/handle-callback-err`][190] + - [`no-mixed-requires`][166] → [`node/no-mixed-requires`][191] + - [`no-new-require`][167] → [`node/no-new-require`][192] + - [`no-path-concat`][168] → [`node/no-path-concat`][193] + - [`no-process-env`][169] → [`node/no-process-env`][194] + - [`no-process-exit`][170] → [`node/no-process-exit`][195] + - [`no-restricted-modules`][171] → [`node/no-restricted-modules`][196] + - [`no-sync`][173] → [`node/no-sync`][197] +- **Adapted new recommended rules** — some rules have been [added and enabled on the `eslint:recommended` rule set][160] and have ben added to `@arcticicestudio/eslint-config-base` with `error` level: + - [`no-dupe-else-if`][164] + - [`no-import-assign`][165] + - [`no-setter-return`][172] + +### Plugins & Dependencies + +#### `@arcticicestudio/eslint-config` + +- [eslint-config-prettier][19] — Bumped version from [`v6.0.0` to `v8.1.0`][18]. As of [version `8.0.0` all rule sets have been merged into the main `prettier` set][17]. Therefore the additional `prettier/react` set has been removed from the `extends` array of the Prettier specific rules. +- [eslint-find-rules][206] — Bumped version from [`v3.4.0` to `v3.6.1`][205]. +- [eslint-plugin-import][14] — Bumped minimum version from [`v2.18.2` to `v2.22.1`][176]. +- [eslint-plugin-jsx-a11y][185] — Bumped minimum version from [`v6.2.3` to `v6.4.1`][184]. +- [eslint-plugin-prettier][20] — Bumped minimum version from [`v3.1.0` to `v3.3.1`][200]. +- [eslint-plugin-react][25] — Bumped minimum version from [`v7.14.3` to `v7.23.1`][224]. This includes new rules and improvements to existing ones: + - Added new [`react/jsx-no-useless-fragment`][220] rule with `error` level (introduced in [`v7.15.0`][213]) that disallows unnecessary fragments. + - Added the new `static-variables` option to the [`react/sort-comp`][223] rule (introduced in [`v7.15.0`][213]). + - Added new [`react/jsx-newline`][217] rule (introduced in [`v7.22.0`][214]) and disable by default. + - Added new [`react/jsx-no-constructed-context-values`][218] rule (introduced in [`v7.22.0`][214]) and enabled it by default to prevent react contexts from taking non-stable values. + > React Context, and all its child nodes and Consumers are rerendered whenever the value prop changes. Because each Javascript object carries its own identity, things like object expressions (`{foo: "bar"}`) or function expressions get a new identity on every run through the component. This makes the context think it has gotten a new object and can cause needless rerenders and unintended consequences. + > This can be a pretty large performance hit because not only will it cause the context providers and consumers to rerender with all the elements in its subtree, the processing for the tree scan react does to render the provider and find consumers is also wasted. + - Added `enforceDynamicLinks` option with value `always` for [`react/jsx-no-target-blank`][219] rule (introduced in [`v7.9.0`][216]) + - Added [`react/no-unstable-nested-components`][221] rule and enabled it by default to prevent creating unstable components inside components. + > Creating components inside components without memoization leads to unstable components. The nested component and all its children are recreated during each re-render. Given stateful children of the nested component will lose their state on each re-render. + > React reconcilation performs element type comparison with [reference equality][181]. The reference to the same element changes on each re-render when defining components inside the render block. This leads to complete recreation of the current node and all its children. As a result the virtual DOM has to do extra unnecessary work and possible bugs are introduced. + - Added `forbidDefaultForRequired` option with value `true` for [`react/require-default-props`][222] rule (introduced in [`v7.5.0`][215]) +- [eslint-plugin-react-hooks][145] — Bumped minimum version from `v2.0.0` to [`v4.2.0`][180]. + +#### `@arcticicestudio/eslint-config-base` + +- [confusing-browser-globals][106] — Bumped minimum version from `v1.0.8` to `v1.0.10`. +- [eslint-find-rules][206] — Bumped version from [`v3.4.0` to `v3.6.1`][205]. +- [eslint-plugin-import][14] — Bumped minimum version from [`v2.18.2` to `v2.22.1`][176]. + +#### `@arcticicestudio/eslint-config-typescript` + +- [@typescript-eslint/eslint-plugin][211] — Bumped minimum version from [`v2.0.0` to `v4.20.0`][210]. +- [@typescript-eslint/parser][23] — Bumped minimum version from [`v2.0.0` to `v4.20.0`][210]. +- [typescript][187] — Bumped minimum version from [`v3.5.3` to `v4.2.3`][186]. + +
+ +## Improvements + +
+Migrate to "tmpl" template repository — #35 ⇄ #36 (⊶ e6709a9c) + +

+ +↠ Migrated the project setup, structure and development workflow [from version 0.9.0][225] of the [“tmpl“ template repository][226]. +Additionally specific assets like the repository hero image have been replaced and documentations like the _README_ and GitHub issue/PR templates have been adjusted. + +
+ +
+Move ESLint Prettier support into base package — #37 ⇄ #38 (⊶ a50130e0) + +↠ Before [eslint-plugin-prettier][20] and its corresponding [eslint-config-prettier][19] package were supported by the [@arcticicestudio/eslint-config][209] rule preset package. This worked fine for most projects, but also pulled in React specific dependencies like [eslint-plugin-react][25] and [eslint-plugin-jsx-a11y][185]. +To allow to use Prettier without `@arcticicestudio/eslint-config`, the support has been moved into the `@arcticicestudio/eslint-config-base` package, including the optional entry point. + +
+ +## Tasks + +
+Node.js package dependency & GitHub action version updates — #24, #23, #33 ⇄ #27, #34 + +↠ Bumped outdated Node.js package dependencies and GitHub actions to their latest versions: + +- #24 (⊶ c0c22532) [`acorn`][175] from [7.0.0 to 7.1.1][174] +- #23 ⇄ #27 (⊶ e015dc0a) [`eslint-plugin-react-hooks`][145] from `1.7.0` to `2.0.0`. +- #33 ⇄ #34 (⊶ e4fd1653) **Updated to ESLint v7** — bumped package version from [`v6.2.0` to `v7.23.0`][179]. See #32 and the [official v7 migration guide][157] for more details. +- #33 ⇄ #34 (⊶ e4fd1653) **Removed `--ext` option for ESLint tasks** — as of ESLint v7, [files matched by `overrides[].files` are now linted by default][159] which makes it obsolete to explicitly define file extensions like `*.js`. +- #33 ⇄ #34 (⊶ e4fd1653) [del-cli][208] — bumped minimum version from [`v2.0.0` to `v3.0.1`][207]. +- #33 ⇄ #34 (⊶ e4fd1653) [eslint-config-prettier][19] — bumped version from [`v6.1.0` to `v8.1.0`][199]. +- #33 ⇄ #34 (⊶ e4fd1653) [eslint-plugin-prettier][20] — bump minimum version from [`v3.1.0` to `v3.3.1`][200]. +- #33 ⇄ #34 (⊶ e4fd1653) [eslint-plugin-import][14] — bumped minimum version from [`v2.18.2` to `v2.22.1`][176]. +- #33 ⇄ #34 (⊶ e4fd1653) [husky][24] — bumped minimum version from [`v3.0.4` to `v6.0.0`][212]. This also includes some breaking changes that require migrations. Run the official migration CLI to automatically migrate from v4 to v6: `npx husky-init && npm exec -- github:typicode/husky-4-to-6 --remove-v4-config` +- #33 ⇄ #34 (⊶ e4fd1653) [lint-staged][16] — bumped minimum version from [`v9.2.3` to `v10.5.4`][198]. +- #33 ⇄ #34 (⊶ e4fd1653) [prettier][202] — bumped minimum version from [`v1.18.2` to `v2.2.1`][201]. +- #33 ⇄ #34 (⊶ e4fd1653) [remark-cli][204] — bumped minimum version from [`v7.0.0` to `v9.0.0`][203]. + +
+ +
+GitHub Flow migration — #39 ⇄ #40 (⊶ 70b81fc5) + +
+ +> Subtask of arcticicestudio/styleguide-git#9 + +↠ Adapted to [GitHub Flow][183] like documented in detail in the main task issue arcticicestudio/styleguide-git#9. + +
+ +
+From master to main — #45 ⇄ #46 (⊶ 2ba56fb3) + +> Subtask of arcticicestudio/styleguide-git#11 + +
+ +↠ Adapted to the [default branch renaming from `master` to `main`][182] like documented in detail in the main task issue arcticicestudio/styleguide-git#11. + +
+ +# 0.8.0 + +![Release Date: 2019-08-22](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2019-08-22&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.8.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/users/svengreb/projects/10/views/106) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.8.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/svengreb/styleguide-javascript/milestone/3) + +⇅ [Show all commits][139] + +## Features + +### Packages + +#### `@arcticicestudio/eslint-config` + +

+ +**React Hooks support and entry point** — #17 ⇄ #18 (⊶ 833cc51d) +↠ All React based projects using at least React version [16.8][152] that introduced the awesome [Hooks][153]. Since this comes with a [entire new API][153] that follows new design/usage pattern, the React team created an official [„Hooks“ ESLint plugin][145] to help to adhere to the [„Rules of Hooks“][154]. + +Since the `@arcticicestudio/eslint-config` package already includes support for React and „JSX A11Y“, support for _Hooks_ has also been added through a new shareable configuration entry point that + +- enables the `react-hooks` plugin. +- configures both currently available rules `react-hooks/rules-of-hooks` and `react-hooks/exhaustive-deps` rule to `error` level. + +Because _Hooks_ make more use of arrow functions the [`react/jsx-no-bind`][140] has been adjusted to prevent compatibility problems by allowing setting the `ignoreDOMComponents` and `allowArrowFunctions` options to `true`. +The `react/display-name` rule has also been disabled in order to prevent problems due to missing _display names_ for _functional components_ that make use of _Hooks_ instead of being created through a _class_ component. + +The new entry point is available as `@arcticicestudio/eslint-config/react-hooks` and can be composed with all other [available entry points][13] to inherit their rules. + +This feature adds the `eslint-plugin-react-hooks` package as new peer dependency for `@arcticicestudio/eslint-config`. + +

+ +**ESLint TypeScript Configuration Package** — #19 ⇄ #20 (⊶ 484c981d) +↠ To support projects build with [TypeScript][35], a new `@arcticicestudio/eslint-config-typescript` package has been implemented using the awesome [@typescript-eslint][149] project. It mainly extends `@typescript-eslint/eslint-plugin`'s [already provided and recommended configurations][148] in order to adapt best practices: + +1. `plugin:@typescript-eslint/eslint-recommended` +2. `plugin:@typescript-eslint/recommended` +3. `plugin:@typescript-eslint/recommended-requiring-type-checking` + +The [`@typescript-eslint/parser`][23] is set as ESLint parser. As of [`@typescript-eslint/parser` version `2.0.0`][147] (also see [typescript-eslint/typescript-eslint#890][150]), the parser will panic when parsing files that are not included within the provided _tsconfig(s)_. +The documentation of the new package contains instructions and a quick setup and usage guide to inform about the [required `tsconfig` configurations][146] and the corresponding `eslintrc` changes. + +Next to the support for TypeScript, the package also modifies some _React_ and _import_ related rules in order to prevent conflicts, like the adaption of the `.ts` and `.tsx` extensions for all JS and JSX files as well as removing `.jsx` to force the usage of `.tsx`. There are other rules that have been disabled like the check for valid React `prop-types` since these and not necessary anymore when working with TypeScript. + +The new package provides two entry points, available as `@arcticicestudio/eslint-config-typescript` and `@arcticicestudio/eslint-config-typescript/prettier` that can both be composed with all other [available entry points][13] to inherit their rules. + +This package mainly depends on the `@typescript-eslint/eslint-plugin@^2.0.0` and `@typescript-eslint/parser@^2.0.0` packages as peer dependencies. + +

+ +**From CircleCI to GitHub Actions** — #21 ⇄ #22 (⊶ c7d663eb) +↠ The project migrated from [CircleCI][135] as CI/CD service to the awesome new [GitHub Actions][141] that is smoothly integrated into the GitHub platform and page for a „single-source-of-truth“ developer experience: OPS configurations as code right next to the source code in the repository. + +##### Previous Project State + +The previous project setup used [CircleCI][135] with [API version 2.x][134] as CI/CD service. This worked great, but also comes with the disadvantage of being decoupled from the repository. + +

+

+
+
The GitHub Actions CI/CD UI
+
+

+ +During _GitHub Universe 2018_, the awesome new [GitHub Actions][141] feature was [introduced and launched as closed beta][138]. Luckily _Sven Greb_ was given access in order to test all the great possibilities. During the [GitHub Actions stream „Now with built-in CI/CD!“ (live from GitHub HQ)][156] the _Actions_ update was announced and previewed showing the expansion to use _GitHub Actions_ as [CI/CD service described as „fast CI/CD for any OS, any language, and any cloud“][137]. + +

+

+
+
Live logs showing real-time feedback
+
+

+ +**See the [official GitHub Actions documentation][143] for details about setups, features, the configuration API and many more!** + +##### Project Integration + +The switch from _CircleCI_ to _GitHub Actions_ brought many advantages like a „close-to-the-source“ development pipeline. Having the code and automated pipelines/workflows in one place is worth a lot. This also comes along with the perfect and smooth integrations into the GitHub platform and page itself like status reports on PRs and many more possibilities like the [customization and triggering of workflows through webhooks][142] for almost every event that can occur in a repository/issue/PR etc. + +To integrate _GitHub Actions_ the previous [_CircleCI_ build configuration][136] has been adapted and adjusted. The official [starter-workflows][144] were used as inspiration as well as showcase projects like [Yarn _Berry_ (Yarn v2)][151] also presented during the announcement livestream. + +Next to the `starter-workflows` repository the [official _GitHub Actions_ documentation][143] was the main source of information to set up the project workflows. + +

+

+
+
GitHub Actions starter workflows based on the epository languages
+
+

+ +Since _GitHub Actions_ are still in closed/limited public beta, there is no support for SVG badges through [shields.io][32]. Anyway, there are (currently undocumented) official badges provided by the GitHub API that are used until _Actions_ goes _GA_ and [shields.io][32] implements support for it: `https://github.com/{owner}/{repo}/workflows/{workflow_name}/badge.svg` + +# 0.7.0 + +![Release Date: 2019-08-19](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2019-08-19&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.7.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/users/svengreb/projects/10/views/103) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.7.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/svengreb/styleguide-javascript/milestone/2) + +⇅ [Show all commits][120] + +## Epics + +**Monorepo with ESLint packages** — #8 ⇄ #16 (⊶ ac611f7e) +↠ Resolved the epic by converting the repository into a [monorepo][34] and migrating the [`@arcticicestudio/eslint-config`][22] (previously `eslint-config-arcticicestudio`) + [`@arcticicestudio/eslint-config-base`][21] (previously `eslint-config-arcticicestudio-base`) packages! + +#### Previous Project State + +Previously this repository only contained the actual styleguide documentation while specific projects that implement the guidelines for linters and code style analyzer lived in separate repositories. This was the best approach for modularity and a small and clear code base, but it increased the maintenance overhead by 1(n) since changes to the development workflow or toolbox, general project documentations as well as dependency management required changes in every repository with dedicated tickets/issues and PRs. In particular, Node packages require frequent dependency management due to their fast development cycles to keep up-to-date with the latest package changes like (security) bug fixes. + +This styleguide is currently implemented by the [`@arcticicestudio/eslint-config`][22] (previously `eslint-config-arcticicestudio`) and [`@arcticicestudio/eslint-config-base`][21] (previously `eslint-config-arcticicestudio-base`) Node packages that lived in their own repositories. The development workflow was clean using most of GitHub's awesome features like project boards, _codeowner_ assignments, issue & PR automation and so on, but changes to one of them often required actions for the other package too since they are based on each other and they are using the same development tooling and documentation standards. + +##### Monorepo Comparison + +Actually I'm not a supporter when it comes to [monorepos][34] and next to the advantages a monorepo also comes with disadvantages: + +- **No more scoped code** — The developer experience with Git is clearly worse because commits can contains changes to multiple scopes of the code. Since there are only a “transparent separation” of code, that was previously located in a dedicated repository but is not aggregated into a parent (e.g. `packages`) with other modules, commits can now contain changes to multiple code scopes spread over the entire code base. +- **No more assignment of commits to single modules** — Like described in the bullet point above, commit can contain changes to multiple modules, it is harder to detect which commit targeted a specific module. +- **Steeper learning curve for new contributors** — In a dedicated repository that only hosts a specific module it is easier for new developers to contribute to the project, but in a monorepo they might need to change code in multiple places within other modules or the root code/documentation of the entire project. +- **Uniform version number** — In order to keep conform to [SemVer][31], the entire project must use a uniform version number. This means that a module that has not been changed since the last version must also be incremented in order to keep compatible with the other modules. + Using different version numbers prefixed/suffixed with an individual version number **is a not go**, **increases the maintenance overhead** and **and drastically reduces the project overview and quality**! This would result in multiple Git tags on the `main` branch as well as “empty” changelogs and release notes with placeholder logs that only refer to changes of other modules. + +#### Project Future + +Even though there are disadvantages (see above), a [monorepo][34] makes sense **only for specific project modules thar are slightly coupled** and where using dedicated repositories only increases the maintenance overhead **when changes must be reflected in multiple modules anyway**. + +In order to reduce the maintenance overhead both Node packages, [`@arcticicestudio/eslint-config`][22] (previously `eslint-config-arcticicestudio`) and [`@arcticicestudio/eslint-config-base`][21] (previously `eslint-config-arcticicestudio-base`), have been migrated into this repository by adapting to [Yarn workspaces][133] since they are slightly dependent on each other anyway. This simplifies the development tooling setup and allows to use a unified documentation base as well as a smoother development and testing workflow. + +This change also implies that the root of the repository is now the main package for the entire project setup including shared development dependencies, tools and documentations while the packages only contains specific configurations and (dev)dependencies. + +##### Scoped Packages + +The previous `eslint-config-arcticicestudio` and `eslint-config-arcticicestudio-base` packages were no [scoped packages][132] but suffixed with `-arcticicestudio*`. To simplify the naming and improving the usage of user/organization specific packages both packages are now scoped to `@arcticicestudio` resulting in the new names `@arcticicestudio/eslint-config-base` and `@arcticicestudio/eslint-config`. They can be used through [ESLint's support for shared configuration with scoped packages][117]. +The previously released public versions [have been deprecated using the `npm deprecate` command][131] where the provided message points out to migrate to the new scoped packages. + +##### Versioning + +The style guide itself and all packages using a shared/fixed/locked version. This helps all packages to keep in sync and ensure the compatibility with the latest style guide version. + +##### Standard Setup + +In order to keep up-to-date with the latest project setups, the tools and documentations have been integrated and updated through the following tickets: + +- #9 (⊶ 8e992407) „Git ignore and attribute pattern“ — completed ✓ +- #10 (⊶ db2a43bc) „Git mail mapping“ — completed ✓ +- #11 (⊶ 10253246) „Prettier“ — completed ✓ +- #12 (⊶ c21a58a9) „lint-staged“ — completed ✓ +- #13 (⊶ b4cac34f) „Husky“ — completed ✓ +- #14 (⊶ be122b12) „General repository and package documentations and metadata“ — completed ✓ +- #15 (⊶ c25d1efe) „GitHub issue and pull request templates“ — completed ✓ + +## Features + +**GitHub issue and pull request templates** — #15 (⊶ c25d1efe) +↠ Integrated GitHub's feature to define [multiple issue templates][119] while the [initial template file][118] is used as a fallback/generic template to link to the specific ones. + +

+ +

+ +Read the [GitHub Help article][123] for more details about issue and pull request templates. Also check out how to manually create [issue templates][124], a [pull request template][122]. and the guide on [how to create the (deprecated) fallback/generic issue template][121]. + +## Improvements + +**General repository and package documentations and metadata** — #14 (⊶ be122b12) +↠ The previous project repository documentations were not designed for a [monorepo][34] layout and have been be updated including various badges provided by the great [shields.io][32] project. + +Further documentations about the project architecture and technologies as well as guides for contributions to develop, run and maintain the project stayed within the packages itself. +There are also various places that contained outdated documentations and metadata that have been updated too. + +See #14 for more details about what exactly has been updated. + +## Tasks + +

+ +**Introducing _remark-lint_** — #5 ⇄ #6 (⊶ fa9af093) +↠ Integrated [remark-lint][126], a linter built on [remark][30], the powerful Markdown processor powered by plugins such as remark-lint. +It is used through [remark-cli][125] with [remark-preset-lint-arcticicestudio][127], the custom preset that implements the [Markdown Style Guide][6]. + +To lint all Markdown sources within the project the `lint:md` NPM script has been added that will be picked up by the main `lint` script. + +

+ +**Documentation for official ESLint extensible shared configurations** — #7 (⊶ 57b8ce03) +↠ Added information about the official [`@arcticicestudio/eslint-config`][22] and [`@arcticicestudio/eslint-config-base`][21] extensible shared configurations for [ESLint][10] to the documentation. + +

+ +**Git ignore and attribute pattern** — #9 (⊶ 8e992407) +↠ Added the [`.gitattributes`][128] and [`.gitignore`][129] configuration files to define the pattern. + +**Git mail mapping** — #10 (⊶ db2a43bc) +↠ Added a Git [mailmap][130] file to link to in documentations and allow contributors to send mails regarding security issues. This prevents unnecessary overhead of updating all documents when new core team and members and contributors are added and additionally adds the main functionality of the file: Mapping commits when someone uses a different email address. + +

+ +**Introducing _Prettier_** — #11 (⊶ 10253246) +↠ Integrated [Prettier][29], the opinionated code formatter with support for many languages and integrations with most editors. It ensures that all outputted code conforms to a consistent style and provides the best and recommended style configurations of-out-the-box™. +Read #11 for more details about the configuration and setup as well as included plugins. + +To format all compatible sources within the project the `format:pretty` NPM script has been added that will be picked up by the main `format` script. + +

+ +**Introducing _lint-staged_** — #12 (⊶ c21a58a9) +↠ Integrated [lint-staged][16] to run linters against staged Git files and prevent adding code that violates any style guide into the code base. + +Read #12 for more details about the configuration and setup. + +

+ +**Introducing _Husky_** — #13 (⊶ b4cac34f) +↠ Integrated [Husky][24], the tool that make Git hooks easy and can prevent bad Git commits, pushes and more _woof_! + +Read #13 for more details about the configuration and setup. + +# 0.6.0 + +![Release Date: none](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=-&colorA=4c566a&colorB=88c0d0) ![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.6.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0) + +⇅ [Show all commits][105] + +↳ Release date of transferred `eslint-config-base` package: _2019-08-14_ + +## Features + +### Style Guide + +**Suggestion to use `WeakMap` for hidden properties** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1722 (⊶ airbnb/javascript@c5411a42) +↠ Added a suggestion to the examples of the [naming conventions for underscores][79] to make properties hidden by using a `WeakMap` when the environment supports it. This is an alternative to just removing the underscore and making the property public. + +**Prefer control statements over selection operators** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1729 (⊶ airbnb/javascript@c8b11641) +↠ Added a new rule to prefer [control statements instead of selection operators][74]. + +**Ordering for React instance variables and methods** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1737 (⊶ airbnb/javascript@ff1c1217) +↠ Added a suggestions about instance variables and methods for the [ordering of React component methods and properties][3]. + +**UPPERCASE naming convention for constants** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#255 (⊶ airbnb/javascript@33819d67) +↠ Added a new section about [naming conventions for constants][78]. + +**Consistent whitespaces inside blocks** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) +↠ Added a new section about [consistent whitespaces inside block][90]. + +**Spacing around commas** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) +↠ Added a new section about [whitespaces around commas][88]. + +**Spacing inside computed properties** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) +↠ Added a new section about [whitespaces inside computed properties][91]. + +**Spacing around function signatures** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) +↠ Added a new section about [whitespaces around function signatures][89]. + +**Spacing inside object literal properties** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) +↠ Added a new section about [whitespaces inside object literal properties][92]. + +**Trailing spaces at the end of lines** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) +↠ Added a new section about [trailing spaces at the end of lines][94]. + +**Multiple empty lines** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1798 (⊶ airbnb/javascript@edf942ee) +↠ Added a new section about [multiple empty lines][93]. + +**Unused variables** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1828 (⊶ airbnb/javascript@edf942ee) +↠ Added a new section about [unused variables][87]. + +### Packages + +#### `@arcticicestudio/eslint-config-base` + +**New `function-call-argument-newline` rule** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#32 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#33~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@e25bf80c4~~) +↠ Added and **disabled** the new [`function-call-argument-newline`][98] core rule introduced in [ESLint version 6.2.0][111]. + +## Improvements + +### Style Guide + +**Reference `function-paren-newline` for function signature invocation indentations** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1756 (⊶ airbnb/javascript@a9fc9d8a) +↠ Added a reference for the ESLint core rule [`function-paren-newline`][41] to the [function signature invocation indentation][2] section. + +**Index as `key` are anti-pattern** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1899 (⊶ airbnb/javascript@48448a81) +↠ Added additional information [why index as `key` are an anti-pattern][85]. + +**`let` or `const` guideline is incompatible with „destructuring“** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1927 (⊶ airbnb/javascript@9af5ee89) +↠ Added a info about assignments to the section about [declaration separation][86] to be compatible with rules about [destructuring][75]. + +**Reference to `no-prototype-builtins` rule** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1929 (⊶ airbnb/javascript@924dfb26) +↠ Added a reference to the section about [prototype builtins][80] for the corresponding [`no-prototype-builtins`][102] rule. + +**Reference to `react/jsx-filename-extension` rule** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1930 (⊶ airbnb/javascript@24da5bb5) +↠ Added a reference to the section about [JSX file extension][84] for the corresponding [`react/jsx-filename-extension`][109] rule. + +**Reference to `react/no-array-index-key` rule** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1930 (⊶ airbnb/javascript@24da5bb5) +↠ Added a reference to the section about [index as `key` props][85] for the corresponding [`react/no-array-index-key`][110] rule. + +**More best practices for `.bind()` and arrow functions in React** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#2014 (⊶ airbnb/javascript@be07f7a0) +↠ Added more information and best practices in [React about method][83] binding (`.bind()`) and arrow functions when used within React classes like properties or in the scope of `render`. + +**Better wording for „acronyms and initialisms“ guideline** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1972 (⊶ airbnb/javascript@5d25a2ee) +↠ Improved the wording in the [acronyms and initialisms][77] section by replacing `capitalized` with `uppercased` to clarify the purpose of guideline. + +### Packages + +#### `@arcticicestudio/eslint-config` + +**Behavior of `react/forbid-prop-types` rule for `array` and `object`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1952 (⊶ airbnb/javascript@95286eb4) +↠ Added additional information about the specific behavior of the [`react/forbid-prop-types`][108] rule regarding `array` and `object` type. + +#### `@arcticicestudio/eslint-config-base` + +**ESLint v6.0.0 Support** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#30 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#31 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@dfee6901~~) +↠ [ESLint v6 has been released][7] including the official [v6 migration guide][8]. +To stay up-to-date with the latest security and stability changes as well as new rules, this configuration migrated to v6 while also dropping support for v4 and lower. + +##### Updated (dev,peer)dependencies for ESLint v6.0.0 support + +To stay up-to-date with the latest security and stability changes as well as new rules, all outdated (dev,peer)dependencies have been updated. + +##### Removed deprecated `experimentalobjectrestspread` option + +Since ESLint v5, the `parserOptions.ecmaFeatures.experimentalObjectRestSpread` option was deprecated and [has now been removed in v6][95]. +To ensure the feature is used the `parserOptions.ecmaVersion` option has been updated to use ECMAScript version `2018` which includes this syntax feature. + +##### Added new rules and adapted to changed default values + +ESLint v6 introduced new rules as well as [updating default values and configurations of existing ones][96]. +The missing rules have been added while the default values have been compared and adjusted to the current configurations of this package. + +##### Removed and replaced deprecated core rules + +The following [rules are deprecated][97] and have been removed or replaced: + +- `require-jsdoc` and `valid-jsdoc` - Both rules were not maintained anymore and were disabled anyway due to too noisy output. +- `no-catch-shadow` - Replaced by [`no-shadow`][103] + +**Ignore `__mocks__` for `import/no-extraneous-dependencies`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1772 (⊶ airbnb/javascript@8720f5f9) +↠ Added the `__mocks__` pattern as exception for the [`import/no-extraneous-dependencies`][52] rule since it should be considered as testing utils. + +**Underscore naming pattern for `spec` tests** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1732 (⊶ airbnb/javascript@8c83d03a) +↠ Extended the pattern for tests named with the `spec` pattern when using an underscore (`*_spec.js`) instead of an dot (`*.spec.js`) for the [`import/no-extraneous-dependencies`][52] rule. + +**No dangling underscore in function names** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1907 (⊶ airbnb/javascript@17e04546) +↠ Dangling underscores and not allowed for functions and are now enforced through the [`no-underscore-dangle`][104] rule. + +**Allow `staticContext` (_React Router_) for `no-param-reassign`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#2029 (⊶ airbnb/javascript@1310ade9) +↠ Added `staticContext` ([_React Router_][115]) as exception for the [`no-param-reassign`][101] rule. + +**Switch from `eslint-restricted-globals` to `confusing-browser-globals`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1961 (⊶ airbnb/javascript@21b65e94) +↠ Switched from the superseded [`eslint-restricted-globals`][112] package to the new [`confusing-browser-globals`][106] package that is part of the official React repository, used within [CRA][1] and maintained by the React core team. + +**Allow `jest.setup.js` file name pattern for `import/no-extraneous-dependencies`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1998 (⊶ airbnb/javascript@96f95fa3) +↠ Added the `jest.setup.js` file name pattern to the exceptions of the [`import/no-extraneous-dependencies`][52] rule to support the general naming of [Jest][26] setup files. + +**Cleaner example for „array callback return“ handling** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#2004 (⊶ airbnb/javascript@495a62aa) +↠ Removed an unnecessary expression from the examples in the [„callback return“][72] section for arrays. + +**Simplified `no-mixed-operators`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1864 (⊶ airbnb/javascript@f6acb789) +↠ Simplified the groups for the [`no-mixed-operators`][99] rule to adapt to the [corresponding style guide section][73] that has been improved and updated. + +## Bug Fixes + +### Style Guide + +**Updated link anchor for MDN page about `let` keyword** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1818 (⊶ airbnb/javascript@c068d7cb) +↠ Fixed an anchor on the [“Hoisting”][76] page for a MDN link about [„temporal dead zones“][113] of the `let` keyword. + +**Invalid link anchor for W3 page about „ARIA Roles“` keyword** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1823 (⊶ airbnb/javascript@8a244801) +↠ Fixed an anchor on the [React Accessibility A11Y][82] page for a W3 link about [“ARIA roles”][116]. + +**Invalid example for npm `has` package** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#2062 (⊶ airbnb/javascript@030e23b1) +↠ Fixed an error in the usage example of the [`has`][114] package in the [„Object Rest Spread“][81] section. + +### Packages + +#### `@arcticicestudio/eslint-config-base` + +**No additional new line at end of file** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Ported from airbnb/javascript#1794, airbnb/javascript#2017 (⊶ airbnb/javascript@2d977990, airbnb/javascript@60b96d32) +↠ Changed the `maxEOF` option of the [`no-multiple-empty-lines`][100] rule to `0` since ESLint by default [swallows the final newline, as some editors add it automatically][107]. This prevents an additional new line at the end of files next to the default _EOF_ handling. + +# 0.5.0 + +![Release Date: none](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=-&colorA=4c566a&colorB=88c0d0) ![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.5.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0) + +⇅ [Show all commits][69] + +↳ Release date of transferred `eslint-config` package: _2019-08-19_ +↳ Release date of transferred `eslint-config-base` package: _2018-11-17_ + +## Features + +### Packages + +#### `@arcticicestudio/eslint-config` + +**Entry point for Prettier plugin integration** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#12 ⇄ arcticicestudio/eslint-config-arcticicestudio#15~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@8935d75a~~) +↠ All projects using [Prettier][29] for a smooth and uncomplicated developer experience as well as keeping the code style consistent across own and third-party projects. +Almost all projects have added the [eslint-plugin-prettier][20] plugin to run Prettier as an ESLint rule and report differences as individual ESLint issues. + +Therefore a new entry point has been added that + +- enables the `prettier` plugin. +- enables the `prettier/prettier` rule to `error` level in order to enable the linting output. +- extends the official Prettier ESLint configuration from the [`eslint-config-prettier` package][19] to ensure the best compatibility with Prettier as well as reducing required maintenance overhead to keep up-to-date with new Prettier releases. It also extends the following shared configurations to include support for other ESLint plugins: + - `eslint-plugin-react` through the shared `prettier/react` configuration + +The new entry point is available as `@arcticicestudio/eslint-config/prettier` and can be composed with the default entry point to inherit the rules and include all existing integrations like for „React“ and „JSX A11Y“. + +## Improvements + +### Packages + +#### `@arcticicestudio/eslint-config` + +**ESLint v6.0.0 Support** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#13 ⇄ arcticicestudio/eslint-config-arcticicestudio#14 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@6948a181~~) +↠ [ESLint v6 has been released][7] including the official [v6 migration guide][8]. +To stay up-to-date with the latest security and stability changes as well as new rules, this configuration migrated to v6 while also dropping support for v4 and lower. + +##### Updated (dev,peer)dependencies for ESLint v6.0.0 support + +To stay up-to-date with the latest security and stability changes as well as new rules, all outdated (dev,peer)dependencies have been updated. + +##### Updated React plugin settings + +The version has been changed to be automatically detected by using the `detect` value and the `pragma` key has been removed since it will be handled by Babel. + +##### Added new React and JSX A11Y plugin rules and adapted new default values + +The `react` and `jsx-a11y` plugins introduced new rules as well as updating default values and configurations of existing ones. +The missing rules have been added while the default values have been compared and adjusted to the current configurations of this package. + +##### Removed deprecated plugin rules + +The following rules have been deprecated and therefore removed or replaced: + +- [`jsx-a11y/label-has-for`][71] - Replaced by [`label-has-associated-control`][70]. + +#### `@arcticicestudio/eslint-config-base` + +**No `quote-props` for numbers and keywords** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#29 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@bbb6d35a~~) +↠ Disabled the [keywords][67] and [numbers][68] options of the `quote-props` rule. Both are not necessary anymore since this preset does not target legacy ES3 environments and disabling prevents unnecessary and noisy warnings. + +# 0.4.0 + +![Release Date: none](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=-&colorA=4c566a&colorB=88c0d0) ![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.4.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0) + +⇅ [Show all commits][64] + +↳ Release date of transferred `eslint-config` package: _2018-11-16_ +↳ Release date of transferred `eslint-config-base` package: _2018-11-15_ + +## Improvements + +### Packages + +#### `@arcticicestudio/eslint-config` + +**Loosen JSX props ordering** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#10 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@cf8a9744~~) +↠ Disabled the [65][] rule because it was actually too noisy and prevented the usage of useful shortcut props like `outlined` or `loaded`. + +**No more consistent naming validation for JSX boolean props** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#11 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@27e75c91~~) +↠ The `callbacksLast` and `shorthandFirst` options of the [66][] rule caused multiple warnings when formatted with [Prettier][29] and conflicted with the alphabetically ordering and have therefore been **disabled**. + +#### `@arcticicestudio/eslint-config-base` + +**No more JSDoc comment validation** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#28 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@eab37dd2~~) +↠ Disabled the [`valid-jsdoc`][63] core rule because it is actually too noisy and not suitable in most cases when used with JSX/React and some of the latest ES6 (or higher) features/proposals when the return type is not known. When using [TypeScript][35] or [Flow][11] the return type and parameters are typed. + +# 0.3.0 + +![Release Date: none](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=-&colorA=4c566a&colorB=88c0d0) ![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.3.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0) + +⇅ [Show all commits][61] + +↳ Release date of transferred `eslint-config` package: _2018-05-20_ +↳ Release date of transferred `eslint-config-base` package: _2018-05-20_ + +## Improvements + +### Packages + +#### `@arcticicestudio/eslint-config` + +**Prevent _SemVer Major Zero Caveat_** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#8 ⇄ arcticicestudio/eslint-config-arcticicestudio#9~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@daa1ea3e~~) +↠ Raised the version range for the [base package][21] to `>=0.2.0 <1.0.0` in order to avoid the _SemVer Major Zero Caveat_. + +This prevents that only the exact version specified will match. By allowing all versions `<1.0.0` this package resolves to the latest development version when a new version of the base package is released without the need to manually update to the version. + +#### `@arcticicestudio/eslint-config-base` + +**No more minimum amount of properties for `object-curly-newline`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#26 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#27~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@1c4ee04b~~) +↠ Removed the minimum amount of properties for the [`object-curly-newline`][60] rule so the `consistent` option ensures that the style is consistent for every case. + +Previously it was configured to require a line break when there are 4 or more properties within the object curly braces on the same line. This resulted in noisy errors because the names can also be very short and fit perfectly into one line e.g. when used with React prop [destructuring][28]. + +

+ +Because [Prettier][29] is used in all project development workflows, the indentation is automatically handled when the length of the properties exceeds the maximum line length or reduces the readability. Therefore the decision to use a line break or not should be handled by Prettier instead of using a hard coded amount value. + +This improvement also added the `ImportDeclaration` and `ExportDeclaration` configurations, introduced in [ESLint version 4.18.0][62], to avoid different behavior when updating to this version. + +# 0.2.0 + +![Release Date: none](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=-&colorA=4c566a&colorB=88c0d0) ![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.2.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0) + +⇅ [Show all commits][46] + +↳ Release date of transferred `eslint-config` package: _2018-05-14_ +↳ Release date of transferred `eslint-config-base` package: _2018-05-12_ + +## Features + +### Packages + +#### `@arcticicestudio/eslint-config` + +**New React rule `react/jsx-max-depth`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#6 ⇄ arcticicestudio/eslint-config-arcticicestudio#7~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@356292cd~~) +↠ Added new rule [`react/jsx-max-depth`][57] to validate the maximum JSX depth. Introduced in [eslint-plugin-react][25] version [7.7.0][56]. + +#### `@arcticicestudio/eslint-config-base` + +**New import rule `import/no-self-import`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#13 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#22~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@ff353600~~) +↠ Added and **enabled** rule [`import/no-self-import`][53] to prevent a module from importing itself. Introduced in [eslint-plugin-import][14] version [2.9.0][48]. + +

+ +**New import rule `import/no-useless-path-segments`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#14 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#23~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@4f0744b7~~) +↠ Added and **enabled** rule [`import/no-useless-path-segments`][54] to prevent unnecessary path segments in import and require statements. Introduced in [eslint-plugin-import][14] version [2.9.0][48]. + +**New import rule `import/no-default-export`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#15 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#24~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@4b3dcdab~~) +↠ Added and **disabled** rule [`import/no-default-export`][51] to forbid default exports. Introduced in [eslint-plugin-import][14] version [2.9.0][48]. + +**New import rule `import/no-cycle`** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#16 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#25~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@273430b9~~) +↠ Added and **enabled** rule [`import/no-cycle`][50] to prevent a module from importing a module with a dependency path back to itself. Introduced in [eslint-plugin-import][14] version [2.10.0][47]. + +

+ +

+ +## Improvements + +### Packages + +#### `@arcticicestudio/eslint-config` + +**New and deprecated React 16.3 lifecycle methods** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#4 ⇄ arcticicestudio/eslint-config-arcticicestudio#5~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@0a444a20~~) +↠ Added the new React 16.3 lifecycle method [`getSnapshotBeforeUpdate`][58] and the now deprecated (“async unsafe“) lifecycle `React.Component` methods, prefixed with `UNSAFE_`, to the except methods of the [`class-methods-use-this`][40] core rule. +Previously this resulted in a warning when no `this` keyword was used within the method. + +

+ +**New and deprecated React 16.3 lifecycle methods** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#3 (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@9ea7d770~~) +↠ Updated to the latest [base package][21] version [0.2.0][45] that added support for new ESLint core and plugin rules as well as many other improvements and bug fixes. + +#### `@arcticicestudio/eslint-config-base` + +**Import-related rule refactoring** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#6 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#12~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@8395e07d~~) +↠ Refactored rules related to imports that caused many style based warnings regarding ordering and sorting of `import` statements. + +###### Import Order Conflict + +The [`import/first`][49] and [`import/order`][55] rules were conflicting. While `import/first` disallowed + +```js +import "../config"; +import fs from "fs"; // <-- Error: Absolute imports should come before relative imports +import App from "../App"; +``` + +`import/order` on the other hand was fine with this as mentioned in the rule documentation: + +> Unassigned imports are ignored, as the order they are imported in may be important. + +This has been improved by allowing unassigned imports anywhere, **but still above all other non-import statements**. + +Also the import groups have been specified more accurate by splitting them into three main groups: + +1. _builtin_ and _external_ modules +2. _internal_ modules (e.g. if configured via webpack to handle internal paths differently) +3. _parent_, _sibling_ and _index_ modules + +These three groups must be separated by a blank line. + +###### Import Sort Conflict + +The [`sort-imports`][44] rule conflicted with both of the other mentioned rules described above. It is not that important how imports are sorted within groups so this rule has been disabled until there's a way to make it work regarding the compatibility with other rules. + +

+ +**Allow line break for arrow function implicit returns** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#7 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#17~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@fa3d6e8c~~) +↠ Line breaks are now allowed for implicit returns of arrow functions. +Previously it was configured to enforce the implicit return statement to be beside the arrow. This prevented longer statements to be placed on the next line to improve the readability and compliance with the maximum line length. These restrictions have now been lifted. + +

+ +**No default case for switch block** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#9 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#19~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@1d9ad4ef~~) +↠ _switch-case_ blocks no longer require a `default` case. The [`default-case`][59] rule has been disabled, because most of the time a `default` case is not necessary and should be handled by the developer depending on the use case and code scope. + +**Use line breaks after operators** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#10 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#20~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@9894f0d8~~) +↠ Line breaks are now placed **after** operators instead **before** them. Previously the [`operator-linebreak`][43] core rule was configured to enforce line breaks to be placed before operators which could lead to confusions when indenting lines because of the [maximum line length][42]. It now enforces line breaks after operators, but exceptions for the [conditional (ternary) operators][27] `?` and `:` are configured to use line breaks before. + +

+ +**Gatsby configuration file pattern for `devDependencies` imports** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#11 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#21~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@581fd812~~) +↠ The [`import/no-extraneous-dependencies`][52] rule now allows the import of `devDependencies` in [Gatsby][12] configuration, currently including the following pattern: + +```raw +gatsby-browser.js +gatsby-config.js +gatsby-node.js +gatsby-ssr.js +``` + +These pattern should match all of the listed files as well as new files that might possibly be added in the future. + +

+ +## Bug Fixes + +### Packages + +#### `@arcticicestudio/eslint-config-base` + +**Consistent line break usage within function parentheses** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#8 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#18~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@f4af5ecf~~) +↠ Line breaks within function parentheses are now consistent. +Previously the [`function-paren-newline`][41] core rule was configured with `multiline` that only allowed a line break after the opening brace when the parameter also contains a line break, otherwise it disallows any line break within the parentheses. + +This was [not conform with the styleguide][2] and has been changed to the `consistent` option. This requires consistent usage of line breaks for each pair of parentheses. It reports an error if one parenthesis in the pair has a line break inside it and the other parenthesis does not. + +

+ +##### Toolbox + +**No peer dependency installation for CI/CD builds** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#3 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#4~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@fe418ec4~~) +↠ The installation of peer dependencies for CI/CD build (Circle CI) has been removed from the build configuration. + +It was set up to run the `npx` command to install the peer dependencies that is only required for users of the package, but not the package itself. The same dependencies are defined in `devDependencies` and therefore installed by default on `npm install`. + +# 0.1.0 + +![Release Date: 2018-01-27](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2018-01-27&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.1.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/users/svengreb/projects/10/views/102) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.1.0&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0)](https://github.com/svengreb/styleguide-javascript/milestone/1) + +⇅ [Show all commits][39] + +↳ Release date of transferred `eslint-config` package: _2018-02-05_ +↳ Release date of transferred `eslint-config-base` package: _2018-02-04_ + +> Detailed information can be found in the [project documentation][6]. + +## Features + +### Style Guide + +**Base Rules** — #1 ⇄ #2 (⊶ dee0441a) +↠ Added the initial style guide with chapters to learn about the [comprehensive base rules][5]. + +**Base Rules** — #3 ⇄ #4 (⊶ cee71142) +↠ Added the initial style guide for [React][4] specific rules like [Higher-Order Components][37], the [component methods & properties ordering][3] and [props][38]. + +### Packages + +#### `@arcticicestudio/eslint-config` + +**Base Rules** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio#1 ⇄ arcticicestudio/eslint-config-arcticicestudio#2~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio@c46bf556~~) +↠ Added all rules of the [eslint-plugin-react][25] and [eslint-plugin-jsx-a11y][15] plugins based on the [React][4] and [Accessibility A11Y][36] style guidelines as shareable ESLint config. +More details can also be found in the initially published ~~[project documentation](#)~~. + +#### `@arcticicestudio/eslint-config-base` + +**Base Rules** — #8 ⇄ #16 (⊶ ac611f7e) +↳ Transferred from ~~arcticicestudio/eslint-config-arcticicestudio-base#1 ⇄ arcticicestudio/eslint-config-arcticicestudio-base#2~~ (⊶ ~~arcticicestudio/eslint-config-arcticicestudio-base@9ba25a53~~) +↠ Added all [ESLint core rules][9] and [eslint-plugin-import][14] plugin rules. +More details can also be found in the initially published ~~[project documentation](#)~~. + +

+ + + + + +

+ +

+ Copyright © 2016-present Sven Greb +

+ +

+ + + + + + +

+ + + + + + + +[1]: https://create-react-app.dev +[2]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#signature-invocation-indentation +[3]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/ordering.md#component-methods-and-properties +[4]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/index.md +[5]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/index.md +[6]: https://github.com/svengreb/styleguide-javascript +[7]: https://eslint.org/blog/2019/06/eslint-v6.0.0-released +[8]: https://eslint.org/docs/latest/use/migrating-to-6.0.0 +[9]: https://eslint.org/docs/latest/rules +[10]: https://eslint.org +[11]: https://flow.org +[12]: https://www.gatsbyjs.com +[13]: https://github.com/svengreb/styleguide-javascript/blob/main/packages/@svengreb/eslint-config/README.md#entry-points +[14]: https://github.com/import-js/eslint-plugin-import +[15]: https://github.com/evcohen/eslint-plugin-jsx-a11y +[16]: https://github.com/okonet/lint-staged +[17]: https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md#version-800-2021-02-21 +[18]: https://github.com/prettier/eslint-config-prettier/compare/v6.0.0...v8.1.0 +[19]: https://github.com/prettier/eslint-config-prettier +[20]: https://github.com/prettier/eslint-plugin-prettier +[21]: https://github.com/svengreb/styleguide-javascript/tree/main/packages/@svengreb/eslint-config-base +[22]: https://github.com/svengreb/styleguide-javascript/tree/main/packages/@svengreb/eslint-config +[23]: https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/parser +[24]: https://github.com/typicode/husky +[25]: https://github.com/jsx-eslint/eslint-plugin-react +[26]: https://jestjs.io +[27]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Conditional_Operator +[28]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment +[29]: https://prettier.io +[30]: https://remark.js.org +[31]: https://semver.org +[32]: https://shields.io +[34]: https://monorepo.tools +[35]: https://www.typescriptlang.org + + + +[36]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/accessibility_a11y.md +[37]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/higher_order_components.md +[38]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/props.md +[39]: https://github.com/svengreb/styleguide-javascript/compare/d2d94733...v0.1.0 + + + +[40]: https://eslint.org/docs/latest/rules/class-methods-use-this +[41]: https://eslint.org/docs/latest/rules/function-paren-newline +[42]: https://eslint.org/docs/latest/rules/max-len +[43]: https://eslint.org/docs/latest/rules/operator-linebreak +[44]: https://eslint.org/docs/latest/rules/sort-imports +[45]: https://github.com/svengreb/styleguide-javascript/blob/main/changelog.md#020 +[46]: https://github.com/svengreb/styleguide-javascript/compare/v0.1.0...v0.2.0 +[47]: https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md#2100---2018-03-29 +[48]: https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md#290---2018-02-21 +[49]: https://github.com/import-js/eslint-plugin-import/blob/main/docs/latest/rules/first.md +[50]: https://github.com/import-js/eslint-plugin-import/blob/main/docs/latest/rules/no-cycle.md +[51]: https://github.com/import-js/eslint-plugin-import/blob/main/docs/latest/rules/no-default-export.md +[52]: https://github.com/import-js/eslint-plugin-import/blob/main/docs/latest/rules/no-extraneous-dependencies.md +[53]: https://github.com/import-js/eslint-plugin-import/blob/main/docs/latest/rules/no-self-import.md +[54]: https://github.com/import-js/eslint-plugin-import/blob/main/docs/latest/rules/no-useless-path-segments.md +[55]: https://github.com/import-js/eslint-plugin-import/blob/main/docs/latest/rules/order.md +[56]: https://github.com/jsx-eslint/eslint-plugin-react/releases/tag/v7.7.0 +[57]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/jsx-max-depth.md +[58]: https://react.dev/reference/react/Component#getsnapshotbeforeupdate + + + +[59]: https://eslint.org/docs/latest/rules/default-case +[60]: https://eslint.org/docs/latest/rules/object-curly-newline +[61]: https://github.com/svengreb/styleguide-javascript/compare/v0.2.0...v0.3.0 +[62]: https://github.com/eslint/eslint/releases/tag/v4.18.0 + + + +[63]: https://eslint.org/docs/latest/rules/valid-jsdoc +[64]: https://github.com/svengreb/styleguide-javascript/compare/v0.3.0...v0.4.0 +[65]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/boolean-prop-naming.md +[66]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/jsx-sort-props.md + + + +[67]: https://eslint.org/docs/latest/rules/quote-props.html#keywords +[68]: https://eslint.org/docs/latest/rules/quote-props.html#numbers +[69]: https://github.com/svengreb/styleguide-javascript/compare/v0.4.0...v0.5.0 +[70]: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/label-has-associated-control.md +[71]: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/label-has-for.md + + + +[72]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/arrays.md#callback-return +[73]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/comparison_operators_and_equality.md#no-mixed-operators +[74]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/control_statements.md#selection_operators +[75]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/destructuring.md#objects +[76]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/hoisting.md +[77]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/naming_conventions.md#acronyms-and-initialisms +[78]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/naming_conventions.md#constants +[79]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/naming_conventions.md#underscores +[80]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/objects.md#prototype-builtins +[81]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/objects.md#rest-spread +[82]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/accessibility_a11y.md#valid-aria-roles +[83]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/methods.md +[84]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/naming_conventions.md#jsx-file-extension +[85]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/props.md#no-index-as-key +[86]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/variables.md#declaration-separation +[87]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/variables.md#unused +[88]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#around-commas +[89]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#around-function-signatures +[90]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#inside-blocks +[91]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#inside-computed-properties +[92]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#inside-object-literal-properties +[93]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#multiple-empty-lines +[94]: https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#trailing-spaces-at-the-end-of-lines +[95]: https://eslint.org/docs/user-guide/migrating-to-6.0.0#-the-depreacted-experimentalobjectrestspread-option-has-been-removed +[96]: https://eslint.org/docs/user-guide/migrating-to-6.0.0#eslint-recommended-changes +[97]: https://eslint.org/docs/latest/rules/#deprecated +[98]: https://eslint.org/docs/latest/rules/function-call-argument-newline +[99]: https://eslint.org/docs/latest/rules/no-mixed-operators +[100]: https://eslint.org/docs/latest/rules/no-multiple-empty-lines +[101]: https://eslint.org/docs/latest/rules/no-param-reassign +[102]: https://eslint.org/docs/latest/rules/no-prototype-builtins +[103]: https://eslint.org/docs/latest/rules/no-shadow +[104]: https://eslint.org/docs/latest/rules/no-underscore-dangle +[105]: https://github.com/svengreb/styleguide-javascript/compare/v0.5.0...v0.6.0 +[106]: https://github.com/facebook/create-react-app/tree/main/packages/confusing-browser-globals +[107]: https://github.com/eslint/eslint/blob/7ad86dea02feceb7631943a7e1423cc8a113fcfe/lib/rules/no-multiple-empty-lines.js#L63 +[108]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/forbid-prop-types.md +[109]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/jsx-filename-extension.md +[110]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/no-array-index-key.md +[111]: https://github.com/eslint/eslint/releases/tag/v6.2.0 +[112]: https://github.com/sidoshi/eslint-restricted-globals +[113]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let#Temporal_dead_zone +[114]: https://www.npmjs.com/package/has +[115]: https://reacttraining.com/react-router +[116]: https://www.w3.org/TR/wai-aria/#usage_intro + + + +[117]: https://eslint.org/docs/latest/extend/shareable-configs#npm-scoped-modules +[118]: https://github.blog/2016-02-17-issue-and-pull-request-templates +[119]: https://github.blog/2018-01-25-multiple-issue-and-pull-request-templates +[120]: https://github.com/svengreb/styleguide-javascript/compare/v0.6.0...v0.7.0 +[121]: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/manually-creating-a-single-issue-template-for-your-repository +[122]: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/creating-a-pull-request-template-for-your-repository +[123]: https://help.github.com/articles/about-issue-and-pull-request-templates +[124]: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/about-issue-and-pull-request-templates +[125]: https://github.com/remarkjs/remark/tree/main/packages/remark-cli +[126]: https://github.com/remarkjs/remark-lint +[127]: https://github.com/arcticicestudio/remark-preset-lint-arcticicestudio +[128]: https://git-scm.com/docs/gitattributes +[129]: https://git-scm.com/docs/gitignore +[130]: https://git-scm.com/docs/git-shortlog#_mapping_authors +[131]: https://docs.npmjs.com/cli/v9/commands/npm-deprecate +[132]: https://docs.npmjs.com/about-scopes +[133]: https://classic.yarnpkg.com/en/docs/workspaces + + + +[134]: https://circleci.com/docs +[135]: https://circleci.com +[136]: https://github.com/svengreb/styleguide-javascript/blob/ac611f7e/.circleci/config.yml +[137]: https://github.blog/2019-08-08-github-actions-now-supports-ci-cd +[138]: https://github.blog/2018-10-17-action-demos +[139]: https://github.com/svengreb/styleguide-javascript/compare/v0.7.0...v0.8.0 +[140]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/jsx-no-bind.md +[141]: https://github.com/features/actions +[142]: https://help.github.com/en/articles/events-that-trigger-workflows#webhook-events +[143]: https://help.github.com/en/categories/automating-your-workflow-with-github-actions +[144]: https://github.com/actions/starter-workflows +[145]: https://github.com/facebook/react/tree/master/packages/eslint-plugin-react-hooks +[146]: https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/parser#configuration +[147]: https://github.com/typescript-eslint/typescript-eslint/releases/tag/v2.0.0 +[148]: https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/eslint-plugin/src/configs +[149]: https://github.com/typescript-eslint/typescript-eslint +[150]: https://github.com/typescript-eslint/typescript-eslint/issues/890 +[151]: https://github.com/yarnpkg/berry/tree/master/.github/workflows +[152]: https://legacy.reactjs.org/blog/2019/02/06/react-v16.8.0.html +[153]: https://react.dev/reference/react +[154]: https://reactjs.org/docs/hooks-rules.html +[156]: https://www.youtube.com/watch?v=E1OunoCyuhY + + + +[157]: https://eslint.org/docs/latest/use/migrating-to-7.0.0 +[158]: https://eslint.org/docs/latest/use/migrating-to-7.0.0#nodejscommonjs-rules-have-been-deprecated +[159]: https://eslint.org/docs/latest/use/migrating-to-7.0.0#lint-files-matched-by-overridesfiles-by-default +[160]: https://eslint.org/docs/latest/use/migrating-to-7.0.0#eslintrecommended-has-been-updated +[161]: https://eslint.org/docs/latest/rules/callback-return +[162]: https://eslint.org/docs/latest/rules/global-require +[163]: https://eslint.org/docs/latest/rules/handle-callback-err +[164]: https://eslint.org/docs/latest/rules/no-dupe-else-if +[165]: https://eslint.org/docs/latest/rules/no-import-assign +[166]: https://eslint.org/docs/latest/rules/no-mixed-requires +[167]: https://eslint.org/docs/latest/rules/no-new-require +[168]: https://eslint.org/docs/latest/rules/no-path-concat +[169]: https://eslint.org/docs/latest/rules/no-process-env +[170]: https://eslint.org/docs/latest/rules/no-process-exit +[171]: https://eslint.org/docs/latest/rules/no-restricted-modules +[172]: https://eslint.org/docs/latest/rules/no-setter-return +[173]: https://eslint.org/docs/latest/rules/no-sync +[174]: https://github.com/acornjs/acorn/compare/7.0.0...7.1.1 +[175]: https://github.com/acornjs/acorn +[176]: https://github.com/import-js/eslint-plugin-import/compare/v2.18.2...v2.22.1 +[177]: https://github.blog/2020-10-13-presenting-v7-0-0-of-the-npm-cli/#user-content-breaking-changes +[178]: https://github.com/svengreb/styleguide-javascript/compare/v0.8.0...v0.9.0 +[179]: https://github.com/eslint/eslint/compare/v6.2.0....v7.23.0 +[180]: https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md#420 +[181]: https://github.com/facebook/react/blob/v16.13.1/packages/react-reconciler/src/ReactChildFiber.js#L407 +[182]: https://github.com/github/renaming +[183]: https://docs.github.com/en/get-started/quickstart/github-flow +[184]: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/compare/v6.2.3...v6.4.1 +[185]: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y +[186]: https://github.com/microsoft/TypeScript/compare/v3.5.3...v4.2.3 +[187]: https://github.com/microsoft/TypeScript +[188]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/callback-return.md +[189]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/global-require.md +[190]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/handle-callback-err.md +[191]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-mixed-requires.md +[192]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-new-require.md +[193]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-path-concat.md +[194]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-process-env.md +[195]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-process-exit.md +[196]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-restricted-modules.md +[197]: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-sync.md +[198]: https://github.com/typicode/husky/compare/v9.2.3...v10.5.4 +[199]: https://github.com/prettier/eslint-config-prettier/compare/v6.1.0...v8.1.0 +[200]: https://github.com/prettier/eslint-plugin-prettier/compare/v3.1.0...v3.3.1 +[201]: https://github.com/typicode/husky/compare/v1.18.2...v2.2.1 +[202]: https://github.com/prettier/prettier +[203]: https://github.com/typicode/husky/compare/v7.0.0...v9.0.0 +[204]: https://github.com/remarkjs/remark/releases +[205]: https://github.com/sarbbottam/eslint-find-rules/compare/v3.4.0...v3.6.1 +[206]: https://github.com/sarbbottam/eslint-find-rules +[207]: https://github.com/sindresorhus/del-cli/compare/v2.0.0...v3.0.1 +[208]: https://github.com/sindresorhus/del-cli +[209]: https://github.com/svengreb/styleguide-javascript/tree/develop/packages/@svengreb/eslint-config +[210]: https://github.com/typescript-eslint/typescript-eslint/compare/v2.0.0...v4.20.0 +[211]: https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin +[212]: https://github.com/typicode/husky/compare/v3.0.4...v6.0.0 +[213]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md#7150---2019-09-30 +[214]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md#7220---20201229 +[215]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md#750---2017-11-18 +[216]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md#790---2018-06-03 +[217]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/jsx-newline.md +[218]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/jsx-no-constructed-context-values.md +[219]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/jsx-no-target-blank.md +[220]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/jsx-no-useless-fragment.md +[221]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/no-unstable-nested-components.md +[222]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/require-default-props.md +[223]: https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/latest/rules/sort-comp.md +[224]: https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.14....v7.23.1 +[225]: https://github.com/svengreb/tmpl/releases/tag/v0.9.0 +[226]: https://github.com/svengreb/tmpl + + + +[227]: https://eslint.org/docs/latest/rules/spaced-comment +[228]: https://github.com/svengreb/styleguide-javascript/blob/ab59f71f/packages/@svengreb/eslint-config-typescript/index.js#L31-L36 +[229]: https://github.com/svengreb/styleguide-javascript/compare/v0.9.0...v0.10.0 +[230]: https://github.com/svengreb/styleguide-markdown/tree/main/packages/@svengreb/remark-preset-lint +[231]: https://github.com/svengreb/styleguide-markdown/issues/10 +[232]: https://github.com/svengreb/styleguide-markdown/issues/28 +[233]: https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html + + + +[234]: https://codesandbox.io/s/jvvkoo8pq3 +[235]: https://eslint.org/docs/latest/rules/no-void +[236]: https://eslint.org/docs/latest/rules/no-void#allowasstatement +[237]: https://github.com/svengreb/styleguide-javascript/compare/v0.10.0...v0.11.0 +[238]: https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/no-floating-promises.md +[239]: https://github.com/typescript-eslint/typescript-eslint/issues/1184 +[240]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/void +[241]: https://react.dev/reference/react/useEffect#fetching-data-with-effects +[242]: https://react.dev/reference/react/useEffect diff --git a/LICENSE b/license similarity index 84% rename from LICENSE rename to license index a9aae83..996f8fb 100644 --- a/LICENSE +++ b/license @@ -1,7 +1,6 @@ -MIT License +MIT License (MIT) -Copyright (c) 2018-present Arctic Ice Studio (https://www.arcticicestudio.com) -Copyright (c) 2018-present Sven Greb (https://www.svengreb.de) +Copyright (c) 2016-present Sven Greb (https://www.svengreb.de) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/lint-staged.config.js b/lint-staged.config.js index 7ffb8a0..d8b743f 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -1,16 +1,15 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Configurations for lint-staged. - * * @see https://github.com/okonet/lint-staged#configuration */ module.exports = { - "*.{css,html,js,json,yaml,yml}": "prettier --check", - "*.js": ["eslint", "prettier --check"], - "*.md": ["remark --no-stdout", "prettier --check"], + "*.{json,yaml}": "prettier --check --ignore-unknown --no-editorconfig", + "*.{js,mjs}": ["eslint", "prettier --check --ignore-unknown --no-editorconfig"], + "*.md": ["remark --no-stdout", "prettier --check --ignore-unknown --no-editorconfig"], + ".husky/pre-*": "prettier --check --ignore-unknown --no-editorconfig", }; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..cb12026 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,8886 @@ +{ + "name": "@svengreb/styleguide-javascript", + "version": "0.11.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@svengreb/styleguide-javascript", + "version": "0.11.0", + "license": "MIT", + "workspaces": [ + "packages/@svengreb/*" + ], + "devDependencies": { + "@arcticicestudio/remark-preset-lint": ">=0.4.0 <1.0.0", + "eslint": "7.32.0", + "eslint-config-prettier": "8.8.0", + "eslint-plugin-import": "2.27.5", + "eslint-plugin-prettier": "3.4.1", + "husky": "8.0.3", + "lint-staged": "13.2.1", + "npm-run-all": "4.1.5", + "prettier": "2.8.8", + "prettier-plugin-sh": "0.12.8", + "remark-cli": "11.0.0" + }, + "engines": { + "node": ">=15.13", + "npm": ">=7.7" + } + }, + "node_modules/@arcticicestudio/remark-preset-lint": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@arcticicestudio/remark-preset-lint/-/remark-preset-lint-0.4.0.tgz", + "integrity": "sha512-Gw0CBqNqmDj3jr1EZqx5K4EV1N152xmcYqLsxNrSwmKQmkMh64CO5i+89zaYxH2c59GJ1Nt/4bGxS/CU/UvuWw==", + "deprecated": "Please migrate to the @svengreb/remark-preset-lint package", + "dev": true, + "dependencies": { + "remark-footnotes": "^3.0.0", + "remark-frontmatter": "^3.0.0", + "remark-gfm": "^1.0.0", + "remark-lint": "^8.0.0", + "remark-lint-blockquote-indentation": "^2.0.1", + "remark-lint-checkbox-character-style": "^3.0.0", + "remark-lint-checkbox-content-indent": "^3.0.0", + "remark-lint-code-block-style": "^2.0.1", + "remark-lint-definition-case": "^2.0.1", + "remark-lint-definition-spacing": "^2.0.1", + "remark-lint-emphasis-marker": "^2.0.1", + "remark-lint-fenced-code-flag": "^2.0.1", + "remark-lint-fenced-code-marker": "^2.0.1", + "remark-lint-file-extension": "^1.0.5", + "remark-lint-final-definition": "^2.1.0", + "remark-lint-final-newline": "^1.0.5", + "remark-lint-first-heading-level": "^2.0.1", + "remark-lint-hard-break-spaces": "^2.0.1", + "remark-lint-heading-increment": "^2.0.1", + "remark-lint-heading-style": "^2.0.1", + "remark-lint-linebreak-style": "^2.0.1", + "remark-lint-link-title-style": "^2.0.1", + "remark-lint-list-item-bullet-indent": "^3.0.0", + "remark-lint-list-item-content-indent": "^2.0.1", + "remark-lint-list-item-indent": "^2.0.1", + "remark-lint-list-item-spacing": "^3.0.0", + "remark-lint-maximum-heading-length": "^2.0.1", + "remark-lint-maximum-line-length": "^2.0.3", + "remark-lint-no-auto-link-without-protocol": "^2.0.1", + "remark-lint-no-blockquote-without-marker": "^4.0.0", + "remark-lint-no-consecutive-blank-lines": "^3.0.0", + "remark-lint-no-duplicate-defined-urls": "^1.0.1", + "remark-lint-no-duplicate-definitions": "^2.0.1", + "remark-lint-no-duplicate-headings": "^2.0.1", + "remark-lint-no-duplicate-headings-in-section": "^2.0.2", + "remark-lint-no-emphasis-as-heading": "^2.0.1", + "remark-lint-no-empty-url": "^2.0.1", + "remark-lint-no-file-name-articles": "^1.0.5", + "remark-lint-no-file-name-consecutive-dashes": "^1.0.5", + "remark-lint-no-file-name-irregular-characters": "^1.0.5", + "remark-lint-no-file-name-mixed-case": "^1.0.5", + "remark-lint-no-file-name-outer-dashes": "^1.0.6", + "remark-lint-no-heading-content-indent": "^3.0.0", + "remark-lint-no-heading-indent": "^3.0.0", + "remark-lint-no-heading-like-paragraph": "^2.0.1", + "remark-lint-no-heading-punctuation": "^2.0.1", + "remark-lint-no-html": "^2.0.1", + "remark-lint-no-inline-padding": "^3.0.0", + "remark-lint-no-literal-urls": "^2.0.1", + "remark-lint-no-missing-blank-lines": "^2.0.1", + "remark-lint-no-multiple-toplevel-headings": "^2.0.1", + "remark-lint-no-paragraph-content-indent": "^3.0.0", + "remark-lint-no-reference-like-url": "^2.0.1", + "remark-lint-no-shell-dollars": "^2.0.2", + "remark-lint-no-shortcut-reference-image": "^2.0.1", + "remark-lint-no-shortcut-reference-link": "^2.0.1", + "remark-lint-no-table-indentation": "^3.0.0", + "remark-lint-no-tabs": "^2.0.1", + "remark-lint-no-undefined-references": "^3.0.0", + "remark-lint-no-unneeded-full-reference-image": "^2.0.1", + "remark-lint-no-unneeded-full-reference-link": "^2.0.1", + "remark-lint-no-unused-definitions": "^2.0.1", + "remark-lint-ordered-list-marker-style": "^2.0.1", + "remark-lint-ordered-list-marker-value": "^2.0.1", + "remark-lint-rule-style": "^2.0.1", + "remark-lint-strong-marker": "^2.0.1", + "remark-lint-table-cell-padding": "^3.0.0", + "remark-lint-table-pipe-alignment": "^2.0.1", + "remark-lint-table-pipes": "^3.0.0", + "remark-lint-unordered-list-marker-style": "^2.0.1" + }, + "peerDependencies": { + "remark-cli": "^9.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/runtime": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", + "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/config": { + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/@npmcli/config/-/config-6.1.6.tgz", + "integrity": "sha512-TM5dwgaz3Un2T5rdHQ6lX+Jj3TQxK6aV1U5OLByZiUS5qnA0NgC6U0aSESQVy80emToz8dtX3aniXD24wRnBaw==", + "dev": true, + "dependencies": { + "@npmcli/map-workspaces": "^3.0.2", + "ini": "^4.1.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.5", + "walk-up-path": "^3.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/map-workspaces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-3.0.3.tgz", + "integrity": "sha512-HlCvFuTzw4UNoKyZdqiNrln+qMF71QJkxy2dsusV8QQdoa89e2TF4dATCzBxbl4zzRzdDoWWyP5ADVrNAH9cRQ==", + "dev": true, + "dependencies": { + "@npmcli/name-from-folder": "^2.0.0", + "glob": "^9.3.1", + "minimatch": "^7.4.2", + "read-package-json-fast": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/map-workspaces/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@npmcli/map-workspaces/node_modules/glob": { + "version": "9.3.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz", + "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "minimatch": "^8.0.2", + "minipass": "^4.2.4", + "path-scurry": "^1.6.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@npmcli/map-workspaces/node_modules/glob/node_modules/minimatch": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", + "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@npmcli/map-workspaces/node_modules/minimatch": { + "version": "7.4.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", + "integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@npmcli/name-from-folder": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/name-from-folder/-/name-from-folder-2.0.0.tgz", + "integrity": "sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@pkgr/utils": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", + "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "is-glob": "^4.0.3", + "open": "^8.4.0", + "picocolors": "^1.0.0", + "tiny-glob": "^0.2.9", + "tslib": "^2.4.0" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/@svengreb/eslint-config": { + "resolved": "packages/@svengreb/eslint-config", + "link": true + }, + "node_modules/@svengreb/eslint-config-base": { + "resolved": "packages/@svengreb/eslint-config-base", + "link": true + }, + "node_modules/@svengreb/eslint-config-typescript": { + "resolved": "packages/@svengreb/eslint-config-typescript", + "link": true + }, + "node_modules/@types/concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-t3YCerNM7NTVjLuICZo5gYAXYoDvpuuTceCcFQWcDQz26kxUR5uIWolxbIR5jRNIXpMqhOpW/b8imCR1LEmuJw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/debug": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", + "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", + "dev": true, + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/is-empty": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@types/is-empty/-/is-empty-1.2.1.tgz", + "integrity": "sha512-a3xgqnFTuNJDm1fjsTjHocYJ40Cz3t8utYpi5GNaxzrJC2HSD08ym+whIL7fNqiqBCdM9bcqD1H/tORWAFXoZw==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/mdast": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.11.tgz", + "integrity": "sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==", + "dev": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/ms": { + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", + "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "18.16.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.1.tgz", + "integrity": "sha512-DZxSZWXxFfOlx7k7Rv4LAyiMroaxa3Ly/7OOzZO8cBNho0YzAi4qlbrx8W27JGqG57IgR/6J7r+nOJWw6kcvZA==", + "dev": true + }, + "node_modules/@types/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-dPWnWsf+kzIG140B8z2w3fr5D03TLWbOAFQl45xUpI3vcizeXriNR5VYkWZ+WTMsUHqZ9Xlt3hrxGNANFyNQfw==", + "dev": true + }, + "node_modules/@types/text-table": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@types/text-table/-/text-table-0.2.2.tgz", + "integrity": "sha512-dGoI5Af7To0R2XE8wJuc6vwlavWARsCh3UKJPjWs1YEqGUqfgBI/j/4GX0yf19/DsDPPf0YAXWAp8psNeIehLg==", + "dev": true + }, + "node_modules/@types/unist": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", + "dev": true + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", + "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", + "dev": true, + "dependencies": { + "@typescript-eslint/experimental-utils": "4.33.0", + "@typescript-eslint/scope-manager": "4.33.0", + "debug": "^4.3.1", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.1.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^4.0.0", + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", + "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", + "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "debug": "^4.3.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", + "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", + "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", + "dev": true, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", + "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", + "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/abbrev": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", + "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dev": true, + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "dev": true + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "dev": true, + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz", + "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ccount": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz", + "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "dev": true, + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/cli-truncate/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "dev": true, + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/co": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/co/-/co-3.1.0.tgz", + "integrity": "sha512-CQsjCRiNObI8AtTsNIBDRMQ4oMR83CzEswHYahClvul7gKk+lDQiOKv+5qh7LQWf5sh6jkZNispz/QlsZxyNgA==", + "dev": true + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collapse-white-space": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz", + "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "dev": true, + "engines": [ + "node >= 6.0" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-named-character-reference": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", + "dev": true, + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/decode-named-character-reference/node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/deep-equal": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", + "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.0", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dev": true, + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/diff": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", + "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "dependencies": { + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.21.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", + "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.0", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", + "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-find-rules": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/eslint-find-rules/-/eslint-find-rules-3.6.1.tgz", + "integrity": "sha512-GvXdZwdjvgeBXfW3rw8pcUNdGlay8hqTo0SgYi2siY+o+dOppgejSEwYezk2B8s+nZFaaOAzZVlmn8l6wkmhUA==", + "dev": true, + "dependencies": { + "@eslint/eslintrc": "^0.1.3", + "cliui": "^3.2.0", + "eslint-rule-documentation": "^1.0.23", + "glob": "^7.1.6", + "path-is-absolute": "^1.0.1", + "which": "^1.3.1", + "window-size": "^0.3.0", + "yargs": "^8.0.2" + }, + "bin": { + "eslint-diff-rules": "dist/bin/diff.js", + "eslint-find-rules": "dist/bin/find.js" + }, + "peerDependencies": { + "eslint": "^3.12.0 || ^4 || ^5 || ^6 || ^7" + } + }, + "node_modules/eslint-find-rules/node_modules/@eslint/eslintrc": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.1.3.tgz", + "integrity": "sha512-4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/eslint-find-rules/node_modules/globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, + "dependencies": { + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-find-rules/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/eslint-find-rules/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-find-rules/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz", + "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0" + }, + "engines": { + "node": ">=6.0.0" + }, + "peerDependencies": { + "eslint": ">=5.0.0", + "prettier": ">=1.13.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "dev": true, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dev": true, + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-rule-documentation": { + "version": "1.0.23", + "resolved": "https://registry.npmjs.org/eslint-rule-documentation/-/eslint-rule-documentation-1.0.23.tgz", + "integrity": "sha512-pWReu3fkohwyvztx/oQWWgld2iad25TfUdi6wvhhaDPIQjHU/pyvlKgXFw1kX31SQK2Nq9MH+vRDWB0ZLy8fYw==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", + "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fault": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz", + "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==", + "dev": true, + "dependencies": { + "format": "^0.2.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/format": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", + "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "node_modules/get-intrinsic": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globalyzer": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", + "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", + "dev": true + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globrex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", + "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", + "dev": true + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true, + "bin": { + "husky": "lib/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-meta-resolve": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-2.2.2.tgz", + "integrity": "sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.0.tgz", + "integrity": "sha512-HLR38RSF2iulAzc3I/sma4CoYxQP844rPYCNfzGDOHqa/YqVlwuuZgBx6M50/X8dKgzk0cm1qRg3+47mK2N+cQ==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dev": true, + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", + "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-empty": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-empty/-/is-empty-1.2.0.tgz", + "integrity": "sha512-F2FnH/otLNJv0J6wc73A5Xo7oHLNnqplYqZhUu01tD54DIPvxIRSTSLkrUB/M0nHO4vo1O9PDfN4KoTxCzLh/w==", + "dev": true + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", + "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "dev": true + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "dev": true, + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", + "dev": true, + "dependencies": { + "invert-kv": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", + "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/lint-staged": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.1.tgz", + "integrity": "sha512-8gfzinVXoPfga5Dz/ZOn8I2GOhf81Wvs+KwbEXQn/oWZAvCVS2PivrXfVbFJc93zD16uC0neS47RXHIjXKYZQw==", + "dev": true, + "dependencies": { + "chalk": "5.2.0", + "cli-truncate": "^3.1.0", + "commander": "^10.0.0", + "debug": "^4.3.4", + "execa": "^7.0.0", + "lilconfig": "2.1.0", + "listr2": "^5.0.7", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-inspect": "^1.12.3", + "pidtree": "^0.6.0", + "string-argv": "^0.3.1", + "yaml": "^2.2.1" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" + }, + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" + } + }, + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", + "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/listr2": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", + "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", + "dev": true, + "dependencies": { + "cli-truncate": "^2.1.0", + "colorette": "^2.0.19", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.8.0", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + }, + "peerDependenciesMeta": { + "enquirer": { + "optional": true + } + } + }, + "node_modules/listr2/node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/listr2/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/listr2/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr2/node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr2/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr2/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-plugin": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/load-plugin/-/load-plugin-5.1.0.tgz", + "integrity": "sha512-Lg1CZa1CFj2CbNaxijTL6PCbzd4qGTlZov+iH2p5Xwy/ApcZJh+i6jMN2cYePouTfjJfrNu3nXFdEw8LvbjPFQ==", + "dev": true, + "dependencies": { + "@npmcli/config": "^6.0.0", + "import-meta-resolve": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "dev": true + }, + "node_modules/log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-update/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/log-update/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/markdown-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz", + "integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==", + "dev": true, + "dependencies": { + "repeat-string": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-comment-marker": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/mdast-comment-marker/-/mdast-comment-marker-1.1.2.tgz", + "integrity": "sha512-vTFXtmbbF3rgnTh3Zl3irso4LtvwUq/jaDvT2D1JqTGAwaipcS7RpTxzi6KjoRqI9n2yuAhzLDAC8xVTF3XYVQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-1.1.1.tgz", + "integrity": "sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^4.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-footnote": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/mdast-util-footnote/-/mdast-util-footnote-0.1.7.tgz", + "integrity": "sha512-QxNdO8qSxqbO2e3m09KwDKfWiLgqyCurdWTQ198NpbZ2hxntdc+VKS4fDJCmNWbAroUdYnSthu+XbZ8ovh8C3w==", + "dev": true, + "dependencies": { + "mdast-util-to-markdown": "^0.6.0", + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz", + "integrity": "sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "mdast-util-to-string": "^3.1.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-decode-string": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown/node_modules/micromark": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz", + "integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "node_modules/mdast-util-from-markdown/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-frontmatter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-0.2.0.tgz", + "integrity": "sha512-FHKL4w4S5fdt1KjJCwB0178WJ0evnyyQr5kXTM3wrOVpytD0hrkvd+AOOjU9Td8onOejCkmZ+HQRT3CZ3coHHQ==", + "dev": true, + "dependencies": { + "micromark-extension-frontmatter": "^0.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-0.1.2.tgz", + "integrity": "sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==", + "dev": true, + "dependencies": { + "mdast-util-gfm-autolink-literal": "^0.1.0", + "mdast-util-gfm-strikethrough": "^0.2.0", + "mdast-util-gfm-table": "^0.1.0", + "mdast-util-gfm-task-list-item": "^0.1.0", + "mdast-util-to-markdown": "^0.6.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-0.1.3.tgz", + "integrity": "sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==", + "dev": true, + "dependencies": { + "ccount": "^1.0.0", + "mdast-util-find-and-replace": "^1.1.0", + "micromark": "^2.11.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-0.2.3.tgz", + "integrity": "sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==", + "dev": true, + "dependencies": { + "mdast-util-to-markdown": "^0.6.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-0.1.6.tgz", + "integrity": "sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==", + "dev": true, + "dependencies": { + "markdown-table": "^2.0.0", + "mdast-util-to-markdown": "~0.6.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-0.1.6.tgz", + "integrity": "sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==", + "dev": true, + "dependencies": { + "mdast-util-to-markdown": "~0.6.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-heading-style": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/mdast-util-heading-style/-/mdast-util-heading-style-1.0.6.tgz", + "integrity": "sha512-8ZuuegRqS0KESgjAGW8zTx4tJ3VNIiIaGFNEzFpRSAQBavVc7AvOo9I4g3crcZBfYisHs4seYh0rAVimO6HyOw==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", + "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mem": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz", + "integrity": "sha512-nOBDrc/wgpkd3X/JOhMqYR+/eLqlfLP4oQfoBA6QExIxEl+GU01oyEkwWyueyO8110pUKijtiHGhEmYoOn88oQ==", + "dev": true, + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mem/node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "dev": true, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz", + "integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-html-tag-name": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-extension-footnote": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/micromark-extension-footnote/-/micromark-extension-footnote-0.3.2.tgz", + "integrity": "sha512-gr/BeIxbIWQoUm02cIfK7mdMZ/fbroRpLsck4kvFtjbzP4yi+OPVbnukTc/zy0i7spC2xYE/dbX1Sur8BEDJsQ==", + "dev": true, + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-frontmatter": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-0.2.2.tgz", + "integrity": "sha512-q6nPLFCMTLtfsctAuS0Xh4vaolxSFUWUWR6PZSrXXiRy+SANGllpcqdXFv2z07l0Xz/6Hl40hK0ffNCJPH2n1A==", + "dev": true, + "dependencies": { + "fault": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-0.3.3.tgz", + "integrity": "sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==", + "dev": true, + "dependencies": { + "micromark": "~2.11.0", + "micromark-extension-gfm-autolink-literal": "~0.5.0", + "micromark-extension-gfm-strikethrough": "~0.6.5", + "micromark-extension-gfm-table": "~0.4.0", + "micromark-extension-gfm-tagfilter": "~0.3.0", + "micromark-extension-gfm-task-list-item": "~0.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-0.5.7.tgz", + "integrity": "sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==", + "dev": true, + "dependencies": { + "micromark": "~2.11.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-0.6.5.tgz", + "integrity": "sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==", + "dev": true, + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-0.4.3.tgz", + "integrity": "sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==", + "dev": true, + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-0.3.0.tgz", + "integrity": "sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-0.3.3.tgz", + "integrity": "sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==", + "dev": true, + "dependencies": { + "micromark": "~2.11.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-factory-destination": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz", + "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz", + "integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz", + "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz", + "integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz", + "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz", + "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz", + "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz", + "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz", + "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz", + "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz", + "integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz", + "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-html-tag-name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz", + "integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz", + "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz", + "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz", + "integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz", + "integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz", + "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-types": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz", + "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz", + "integrity": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/mvdan-sh": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/mvdan-sh/-/mvdan-sh-0.10.1.tgz", + "integrity": "sha512-kMbrH0EObaKmK3nVRKUIIya1dpASHIEusM13S4V1ViHFuxuNxCo+arxoa6j/dbV22YBGjl7UKJm9QQKJ2Crzhg==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/nopt": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.1.0.tgz", + "integrity": "sha512-ZFPLe9Iu0tnx7oWhFxAo4s7QTn8+NNDDxYNaKLjE7Dp0tbakQ3M1QhQzsnzXHQBTUO3K9BmwaxnyO8Ayn2I95Q==", + "dev": true, + "dependencies": { + "abbrev": "^2.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-normalize-package-bin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.0.tgz", + "integrity": "sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm-run-all": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", + "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "pidtree": "^0.3.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" + }, + "bin": { + "npm-run-all": "bin/npm-run-all/index.js", + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm-run-all/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/npm-run-all/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/npm-run-all/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/npm-run-all/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/npm-run-all/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/pidtree": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", + "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", + "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/npm-run-all/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-run-all/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/os-locale": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", + "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", + "dev": true, + "dependencies": { + "execa": "^0.7.0", + "lcid": "^1.0.0", + "mem": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-locale/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/os-locale/node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "dev": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-locale/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-locale/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-locale/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/os-locale/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-locale/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-locale/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-locale/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-locale/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/os-locale/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dev": true, + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.7.0.tgz", + "integrity": "sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg==", + "dev": true, + "dependencies": { + "lru-cache": "^9.0.0", + "minipass": "^5.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.1.tgz", + "integrity": "sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/path-scurry/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/prettier-plugin-sh": { + "version": "0.12.8", + "resolved": "https://registry.npmjs.org/prettier-plugin-sh/-/prettier-plugin-sh-0.12.8.tgz", + "integrity": "sha512-VOq8h2Gn5UzrCIKm4p/nAScXJbN09HdyFDknAcxt6Qu/tv/juu9bahxSrcnM9XWYA+Spz1F1ANJ4LhfwB7+Q1Q==", + "dev": true, + "dependencies": { + "mvdan-sh": "^0.10.1", + "sh-syntax": "^0.3.6", + "synckit": "^0.8.1" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + }, + "peerDependencies": { + "prettier": "^2.0.0" + } + }, + "node_modules/proc-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", + "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true + }, + "node_modules/read-package-json-fast": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", + "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", + "dev": true, + "dependencies": { + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==", + "dev": true, + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dev": true, + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==", + "dev": true, + "dependencies": { + "pify": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==", + "dev": true, + "dependencies": { + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/remark": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/remark/-/remark-14.0.2.tgz", + "integrity": "sha512-A3ARm2V4BgiRXaUo5K0dRvJ1lbogrbXnhkJRmD0yw092/Yl0kOCZt1k9ZeElEwkZsWGsMumz6qL5MfNJH9nOBA==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "remark-parse": "^10.0.0", + "remark-stringify": "^10.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-cli": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-cli/-/remark-cli-11.0.0.tgz", + "integrity": "sha512-8JEWwArXquRq1/In4Ftz7gSG9Scwb1ijT2/dEuBETW9omqhmMRxcfjZ3iKqrak3BnCJeZSXCdWEmPhFKC8+RUQ==", + "dev": true, + "dependencies": { + "remark": "^14.0.0", + "unified-args": "^10.0.0" + }, + "bin": { + "remark": "cli.js" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-footnotes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-3.0.0.tgz", + "integrity": "sha512-ZssAvH9FjGYlJ/PBVKdSmfyPc3Cz4rTWgZLI4iE/SX8Nt5l3o3oEjv3wwG5VD7xOjktzdwp5coac+kJV9l4jgg==", + "dev": true, + "dependencies": { + "mdast-util-footnote": "^0.1.0", + "micromark-extension-footnote": "^0.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-frontmatter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-3.0.0.tgz", + "integrity": "sha512-mSuDd3svCHs+2PyO29h7iijIZx4plX0fheacJcAoYAASfgzgVIcXGYSq9GFyYocFLftQs8IOmmkgtOovs6d4oA==", + "dev": true, + "dependencies": { + "mdast-util-frontmatter": "^0.2.0", + "micromark-extension-frontmatter": "^0.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-gfm": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-1.0.0.tgz", + "integrity": "sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==", + "dev": true, + "dependencies": { + "mdast-util-gfm": "^0.1.0", + "micromark-extension-gfm": "^0.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/remark-lint/-/remark-lint-8.0.0.tgz", + "integrity": "sha512-ESI8qJQ/TIRjABDnqoFsTiZntu+FRifZ5fJ77yX63eIDijl/arvmDvT+tAf75/Nm5BFL4R2JFUtkHRGVjzYUsg==", + "dev": true, + "dependencies": { + "remark-message-control": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-blockquote-indentation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-blockquote-indentation/-/remark-lint-blockquote-indentation-2.0.1.tgz", + "integrity": "sha512-uJ9az/Ms9AapnkWpLSCJfawBfnBI2Tn1yUsPNqIFv6YM98ymetItUMyP6ng9NFPqDvTQBbiarulkgoEo0wcafQ==", + "dev": true, + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-blockquote-indentation/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-checkbox-character-style": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-checkbox-character-style/-/remark-lint-checkbox-character-style-3.0.0.tgz", + "integrity": "sha512-691OJ5RdBRXVpvnOEiBhMB4uhHJSHVttw83O4qyAkNBiqxa1Axqhsz8FgmzYgRLQbOGd2ncVUcXG1LOJt6C0DQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-checkbox-content-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-checkbox-content-indent/-/remark-lint-checkbox-content-indent-3.0.0.tgz", + "integrity": "sha512-+T4+hoY85qZE2drD2rCe14vF7fAgD3Kv2fkFd1HRvv3M5Riy148w/4YeoBI5U5BpybGTVUeEUYLCeJ8zbJLjkw==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-code-block-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-code-block-style/-/remark-lint-code-block-style-2.0.1.tgz", + "integrity": "sha512-eRhmnColmSxJhO61GHZkvO67SpHDshVxs2j3+Zoc5Y1a4zQT2133ZAij04XKaBFfsVLjhbY/+YOWxgvtjx2nmA==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-definition-case": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-definition-case/-/remark-lint-definition-case-2.0.1.tgz", + "integrity": "sha512-M+XlThtQwEJLQnQb5Gi6xZdkw92rGp7m2ux58WMw/Qlcg02WgHR/O0OcHPe5VO5hMJrtI+cGG5T0svsCgRZd3w==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-definition-spacing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-definition-spacing/-/remark-lint-definition-spacing-2.0.1.tgz", + "integrity": "sha512-xK9DOQO5MudITD189VyUiMHBIKltW1oc55L7Fti3i9DedXoBG7Phm+V9Mm7IdWzCVkquZVgVk63xQdqzSQRrSQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-emphasis-marker": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-emphasis-marker/-/remark-lint-emphasis-marker-2.0.1.tgz", + "integrity": "sha512-7mpbAUrSnHiWRyGkbXRL5kfSKY9Cs8cdob7Fw+Z02/pufXMF4yRWaegJ5NTUu1RE+SKlF44wtWWjvcIoyY6/aw==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-fenced-code-flag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-fenced-code-flag/-/remark-lint-fenced-code-flag-2.0.1.tgz", + "integrity": "sha512-+COnWHlS/h02FMxoZWxNlZW3Y8M0cQQpmx3aNCbG7xkyMyCKsMLg9EmRvYHHIbxQCuF3JT0WWx5AySqlc7d+NA==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-fenced-code-marker": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-fenced-code-marker/-/remark-lint-fenced-code-marker-2.0.1.tgz", + "integrity": "sha512-lujpjm04enn3ma6lITlttadld6eQ1OWAEcT3qZzvFHp+zPraC0yr0eXlvtDN/0UH8mrln/QmGiZp3i8IdbucZg==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-file-extension": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-file-extension/-/remark-lint-file-extension-1.0.5.tgz", + "integrity": "sha512-oVQdf5vEomwHkfQ7R/mgmsWW2H/t9kSvnrxtVoNOHr+qnOEafKKDn+AFhioN2kqtjCZBAjSSrePs6xGKmXKDTw==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-final-definition": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/remark-lint-final-definition/-/remark-lint-final-definition-2.1.0.tgz", + "integrity": "sha512-83K7n2icOHPfBzbR5Mr1o7cu8gOjD8FwJkFx/ly+rW+8SHfjCj4D3WOFGQ1xVdmHjfomBDXXDSNo2oiacADVXQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-final-newline": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-final-newline/-/remark-lint-final-newline-1.0.5.tgz", + "integrity": "sha512-rfLlW8+Fz2dqnaEgU4JwLA55CQF1T4mfSs/GwkkeUCGPenvEYwSkCN2KO2Gr1dy8qPoOdTFE1rSufLjmeTW5HA==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-first-heading-level": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-first-heading-level/-/remark-lint-first-heading-level-2.0.1.tgz", + "integrity": "sha512-XoK/eLfnz1VSA8QkfMbdbvlCqOwgw29MAWEGC4Cv0666nTcY9uWHlZ/SV/20YNmuEVdfCA+92v92mM486qcASQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-hard-break-spaces": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-hard-break-spaces/-/remark-lint-hard-break-spaces-2.0.1.tgz", + "integrity": "sha512-Qfn/BMQFamHhtbfLrL8Co/dbYJFLRL4PGVXZ5wumkUO5f9FkZC2RsV+MD9lisvGTkJK0ZEJrVVeaPbUIFM0OAw==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-heading-increment": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-heading-increment/-/remark-lint-heading-increment-2.0.1.tgz", + "integrity": "sha512-bYDRmv/lk3nuWXs2VSD1B4FneGT6v7a74FuVmb305hyEMmFSnneJvVgnOJxyKlbNlz12pq1IQ6MhlJBda/SFtQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-heading-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-heading-style/-/remark-lint-heading-style-2.0.1.tgz", + "integrity": "sha512-IrFLNs0M5Vbn9qg51AYhGUfzgLAcDOjh2hFGMz3mx664dV6zLcNZOPSdJBBJq3JQR4gKpoXcNwN1+FFaIATj+A==", + "dev": true, + "dependencies": { + "mdast-util-heading-style": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-linebreak-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-linebreak-style/-/remark-lint-linebreak-style-2.0.1.tgz", + "integrity": "sha512-4xp3uqJVGvIjCxM3xrTuLRZ8xYM0PZGsvRTCU10t5HYNljPCRSdtY/x98qohEAwS0uleINXz5zpZZT4FGktQnQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-link-title-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-link-title-style/-/remark-lint-link-title-style-2.0.1.tgz", + "integrity": "sha512-+Q7Ew8qpOQzjqbDF6sUHmn9mKgje+m2Ho8Xz7cEnGIRaKJgtJzkn/dZqQM/az0gn3zaN6rOuwTwqw4EsT5EsIg==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-bullet-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-list-item-bullet-indent/-/remark-lint-list-item-bullet-indent-3.0.0.tgz", + "integrity": "sha512-X2rleWP8XReC4LXKF7Qi5vYiPJkA4Grx5zxsjHofFrVRz6j0PYOCuz7vsO+ZzMunFMfom6FODnscSWz4zouDVw==", + "dev": true, + "dependencies": { + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-content-indent": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-list-item-content-indent/-/remark-lint-list-item-content-indent-2.0.1.tgz", + "integrity": "sha512-OzUMqavxyptAdG7vWvBSMc9mLW9ZlTjbW4XGayzczd3KIr6Uwp3NEFXKx6MLtYIM/vwBqMrPQUrObOC7A2uBpQ==", + "dev": true, + "dependencies": { + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-indent": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-list-item-indent/-/remark-lint-list-item-indent-2.0.1.tgz", + "integrity": "sha512-4IKbA9GA14Q9PzKSQI6KEHU/UGO36CSQEjaDIhmb9UOhyhuzz4vWhnSIsxyI73n9nl9GGRAMNUSGzr4pQUFwTA==", + "dev": true, + "dependencies": { + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-list-item-spacing": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-list-item-spacing/-/remark-lint-list-item-spacing-3.0.0.tgz", + "integrity": "sha512-SRUVonwdN3GOSFb6oIYs4IfJxIVR+rD0nynkX66qEO49/qDDT1PPvkndis6Nyew5+t+2V/Db9vqllL6SWbnEtw==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-heading-length": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-maximum-heading-length/-/remark-lint-maximum-heading-length-2.0.1.tgz", + "integrity": "sha512-1CjJ71YDqEpoOjUnc4wrwZV8ZGXWUIYRYeGoarAy3QKHepJL9M+zkdbOxZDfhc3tjVoDW/LWcgsW+DEpczgiMA==", + "dev": true, + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-heading-length/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-maximum-line-length": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/remark-lint-maximum-line-length/-/remark-lint-maximum-line-length-2.0.3.tgz", + "integrity": "sha512-zyWHBFh1oPAy+gkaVFXiTHYP2WwriIeBtaarDqkweytw0+qmuikjVMJTWbQ3+XfYBreD7KKDM9SI79nkp0/IZQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-auto-link-without-protocol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-auto-link-without-protocol/-/remark-lint-no-auto-link-without-protocol-2.0.1.tgz", + "integrity": "sha512-TFcXxzucsfBb/5uMqGF1rQA+WJJqm1ZlYQXyvJEXigEZ8EAxsxZGPb/gOQARHl/y0vymAuYxMTaChavPKaBqpQ==", + "dev": true, + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-auto-link-without-protocol/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-blockquote-without-marker": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-4.0.0.tgz", + "integrity": "sha512-Y59fMqdygRVFLk1gpx2Qhhaw5IKOR9T38Wf7pjR07bEFBGUNfcoNVIFMd1TCJfCPQxUyJzzSqfZz/KT7KdUuiQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-consecutive-blank-lines": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-consecutive-blank-lines/-/remark-lint-no-consecutive-blank-lines-3.0.0.tgz", + "integrity": "sha512-kmzLlOLrapBKEngwYFTdCZDmeOaze6adFPB7G0EdymD9V1mpAlnneINuOshRLEDKK5fAhXKiZXxdGIaMPkiXrA==", + "dev": true, + "dependencies": { + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-defined-urls": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-duplicate-defined-urls/-/remark-lint-no-duplicate-defined-urls-1.0.1.tgz", + "integrity": "sha512-fUx4grm0oboxl+uwsHsRQGp3A929ujORrFoB/5eIyMDslxrgMTHKYf9ylxcC5yBRypkZi9AhFWBJ/wtVrxYEAg==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-stringify-position": "^2.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-definitions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-duplicate-definitions/-/remark-lint-no-duplicate-definitions-2.0.1.tgz", + "integrity": "sha512-XL22benJZB01m+aOse91nsu1IMFqeWJWme9QvoJuxIcBROO1BG1VoqLOkwNcawE/M/0CkvTo5rfx0eMlcnXOIw==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-stringify-position": "^2.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-duplicate-headings/-/remark-lint-no-duplicate-headings-2.0.1.tgz", + "integrity": "sha512-F6AP0FJcHIlkmq0pHX0J5EGvLA9LfhuYTvnNO8y3kvflHeRjFkDyt2foz/taXR8OcLQR51n/jIJiwrrSMbiauw==", + "dev": true, + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-stringify-position": "^2.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings-in-section": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/remark-lint-no-duplicate-headings-in-section/-/remark-lint-no-duplicate-headings-in-section-2.0.2.tgz", + "integrity": "sha512-qtpTAvXgKkzDas7z3H3tzf/SDQIZ6zPEc9CaGZS/qMA2b5ORfQv+EC8NueK4x6+el19kbS6tX23iEnPXVYq1VQ==", + "dev": true, + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-stringify-position": "^2.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings-in-section/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-duplicate-headings/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-emphasis-as-heading": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-emphasis-as-heading/-/remark-lint-no-emphasis-as-heading-2.0.1.tgz", + "integrity": "sha512-z86+yWtVivtuGIxIC4g9RuATbgZgOgyLcnaleonJ7/HdGTYssjJNyqCJweaWSLoaI0akBQdDwmtJahW5iuX3/g==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-empty-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-empty-url/-/remark-lint-no-empty-url-2.0.1.tgz", + "integrity": "sha512-CBO5hgxlHWrnBPex0GfKZy6ORe2wkLrrHODVPUpLplDA72cQbDzQKedHGgh76euGDs+jvP7RO+IljozdLLfSTw==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-file-name-articles": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-articles/-/remark-lint-no-file-name-articles-1.0.5.tgz", + "integrity": "sha512-AQk5eTb3s3TAPPjiglZgqlQj4ycao+gPs8/XkdN1VCPUtewW0GgwoQe7YEuBKayJ6ioN8dGP37Kg/P/PlKaRQA==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-file-name-consecutive-dashes": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-consecutive-dashes/-/remark-lint-no-file-name-consecutive-dashes-1.0.5.tgz", + "integrity": "sha512-Mg2IDsi790/dSdAzwnBnsMYdZm3qC2QgGwqOWcr0TPABJhhjC3p8r5fX4MNMTXI5It7B7bW9+ImmCeLOZiXkLg==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-file-name-irregular-characters": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-irregular-characters/-/remark-lint-no-file-name-irregular-characters-1.0.5.tgz", + "integrity": "sha512-Oe5i99qNUKc2bxmiH421o5B/kqlf1dfjAxpHNLhi2X2dXE91zRGavrlRM/4f4oR0N9Bqb3qB9JZPyMPWrzu9XA==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-file-name-mixed-case": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-mixed-case/-/remark-lint-no-file-name-mixed-case-1.0.5.tgz", + "integrity": "sha512-ilrUCbHZin/ENwr8c3SC2chgkFsizXjBQIB/oZ7gnm1IkCkZPiMyXZAHdpwC/DjbrpGxfMYh9JmIHao4giS5+A==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-file-name-outer-dashes": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-outer-dashes/-/remark-lint-no-file-name-outer-dashes-1.0.6.tgz", + "integrity": "sha512-rT8CmcIlenegS0Yst4maYXdZfqIjBOiRUY8j/KJkORF5tKH+3O1/S07025qPGmcRihzK3w4yO0K8rgkKQw0b9w==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-content-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-heading-content-indent/-/remark-lint-no-heading-content-indent-3.0.0.tgz", + "integrity": "sha512-yULDoVSIqKylLDfW6mVUbrHlyEWUSFtVFiKc+/BA412xDIhm8HZLUnP+FsuBC0OzbIZ+bO9Txy52WtO3LGnK1A==", + "dev": true, + "dependencies": { + "mdast-util-heading-style": "^1.0.2", + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-heading-indent/-/remark-lint-no-heading-indent-3.0.0.tgz", + "integrity": "sha512-b8ImhLv2AnRDxtYUODplzsl/7IwQ+lqRmD1bwbZgSerEP9MLaULW3SjH37EyA6z+8rCDjvEyppKKU6zec0TCjg==", + "dev": true, + "dependencies": { + "pluralize": "^8.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-like-paragraph": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-heading-like-paragraph/-/remark-lint-no-heading-like-paragraph-2.0.1.tgz", + "integrity": "sha512-9JDhpIvs4996PnHF5KUnx8/YN39MvZR0uf+EeVILdJbJ2IUL8BOlGNhMFc0CSmxajtIxobjiS+yzAvLG57pUFw==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-punctuation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-heading-punctuation/-/remark-lint-no-heading-punctuation-2.0.1.tgz", + "integrity": "sha512-lY/eF6GbMeGu4cSuxfGHyvaQQBIq/6T/o+HvAR5UfxSTxmxZFwbZneAI2lbeR1zPcqOU87NsZ5ZZzWVwdLpPBw==", + "dev": true, + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-heading-punctuation/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-html": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-html/-/remark-lint-no-html-2.0.1.tgz", + "integrity": "sha512-fDISacCkZCRgl1MeCx5Fx+eWL0iS2GK1EOETR1yAA0av7LYiF8tUwsP4/iRqcxIT30YoDlYoiNRyprD2eyWsUg==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-inline-padding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-3.0.0.tgz", + "integrity": "sha512-3s9uW3Yux9RFC0xV81MQX3bsYs+UY7nPnRuMxeIxgcVwxQ4E/mTJd9QjXUwBhU9kdPtJ5AalngdmOW2Tgar8Cg==", + "dev": true, + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-inline-padding/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-literal-urls": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-literal-urls/-/remark-lint-no-literal-urls-2.0.1.tgz", + "integrity": "sha512-IDdKtWOMuKVQIlb1CnsgBoyoTcXU3LppelDFAIZePbRPySVHklTtuK57kacgU5grc7gPM04bZV96eliGrRU7Iw==", + "dev": true, + "dependencies": { + "mdast-util-to-string": "^1.0.2", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-literal-urls/node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-missing-blank-lines": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-missing-blank-lines/-/remark-lint-no-missing-blank-lines-2.0.1.tgz", + "integrity": "sha512-gM46JM8NMFj5PG8pkxOQ0AvkRMEX1lD7UO9b/eqUgYQ6OiJaCG8dInogCd++MVSUDpMMf4FF9dksRM/AOiFgIQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-multiple-toplevel-headings": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-multiple-toplevel-headings/-/remark-lint-no-multiple-toplevel-headings-2.0.1.tgz", + "integrity": "sha512-VKSItR6c+u3OsE5pUiSmNusERNyQS9Nnji26ezoQ1uvy06k3RypIjmzQqJ/hCkSiF+hoyC3ibtrrGT8gorzCmQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-stringify-position": "^2.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-paragraph-content-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-paragraph-content-indent/-/remark-lint-no-paragraph-content-indent-3.0.0.tgz", + "integrity": "sha512-breI0QSFAxvs2osc8yAzPqWoi4VfY9ccyV+/WQKOIIU8yTj8swN/kFFqnP7wdeY4O9BSmUJ7bPdWCsmrVworXA==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-reference-like-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-reference-like-url/-/remark-lint-no-reference-like-url-2.0.1.tgz", + "integrity": "sha512-MeZtlimw30Hd74tBQOe5xlKXU9K5EGF6q/rj/VU4vfdwmCWI9LBCarxPmqHYkm7sbD3P7k9g5oB4StmWZYr5pQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shell-dollars": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/remark-lint-no-shell-dollars/-/remark-lint-no-shell-dollars-2.0.2.tgz", + "integrity": "sha512-zhkHZOuyaD3r/TUUkkVqW0OxsR9fnSrAnHIF63nfJoAAUezPOu8D1NBsni6rX8H2DqGbPYkoeWrNsTwiKP0yow==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shortcut-reference-image": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-shortcut-reference-image/-/remark-lint-no-shortcut-reference-image-2.0.1.tgz", + "integrity": "sha512-2jcZBdnN6ecP7u87gkOVFrvICLXIU5OsdWbo160FvS/2v3qqqwF2e/n/e7D9Jd+KTq1mR1gEVVuTqkWWuh3cig==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-shortcut-reference-link": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-shortcut-reference-link/-/remark-lint-no-shortcut-reference-link-2.0.1.tgz", + "integrity": "sha512-pTZbslG412rrwwGQkIboA8wpBvcjmGFmvugIA+UQR+GfFysKtJ5OZMPGJ98/9CYWjw9Z5m0/EktplZ5TjFjqwA==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-table-indentation": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-table-indentation/-/remark-lint-no-table-indentation-3.0.0.tgz", + "integrity": "sha512-+l7GovI6T+3LhnTtz/SmSRyOb6Fxy6tmaObKHrwb/GAebI/4MhFS1LVo3vbiP/RpPYtyQoFbbuXI55hqBG4ibQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-tabs": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-tabs/-/remark-lint-no-tabs-2.0.1.tgz", + "integrity": "sha512-Fy5fMKNA8AsfhRtxyxBnHlGMpDDfns9VSSYv00RiC96qwRD82VhDRM3tYWZRBBxE+j71t6g47x9o/poGC7PThQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-undefined-references": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-no-undefined-references/-/remark-lint-no-undefined-references-3.0.0.tgz", + "integrity": "sha512-0hzaJS9GuzSQVOeeNdJr/s66LRQOzp618xuOQPYWHcJdd+SCaRTyWbjMrTM/cCI5L1sYjgurp410NkIBQ32Vqg==", + "dev": true, + "dependencies": { + "collapse-white-space": "^1.0.4", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.1.0", + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unneeded-full-reference-image": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-unneeded-full-reference-image/-/remark-lint-no-unneeded-full-reference-image-2.0.1.tgz", + "integrity": "sha512-ZqkrW6l/n1EmcGdtzBFoDygG2ehd/Wx46Id9Dagg15oLzwvbhp5mJIXArXU2qGrF82w1hfainCaZzyH/OBJtEg==", + "dev": true, + "dependencies": { + "collapse-white-space": "^1.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unneeded-full-reference-link": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-unneeded-full-reference-link/-/remark-lint-no-unneeded-full-reference-link-2.0.1.tgz", + "integrity": "sha512-OcPQiG6meVpvfydzxkxPdVc8jcXdklQW4gMjY2BevLtVoaIJ+dgNBPazyYHP/0EzpVY2RftD3CZ+5hiLW2rgpA==", + "dev": true, + "dependencies": { + "collapse-white-space": "^1.0.0", + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-no-unused-definitions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-no-unused-definitions/-/remark-lint-no-unused-definitions-2.0.1.tgz", + "integrity": "sha512-+BMc0BOjc364SvKYLkspmxDch8OaKPbnUGgQBvK0Bmlwy42baR4C9zhwAWBxm0SBy5Z4AyM4G4jKpLXPH40Oxg==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-ordered-list-marker-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-ordered-list-marker-style/-/remark-lint-ordered-list-marker-style-2.0.1.tgz", + "integrity": "sha512-Cnpw1Dn9CHn+wBjlyf4qhPciiJroFOEGmyfX008sQ8uGoPZsoBVIJx76usnHklojSONbpjEDcJCjnOvfAcWW1A==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-ordered-list-marker-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-ordered-list-marker-value/-/remark-lint-ordered-list-marker-value-2.0.1.tgz", + "integrity": "sha512-blt9rS7OKxZ2NW8tqojELeyNEwPhhTJGVa+YpUkdEH+KnrdcD7Nzhnj6zfLWOx6jFNZk3jpq5nvLFAPteHaNKg==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-rule-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-rule-style/-/remark-lint-rule-style-2.0.1.tgz", + "integrity": "sha512-hz4Ff9UdlYmtO6Czz99WJavCjqCer7Cav4VopXt+yVIikObw96G5bAuLYcVS7hvMUGqC9ZuM02/Y/iq9n8pkAg==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-strong-marker": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-strong-marker/-/remark-lint-strong-marker-2.0.1.tgz", + "integrity": "sha512-8X2IsW1jZ5FmW9PLfQjkL0OVy/J3xdXLcZrG1GTeQKQ91BrPFyEZqUM2oM6Y4S6LGtxWer+neZkPZNroZoRPBQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-cell-padding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-table-cell-padding/-/remark-lint-table-cell-padding-3.0.0.tgz", + "integrity": "sha512-sEKrbyFZPZpxI39R8/r+CwUrin9YtyRwVn0SQkNQEZWZcIpylK+bvoKIldvLIXQPob+ZxklL0GPVRzotQMwuWQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-pipe-alignment": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-table-pipe-alignment/-/remark-lint-table-pipe-alignment-2.0.1.tgz", + "integrity": "sha512-O89U7bp0ja6uQkT2uQrNB76GaPvFabrHiUGhqEUnld21yEdyj7rgS57kn84lZNSuuvN1Oor6bDyCwWQGzzpoOQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-table-pipes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-lint-table-pipes/-/remark-lint-table-pipes-3.0.0.tgz", + "integrity": "sha512-QPokSazEdl0Y8ayUV9UB0Ggn3Jos/RAQwIo0z1KDGnJlGDiF80Jc6iU9RgDNUOjlpQffSLIfSVxH5VVYF/K3uQ==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-lint-unordered-list-marker-style": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remark-lint-unordered-list-marker-style/-/remark-lint-unordered-list-marker-style-2.0.1.tgz", + "integrity": "sha512-8KIDJNDtgbymEvl3LkrXgdxPMTOndcux3BHhNGB2lU4UnxSpYeHsxcDgirbgU6dqCAfQfvMjPvfYk19QTF9WZA==", + "dev": true, + "dependencies": { + "unified-lint-rule": "^1.0.0", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-message-control": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/remark-message-control/-/remark-message-control-6.0.0.tgz", + "integrity": "sha512-k9bt7BYc3G7YBdmeAhvd3VavrPa/XlKWR3CyHjr4sLO9xJyly8WHHT3Sp+8HPR8lEUv+/sZaffL7IjMLV0f6BA==", + "dev": true, + "dependencies": { + "mdast-comment-marker": "^1.0.0", + "unified-message-control": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz", + "integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-10.0.2.tgz", + "integrity": "sha512-6wV3pvbPvHkbNnWB0wdDvVFHOe1hBRAx1Q/5g/EpH4RppAII6J8Gnwe7VbHuXaoKIF6LAg6ExTel/+kNqSQ7lw==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify/node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-stringify/node_modules/mdast-util-to-markdown": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", + "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^3.0.0", + "mdast-util-to-string": "^3.0.0", + "micromark-util-decode-string": "^1.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/restore-cursor/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/restore-cursor/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "dev": true, + "dependencies": { + "mri": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/sh-syntax": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/sh-syntax/-/sh-syntax-0.3.7.tgz", + "integrity": "sha512-xIB/uRniZ9urxAuXp1Ouh/BKSI1VK8RSqfwGj7cV57HvGrFo3vHdJfv8Tdp/cVcxJgXQTkmHr5mG5rqJW8r4wQ==", + "dev": true, + "dependencies": { + "tslib": "^2.4.0" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/sliced": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz", + "integrity": "sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==", + "dev": true + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", + "dev": true + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "dev": true, + "dependencies": { + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-argv": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", + "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", + "dev": true, + "engines": { + "node": ">=0.6.19" + } + }, + "node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dev": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.padend": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz", + "integrity": "sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/synckit": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", + "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "dev": true, + "dependencies": { + "@pkgr/utils": "^2.3.1", + "tslib": "^2.5.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/table": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", + "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/table/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/table/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/table/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/tiny-glob": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", + "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", + "dev": true, + "dependencies": { + "globalyzer": "0.1.0", + "globrex": "^0.1.2" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/to-vfile": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-7.2.4.tgz", + "integrity": "sha512-2eQ+rJ2qGbyw3senPI0qjuM7aut8IYXK6AEoOWb+fJx/mQYzviTckm1wDjq91QYHAPBTYzmdJXxMFA6Mk14mdw==", + "dev": true, + "dependencies": { + "is-buffer": "^2.0.0", + "vfile": "^5.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/trough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", + "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", + "dev": true + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified-args": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/unified-args/-/unified-args-10.0.0.tgz", + "integrity": "sha512-PqsqxwkXpGSLiMkbjNnKU33Ffm6gso6rAvz1TlBGzMBx3gpx7ewIhViBX8HEWmy0v7pebA5PM6RkRWWaYmtfYw==", + "dev": true, + "dependencies": { + "@types/text-table": "^0.2.0", + "camelcase": "^7.0.0", + "chalk": "^5.0.0", + "chokidar": "^3.0.0", + "fault": "^2.0.0", + "json5": "^2.0.0", + "minimist": "^1.0.0", + "text-table": "^0.2.0", + "unified-engine": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified-args/node_modules/chalk": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", + "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/unified-args/node_modules/fault": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", + "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", + "dev": true, + "dependencies": { + "format": "^0.2.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/unified-args/node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/unified-engine": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/unified-engine/-/unified-engine-10.1.0.tgz", + "integrity": "sha512-5+JDIs4hqKfHnJcVCxTid1yBoI/++FfF/1PFdSMpaftZZZY+qg2JFruRbf7PaIwa9KgLotXQV3gSjtY0IdcFGQ==", + "dev": true, + "dependencies": { + "@types/concat-stream": "^2.0.0", + "@types/debug": "^4.0.0", + "@types/is-empty": "^1.0.0", + "@types/node": "^18.0.0", + "@types/unist": "^2.0.0", + "concat-stream": "^2.0.0", + "debug": "^4.0.0", + "fault": "^2.0.0", + "glob": "^8.0.0", + "ignore": "^5.0.0", + "is-buffer": "^2.0.0", + "is-empty": "^1.0.0", + "is-plain-obj": "^4.0.0", + "load-plugin": "^5.0.0", + "parse-json": "^6.0.0", + "to-vfile": "^7.0.0", + "trough": "^2.0.0", + "unist-util-inspect": "^7.0.0", + "vfile-message": "^3.0.0", + "vfile-reporter": "^7.0.0", + "vfile-statistics": "^2.0.0", + "yaml": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified-engine/node_modules/@babel/code-frame": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", + "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/unified-engine/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/unified-engine/node_modules/fault": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", + "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", + "dev": true, + "dependencies": { + "format": "^0.2.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/unified-engine/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/unified-engine/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/unified-engine/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/unified-engine/node_modules/parse-json": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-6.0.2.tgz", + "integrity": "sha512-SA5aMiaIjXkAiBrW/yPgLgQAQg42f7K3ACO+2l/zOvtQBwX58DMUsFJXelW2fx3yMBmWOVkR6j1MGsdSbCA4UA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.0", + "error-ex": "^1.3.2", + "json-parse-even-better-errors": "^2.3.1", + "lines-and-columns": "^2.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/unified-lint-rule": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/unified-lint-rule/-/unified-lint-rule-1.0.6.tgz", + "integrity": "sha512-YPK15YBFwnsVorDFG/u0cVVQN5G2a3V8zv5/N6KN3TCG+ajKtaALcy7u14DCSrJI+gZeyYquFL9cioJXOGXSvg==", + "dev": true, + "dependencies": { + "wrapped": "^1.0.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified-message-control": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unified-message-control/-/unified-message-control-3.0.3.tgz", + "integrity": "sha512-oY5z2n8ugjpNHXOmcgrw0pQeJzavHS0VjPBP21tOcm7rc2C+5Q+kW9j5+gqtf8vfW/8sabbsK5+P+9QPwwEHDA==", + "dev": true, + "dependencies": { + "unist-util-visit": "^2.0.0", + "vfile-location": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-generated": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz", + "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-inspect": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/unist-util-inspect/-/unist-util-inspect-7.0.2.tgz", + "integrity": "sha512-Op0XnmHUl6C2zo/yJCwhXQSm/SmW22eDZdWP2qdf4WpGrgO1ZxFodq+5zFyeRGasFjJotAnLgfuD1jkcKqiH1Q==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz", + "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/uvu": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", + "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", + "dev": true, + "dependencies": { + "dequal": "^2.0.0", + "diff": "^5.0.0", + "kleur": "^4.0.3", + "sade": "^1.7.3" + }, + "bin": { + "uvu": "bin.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-location": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz", + "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-reporter": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/vfile-reporter/-/vfile-reporter-7.0.5.tgz", + "integrity": "sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw==", + "dev": true, + "dependencies": { + "@types/supports-color": "^8.0.0", + "string-width": "^5.0.0", + "supports-color": "^9.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile": "^5.0.0", + "vfile-message": "^3.0.0", + "vfile-sort": "^3.0.0", + "vfile-statistics": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-reporter/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/vfile-reporter/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/vfile-reporter/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/vfile-reporter/node_modules/supports-color": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.3.1.tgz", + "integrity": "sha512-knBY82pjmnIzK3NifMo3RxEIRD9E0kIzV4BKcyTZ9+9kWgLMxd4PrsTSMoFQUabgRBbF8KOLRDCyKgNV+iK44Q==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/vfile-reporter/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-sort": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/vfile-sort/-/vfile-sort-3.0.1.tgz", + "integrity": "sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw==", + "dev": true, + "dependencies": { + "vfile": "^5.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-statistics": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/vfile-statistics/-/vfile-statistics-2.0.1.tgz", + "integrity": "sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg==", + "dev": true, + "dependencies": { + "vfile": "^5.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/walk-up-path": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/walk-up-path/-/walk-up-path-3.0.1.tgz", + "integrity": "sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==", + "dev": true + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "dev": true + }, + "node_modules/which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/window-size": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.3.0.tgz", + "integrity": "sha512-aB2BGVMsX1iPJ79hqC5JvbDvUXpy3nhoxmbiFw74aEewrHPnkNiFYAFbx+BgurhxuOUZV+qIj/9HurtO8ZTH5w==", + "dev": true, + "bin": { + "window-size": "cli.js" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "dev": true, + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrapped": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wrapped/-/wrapped-1.0.1.tgz", + "integrity": "sha512-ZTKuqiTu3WXtL72UKCCnQLRax2IScKH7oQ+mvjbpvNE+NJxIWIemDqqM2GxNr4N16NCjOYpIgpin5pStM7kM5g==", + "dev": true, + "dependencies": { + "co": "3.1.0", + "sliced": "^1.0.1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.2.tgz", + "integrity": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz", + "integrity": "sha512-3RiZrpLpjrzIAKgGdPktBcMP/eG5bDFlkI+PHle1qwzyVXyDQL+pD/eZaMoOOO0Y7LLBfjpucObuUm/icvbpKQ==", + "dev": true, + "dependencies": { + "camelcase": "^4.1.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^2.0.0", + "read-pkg-up": "^2.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^7.0.0" + } + }, + "node_modules/yargs-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz", + "integrity": "sha512-WhzC+xgstid9MbVUktco/bf+KJG+Uu6vMX0LN1sLJvwmbCQVxb4D8LzogobonKycNasCZLdOzTAk1SK7+K7swg==", + "dev": true, + "dependencies": { + "camelcase": "^4.1.0" + } + }, + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/zwitch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "packages/@svengreb/eslint-config": { + "version": "0.11.0", + "license": "MIT", + "dependencies": { + "@svengreb/eslint-config-base": ">=0.11.0 <1.0.0" + }, + "devDependencies": { + "eslint": "^7.32.0", + "eslint-find-rules": "3.6.1", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0" + }, + "peerDependencies": { + "eslint": "^7.32.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0" + } + }, + "packages/@svengreb/eslint-config-base": { + "version": "0.11.0", + "license": "MIT", + "dependencies": { + "confusing-browser-globals": "1.0.11" + }, + "devDependencies": { + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.8.0", + "eslint-find-rules": "3.6.1", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-prettier": "^3.4.1" + }, + "engines": { + "node": ">=15.13", + "npm": ">=7.7" + }, + "peerDependencies": { + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-prettier": "^3.4.1" + } + }, + "packages/@svengreb/eslint-config-typescript": { + "version": "0.11.0", + "license": "MIT", + "devDependencies": { + "@typescript-eslint/eslint-plugin": "^4.33.0", + "@typescript-eslint/parser": "^4.33.0", + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.8.0", + "eslint-find-rules": "3.6.1", + "eslint-plugin-prettier": "^3.4.1", + "typescript": "^4.9.5" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.33.0", + "@typescript-eslint/parser": "^4.33.0", + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-prettier": "^3.4.1", + "typescript": "^4.9.5" + } + } + } +} diff --git a/package.json b/package.json index d9e4933..f4305cb 100644 --- a/package.json +++ b/package.json @@ -1,22 +1,19 @@ { - "name": "styleguide-javascript", + "name": "@svengreb/styleguide-javascript", "version": "0.11.0", - "description": "The Arctic Ice Studio JavaScript code style", - "author": "Arctic Ice Studio (https://www.arcticicestudio.com)", - "contributors": [ - { - "name": "Sven Greb", - "email": "development@svengreb.de", - "url": "https://www.svengreb.de" - } - ], - "homepage": "https://arcticicestudio.github.io/styleguide-javascript", + "description": "An opinionated, yet universally applicable JavaScript code style guide", + "author": { + "name": "Sven Greb", + "email": "development@svengreb.de", + "url": "https://www.svengreb.de" + }, + "homepage": "https://github.com/svengreb/styleguide-javascript", "repository": { "type": "git", - "url": "git+https://github.com/arcticicestudio/styleguide-javascript.git" + "url": "git+https://github.com/svengreb/styleguide-javascript.git" }, "bugs": { - "url": "https://github.com/arcticicestudio/styleguide-javascript/issues" + "url": "https://github.com/svengreb/styleguide-javascript/issues" }, "license": "MIT", "private": true, @@ -25,40 +22,33 @@ "npm": ">=7.7" }, "workspaces": [ - "packages/@arcticicestudio/*" + "packages/@svengreb/*" ], "scripts": { - "clean": "del build/", - "docs": "run-s docs:prepare docs:compile", - "docs:compile": "gitbook build src build/docs", - "docs:dev": "run-s docs:compile docs:serve", - "docs:prepare": "gitbook install src", - "docs:serve": "gitbook serve src build/docs", - "format": "run-s format:pretty format:fix", - "format:fix": "eslint --fix .", - "format:pretty": "prettier --write .", - "lint": "run-s lint:*", - "lint:ci": "run-s lint:md lint:ci:*", - "lint:ci:pretty": "prettier --loglevel silent --check .", + "format": "run-s format:*", + "format:js": "eslint --fix .", + "format:pretty": "prettier --ignore-unknown --no-editorconfig --write \"**\"", + "lint": "run-s lint:js lint:md lint:pretty", + "lint:ci": "run-s --continue-on-error lint:js lint:md lint:ci:pretty", + "lint:ci:pretty": "prettier --check --ignore-unknown --loglevel silent --no-editorconfig --no-error-on-unmatched-pattern \"**\"", "lint:js": "eslint .", - "lint:md": "remark --no-stdout . \".github/**/*.md\"", - "lint:pretty": "prettier --check .", + "lint:md": "remark --no-stdout . .github/", + "lint:pretty": "prettier --check --ignore-unknown --no-editorconfig \"**\"", "prepare": "run-s prepare:*", "prepare:husky": "husky install", "test": "npm --workspaces run test" }, "devDependencies": { "@arcticicestudio/remark-preset-lint": ">=0.4.0 <1.0.0", - "del-cli": "^3.0.1", - "eslint": "^7.23.0", - "eslint-config-prettier": "^8.1.0", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-prettier": "^3.3.1", - "gitbook-cli": "2.3.2", - "husky": "^7.0.4", - "lint-staged": "^12.0.4", - "npm-run-all": "^4.1.5", - "prettier": "^2.4.1", - "remark-cli": "^10.0.1" + "eslint": "7.32.0", + "eslint-config-prettier": "8.8.0", + "eslint-plugin-import": "2.27.5", + "eslint-plugin-prettier": "3.4.1", + "husky": "8.0.3", + "lint-staged": "13.2.1", + "npm-run-all": "4.1.5", + "prettier": "2.8.8", + "prettier-plugin-sh": "0.12.8", + "remark-cli": "11.0.0" } } diff --git a/packages/@arcticicestudio/eslint-config-base/README.md b/packages/@arcticicestudio/eslint-config-base/README.md deleted file mode 100644 index 5cfc0ab..0000000 --- a/packages/@arcticicestudio/eslint-config-base/README.md +++ /dev/null @@ -1,151 +0,0 @@ -

- -

The Arctic Ice Studio JavaScript Style Guide base rules as an extensible shared ESLint configuration.

- -

- -

- -

- -

- -This package implements the base rules of the [Arctic Ice Studio JavaScript style guide][gh-stg-repo] as an extensible [ESLint][] configuration with plugin support for [Prettier][]. - -## Getting Started - -To enable support for [React][gh-esl-p-react] and [JSX A11Y][gh-esl-p-jsx-a11y] plugin rules as well as compatibility integrations for other projects like [Prettier][], use the shareable rule configuration package [@arcticicestudio/eslint-config][gh-t-pkg-esl]. - -Note that this package uses [npm version 7.7.0 or higher][gh-blog-npm_v7] as the main package manager, but the documentations also include instructions to work with [Yarn][yarn-classic] (classic / `v1`). - -### Installation - -Add the package as development dependency to your project: - -```sh -# With npm... -npm install --save-dev @arcticicestudio/eslint-config-base - -# or Yarn. -yarn add --dev @arcticicestudio/eslint-config-base -``` - -Note that [peer dependencies][node-blog-peer_deps], like the [remark-lint][gh-remarkjs/remark-lint] package itself, are **only installed automatically when using a npm version equal or higher than `7.0.0`**, otherwise they must be installed separately like described in the [peer dependencies](#peer-dependencies) section below. -See the [Node distribution index][node-dist-index] for more information about which npm version is bundled with which Node version. - -#### Peer Dependencies - -Next to all base ESLint rules, the default export also contains rules related to ECMAScript 6+ including the [import][mdn-js-import] and [export][mdn-js-export] features as well as compatibility integrations for other projects like [Prettier][]. -Therefore this package depends on the [`eslint-plugin-import`][gh-esl-p-import], [eslint-plugin-prettier][gh-esl-p-prettier], [prettier][gh-prettier] and [`eslint`][gh-eslint] packages that are defined as [peer dependencies][node-blog-peer_deps]. - -##### npm versions `>=7.0.0` - -As of **npm version `7.0.0`, peer dependencies are** [**installed automatically**][gh-npm/rfcs-blob-install_peer_deps] and does not require any additional steps. - -##### npm versions `>=5.0.0 <7.0.0` - -For **npm version equal to or higher than `5.0.0` (pre-bundled with [Node.js 8][node-dist-v8-latest]) but less than `7.0.0`**, all peer dependencies can be auto-installed using the pre-bundled [`npx`][npm-npx] package: - -```sh -npx install-peerdeps --dev @arcticicestudio/eslint-config-base -``` - -##### npm versions `<5.0.0` - -If you’re using a **npm version less than `5.0.0`**, the `npx` package is not pre-bundled, but users can either simply install the [`npx`][npm-npx] package globally to run the above command or use the [install-peerdeps][npm-install-peerdeps] helper package locally/globally to let it handle the installation of all peer dependencies: - -```sh -# Install and use the "install-peerdeps" helper package locally... -npm install install-peerdeps -./node_modules/.bin/install-peerdeps --dev @arcticicestudio/eslint-config-base - -# ...or globally. -npm install --global install-peerdeps -install-peerdeps --dev @arcticicestudio/eslint-config-base -``` - -To install all peer dependencies manually without `npx` or any helper package, the npm `info` command can be used to get a list of all packages and their versions: - -```sh -# List the names and versions of all peer dependencies... -npm info "@arcticicestudio/eslint-config-base" peerDependencies - -# ...and install each listed package manually. -npm install PACKAGE@VERSION -``` - -##### Using Yarn instead of npm - -If you’re not using npm but Yarn, peer dependencies can be installed by either adding them manually or using the [install-peerdeps][npm-install-peerdeps] helper package: - -```sh -# Either add all packages manually by listing all required names and their versions and install them manually... -yarn info @arcticicestudio/eslint-config-base peerDependencies -yarn add --dev remark-lint #... - -# ...or use the "install-peerdeps" helper package. -yarn add --dev install-peerdeps -yarn run install-peerdeps --dev @arcticicestudio/eslint-config-base -``` - -### Usage - -This package provides a [shareable configuration preset][esl-docs-conf_share] that can be used by [extending the ESLint configuration file][esl-docs-config#ext_conf]. Add `@arcticicestudio/eslint-config-base` and/or any of the [additional entry points](#entry-points) to the `extends` array in your `.eslintrc` configuration file: - -```js -module.exports = { - extends: [ - /* Provides support for all ESLint core rules. */ - "@arcticicestudio/eslint-config-base", - /* - * Optional entry point to enable support for projects using Prettier. - * Note that this must always be placed after the `@arcticicestudio/eslint-config-base` preset to take precedence, - * otherwise it won't prevent errors due to useless and possibly conflicting rules! - */ - "@arcticicestudio/eslint-config-base/prettier", - ], -}; -``` - -## Entry Points - -This package provides multiple entry points that can be composed especially for the projects they are used in: - -- `@arcticicestudio/eslint-config-base` — The default entry point that support for all ESLint core rules. -- `@arcticicestudio/eslint-config-base/prettier` — Entry point to enable support for [Prettier][] through [eslint-plugin-prettier][gh-esl-p-prettier] and the officially recommended Prettier ESLint configuration [eslint-config-prettier][gh-esl-c-prettier]. It disables possibly conflicting rules and rules that definitely not needed when using Prettier for code formatting. There is also additional support when Prettier is used for React based projects by extending the special `prettier/react` configuration that also disables specific `react/` and JSX rules. See the [@arcticicestudio/eslint-config][gh-t-pkg-esl] package to use React specific rules. Note that this configuration **should always be placed after `@arcticicestudio/eslint-config-base`** in order to override conflicting rules, otherwise the `@arcticicestudio/eslint-config-base` preset will take precedence leaving conflicting rules untouched! - -## Contributing - -Please read the [contribution guidelines][gh-stg-b-readme#contrib] of the [Arctic Ice Studio JavaScript style guide][gh-stg-repo] project for detailed information. - -

- -

Copyright © 2018-present Arctic Ice Studio and Sven Greb

- -

- -[esl-docs-conf_share]: https://eslint.org/docs/developer-guide/shareable-configs -[esl-docs-config#ext_conf]: https://eslint.org/docs/user-guide/configuring#extending-configuration-files -[eslint]: https://eslint.org -[gh-blog-npm_v7]: https://github.blog/2020-10-13-presenting-v7-0-0-of-the-npm-cli -[gh-esl-c-prettier]: https://github.com/prettier/eslint-config-prettier -[gh-esl-p-import]: https://github.com/benmosher/eslint-plugin-import -[gh-esl-p-jsx-a11y]: https://github.com/evcohen/eslint-plugin-jsx-a11y -[gh-esl-p-prettier]: https://github.com/prettier/eslint-plugin-prettier -[gh-esl-p-react]: https://github.com/yannickcr/eslint-plugin-react -[gh-eslint]: https://github.com/eslint/eslint -[gh-npm/rfcs-blob-install_peer_deps]: https://github.com/npm/rfcs/blob/latest/implemented/0025-install-peer-deps.md -[gh-prettier]: https://github.com/prettier/prettier -[gh-remarkjs/remark-lint]: https://github.com/remarkjs/remark-lint -[gh-stg-b-readme#contrib]: https://github.com/arcticicestudio/styleguide-javascript#contributing -[gh-stg-repo]: https://github.com/arcticicestudio/styleguide-javascript -[gh-t-pkg-esl]: https://github.com/arcticicestudio/styleguide-javascript/tree/main/packages/@arcticicestudio/eslint-config -[mdn-js-export]: https://developer.mozilla.org/en-US/docs/web/javascript/reference/statements/export -[mdn-js-import]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import -[node-blog-peer_deps]: https://nodejs.org/en/blog/npm/peer-dependencies -[node-dist-index]: https://nodejs.org/dist/index.json -[node-dist-v8-latest]: https://nodejs.org/dist/latest-v8.x -[npm-install-peerdeps]: https://www.npmjs.com/package/install-peerdeps -[npm-npx]: https://www.npmjs.com/package/npx -[prettier]: https://prettier.io -[yarn-classic]: https://classic.yarnpkg.com diff --git a/packages/@arcticicestudio/eslint-config-base/package.json b/packages/@arcticicestudio/eslint-config-base/package.json deleted file mode 100644 index ee38e3c..0000000 --- a/packages/@arcticicestudio/eslint-config-base/package.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "name": "@arcticicestudio/eslint-config-base", - "version": "0.11.0", - "description": "The Arctic Ice Studio JavaScript Style Guide base rules as an extensible shared ESLint configuration", - "author": "Arctic Ice Studio (https://www.arcticicestudio.com)", - "contributors": [ - { - "name": "Sven Greb", - "email": "development@svengreb.de", - "url": "https://www.svengreb.de" - } - ], - "homepage": "https://github.com/arcticicestudio/styleguide-javascript", - "repository": { - "type": "git", - "url": "git+https://github.com/arcticicestudio/styleguide-javascript.git", - "directory": "packages/@arcticicestudio/eslint-config-base" - }, - "bugs": { - "url": "https://github.com/arcticicestudio/styleguide-javascript/issues" - }, - "license": "MIT", - "keywords": [ - "style", - "guide", - "javascript", - "ecmascript", - "prettier", - "eslint", - "eslint-config", - "rule", - "preset" - ], - "main": "index.js", - "files": [ - "rules", - "index.js", - "prettier.js" - ], - "publishConfig": { - "access": "public" - }, - "scripts": { - "test": "npm run test:unused-rules", - "test:unused-rules": "eslint-find-rules --unused --deprecated --no-error" - }, - "dependencies": { - "confusing-browser-globals": "^1.0.10" - }, - "devDependencies": { - "eslint": "^7.23.0", - "eslint-config-prettier": "^8.1.0", - "eslint-plugin-prettier": "^3.3.1", - "eslint-find-rules": "^3.6.1", - "eslint-plugin-import": "^2.22.1" - }, - "peerDependencies": { - "eslint": "^7.23.0", - "eslint-config-prettier": "^8.1.0", - "eslint-plugin-prettier": "^3.3.1", - "eslint-plugin-import": "^2.22.1" - } -} diff --git a/packages/@arcticicestudio/eslint-config-base/rules/import/module-systems.js b/packages/@arcticicestudio/eslint-config-base/rules/import/module-systems.js deleted file mode 100644 index 312fe4e..0000000 --- a/packages/@arcticicestudio/eslint-config-base/rules/import/module-systems.js +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. - */ - -/** - * Import plugin rules related to module systems. - * - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/README.md#rules - */ -module.exports = { - plugins: ["import"], - rules: { - /** - * Report potentially ambiguous parse goal (`script` vs. `module`). - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/unambiguous.md - */ - "import/unambiguous": "off", - /** - * Report CommonJS require calls and `module.exports` or `exports.*`. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-commonjs.md - */ - "import/no-commonjs": "off", - /** - * Report AMD `require` and define `calls`. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-amd.md - */ - "import/no-amd": "error", - /** - * No Node.js builtin modules. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-nodejs-modules.md - */ - "import/no-nodejs-modules": "off", - }, -}; diff --git a/packages/@arcticicestudio/eslint-config-typescript/README.md b/packages/@arcticicestudio/eslint-config-typescript/README.md deleted file mode 100644 index d576998..0000000 --- a/packages/@arcticicestudio/eslint-config-typescript/README.md +++ /dev/null @@ -1,183 +0,0 @@ -

- -

The Arctic Ice Studio JavaScript style guide rules with support for TypeScript as an extensible ESLint configuration.

- -

- -

- -

- -

- -This package implements the rules of the [Arctic Ice Studio JavaScript style guide][gh-stg-repo] as an extensible shared [ESLint][] configuration with plugin support for [TypeScript][] through the official [TypeScript ESLint][gh-esl-ts] project as well as compatibility integrations for other projects like [Prettier][]. - -## Getting Started - -To enable support for [React][gh-esl-p-react] and [JSX A11Y][gh-esl-p-jsx-a11y] plugin rules as well as compatibility integrations for [Prettier][], use the shareable rule configuration package [@arcticicestudio/eslint-config][gh-t-pkg-esl]. - -To only use the ESLint core and [`eslint-plugin-import`][gh-esl-p-import] rules, please use the base configurations of the [@arcticicestudio/eslint-config-base][gh-t-pkg-esl-base] package. - -Note that this package uses [npm version 7.7.0 or higher][gh-blog-npm_v7] as the main package manager, but the documentations also include instructions to work with [Yarn][yarn-classic] (classic / `v1`). - -### Installation - -Add the package as development dependency to your project: - -```sh -# With npm... -npm install --save-dev @arcticicestudio/eslint-config-typescript - -# or Yarn. -yarn add --dev @arcticicestudio/eslint-config-typescript -``` - -Note that [peer dependencies][node-blog-peer_deps], like the [remark-lint][gh-remarkjs/remark-lint] package itself, are **only installed automatically when using a npm version equal or higher than `7.0.0`**, otherwise they must be installed separately like described in the [peer dependencies](#peer-dependencies) section below. -See the [Node distribution index][node-dist-index] for more information about which npm version is bundled with which Node version. - -#### Peer Dependencies - -This package depends on the [`@typescript-eslint/parser`][gh-esl-parser-ts], [`@typescript-eslint/eslint-plugin`][gh-esl-p-ts] and [`typescript`][gh-ts] packages defined as [peer dependencies][node-blog-peer_deps]. -Since this configuration provides an integration entry point for [Prettier][] , the additional [`eslint-plugin-prettier`][gh-esl-p-prettier], [`eslint-config-prettier][gh-esl-c-prettier] peer dependencies are also required. - -##### npm versions `>=7.0.0` - -As of **npm version `7.0.0`, peer dependencies are** [**installed automatically**][gh-npm/rfcs-blob-install_peer_deps] and does not require any additional steps. - -##### npm versions `>=5.0.0 <7.0.0` - -For **npm version equal to or higher than `5.0.0` (pre-bundled with [Node.js 8][node-dist-v8-latest]) but less than `7.0.0`**, all peer dependencies can be auto-installed using the pre-bundled [`npx`][npm-npx] package: - -```sh -npx install-peerdeps --dev @arcticicestudio/eslint-config-typescript -``` - -##### npm versions `<5.0.0` - -If you’re using a **npm version less than `5.0.0`**, the `npx` package is not pre-bundled, but users can either simply install the [`npx`][npm-npx] package globally to run the above command or use the [install-peerdeps][npm-install-peerdeps] helper package locally/globally to let it handle the installation of all peer dependencies: - -```sh -# Install and use the "install-peerdeps" helper package locally... -npm install install-peerdeps -./node_modules/.bin/install-peerdeps --dev @arcticicestudio/eslint-config-typescript - -# ...or globally. -npm install --global install-peerdeps -install-peerdeps --dev @arcticicestudio/eslint-config-typescript -``` - -To install all peer dependencies manually without `npx` or any helper package, the npm `info` command can be used to get a list of all packages and their versions: - -```sh -# List the names and versions of all peer dependencies... -npm info "@arcticicestudio/eslint-config-typescript" peerDependencies - -# ...and install each listed package manually. -npm install PACKAGE@VERSION -``` - -### Usage - -This provides a [shareable configuration preset][esl-d-conf_share] that can be used by [extending the ESLint configuration file][esl-d-config#ext_conf]. Add `@arcticicestudio/eslint-config-typescript` and/or any of the [additional entry points](#entry-points) to the `extends` array in your `.eslintrc` configuration file: - -```js -module.exports = { - extends: [ - /* Provides and configures specific rules for TypeScript. */ - "@arcticicestudio/eslint-config-typescript" - /* - * Optional entry point to enable support for projects using Prettier. - * Note that this must always be placed after the `@arcticicestudio/eslint-config-typescript` preset to take - * precedence, otherwise it won't prevent errors due to useless and possibly conflicting rules! - */ - "@arcticicestudio/eslint-config-typescript/prettier" - ] -}; -``` - -As of [`@typescript-eslint/parser` version `2.0.0`][gh-esl-ts-rl-2.0.0] (also see [typescript-eslint/typescript-eslint#890][gh-esl-ts#890]), the parser will panic when parsing files that are not included within the provided _tsconfig(s)_. The `project` field passed to ESLint's `parserOptions` object is required and must point to a valid `tsconfig` file where [the `include` field][ts-d-tsconfig#details] is correctly set up to contain pattern for all files that should be linted. - -Set the `project` field in your `eslintrc` to the path of your `tsconfig` and optionally also set the `tsconfigRootDir` when working with multiple _tsconfigs_: - -```js -module.exports = { - // ... - parserOptions: { - project: "./tsconfig.json", - }, - // ... -}; -``` - -Ensure your `tsconfig` is correctly configured to provide all file pattern for files that should be linted [in the `include` array][ts-d-tsconfig#details] and optionally define pattern that should be excluded: - -```jsonc -{ - // ... - "include": [ - "src/**/*.ts", - "src/**/*.tsx", - "test/**/*.ts", - "test/**/*.tsx", - "typings/**/*.ts" - // ... - ] - // ... -} -``` - -The `extends` feature for _tsconfigs_ can be used to prevent code duplication by extending the root `tsconfig` and only overriding the `include` file or any other fields. - -See the [`@typescript-eslint/parser` configuration documentation][gh-esl-parser-ts#config] for all details about the `parserOptions` field(s) and the [TypScript `tsconfig` documentation][ts-d-tsconfig#details] to correctly configure the `include` file pattern. - -## Entry Points - -This package provides multiple entry points that can be composed especially for the projects they are used in: - -- `@arcticicestudio/eslint-config-typescript` — The default entry point that includes the specific rules for TypeScript by extending the lightweight and recommended shared configurations of the [`@typescript-eslint/eslint-plugin`][gh-esl-p-ts] and [`eslint-config-prettier`][gh-esl-c-prettier] packages as well as overriding and adjusting various plugin and core rules to ensure the best compatibility with TypeScript: - - `@typescript-eslint/eslint-recommended` — Disables ESLint core rules that are already handled by TypeScript. - - `@typescript-eslint/recommended` — Slim and recommended set of rules for TypeScript that does not require type information. - - `@typescript-eslint/recommended-requiring-type-checking` — Additionally enable the slightly expanded set of rules that require type information. It also disables some ESLint core rules for compatibility since they are already handled by TypeScript. -- `@arcticicestudio/eslint-config-typescript/prettier` — Entry point to enable support for [Prettier][] through [`eslint-plugin-prettier`][gh-esl-p-prettier] and the officially recommended Prettier ESLint configuration using the [`eslint-config-prettier`][gh-esl-c-prettier] package. It disables possibly conflicting rules and rules that definitely not needed when using _Prettier_ for code formatting. There is also additional support when _Prettier_ is used for TypeScript based projects by extending the special `prettier/@typescript-eslint` configuration that also disables specific `react/*` and JSX rules. Note that this configuration **should always be placed after `@arcticicestudio/eslint-config-typescript`** in order to override conflicting rules, otherwise the `@arcticicestudio/eslint-config-typescript` preset will take precedence leaving conflicting rules untouched! - -## Contributing - -Please read the [contribution guidelines][gh-stg-b-readme#contrib] of the [Arctic Ice Studio JavaScript style guide][gh-stg-repo] project for detailed information. - -

- -

Copyright © 2018-present Arctic Ice Studio and Sven Greb

- -

- -[esl-d-conf_share]: https://eslint.org/docs/developer-guide/shareable-configs -[esl-d-config#ext_conf]: https://eslint.org/docs/user-guide/configuring#extending-configuration-files -[eslint]: https://eslint.org -[gh-blog-npm_v7]: https://github.blog/2020-10-13-presenting-v7-0-0-of-the-npm-cli -[gh-esl-c-prettier]: https://github.com/prettier/eslint-config-prettier -[gh-esl-p-import]: https://github.com/benmosher/eslint-plugin-import -[gh-esl-p-jsx-a11y]: https://github.com/evcohen/eslint-plugin-jsx-a11y -[gh-esl-p-prettier]: https://github.com/prettier/eslint-plugin-prettier -[gh-esl-p-react]: https://github.com/yannickcr/eslint-plugin-react -[gh-esl-p-ts]: https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin -[gh-esl-parser-ts]: https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/parser -[gh-esl-parser-ts#config]: https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/parser#configuration -[gh-esl-ts-rl-2.0.0]: https://github.com/typescript-eslint/typescript-eslint/releases/tag/v2.0.0 -[gh-esl-ts]: https://github.com/typescript-eslint/typescript-eslint -[gh-esl-ts#890]: https://github.com/typescript-eslint/typescript-eslint/issues/890 -[gh-npm/rfcs-blob-install_peer_deps]: https://github.com/npm/rfcs/blob/latest/implemented/0025-install-peer-deps.md -[gh-remarkjs/remark-lint]: https://github.com/remarkjs/remark-lint -[gh-stg-b-readme#contrib]: https://github.com/arcticicestudio/styleguide-javascript#contributing -[gh-stg-repo]: https://github.com/arcticicestudio/styleguide-javascript -[gh-t-pkg-esl-base]: https://github.com/arcticicestudio/styleguide-javascript/tree/main/packages/@arcticicestudio/eslint-config-base -[gh-t-pkg-esl]: https://github.com/arcticicestudio/styleguide-javascript/tree/main/packages/@arcticicestudio/eslint-config -[gh-ts]: https://github.com/microsoft/TypeScript -[node-blog-peer_deps]: https://nodejs.org/en/blog/npm/peer-dependencies -[node-dist-index]: https://nodejs.org/dist/index.json -[node-dist-v8-latest]: https://nodejs.org/dist/latest-v8.x -[npm-install-peerdeps]: https://www.npmjs.com/package/install-peerdeps -[npm-npx]: https://www.npmjs.com/package/npx -[prettier]: https://prettier.io -[ts-d-tsconfig#details]: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#details -[typescript]: https://www.typescriptlang.org -[yarn-classic]: https://classic.yarnpkg.com diff --git a/packages/@arcticicestudio/eslint-config-typescript/package.json b/packages/@arcticicestudio/eslint-config-typescript/package.json deleted file mode 100644 index 939bfeb..0000000 --- a/packages/@arcticicestudio/eslint-config-typescript/package.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "name": "@arcticicestudio/eslint-config-typescript", - "version": "0.11.0", - "description": "The Arctic Ice Studio JavaScript Style Guide rules with TypeScript support as an extensible shared ESLint configuration", - "author": "Arctic Ice Studio (https://www.arcticicestudio.com)", - "contributors": [ - { - "name": "Sven Greb", - "email": "development@svengreb.de", - "url": "https://www.svengreb.de" - } - ], - "homepage": "https://github.com/arcticicestudio/styleguide-javascript", - "repository": { - "type": "git", - "url": "git+https://github.com/arcticicestudio/styleguide-javascript.git", - "directory": "packages/@arcticicestudio/eslint-config-typescript" - }, - "bugs": { - "url": "https://github.com/arcticicestudio/styleguide-javascript/issues" - }, - "license": "MIT", - "keywords": [ - "style", - "guide", - "javascript", - "typescript", - "ecmascript", - "eslint", - "eslint-config", - "rule", - "preset" - ], - "main": "index.js", - "files": [ - "rules", - "index.js", - "prettier.js" - ], - "publishConfig": { - "access": "public" - }, - "scripts": { - "test": "npm run test:unused-rules", - "test:unused-rules": "eslint-find-rules --unused --deprecated --no-error" - }, - "devDependencies": { - "@typescript-eslint/eslint-plugin": "^4.20.0", - "@typescript-eslint/parser": "^4.20.0", - "eslint": "^7.23.0", - "eslint-config-prettier": "^8.1.0", - "eslint-find-rules": "3.6.1", - "eslint-plugin-prettier": "^3.3.1", - "typescript": "^4.2.3" - }, - "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^4.20.0", - "@typescript-eslint/parser": "^4.20.0", - "eslint": "^7.23.0", - "eslint-config-prettier": "^8.1.0", - "eslint-plugin-prettier": "^3.3.1", - "typescript": "^4.2.3" - } -} diff --git a/packages/@arcticicestudio/eslint-config-typescript/rules/react/jsx.js b/packages/@arcticicestudio/eslint-config-typescript/rules/react/jsx.js deleted file mode 100644 index ca50229..0000000 --- a/packages/@arcticicestudio/eslint-config-typescript/rules/react/jsx.js +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. - */ - -/** - * React plugin rules related to JSX. - * - * @since 0.8.0 - * @see https://github.com/yannickcr/eslint-plugin-react#jsx-specific-rules - */ -module.exports = { - rules: { - /* Allow TypeScript specific file extensions for JSX synta. */ - "react/jsx-filename-extension": [ - "error", - { - extensions: [".tsx"], - }, - ], - }, -}; diff --git a/packages/@arcticicestudio/eslint-config/README.md b/packages/@arcticicestudio/eslint-config/README.md deleted file mode 100644 index 82befe5..0000000 --- a/packages/@arcticicestudio/eslint-config/README.md +++ /dev/null @@ -1,144 +0,0 @@ -

- -

The Arctic Ice Studio JavaScript Style Guide rules with support for React as an extensible ESLint configuration.

- -

- -

- -

- -

- -This package implements the rules of the [Arctic Ice Studio JavaScript style guide][gh-stg-repo] as an extensible shared [ESLint][] configuration with plugin support for [React][gh-esl-p-react], its [_Hooks_][gh-esl-p-react-hooks] and [JSX A11Y][gh-esl-p-jsx-a11y]. - -## Getting Started - -To only use the ESLint core and [`eslint-plugin-import`][gh-esl-p-import] rules, please use the base configurations of the [@arcticicestudio/eslint-config-base][gh-t-pkg-esl-base] package. - -Note that this package uses [npm version 7.7.0 or higher][gh-blog-npm_v7] as the main package manager, but the documentations also include instructions to work with [Yarn][yarn-classic] (classic / `v1`). - -### Installation - -Add the package as development dependency to your project: - -```sh -# With npm... -npm install --save-dev @arcticicestudio/eslint-config - -# or Yarn. -yarn add --dev @arcticicestudio/eslint-config -``` - -Note that [peer dependencies][node-blog-peer_deps], like the [remark-lint][gh-remarkjs/remark-lint] package itself, are **only installed automatically when using a npm version equal or higher than `7.0.0`**, otherwise they must be installed separately like described in the [peer dependencies](#peer-dependencies) section below. -See the [Node distribution index][node-dist-index] for more information about which npm version is bundled with which Node version. - -#### Peer Dependencies - -This package depends on the [eslint-plugin-react][gh-esl-p-react] and [eslint-plugin-jsx-a11y][gh-esl-p-jsx-a11y] packages that are defined as [peer dependencies][node-blog-peer_deps]. -Since this configuration is build on top of the [base rules package][gh-t-pkg-esl-base], the additional [eslint-plugin-import][gh-esl-p-import] peer dependency is also required. - -##### npm versions `>=7.0.0` - -As of **npm version `7.0.0`, peer dependencies are** [**installed automatically**][gh-npm/rfcs-blob-install_peer_deps] and does not require any additional steps. - -##### npm versions `>=5.0.0 <7.0.0` - -For **npm version equal to or higher than `5.0.0` (pre-bundled with [Node.js 8][node-dist-v8-latest]) but less than `7.0.0`**, all peer dependencies can be auto-installed using the pre-bundled [`npx`][npm-npx] package: - -```sh -npx install-peerdeps --dev @arcticicestudio/eslint-config -``` - -##### npm versions `<5.0.0` - -If you’re using a **npm version less than `5.0.0`**, the `npx` package is not pre-bundled, but users can either simply install the [`npx`][npm-npx] package globally to run the above command or use the [install-peerdeps][npm-install-peerdeps] helper package locally/globally to let it handle the installation of all peer dependencies: - -```sh -# Install and use the "install-peerdeps" helper package locally... -npm install install-peerdeps -./node_modules/.bin/install-peerdeps --dev @arcticicestudio/eslint-config - -# ...or globally. -npm install --global install-peerdeps -install-peerdeps --dev @arcticicestudio/eslint-config -``` - -To install all peer dependencies manually without `npx` or any helper package, the npm `info` command can be used to get a list of all packages and their versions: - -```sh -# List the names and versions of all peer dependencies... -npm info "@arcticicestudio/eslint-config" peerDependencies - -# ...and install each listed package manually. -npm install PACKAGE@VERSION -``` - -##### Using Yarn instead of npm - -If you’re not using npm but Yarn, peer dependencies can be installed by either adding them manually or using the [install-peerdeps][npm-install-peerdeps] helper package: - -```sh -# Either add all packages manually by listing all required names and their versions and install them manually... -yarn info @arcticicestudio/eslint-config peerDependencies -yarn add --dev remark-lint #... - -# ...or use the "install-peerdeps" helper package. -yarn add --dev install-peerdeps -yarn run install-peerdeps --dev @arcticicestudio/eslint-config -``` - -### Usage - -This package provides a [shareable configuration preset][esl-d-conf_share] that can be used by [extending the ESLint configuration file][esl-d-config#ext_conf]. Add `@arcticicestudio/eslint-config` and/or any of the [additional entry points](#entry-points) to the `extends` array in your `.eslintrc` configuration file: - -```js -module.exports = { - extends: [ - /* Provides all base rules and specific rules for "React" and "JSX A11Y". */ - "@arcticicestudio/eslint-config" - /* - * Optional entry point to enable support for projects using React Hooks. - */ - "@arcticicestudio/eslint-config/react-hooks" - ] -}; -``` - -## Entry Points - -This package provides multiple entry points that can be composed especially for the projects they are used in: - -- `@arcticicestudio/eslint-config` — The default entry point that includes the base rules of the [@arcticicestudio/eslint-config-base][gh-t-pkg-esl-base] package as well as additional rules from the [eslint-plugin-react][gh-esl-p-react] and [eslint-plugin-jsx-a11y][gh-esl-p-jsx-a11y] packages. -- `@arcticicestudio/eslint-config/react-hooks` — Entry point to enable support for [React _Hooks_][react-d-hooks] through [eslint-plugin-react-hooks][gh-esl-p-react-hooks]. - -## Contributing - -Please read the [contribution guidelines][gh-stg-b-readme#contrib] of the [Arctic Ice Studio JavaScript style guide][gh-stg-repo] project for detailed information. - -

- -

Copyright © 2018-present Arctic Ice Studio and Sven Greb

- -

- -[esl-d-conf_share]: https://eslint.org/docs/developer-guide/shareable-configs -[esl-d-config#ext_conf]: https://eslint.org/docs/user-guide/configuring#extending-configuration-files -[eslint]: https://eslint.org -[gh-blog-npm_v7]: https://github.blog/2020-10-13-presenting-v7-0-0-of-the-npm-cli -[gh-esl-p-import]: https://github.com/benmosher/eslint-plugin-import -[gh-esl-p-jsx-a11y]: https://github.com/evcohen/eslint-plugin-jsx-a11y -[gh-esl-p-react-hooks]: https://github.com/facebook/react/tree/master/packages/eslint-plugin-react-hooks -[gh-esl-p-react]: https://github.com/yannickcr/eslint-plugin-react -[gh-npm/rfcs-blob-install_peer_deps]: https://github.com/npm/rfcs/blob/latest/implemented/0025-install-peer-deps.md -[gh-remarkjs/remark-lint]: https://github.com/remarkjs/remark-lint -[gh-stg-b-readme#contrib]: https://github.com/arcticicestudio/styleguide-javascript#contributing -[gh-stg-repo]: https://github.com/arcticicestudio/styleguide-javascript -[gh-t-pkg-esl-base]: https://github.com/arcticicestudio/styleguide-javascript/tree/main/packages/@arcticicestudio/eslint-config-base -[node-blog-peer_deps]: https://nodejs.org/en/blog/npm/peer-dependencies -[node-dist-index]: https://nodejs.org/dist/index.json -[node-dist-v8-latest]: https://nodejs.org/dist/latest-v8.x -[npm-install-peerdeps]: https://www.npmjs.com/package/install-peerdeps -[npm-npx]: https://www.npmjs.com/package/npx -[react-d-hooks]: https://reactjs.org/docs/hooks-intro.html -[yarn-classic]: https://classic.yarnpkg.com diff --git a/packages/@arcticicestudio/eslint-config/index.js b/packages/@arcticicestudio/eslint-config/index.js deleted file mode 100644 index 417a7c2..0000000 --- a/packages/@arcticicestudio/eslint-config/index.js +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. - */ - -/** - * Arctic Ice Studio JavaScript style guide rules as an extensible remark-lint rule preset. - * Imports all rule definitions and sets the default parser options. - * - * @version 0.11.0 - * @license MIT - * @author Arctic Ice Studio - * @author Sven Greb - * @copyright 2018-present Arctic Ice Studio - * @copyright 2018-present Sven Greb - * @see https://eslint.org/docs/user-guide/configuring.html#specifying-parser-options - * @see https://eslint.org/docs/user-guide/configuring.html#configuring-rules - */ -module.exports = { - extends: [ - "@arcticicestudio/eslint-config-base", - require.resolve("./rules/react"), - require.resolve("./rules/react/jsx"), - require.resolve("./rules/jsx-a11y"), - ], -}; diff --git a/packages/@arcticicestudio/eslint-config/package.json b/packages/@arcticicestudio/eslint-config/package.json deleted file mode 100644 index cfe7717..0000000 --- a/packages/@arcticicestudio/eslint-config/package.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "name": "@arcticicestudio/eslint-config", - "version": "0.11.0", - "description": "The Arctic Ice Studio JavaScript Style Guide rules with React support as an extensible shared ESLint configuration", - "author": "Arctic Ice Studio (https://www.arcticicestudio.com)", - "contributors": [ - { - "name": "Sven Greb", - "email": "development@svengreb.de", - "url": "https://www.svengreb.de" - } - ], - "homepage": "https://github.com/arcticicestudio/styleguide-javascript", - "repository": { - "type": "git", - "url": "git+https://github.com/arcticicestudio/styleguide-javascript.git", - "directory": "packages/@arcticicestudio/eslint-config" - }, - "bugs": { - "url": "https://github.com/arcticicestudio/styleguide-javascript/issues" - }, - "license": "MIT", - "keywords": [ - "style", - "guide", - "javascript", - "ecmascript", - "eslint", - "react", - "a11y", - "eslint-config", - "rule", - "preset" - ], - "main": "index.js", - "files": [ - "rules", - "index.js", - "react-hooks.js" - ], - "publishConfig": { - "access": "public" - }, - "scripts": { - "test": "npm run test:unused-rules", - "test:unused-rules": "eslint-find-rules --unused --deprecated --no-error" - }, - "dependencies": { - "@arcticicestudio/eslint-config-base": ">=0.7.0 <1.0.0" - }, - "devDependencies": { - "eslint": "^7.23.0", - "eslint-find-rules": "^3.6.1", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-jsx-a11y": "^6.4.1", - "eslint-plugin-react": "^7.23.1", - "eslint-plugin-react-hooks": "^4.2.0" - }, - "peerDependencies": { - "eslint": "^7.23.0", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-jsx-a11y": "^6.4.1", - "eslint-plugin-react": "^7.23.1", - "eslint-plugin-react-hooks": "^4.2.0" - } -} diff --git a/packages/@arcticicestudio/eslint-config/react-hooks.js b/packages/@arcticicestudio/eslint-config/react-hooks.js deleted file mode 100644 index 55c1912..0000000 --- a/packages/@arcticicestudio/eslint-config/react-hooks.js +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. - */ - -/** - * Entry point for the React Hooks plugin integration. - * - * @since 0.9.0 - * @see https://github.com/facebook/react/tree/master/packages/eslint-plugin-react-hooks - * @see https://reactjs.org/docs/hooks-rules.html - * @see https://reactjs.org/docs/hooks-intro.html - */ -module.exports = { - extends: ["./rules/react-hooks"].map(require.resolve), -}; diff --git a/packages/@arcticicestudio/eslint-config/rules/react-hooks/index.js b/packages/@arcticicestudio/eslint-config/rules/react-hooks/index.js deleted file mode 100644 index 13b6aad..0000000 --- a/packages/@arcticicestudio/eslint-config/rules/react-hooks/index.js +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. - */ - -/** - * React Hook plugin rules. - * - * @since 0.9.0 - * @see https://github.com/facebook/react/tree/master/packages/eslint-plugin-react-hooks - * @see https://reactjs.org/docs/hooks-rules.html - * @see https://reactjs.org/docs/hooks-intro.html - */ -module.exports = { - plugins: ["react-hooks"], - parserOptions: { - ecmaFeatures: { - jsx: true, - }, - }, - rules: { - /** - * Enforce Rules of Hooks. - * @see https://reactjs.org/docs/hooks-rules.html - * @see https://github.com/facebook/react/blob/master/packages/eslint-plugin-react-hooks/src/RulesOfHooks.js - */ - "react-hooks/rules-of-hooks": "error", - /** - * EVerify the list of the dependencies for Hooks like `useEffect` and similar. - * @see https://github.com/facebook/react/blob/master/packages/eslint-plugin-react-hooks/src/ExhaustiveDeps.js - */ - "react-hooks/exhaustive-deps": "error", - }, -}; diff --git a/packages/@arcticicestudio/eslint-config-base/index.js b/packages/@svengreb/eslint-config-base/index.js similarity index 53% rename from packages/@arcticicestudio/eslint-config-base/index.js rename to packages/@svengreb/eslint-config-base/index.js index 11f321e..05f5f53 100644 --- a/packages/@arcticicestudio/eslint-config-base/index.js +++ b/packages/@svengreb/eslint-config-base/index.js @@ -1,21 +1,17 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** - * Arctic Ice Studio JavaScript style guide rules as an extensible remark-lint rule preset. + * The opinionated, yet universally applicable JavaScript code style guide base rules as an extensible shared ESLint configuration. * Imports all rule definitions and sets the default parser options. - * * @version 0.11.0 * @license MIT - * @author Arctic Ice Studio * @author Sven Greb - * @copyright 2018-present Arctic Ice Studio - * @copyright 2018-present Sven Greb - * @see https://eslint.org/docs/user-guide/configuring.html#specifying-parser-options - * @see https://eslint.org/docs/user-guide/configuring.html#configuring-rules + * @copyright 2016-present Sven Greb + * @see https://eslint.org/docs/latest/use/configure/parser + * @see https://eslint.org/docs/latest/use/configure/rules */ module.exports = { extends: [ diff --git a/packages/@svengreb/eslint-config-base/package.json b/packages/@svengreb/eslint-config-base/package.json new file mode 100644 index 0000000..c5b3696 --- /dev/null +++ b/packages/@svengreb/eslint-config-base/package.json @@ -0,0 +1,65 @@ +{ + "name": "@svengreb/eslint-config-base", + "version": "0.11.0", + "description": "The opinionated, yet universally applicable JavaScript code style guide base rules as an extensible shared ESLint configuration", + "author": { + "name": "Sven Greb", + "email": "development@svengreb.de", + "url": "https://www.svengreb.de" + }, + "homepage": "https://github.com/svengreb/styleguide-javascript", + "repository": { + "type": "git", + "url": "git+https://github.com/svengreb/styleguide-javascript.git", + "directory": "packages/@svengreb/eslint-config-base" + }, + "bugs": { + "url": "https://github.com/svengreb/styleguide-javascript/issues" + }, + "license": "MIT", + "engines": { + "node": ">=15.13", + "npm": ">=7.7" + }, + "main": "index.js", + "files": [ + "rules", + "index.js", + "prettier.js" + ], + "publishConfig": { + "access": "public" + }, + "keywords": [ + "ecmascript", + "eslint", + "eslint-config", + "guide", + "javascript", + "preset", + "prettier", + "rule", + "style", + "svengreb" + ], + "scripts": { + "test": "run-s test:unused-rules", + "test:unused-rules": "eslint-find-rules --unused --deprecated --no-error" + }, + "dependencies": { + "confusing-browser-globals": "1.0.11" + }, + "devDependencies": { + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.8.0", + "eslint-find-rules": "3.6.1", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-prettier": "^3.4.1" + }, + "peerDependencies": { + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-prettier": "^3.4.1" + } +} diff --git a/packages/@arcticicestudio/eslint-config-base/prettier.js b/packages/@svengreb/eslint-config-base/prettier.js similarity index 71% rename from packages/@arcticicestudio/eslint-config-base/prettier.js rename to packages/@svengreb/eslint-config-base/prettier.js index 53b4d66..656496b 100644 --- a/packages/@arcticicestudio/eslint-config-base/prettier.js +++ b/packages/@svengreb/eslint-config-base/prettier.js @@ -1,14 +1,11 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Entry point for the Prettier plugin integration with compatibility support for the following ESLint plugins: - * * - `eslint-plugin-react` - * * @since 0.9.0 * @see https://github.com/prettier/eslint-plugin-prettier * @see https://github.com/prettier/eslint-config-prettier diff --git a/packages/@svengreb/eslint-config-base/readme.md b/packages/@svengreb/eslint-config-base/readme.md new file mode 100644 index 0000000..eec691e --- /dev/null +++ b/packages/@svengreb/eslint-config-base/readme.md @@ -0,0 +1,200 @@ +

+ + + + + +

+ +

+ + + + + + +

+ +

+ + + + + + +

+ +

+ + + +

+ +

+ + + + + + + + + +

+ +

The opinionated, yet universally applicable JavaScript code style guide base rules as an extensible shared ESLint configuration.

+ +This package implements the base rules of the [opinionated, yet universally applicable JavaScript code style guide][15] as an extensible [ESLint][3] configuration with plugin support for [Prettier][24]. + +## Getting Started + +To enable support for [React][9] and [JSX A11Y][7] plugin rules as well as compatibility integrations for other projects like [Prettier][24], use the shareable rule configuration package [@svengreb/eslint-config][16]. + +Note that this package uses [npm version 7.7.0 or higher][4] as the main package manager, but the documentations also include instructions to work with [Yarn][25] (classic / `v1`). + +### Installation + +Add the package as development dependency to your project: + +```sh +# With npm... +npm install --save-dev @svengreb/eslint-config-base + +# or Yarn. +yarn add --dev @svengreb/eslint-config-base +``` + +Note that [peer dependencies][19], like the [remark-lint][13] package itself, are **only installed automatically when using a npm version equal or higher than `7.0.0`**, otherwise they must be installed separately like described in the [peer dependencies](#peer-dependencies) section below. +See the [Node distribution index][20] for more information about which npm version is bundled with which Node version. + +#### Peer Dependencies + +Next to all base ESLint rules, the default export also contains rules related to ECMAScript 6+ including the [import][18] and [export][17] features as well as compatibility integrations for other projects like [Prettier][24]. +Therefore this package depends on the [`eslint-plugin-import`][6], [eslint-plugin-prettier][8], [prettier][12] and [`eslint`][10] packages that are defined as [peer dependencies][19]. + +##### npm versions `>=7.0.0` + +As of **npm version `7.0.0`, peer dependencies are** [**installed automatically**][11] and does not require any additional steps. + +##### npm versions `>=5.0.0 <7.0.0` + +For **npm version equal to or higher than `5.0.0` (pre-bundled with [Node.js 8][21]) but less than `7.0.0`**, all peer dependencies can be auto-installed using the pre-bundled [`npx`][23] package: + +```sh +npx install-peerdeps --dev @svengreb/eslint-config-base +``` + +##### npm versions `<5.0.0` + +If you’re using a **npm version less than `5.0.0`**, the `npx` package is not pre-bundled, but users can either simply install the [`npx`][23] package globally to run the above command or use the [install-peerdeps][22] helper package locally/globally to let it handle the installation of all peer dependencies: + +```sh +# Install and use the "install-peerdeps" helper package locally... +npm install install-peerdeps +./node_modules/.bin/install-peerdeps --dev @svengreb/eslint-config-base + +# ...or globally. +npm install --global install-peerdeps +install-peerdeps --dev @svengreb/eslint-config-base +``` + +To install all peer dependencies manually without `npx` or any helper package, the npm `info` command can be used to get a list of all packages and their versions: + +```sh +# List the names and versions of all peer dependencies... +npm info "@svengreb/eslint-config-base" peerDependencies + +# ...and install each listed package manually. +npm install PACKAGE@VERSION +``` + +##### Using Yarn instead of npm + +If you’re not using npm but Yarn, peer dependencies can be installed by either adding them manually or using the [install-peerdeps][22] helper package: + +```sh +# Either add all packages manually by listing all required names and their versions and install them manually... +yarn info @svengreb/eslint-config-base peerDependencies +yarn add --dev remark-lint #... + +# ...or use the "install-peerdeps" helper package. +yarn add --dev install-peerdeps +yarn run install-peerdeps --dev @svengreb/eslint-config-base +``` + +### Usage + +This package provides a [shareable configuration preset][1] that can be used by [extending the ESLint configuration file][2]. Add `@svengreb/eslint-config-base` and/or any of the [additional entry points](#entry-points) to the `extends` array in your `.eslintrc` configuration file: + +```js +module.exports = { + extends: [ + /* Provides support for all ESLint core rules. */ + "@svengreb/eslint-config-base", + /* + * Optional entry point to enable support for projects using Prettier. + * Note that this must always be placed after the `@svengreb/eslint-config-base` preset to take precedence, + * otherwise it won't prevent errors due to useless and possibly conflicting rules! + */ + "@svengreb/eslint-config-base/prettier", + ], +}; +``` + +## Entry Points + +This package provides multiple entry points that can be composed especially for the projects they are used in: + +- `@svengreb/eslint-config-base` — The default entry point that support for all ESLint core rules. +- `@svengreb/eslint-config-base/prettier` — Entry point to enable support for [Prettier][24] through [eslint-plugin-prettier][8] and the officially recommended Prettier ESLint configuration [eslint-config-prettier][5]. It disables possibly conflicting rules and rules that definitely not needed when using Prettier for code formatting. There is also additional support when Prettier is used for React based projects by extending the special `prettier/react` configuration that also disables specific `react/` and JSX rules. See the [@svengreb/eslint-config][16] package to use React specific rules. Note that this configuration **should always be placed after `@svengreb/eslint-config-base`** in order to override conflicting rules, otherwise the `@svengreb/eslint-config-base` preset will take precedence leaving conflicting rules untouched! + +## Contributing + +Please read the [contribution guidelines][14] of the [JavaScript style guide][15] project for detailed information. + +

+ + + + + +

+ +

+ Copyright © 2016-present Sven Greb +

+ +

+ + + + + + +

+ +[1]: https://eslint.org/docs/latest/extend/shareable-configs +[2]: https://eslint.org/docs/latest/use/configure/#extending-configuration-files +[3]: https://eslint.org +[4]: https://github.blog/2020-10-13-presenting-v7-0-0-of-the-npm-cli +[5]: https://github.com/prettier/eslint-config-prettier +[6]: https://github.com/import-js/eslint-plugin-import +[7]: https://github.com/evcohen/eslint-plugin-jsx-a11y +[8]: https://github.com/prettier/eslint-plugin-prettier +[9]: https://github.com/jsx-eslint/eslint-plugin-react +[10]: https://github.com/eslint/eslint +[11]: https://github.com/npm/rfcs/blob/main/implemented/0025-install-peer-deps.md +[12]: https://github.com/prettier/prettier +[13]: https://github.com/remarkjs/remark-lint +[14]: https://github.com/svengreb/styleguide-javascript#contributing +[15]: https://github.com/svengreb/styleguide-javascript +[16]: https://github.com/svengreb/styleguide-javascript/tree/main/packages/@svengreb/eslint-config +[17]: https://developer.mozilla.org/en-US/docs/web/javascript/reference/statements/export +[18]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import +[19]: https://nodejs.org/en/blog/npm/peer-dependencies +[20]: https://nodejs.org/dist/index.json +[21]: https://nodejs.org/dist/latest-v8.x +[22]: https://www.npmjs.com/package/install-peerdeps +[23]: https://www.npmjs.com/package/npx +[24]: https://prettier.io +[25]: https://classic.yarnpkg.com diff --git a/packages/@arcticicestudio/eslint-config-base/rules/best-practices.js b/packages/@svengreb/eslint-config-base/rules/best-practices.js similarity index 60% rename from packages/@arcticicestudio/eslint-config-base/rules/best-practices.js rename to packages/@svengreb/eslint-config-base/rules/best-practices.js index 417bded..ab34e3a 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/best-practices.js +++ b/packages/@svengreb/eslint-config-base/rules/best-practices.js @@ -1,114 +1,113 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ + /** * Rules for methods and styles that have been proven to avoid problems. - * - * @see https://eslint.org/docs/rules/#best-practices + * @see https://eslint.org/docs/latest/rules/#best-practices */ module.exports = { rules: { /** * Enforce getter/setter pairs in objects. - * @see https://eslint.org/docs/rules/accessor-pairs + * @see https://eslint.org/docs/latest/rules/accessor-pairs */ "accessor-pairs": ["warn", { setWithoutGet: true }], /** * Enforce return statements in callbacks of array's methods. - * @see https://eslint.org/docs/rules/array-callback-return - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/arrays.html#callback-return + * @see https://eslint.org/docs/latest/rules/array-callback-return + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/arrays.md#callback-return */ "array-callback-return": ["error", { allowImplicit: true }], /** * Treat `var` as block-scoped. - * @see https://eslint.org/docs/rules/block-scoped-var + * @see https://eslint.org/docs/latest/rules/block-scoped-var */ "block-scoped-var": "error", /** * Enforce that class methods utilize `this`. - * @see https://eslint.org/docs/rules/class-methods-use-this + * @see https://eslint.org/docs/latest/rules/class-methods-use-this */ "class-methods-use-this": "warn", /** * Limit Cyclomatic Complexity. - * @see https://eslint.org/docs/rules/complexity + * @see https://eslint.org/docs/latest/rules/complexity */ complexity: "off", /** * Require `return` statements to either always or never specify values. - * @see https://eslint.org/docs/rules/consistent-return + * @see https://eslint.org/docs/latest/rules/consistent-return */ "consistent-return": "warn", /** * Enforce consistent brace style for all control statements. - * @see https://eslint.org/docs/rules/curly + * @see https://eslint.org/docs/latest/rules/curly */ curly: ["error", "multi-line"], /** * Require default `case` in `switch` statements. - * @see https://eslint.org/docs/rules/default-case + * @see https://eslint.org/docs/latest/rules/default-case */ "default-case": "off", /** * Enforce consistent newlines before and after dots. - * @see https://eslint.org/docs/rules/dot-location + * @see https://eslint.org/docs/latest/rules/dot-location */ "dot-location": ["error", "property"], /** * Enforce dot notation whenever possible. - * @see https://eslint.org/docs/rules/dot-notation - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/properties.html#dot-notation + * @see https://eslint.org/docs/latest/rules/dot-notation + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/properties.html#dot-notation */ "dot-notation": ["warn", { allowKeywords: true }], /** * Require the use of `===` and `!==`. - * @see https://eslint.org/docs/rules/eqeqeq - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/comparison_operators_and_equality.html#equality-syntax + * @see https://eslint.org/docs/latest/rules/eqeqeq + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/comparison_operators_and_equality.md#equality-syntax */ eqeqeq: ["error", "always", { null: "ignore" }], /** * Require `for-in` loops to include an `if` statement. - * @see https://eslint.org/docs/rules/guard-for-in + * @see https://eslint.org/docs/latest/rules/guard-for-in */ "guard-for-in": "warn", /** * Enforce a maximum number of classes per file. * @since 0.6.0 - * @see https://eslint.org/docs/rules/max-classes-per-file + * @see https://eslint.org/docs/latest/rules/max-classes-per-file */ "max-classes-per-file": "off", /** * Disallow the use of `alert`, `confirm`, and `prompt`. - * @see https://eslint.org/docs/rules/no-alert + * @see https://eslint.org/docs/latest/rules/no-alert */ "no-alert": "warn", /** * Disallow the use of `arguments.caller` or `arguments.callee`. - * @see https://eslint.org/docs/rules/no-caller + * @see https://eslint.org/docs/latest/rules/no-caller */ "no-caller": "error", /** * Disallow lexical declarations in case/default clauses. - * @see https://eslint.org/docs/rules/no-case-declarations - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/comparison_operators_and_equality.html#switch-blocks + * @see https://eslint.org/docs/latest/rules/no-case-declarations + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/comparison_operators_and_equality.md#switch-blocks */ "no-case-declarations": "error", /** * Disallow division operators explicitly at the beginning of regular expressions. - * @see https://eslint.org/docs/rules/no-div-regex + * @see https://eslint.org/docs/latest/rules/no-div-regex */ "no-div-regex": "off", /** * Disallow `else` blocks after return statements in `if` statements. - * @see https://eslint.org/docs/rules/no-else-return - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/blocks.html#no-else-return + * @see https://eslint.org/docs/latest/rules/no-else-return + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/blocks.md#no-else-return */ "no-else-return": ["error", { allowElseIf: false }], /** * Disallow empty functions except for standalone functions and arrow functions. - * @see https://eslint.org/docs/rules/no-empty-function + * @see https://eslint.org/docs/latest/rules/no-empty-function */ "no-empty-function": [ "error", @@ -118,80 +117,80 @@ module.exports = { ], /** * Disallow empty destructuring patterns. - * @see https://eslint.org/docs/rules/no-empty-pattern + * @see https://eslint.org/docs/latest/rules/no-empty-pattern */ "no-empty-pattern": "error", /** * Disallow null comparisons without type-checking operators. - * @see https://eslint.org/docs/rules/no-eq-null + * @see https://eslint.org/docs/latest/rules/no-eq-null */ "no-eq-null": "off", /** * Disallow the use of `eval()` since it is potentially dangerous and often misused. - * @see https://eslint.org/docs/rules/no-eval - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/strings.html#no-eval + * @see https://eslint.org/docs/latest/rules/no-eval + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/strings.md#no-eval */ "no-eval": "error", /** * Disallow extending native types/objects. * Should only be triggered on polyfills, which we can fix case-by-case. - * @see https://eslint.org/docs/rules/no-extend-native + * @see https://eslint.org/docs/latest/rules/no-extend-native */ "no-extend-native": "warn", /** * Disallow unnecessary function binding via `bind()`. - * @see https://eslint.org/docs/rules/no-extra-bind + * @see https://eslint.org/docs/latest/rules/no-extra-bind */ "no-extra-bind": "error", /** * Disallow unnecessary labels. - * @see https://eslint.org/docs/rules/no-extra-label + * @see https://eslint.org/docs/latest/rules/no-extra-label */ "no-extra-label": "error", /** * Disallow `case` statement fallthrough. - * @see https://eslint.org/docs/rules/no-fallthrough + * @see https://eslint.org/docs/latest/rules/no-fallthrough */ "no-fallthrough": "error", /** * Disallow leading or trailing decimal points in numeric literals. - * @see https://eslint.org/docs/rules/no-floating-decimal + * @see https://eslint.org/docs/latest/rules/no-floating-decimal */ "no-floating-decimal": "error", /** * Disallow assignments to native objects or read-only global variables. - * @see https://eslint.org/docs/rules/no-global-assign + * @see https://eslint.org/docs/latest/rules/no-global-assign */ "no-global-assign": "error", /** * Disallow type conversion with shorter notations. - * @see https://eslint.org/docs/rules/no-implicit-coercion + * @see https://eslint.org/docs/latest/rules/no-implicit-coercion */ "no-implicit-coercion": "off", /** * Disallow variable and function declarations in the global scope. - * @see https://eslint.org/docs/rules/no-implicit-globals + * @see https://eslint.org/docs/latest/rules/no-implicit-globals */ "no-implicit-globals": "warn", /** * Disallow the use of `eval()` like methods. - * @see https://eslint.org/docs/rules/no-implied-eval + * @see https://eslint.org/docs/latest/rules/no-implied-eval */ "no-implied-eval": "error", /** * Disallow `this` keywords outside of classes or class-like objects. - * @see https://eslint.org/docs/rules/no-invalid-this + * @see https://eslint.org/docs/latest/rules/no-invalid-this */ "no-invalid-this": "off", /** * Disallow the use of the `__iterator__` property and let Babel handle it. - * @see https://eslint.org/docs/rules/no-iterator - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/iterators_and_generators.html#no-iterators + * @see https://eslint.org/docs/latest/rules/no-iterator + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/iterators_and_generators.md#no-iterators */ "no-iterator": "error", /** * Disallow labeled statements. - * @see https://eslint.org/docs/rules/no-labels + * @see https://eslint.org/docs/latest/rules/no-labels */ "no-labels": [ "error", @@ -202,18 +201,18 @@ module.exports = { ], /** * Disallow unnecessary nested blocks. - * @see https://eslint.org/docs/rules/no-lone-blocks + * @see https://eslint.org/docs/latest/rules/no-lone-blocks */ "no-lone-blocks": "warn", /** * Disallow function declarations and expressions inside loop statements. - * @see https://eslint.org/docs/rules/no-loop-func - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#block-declaration + * @see https://eslint.org/docs/latest/rules/no-loop-func + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#block-declaration */ "no-loop-func": "error", /** * Disallow magic numbers. - * @see https://eslint.org/docs/rules/no-magic-numbers + * @see https://eslint.org/docs/latest/rules/no-magic-numbers */ "no-magic-numbers": [ "off", @@ -226,49 +225,49 @@ module.exports = { ], /** * Disallow multiple spaces. - * @see https://eslint.org/docs/rules/no-multi-spaces - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/react/whitespace.html#self-closing-tags + * @see https://eslint.org/docs/latest/rules/no-multi-spaces + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/whitespace.md#self-closing-tags */ "no-multi-spaces": ["error", { ignoreEOLComments: false }], /** * Disallow multiline strings in favor of template literals. - * @see https://eslint.org/docs/rules/no-multi-str + * @see https://eslint.org/docs/latest/rules/no-multi-str */ "no-multi-str": "error", /** * Disallow new operators outside of assignments or comparisons for side effects. - * @see https://eslint.org/docs/rules/no-new + * @see https://eslint.org/docs/latest/rules/no-new */ "no-new": "error", /** * Disallow `new` operators with the `Function` object. - * @see https://eslint.org/docs/rules/no-new-func - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#constructor + * @see https://eslint.org/docs/latest/rules/no-new-func + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#constructor */ "no-new-func": "error", /** * Disallow primitive wrapper instances via the `new` operator for `String`, `Number`, and `Boolean` objects. - * @see https://eslint.org/docs/rules/no-new-wrappers - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/type_casting_and_coercion.html#Bitshift - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/type_casting_and_coercion.html#numbers - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/type_casting_and_coercion.html#booleans + * @see https://eslint.org/docs/latest/rules/no-new-wrappers + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/type_casting_and_coercion.md#Bitshift + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/type_casting_and_coercion.md#numbers + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/type_casting_and_coercion.md#booleans */ "no-new-wrappers": "error", /** * Disallow octal literals. - * @see https://eslint.org/docs/rules/no-octal + * @see https://eslint.org/docs/latest/rules/no-octal */ "no-octal": "error", /** * Disallow octal escape sequences in string literals. - * @see https://eslint.org/docs/rules/no-octal-escape + * @see https://eslint.org/docs/latest/rules/no-octal-escape */ "no-octal-escape": "error", /** * Disallow reassigning function parameters except for specific exclusions. - * @see https://eslint.org/docs/rules/no-param-reassign - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#parameter-mutation - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#parameter-reassign + * @see https://eslint.org/docs/latest/rules/no-param-reassign + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#parameter-mutation + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#parameter-reassign */ "no-param-reassign": [ "error", @@ -292,18 +291,18 @@ module.exports = { ], /** * Disallow the use of the `__proto__` property. - * @see https://eslint.org/docs/rules/no-proto + * @see https://eslint.org/docs/latest/rules/no-proto */ "no-proto": "error", /** * Disallow variable re-declaration. - * @see https://eslint.org/docs/rules/no-redeclare + * @see https://eslint.org/docs/latest/rules/no-redeclare */ "no-redeclare": "error", /** * Disallow certain properties on certain objects. - * @see https://eslint.org/docs/rules/no-restricted-properties - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/properties.html#exponentiation-operator + * @see https://eslint.org/docs/latest/rules/no-restricted-properties + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/properties.md#exponentiation-operator */ "no-restricted-properties": [ "error", @@ -358,47 +357,47 @@ module.exports = { ], /** * Disallow assignment operators in return statements. - * @see https://eslint.org/docs/rules/no-return-assign + * @see https://eslint.org/docs/latest/rules/no-return-assign */ "no-return-assign": ["error", "always"], /** * Disallow unnecessary `return await`. - * @see https://eslint.org/docs/rules/no-return-await + * @see https://eslint.org/docs/latest/rules/no-return-await */ "no-return-await": "error", /** * Disallow script (`javascript:`) URLs. - * @see https://eslint.org/docs/rules/no-script-url + * @see https://eslint.org/docs/latest/rules/no-script-url */ "no-script-url": "error", /** * Disallow self assignments. - * @see https://eslint.org/docs/rules/no-self-assign + * @see https://eslint.org/docs/latest/rules/no-self-assign */ "no-self-assign": "error", /** * Disallow self comparisons. - * @see https://eslint.org/docs/rules/no-self-compare + * @see https://eslint.org/docs/latest/rules/no-self-compare */ "no-self-compare": "error", /** * Disallow comma operators. - * @see https://eslint.org/docs/rules/no-sequences + * @see https://eslint.org/docs/latest/rules/no-sequences */ "no-sequences": "error", /** * Disallow throwing literals as exceptions. - * @see https://eslint.org/docs/rules/no-throw-literal + * @see https://eslint.org/docs/latest/rules/no-throw-literal */ "no-throw-literal": "error", /** * Disallow unmodified loop conditions. - * @see https://eslint.org/docs/rules/no-unmodified-loop-condition + * @see https://eslint.org/docs/latest/rules/no-unmodified-loop-condition */ "no-unmodified-loop-condition": "off", /** * Disallow unused expressions. - * @see https://eslint.org/docs/rules/no-unused-expressions + * @see https://eslint.org/docs/latest/rules/no-unused-expressions */ "no-unused-expressions": [ "warn", @@ -410,39 +409,39 @@ module.exports = { ], /** * Disallow unused labels. - * @see https://eslint.org/docs/rules/no-unused-labels + * @see https://eslint.org/docs/latest/rules/no-unused-labels */ "no-unused-labels": "error", /** * Disallow unnecessary calls to `call()` and `apply()`. - * @see https://eslint.org/docs/rules/no-useless-call + * @see https://eslint.org/docs/latest/rules/no-useless-call */ "no-useless-call": "off", /** * Disallow unnecessary catch clauses. * @since 0.6.0 - * @see https://eslint.org/docs/rules/no-useless-catch + * @see https://eslint.org/docs/latest/rules/no-useless-catch */ "no-useless-catch": "error", /** * Disallow unnecessary concatenation of literals or template literals. - * @see https://eslint.org/docs/rules/no-useless-concat + * @see https://eslint.org/docs/latest/rules/no-useless-concat */ "no-useless-concat": "error", /** * Disallow unnecessary escape characters. - * @see https://eslint.org/docs/rules/no-useless-escape - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/strings.html#escaping + * @see https://eslint.org/docs/latest/rules/no-useless-escape + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/strings.md#escaping */ "no-useless-escape": "error", /** * Disallow redundant return statements. - * @see https://eslint.org/docs/rules/no-useless-return + * @see https://eslint.org/docs/latest/rules/no-useless-return */ "no-useless-return": "error", /** * Disallow `void` operators. - * @see https://eslint.org/docs/rules/no-void + * @see https://eslint.org/docs/latest/rules/no-void */ "no-void": [ "error", @@ -452,7 +451,7 @@ module.exports = { ], /** * Disallow specified warning terms in comments. - * @see https://eslint.org/docs/rules/no-warning-comments + * @see https://eslint.org/docs/latest/rules/no-warning-comments */ "no-warning-comments": [ "off", @@ -463,51 +462,51 @@ module.exports = { ], /** * Disallow `with` statements. - * @see https://eslint.org/docs/rules/no-with + * @see https://eslint.org/docs/latest/rules/no-with */ "no-with": "error", /** * Suggest using named capture group in regular expression. * @since 0.6.0 - * @see https://eslint.org/docs/rules/prefer-named-capture-group + * @see https://eslint.org/docs/latest/rules/prefer-named-capture-group */ "prefer-named-capture-group": "off", /** * Require using Error objects as Promise rejection reasons. - * @see https://eslint.org/docs/rules/prefer-promise-reject-errors + * @see https://eslint.org/docs/latest/rules/prefer-promise-reject-errors */ "prefer-promise-reject-errors": ["error", { allowEmptyReject: true }], /** * Enforce the consistent use of the radix argument when using `parseInt()`. - * @see https://eslint.org/docs/rules/radix - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/type_casting_and_coercion.html#numbers + * @see https://eslint.org/docs/latest/rules/radix + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/type_casting_and_coercion.md#numbers */ radix: "error", /** * Disallow async functions which have no await expression. - * @see https://eslint.org/docs/rules/require-await + * @see https://eslint.org/docs/latest/rules/require-await */ "require-await": "off", /** * Enforce the use of `u` flag on RegExp. * @since 0.6.0 - * @see https://eslint.org/docs/rules/require-unicode-regexp + * @see https://eslint.org/docs/latest/rules/require-unicode-regexp */ "require-unicode-regexp": "off", /** * Require `var` declarations be placed at the top of their containing scope. - * @see https://eslint.org/docs/rules/vars-on-top + * @see https://eslint.org/docs/latest/rules/vars-on-top */ "vars-on-top": "error", /** * Require parentheses around immediate function invocations. - * @see https://eslint.org/docs/rules/wrap-iife - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#iife + * @see https://eslint.org/docs/latest/rules/wrap-iife + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#iife */ "wrap-iife": ["error", "outside", { functionPrototypeMethods: false }], /** * Require or disallow `Yoda` conditions. - * @see https://eslint.org/docs/rules/yoda + * @see https://eslint.org/docs/latest/rules/yoda */ yoda: "off", }, diff --git a/packages/@arcticicestudio/eslint-config-base/rules/es6.js b/packages/@svengreb/eslint-config-base/rules/es6.js similarity index 52% rename from packages/@arcticicestudio/eslint-config-base/rules/es6.js rename to packages/@svengreb/eslint-config-base/rules/es6.js index 526d90a..1748d17 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/es6.js +++ b/packages/@svengreb/eslint-config-base/rules/es6.js @@ -1,14 +1,12 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Environment specific settings, parser options and rules related to ECMAScript 6, also known as ES2015. - * - * @see https://eslint.org/docs/rules/#ecmascript-6 - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/ecmascript_6+_styles.html + * @see https://eslint.org/docs/latest/rules/#ecmascript-6 + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/ecmascript_6+_styles.md */ module.exports = { env: { @@ -25,21 +23,21 @@ module.exports = { rules: { /** * Require braces around arrow function bodies. - * @see https://eslint.org/docs/rules/arrow-body-style - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/arrow_functions.html#implicit-return + * @see https://eslint.org/docs/latest/rules/arrow-body-style + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/arrow_functions.md#implicit-return */ "arrow-body-style": ["error", "as-needed", { requireReturnForObjectLiteral: false }], /** * Require parentheses around arrow function arguments. - * @see https://eslint.org/docs/rules/arrow-parens - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/arrow_functions.html#implicit-return - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/arrow_functions.html#single-argument-parentheses + * @see https://eslint.org/docs/latest/rules/arrow-parens + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/arrow_functions.md#implicit-return + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/arrow_functions.md#single-argument-parentheses */ "arrow-parens": ["error", "as-needed", { requireForBlockBody: false }], /** * Enforce consistent spacing before and after the arrow in arrow functions. - * @see https://eslint.org/docs/rules/arrow-spacing - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/arrow_functions.html#anonymous-functions + * @see https://eslint.org/docs/latest/rules/arrow-spacing + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/arrow_functions.md#anonymous-functions */ "arrow-spacing": [ "error", @@ -50,12 +48,12 @@ module.exports = { ], /** * Enforce require `super()` calls in constructors. - * @see https://eslint.org/docs/rules/constructor-super + * @see https://eslint.org/docs/latest/rules/constructor-super */ "constructor-super": "error", /** * Enforce consistent spacing around `*` operators in generator functions. - * @see https://eslint.org/docs/rules/generator-star-spacing + * @see https://eslint.org/docs/latest/rules/generator-star-spacing */ "generator-star-spacing": [ "error", @@ -66,65 +64,65 @@ module.exports = { ], /** * Disallow reassigning class members. - * @see https://eslint.org/docs/rules/no-class-assign + * @see https://eslint.org/docs/latest/rules/no-class-assign */ "no-class-assign": "error", /** * Disallow arrow functions where they could be confused with comparisons. - * @see https://eslint.org/docs/rules/no-confusing-arrow - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/arrow_functions.html#comparison-operators-confusion + * @see https://eslint.org/docs/latest/rules/no-confusing-arrow + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/arrow_functions.md#comparison-operators-confusion */ "no-confusing-arrow": ["error", { allowParens: true }], /** * Disallow reassigning `const` variables. - * @see https://eslint.org/docs/rules/no-const-assign - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/references.html#prefer-const + * @see https://eslint.org/docs/latest/rules/no-const-assign + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/references.md#prefer-const */ "no-const-assign": "error", /** * Disallow duplicate class members. - * @see https://eslint.org/docs/rules/no-dupe-class-members - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/classes_and_constructors.html#no-duplicate-members + * @see https://eslint.org/docs/latest/rules/no-dupe-class-members + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/classes_and_constructors.md#no-duplicate-members */ "no-dupe-class-members": "error", /** * Disallow duplicate module imports. * This rule has been replaced by the `import/no-duplicates` rule! - * @see https://eslint.org/docs/rules/no-dupe-class-members - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-duplicates.md - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/modules.html#no-duplicate-imports + * @see https://eslint.org/docs/latest/rules/no-dupe-class-members + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-duplicates.md + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/modules.md#no-duplicate-imports */ "no-duplicate-imports": ["off", { includeExports: true }], /** * Disallow `new` operators with the `Symbol` object. - * @see https://eslint.org/docs/rules/no-new-symbol + * @see https://eslint.org/docs/latest/rules/no-new-symbol */ "no-new-symbol": "error", /** * Disallow specified modules when loaded by `import`. - * @see https://eslint.org/docs/rules/no-restricted-imports + * @see https://eslint.org/docs/latest/rules/no-restricted-imports */ "no-restricted-imports": "off", /** * Disallow `this` / `super` before calling `super()` in constructors since it is a violation of the ES6 * specification and raises a reference error. - * @see https://eslint.org/docs/rules/no-this-before-super + * @see https://eslint.org/docs/latest/rules/no-this-before-super */ "no-this-before-super": "error", /** * Disallow unnecessary computed property keys in object literals. - * @see https://eslint.org/docs/rules/no-useless-computed-key + * @see https://eslint.org/docs/latest/rules/no-useless-computed-key */ "no-useless-computed-key": "error", /** * Disallow unnecessary constructors. - * @see https://eslint.org/docs/rules/no-useless-constructor - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/classes_and_constructors.html#unnecessary-default-constructor + * @see https://eslint.org/docs/latest/rules/no-useless-constructor + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/classes_and_constructors.md#unnecessary-default-constructor */ "no-useless-constructor": "error", /** * Disallow renaming import, export, and destructured assignments to the same name. - * @see https://eslint.org/docs/rules/no-useless-constructor + * @see https://eslint.org/docs/latest/rules/no-useless-constructor */ "no-useless-rename": [ "error", @@ -136,15 +134,15 @@ module.exports = { ], /** * Require `let` or `const` instead of `var`. - * @see https://eslint.org/docs/rules/no-var - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/references.html#disallow-var + * @see https://eslint.org/docs/latest/rules/no-var + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/references.md#disallow-var */ "no-var": "error", /** * Require or disallow method and property shorthand syntax for object literals. - * @see https://eslint.org/docs/rules/object-shorthand - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/objects.html#es6-object-shorthand - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/objects.html#es6-object-concise + * @see https://eslint.org/docs/latest/rules/object-shorthand + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/objects.md#es6-object-shorthand + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/objects.md#es6-object-concise */ "object-shorthand": [ "error", @@ -156,9 +154,9 @@ module.exports = { ], /** * Require using arrow functions for callbacks. - * @see https://eslint.org/docs/rules/prefer-arrow-callback - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/arrow_functions.html#anonymous-functions - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/react/methods.html#prefer-arrow-functions-over-bind + * @see https://eslint.org/docs/latest/rules/prefer-arrow-callback + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/arrow_functions.md#anonymous-functions + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/methods.md#prefer-arrow-functions-over-bind */ "prefer-arrow-callback": [ "error", @@ -169,9 +167,9 @@ module.exports = { ], /** * Require `const` declarations for variables that are never reassigned after declared. - * @see https://eslint.org/docs/rules/prefer-const - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/references.html#prefer-const - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/variables.html#declaration + * @see https://eslint.org/docs/latest/rules/prefer-const + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/references.md#prefer-const + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/variables.md#declaration */ "prefer-const": [ "error", @@ -182,9 +180,9 @@ module.exports = { ], /** * Require destructuring from arrays and/or objects. - * @see https://eslint.org/docs/rules/prefer-destructuring - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/destructuring.html#objects - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/destructuring.html#arrays + * @see https://eslint.org/docs/latest/rules/prefer-destructuring + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/destructuring.md#objects + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/destructuring.md#arrays */ "prefer-destructuring": [ "error", @@ -202,39 +200,39 @@ module.exports = { ], /** * Disallow `parseInt()` and `Number.parseInt()` in favor of binary, octal, and hexadecimal literals. - * @see https://eslint.org/docs/rules/prefer-numeric-literals + * @see https://eslint.org/docs/latest/rules/prefer-numeric-literals */ "prefer-numeric-literals": "error", /** * Require rest parameters instead of `arguments`. - * @see https://eslint.org/docs/rules/prefer-rest-params - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#es6-rest + * @see https://eslint.org/docs/latest/rules/prefer-rest-params + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#es6-rest */ "prefer-rest-params": "error", /** * Require spread operators instead of `.apply()`. - * @see https://eslint.org/docs/rules/prefer-spread - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#es6-spread + * @see https://eslint.org/docs/latest/rules/prefer-spread + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#es6-spread */ "prefer-spread": "error", /** * Require template literals instead of string concatenation. - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/strings.html#es6-template-literals + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/strings.md#es6-template-literals */ "prefer-template": "error", /** * Require generator functions to contain `yield`. - * @see https://eslint.org/docs/rules/require-yield + * @see https://eslint.org/docs/latest/rules/require-yield */ "require-yield": "warn", /** * Enforce spacing between rest and spread operators and their expressions. - * @see https://eslint.org/docs/rules/rest-spread-spacing + * @see https://eslint.org/docs/latest/rules/rest-spread-spacing */ "rest-spread-spacing": ["error", "never"], /** * Enforce sorted import declarations within modules. - * @see https://eslint.org/docs/rules/sort-imports + * @see https://eslint.org/docs/latest/rules/sort-imports */ "sort-imports": [ "off", @@ -246,18 +244,18 @@ module.exports = { ], /** * Require symbol descriptions. - * @see https://eslint.org/docs/rules/symbol-description + * @see https://eslint.org/docs/latest/rules/symbol-description */ "symbol-description": "error", /** * Require or disallow spacing around embedded expressions of template strings. - * @see https://eslint.org/docs/rules/template-curly-spacing - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/strings.html#es6-template-literals + * @see https://eslint.org/docs/latest/rules/template-curly-spacing + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/strings.md#es6-template-literals */ "template-curly-spacing": ["error", "never"], /** * Require or disallow spacing around the `*` in `yield*` expressions. - * @see https://eslint.org/docs/rules/yield-star-spacing + * @see https://eslint.org/docs/latest/rules/yield-star-spacing */ "yield-star-spacing": ["error", "after"], }, diff --git a/packages/@arcticicestudio/eslint-config-base/rules/import/helpful-warnings.js b/packages/@svengreb/eslint-config-base/rules/import/helpful-warnings.js similarity index 60% rename from packages/@arcticicestudio/eslint-config-base/rules/import/helpful-warnings.js rename to packages/@svengreb/eslint-config-base/rules/import/helpful-warnings.js index 4ed35e5..2a4bc24 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/import/helpful-warnings.js +++ b/packages/@svengreb/eslint-config-base/rules/import/helpful-warnings.js @@ -1,40 +1,39 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Import plugin rules related to helpful warnings. * - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/README.md#rules + * @see https://github.com/import-js/eslint-plugin-import/blob/main/README.md#rules */ module.exports = { plugins: ["import"], rules: { /** * Report any invalid exports like repeated exports of names or defaults. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/export.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/export.md */ "import/export": "error", /** * Report use of exported name as identifier of default export. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-named-as-default.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-named-as-default.md */ "import/no-named-as-default": "error", /** * Report use of exported name as property of default export. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-named-as-default-member.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-named-as-default-member.md */ "import/no-named-as-default-member": "error", /** * Report imported names marked with `@deprecated` documentation tag. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-deprecated.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-deprecated.md */ "import/no-deprecated": "warn", /** * Forbid the use of extraneous packages. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-extraneous-dependencies.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-extraneous-dependencies.md */ "import/no-extraneous-dependencies": [ "error", @@ -63,8 +62,8 @@ module.exports = { ], /** * Forbid the use of mutable exports with `var` or `let`. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-mutable-exports.md - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/modules.html#no-mutable-exports + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-mutable-exports.md + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/modules.md#no-mutable-exports */ "import/no-mutable-exports": "error", }, diff --git a/packages/@svengreb/eslint-config-base/rules/import/module-systems.js b/packages/@svengreb/eslint-config-base/rules/import/module-systems.js new file mode 100644 index 0000000..08e4a01 --- /dev/null +++ b/packages/@svengreb/eslint-config-base/rules/import/module-systems.js @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. + */ + +/** + * Import plugin rules related to module systems. + * @see https://github.com/import-js/eslint-plugin-import/blob/main/README.md#rules + */ +module.exports = { + plugins: ["import"], + rules: { + /** + * Report potentially ambiguous parse goal (`script` vs. `module`). + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/unambiguous.md + */ + "import/unambiguous": "off", + /** + * Report CommonJS require calls and `module.exports` or `exports.*`. + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-commonjs.md + */ + "import/no-commonjs": "off", + /** + * Report AMD `require` and define `calls`. + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-amd.md + */ + "import/no-amd": "error", + /** + * No Node.js builtin modules. + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-nodejs-modules.md + */ + "import/no-nodejs-modules": "off", + }, +}; diff --git a/packages/@arcticicestudio/eslint-config-base/rules/import/settings.js b/packages/@svengreb/eslint-config-base/rules/import/settings.js similarity index 55% rename from packages/@arcticicestudio/eslint-config-base/rules/import/settings.js rename to packages/@svengreb/eslint-config-base/rules/import/settings.js index 5085632..342e5a6 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/import/settings.js +++ b/packages/@svengreb/eslint-config-base/rules/import/settings.js @@ -1,14 +1,12 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Import plugin settings and resolvers. - * - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/README.md#settings - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/README.md#resolvers + * @see https://github.com/import-js/eslint-plugin-import/blob/main/README.md#settings + * @see https://github.com/import-js/eslint-plugin-import/blob/main/README.md#resolvers */ module.exports = { plugins: ["import"], diff --git a/packages/@arcticicestudio/eslint-config-base/rules/import/static-analysis.js b/packages/@svengreb/eslint-config-base/rules/import/static-analysis.js similarity index 54% rename from packages/@arcticicestudio/eslint-config-base/rules/import/static-analysis.js rename to packages/@svengreb/eslint-config-base/rules/import/static-analysis.js index a170d0b..f30958e 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/import/static-analysis.js +++ b/packages/@svengreb/eslint-config-base/rules/import/static-analysis.js @@ -1,20 +1,18 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Import plugin rules related to static analysis. - * - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/README.md#rules + * @see https://github.com/import-js/eslint-plugin-import/blob/main/README.md#rules */ module.exports = { plugins: ["import"], rules: { /** * Ensure imports point to a file/module that can be resolved. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-unresolved.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-unresolved.md */ "import/no-unresolved": [ "error", @@ -25,74 +23,74 @@ module.exports = { ], /** * Ensure named imports correspond to a named export in the remote file. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/named.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/named.md */ "import/named": "error", /** * Ensure a default export is present, given a default import. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/default.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/default.md */ "import/default": "warn", /** * Ensure imported namespaces contain dereferenced properties as they are dereferenced. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/namespace.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/namespace.md */ "import/namespace": "off", /** * Restrict which files can be imported in a given folder. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-restricted-paths.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-restricted-paths.md */ "import/no-restricted-paths": "off", /** * Forbid import of modules using absolute paths. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-absolute-path.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-absolute-path.md */ "import/no-absolute-path": "error", /** * Forbid `require()` calls with expressions. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-dynamic-require.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-dynamic-require.md */ "import/no-dynamic-require": "error", /** * Prevent importing the submodules of other module. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-internal-modules.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-internal-modules.md */ "import/no-internal-modules": "off", /** * Forbid Webpack loader syntax in imports. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-webpack-loader-syntax.md - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/modules.html#avoid-webpack-loader-syntax + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-webpack-loader-syntax.md + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/modules.md#avoid-webpack-loader-syntax */ "import/no-webpack-loader-syntax": "error", /** * Prevent a module from importing itself. * @since 0.2.0 - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-self-import.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-self-import.md */ "import/no-self-import": "error", /** * Prevent unnecessary path segments in import and require statements. * @since 0.2.0 - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-useless-path-segments.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-useless-path-segments.md */ "import/no-useless-path-segments": "error", /** * Prevent a module from importing a module with a dependency path back to itself. * @since 0.2.0 - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-cycle.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-cycle.md */ "import/no-cycle": ["error", { maxDepth: Infinity }], /** * Prevent imports to folders in relative parent paths. * @since 0.6.0 - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-relative-parent-imports.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-relative-parent-imports.md */ "import/no-relative-parent-imports": "off", /** * Report modules without any exports or individual exports not being statically imported or required from other * modules in the same project. * @since 0.6.0 - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-unused-modules.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-unused-modules.md */ "import/no-unused-modules": "off", }, diff --git a/packages/@arcticicestudio/eslint-config-base/rules/import/style.js b/packages/@svengreb/eslint-config-base/rules/import/style.js similarity index 52% rename from packages/@arcticicestudio/eslint-config-base/rules/import/style.js rename to packages/@svengreb/eslint-config-base/rules/import/style.js index 524d472..ff86c14 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/import/style.js +++ b/packages/@svengreb/eslint-config-base/rules/import/style.js @@ -1,41 +1,39 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Import plugin related rules for code style guidelines. - * - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/README.md#rules + * @see https://github.com/import-js/eslint-plugin-import/blob/main/README.md#rules */ module.exports = { plugins: ["import"], rules: { /** * Ensure all imports appear before other statements. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/first.md - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/modules.html#imports-first + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/first.md + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/modules.md#imports-first */ "import/first": "error", /** * Ensure all exports appear after other statements. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/exports-last.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/exports-last.md */ "import/exports-last": "error", /** * Report repeated import of the same module in multiple places. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-duplicates.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-duplicates.md */ "import/no-duplicates": "error", /** * Report namespace imports. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-namespace.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-namespace.md */ "import/no-namespace": "off", /** * Ensure consistent use of file extension within the import path. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/extensions.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/extensions.md */ "import/extensions": [ "error", @@ -48,7 +46,7 @@ module.exports = { ], /** * Ensure a convention in module import order. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/order.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/order.md */ "import/order": [ "warn", @@ -59,57 +57,57 @@ module.exports = { ], /** * Ensure a newline after import statements. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/newline-after-import.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/newline-after-import.md */ "import/newline-after-import": "error", /** * Prefer a default export if module exports a single name. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/prefer-default-export.md - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/modules.html#prefer-default-export + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/prefer-default-export.md + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/modules.md#prefer-default-export */ "import/prefer-default-export": "error", /** * Limit the maximum number of dependencies a module can have. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/max-dependencies.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/max-dependencies.md */ "import/max-dependencies": "off", /** * Forbid unassigned imports. * Enabled because importing for side effects is perfectly acceptable in many use cases like stylesheets. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-unassigned-import.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-unassigned-import.md */ "import/no-unassigned-import": "off", /** * Forbid named default exports. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-named-default.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-named-default.md */ "import/no-named-default": "error", /** * Forbid anonymous values as default exports. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-anonymous-default-export.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-anonymous-default-export.md */ "import/no-anonymous-default-export": "off", /** * Prefer named exports to be grouped together in a single export declaration. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/group-exports.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/group-exports.md */ "import/group-exports": "off", /** * Forbid default exports. * @since 0.2.0 - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-default-export.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-default-export.md */ "import/no-default-export": "off", /** * Prohibit named exports. * @since 0.6.0 - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-named-export.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-named-export.md */ "import/no-named-export": "off", /** * Prohibit named exports. * @since 0.6.0 - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/dynamic-import-chunkname.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/dynamic-import-chunkname.md */ "import/dynamic-import-chunkname": "off", }, diff --git a/packages/@arcticicestudio/eslint-config-base/rules/node-and-common.js b/packages/@svengreb/eslint-config-base/rules/node-and-common.js similarity index 57% rename from packages/@arcticicestudio/eslint-config-base/rules/node-and-common.js rename to packages/@svengreb/eslint-config-base/rules/node-and-common.js index d5ec362..f535962 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/node-and-common.js +++ b/packages/@svengreb/eslint-config-base/rules/node-and-common.js @@ -1,13 +1,12 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Rules related to code running in Node.js, or in browsers with CommonJS. * - * @see https://eslint.org/docs/rules/#nodejs-and-commonjs + * @see https://eslint.org/docs/latest/rules/#nodejs-and-commonjs * @see https://nodejs.org * @see http://www.commonjs.org */ @@ -18,7 +17,7 @@ module.exports = { rules: { /** * Disallow use of the `Buffer()` constructor. - * @see https://eslint.org/docs/rules/no-buffer-constructor + * @see https://eslint.org/docs/latest/rules/no-buffer-constructor */ "no-buffer-constructor": "error", }, diff --git a/packages/@arcticicestudio/eslint-config-base/rules/possible-errors.js b/packages/@svengreb/eslint-config-base/rules/possible-errors.js similarity index 63% rename from packages/@arcticicestudio/eslint-config-base/rules/possible-errors.js rename to packages/@svengreb/eslint-config-base/rules/possible-errors.js index 8ec2e33..144e984 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/possible-errors.js +++ b/packages/@svengreb/eslint-config-base/rules/possible-errors.js @@ -1,50 +1,49 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Rules related to possible syntax or logic errors. * - * @see https://eslint.org/docs/rules/#possible-errors + * @see https://eslint.org/docs/latest/rules/#possible-errors */ module.exports = { rules: { /** * Enforce "for" loop update clause moving the counter in the right direction. - * @see https://eslint.org/docs/rules/for-direction + * @see https://eslint.org/docs/latest/rules/for-direction */ "for-direction": "error", /** * Enforces that a return statement is present in property getters. - * @see https://eslint.org/docs/rules/getter-return + * @see https://eslint.org/docs/latest/rules/getter-return */ "getter-return": ["error", { allowImplicit: true }], /** * Disallow using an async function as a Promise executor. * @since 0.6.0 - * @see https://eslint.org/docs/rules/no-async-promise-executor + * @see https://eslint.org/docs/latest/rules/no-async-promise-executor */ "no-async-promise-executor": "error", /** * Disallow await inside of loops. - * @see https://eslint.org/docs/rules/no-await-in-loop + * @see https://eslint.org/docs/latest/rules/no-await-in-loop */ "no-await-in-loop": "error", /** * Disallow comparing against negative zero (-0). - * @see https://eslint.org/docs/rules/no-compare-neg-zero + * @see https://eslint.org/docs/latest/rules/no-compare-neg-zero */ "no-compare-neg-zero": "error", /** * Disallow assignment operators in conditional statements. - * @see https://eslint.org/docs/rules/no-cond-assign + * @see https://eslint.org/docs/latest/rules/no-cond-assign */ "no-cond-assign": ["error", "always"], /** * Disallow the use of console. - * @see https://eslint.org/docs/rules/no-console + * @see https://eslint.org/docs/latest/rules/no-console */ "no-console": [ "warn", @@ -54,63 +53,63 @@ module.exports = { ], /** * Disallow constant expressions in conditions. - * @see https://eslint.org/docs/rules/no-constant-condition + * @see https://eslint.org/docs/latest/rules/no-constant-condition */ "no-constant-condition": "warn", /** * Disallow control characters in regular expressions. - * @see https://eslint.org/docs/rules/no-control-regex + * @see https://eslint.org/docs/latest/rules/no-control-regex */ "no-control-regex": "error", /** * Disallow the use of "debugger". - * @see https://eslint.org/docs/rules/no-debugger + * @see https://eslint.org/docs/latest/rules/no-debugger */ "no-debugger": "error", /** * Disallow duplicate arguments in "function" definitions. - * @see https://eslint.org/docs/rules/no-dupe-args + * @see https://eslint.org/docs/latest/rules/no-dupe-args */ "no-dupe-args": "error", /** * Disallow chained `if-else-if` statements. * @since 0.9.0 - * @see https://eslint.org/docs/rules/no-dupe-else-if + * @see https://eslint.org/docs/latest/rules/no-dupe-else-if */ "no-dupe-else-if": "error", /** * Disallow duplicate keys in object literals. - * @see https://eslint.org/docs/rules/no-dupe-keys + * @see https://eslint.org/docs/latest/rules/no-dupe-keys */ "no-dupe-keys": "error", /** * Disallow a duplicate case label. - * @see https://eslint.org/docs/rules/no-duplicate-case + * @see https://eslint.org/docs/latest/rules/no-duplicate-case */ "no-duplicate-case": "error", /** * Disallow empty block statements. - * @see https://eslint.org/docs/rules/no-empty + * @see https://eslint.org/docs/latest/rules/no-empty */ "no-empty": "warn", /** * Disallow empty character classes in regular expressions. - * @see https://eslint.org/docs/rules/no-empty-character-class + * @see https://eslint.org/docs/latest/rules/no-empty-character-class */ "no-empty-character-class": "error", /** * Disallow reassigning exceptions in "catch" clauses. - * @see https://eslint.org/docs/rules/no-ex-assign + * @see https://eslint.org/docs/latest/rules/no-ex-assign */ "no-ex-assign": "error", /** * Disallow unnecessary boolean casts. - * @see https://eslint.org/docs/rules/no-extra-boolean-cast + * @see https://eslint.org/docs/latest/rules/no-extra-boolean-cast */ "no-extra-boolean-cast": "error", /** * Disallow unnecessary parentheses. - * @see https://eslint.org/docs/rules/no-extra-parens + * @see https://eslint.org/docs/latest/rules/no-extra-parens */ "no-extra-parens": [ "off", @@ -119,113 +118,113 @@ module.exports = { conditionalAssign: true, returnAssign: false, nestedBinaryExpressions: false, - // Delegate to "eslint-plugin-react" via "@arcticicestudio/eslint-config". + // Delegate to "eslint-plugin-react" via "@svengreb/eslint-config". ignoreJSX: "all", enforceForArrowConditionals: false, }, ], /** * Disallow unnecessary semicolons. - * @see https://eslint.org/docs/rules/no-extra-semi + * @see https://eslint.org/docs/latest/rules/no-extra-semi */ "no-extra-semi": "error", /** * Disallow reassigning "function" declarations. - * @see https://eslint.org/docs/rules/no-func-assign + * @see https://eslint.org/docs/latest/rules/no-func-assign */ "no-func-assign": "error", /** * Disallow assigning to imported bindings. * @since 0.9.0 - * @see https://eslint.org/docs/rules/no-import-assign + * @see https://eslint.org/docs/latest/rules/no-import-assign */ "no-import-assign": "error", /** * Disallow variable or "function" declarations in nested blocks. - * @see https://eslint.org/docs/rules/no-inner-declarations + * @see https://eslint.org/docs/latest/rules/no-inner-declarations */ "no-inner-declarations": "error", /** * Disallow invalid regular expression strings in "RegExp" constructors. - * @see https://eslint.org/docs/rules/no-invalid-regexp + * @see https://eslint.org/docs/latest/rules/no-invalid-regexp */ "no-invalid-regexp": "error", /** * Disallow irregular whitespace. - * @see https://eslint.org/docs/rules/no-irregular-whitespace + * @see https://eslint.org/docs/latest/rules/no-irregular-whitespace */ "no-irregular-whitespace": "error", /** * Disallow characters which are made with multiple code points in character class syntax. * @since 0.6.0 - * @see https://eslint.org/docs/rules/no-misleading-character-class + * @see https://eslint.org/docs/latest/rules/no-misleading-character-class */ "no-misleading-character-class": "error", /** * Disallow calling global object properties as functions. - * @see https://eslint.org/docs/rules/no-obj-calls + * @see https://eslint.org/docs/latest/rules/no-obj-calls */ "no-obj-calls": "error", /** * Disallow use of Object.prototypes builtins directly. - * @see https://eslint.org/docs/rules/no-prototype-builtins + * @see https://eslint.org/docs/latest/rules/no-prototype-builtins */ "no-prototype-builtins": "error", /** * Disallow multiple spaces in regular expression literals. - * @see https://eslint.org/docs/rules/no-regex-spaces + * @see https://eslint.org/docs/latest/rules/no-regex-spaces */ "no-regex-spaces": "error", /** * Disallow sparse arrays. - * @see https://eslint.org/docs/rules/no-sparse-arrays + * @see https://eslint.org/docs/latest/rules/no-sparse-arrays */ "no-sparse-arrays": "error", /** * Disallow returning values from setters. * @since 0.9.0 - * @see https://eslint.org/docs/rules/no-setter-return + * @see https://eslint.org/docs/latest/rules/no-setter-return */ "no-setter-return": "error", /** * Disallow template literal placeholder syntax in regular strings. - * @see https://eslint.org/docs/rules/no-template-curly-in-string + * @see https://eslint.org/docs/latest/rules/no-template-curly-in-string */ "no-template-curly-in-string": "error", /** * Disallow confusing multiline expressions. - * @see https://eslint.org/docs/rules/no-unexpected-multiline + * @see https://eslint.org/docs/latest/rules/no-unexpected-multiline */ "no-unexpected-multiline": "error", /** * Disallow unreachable code after "return", "throw", "continue", and "break" statements. - * @see https://eslint.org/docs/rules/no-unreachable + * @see https://eslint.org/docs/latest/rules/no-unreachable */ "no-unreachable": "error", /** * Disallow control flow statements in "finally" blocks. - * @see https://eslint.org/docs/rules/no-unsafe-finally + * @see https://eslint.org/docs/latest/rules/no-unsafe-finally */ "no-unsafe-finally": "error", /** * Disallow negating the left operand of relational operators. - * @see https://eslint.org/docs/rules/no-unsafe-negation + * @see https://eslint.org/docs/latest/rules/no-unsafe-negation */ "no-unsafe-negation": "error", /** * Disallow assignments that can lead to race conditions due to usage of `await` or `yield`. * @since 0.6.0 - * @see https://eslint.org/docs/rules/require-atomic-updates + * @see https://eslint.org/docs/latest/rules/require-atomic-updates */ "require-atomic-updates": "error", /** * Require calls to "isNaN()" when checking for "NaN". - * @see https://eslint.org/docs/rules/use-isnan + * @see https://eslint.org/docs/latest/rules/use-isnan */ "use-isnan": "error", /** * Enforce comparing "typeof" expressions against valid strings. - * @see https://eslint.org/docs/rules/valid-typeof + * @see https://eslint.org/docs/latest/rules/valid-typeof */ "valid-typeof": ["error", { requireStringLiterals: true }], }, diff --git a/packages/@arcticicestudio/eslint-config-base/rules/prettier/index.js b/packages/@svengreb/eslint-config-base/rules/prettier/index.js similarity index 75% rename from packages/@arcticicestudio/eslint-config-base/rules/prettier/index.js rename to packages/@svengreb/eslint-config-base/rules/prettier/index.js index 2259e00..c5638fc 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/prettier/index.js +++ b/packages/@svengreb/eslint-config-base/rules/prettier/index.js @@ -1,12 +1,10 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Prettier plugin rules. - * * @since 0.9.0 * @see https://github.com/prettier/eslint-plugin-prettier * @see https://github.com/prettier/eslint-config-prettier diff --git a/packages/@arcticicestudio/eslint-config-base/rules/strict.js b/packages/@svengreb/eslint-config-base/rules/strict.js similarity index 55% rename from packages/@arcticicestudio/eslint-config-base/rules/strict.js rename to packages/@svengreb/eslint-config-base/rules/strict.js index 7b86f6b..a0caadb 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/strict.js +++ b/packages/@svengreb/eslint-config-base/rules/strict.js @@ -1,20 +1,19 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Rule related to strict mode directives. * - * @see https://eslint.org/docs/rules/#strict-mode + * @see https://eslint.org/docs/latest/rules/#strict-mode */ module.exports = { rules: { /** * Require or disallow strict mode directives. * Disabled because it is automatically handled through Babel. - * @see https://eslint.org/docs/rules/strict + * @see https://eslint.org/docs/latest/rules/strict */ strict: ["error", "never"], }, diff --git a/packages/@arcticicestudio/eslint-config-base/rules/style.js b/packages/@svengreb/eslint-config-base/rules/style.js similarity index 59% rename from packages/@arcticicestudio/eslint-config-base/rules/style.js rename to packages/@svengreb/eslint-config-base/rules/style.js index c239bf8..9677fb6 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/style.js +++ b/packages/@svengreb/eslint-config-base/rules/style.js @@ -1,35 +1,34 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ const INDENT_SIZE = 2; -const MAX_LINE_LENGTH = 120; +const MAX_LINE_LENGTH = 160; /** * Rules related to style guidelines. * - * @see https://eslint.org/docs/rules/#stylistic-issues + * @see https://eslint.org/docs/latest/rules/#stylistic-issues */ module.exports = { rules: { /** * Enforce line breaks after opening and before closing array brackets. - * @see https://eslint.org/docs/rules/array-bracket-newline + * @see https://eslint.org/docs/latest/rules/array-bracket-newline */ "array-bracket-newline": ["warn", "consistent"], /** * Enforce consistent spacing inside array brackets. - * @see https://eslint.org/docs/rules/array-bracket-spacing - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#inside-brackets + * @see https://eslint.org/docs/latest/rules/array-bracket-spacing + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#inside-brackets */ "array-bracket-spacing": ["error", "never"], /** * Enforce line breaks after each array element. * This rule is disabled because it varies from case-to-case and should be handled by a AST formatter (e.g. * Prettier) or manually by the author. - * @see https://eslint.org/docs/rules/array-element-newline + * @see https://eslint.org/docs/latest/rules/array-element-newline * @see https://prettier.io */ "array-element-newline": [ @@ -41,35 +40,35 @@ module.exports = { ], /** * Disallow or enforce spaces inside of blocks after opening block and before closing block. - * @see https://eslint.org/docs/rules/block-spacing + * @see https://eslint.org/docs/latest/rules/block-spacing */ "block-spacing": ["error", "always"], /** * Enforce consistent brace style for blocks. - * @see https://eslint.org/docs/rules/brace-style - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/blocks.html#brace-style + * @see https://eslint.org/docs/latest/rules/brace-style + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/blocks.md#brace-style */ "brace-style": ["error", "1tbs", { allowSingleLine: true }], /** * Enforce camelCase naming convention. - * @see https://eslint.org/docs/rules/camelcase - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/naming_conventions.html#camelcase + * @see https://eslint.org/docs/latest/rules/camelcase + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/naming_conventions.md#camelcase * @see https://en.wikipedia.org/wiki/Camel_case */ camelcase: ["error", { properties: "always" }], /** * Enforce or disallow capitalization of the first letter of a comment. - * @see https://eslint.org/docs/rules/capitalized-comments + * @see https://eslint.org/docs/latest/rules/capitalized-comments */ "capitalized-comments": ["warn", "always"], /** * Require trailing commas for multiline statements. - * @see https://eslint.org/docs/rules/comma-dangle + * @see https://eslint.org/docs/latest/rules/comma-dangle */ "comma-dangle": ["error", "always-multiline"], /** * Enforce consistent spacing before and after commas. - * @see https://eslint.org/docs/rules/comma-spacing + * @see https://eslint.org/docs/latest/rules/comma-spacing */ "comma-spacing": [ "error", @@ -80,8 +79,8 @@ module.exports = { ], /** * Enforce consistent comma style. - * @see https://eslint.org/docs/rules/comma-style - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/commas.html#leading-and-trailing + * @see https://eslint.org/docs/latest/rules/comma-style + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/commas.md#leading-and-trailing */ "comma-style": [ "error", @@ -104,80 +103,80 @@ module.exports = { ], /** * Enforce consistent spacing inside computed property brackets. - * @see https://eslint.org/docs/rules/computed-property-spacing + * @see https://eslint.org/docs/latest/rules/computed-property-spacing */ "computed-property-spacing": ["error", "never"], /** * Enforce consistent naming when capturing the current execution context. - * @see https://eslint.org/docs/rules/consistent-this + * @see https://eslint.org/docs/latest/rules/consistent-this */ "consistent-this": "off", /** * Require or disallow newline at the end of files. - * @see https://eslint.org/docs/rules/eol-last - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#newline + * @see https://eslint.org/docs/latest/rules/eol-last + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#newline */ "eol-last": ["error", "always"], /** * Require or disallow spacing between function identifiers and their invocations. - * @see https://eslint.org/docs/rules/func-call-spacing + * @see https://eslint.org/docs/latest/rules/func-call-spacing */ "func-call-spacing": ["error", "never"], /** * Require function names to match the name of the variable or property to which they are assigned. - * @see https://eslint.org/docs/rules/func-name-matching + * @see https://eslint.org/docs/latest/rules/func-name-matching */ "func-name-matching": "off", /** * Require or disallow named function expressions. - * @see https://eslint.org/docs/rules/func-names + * @see https://eslint.org/docs/latest/rules/func-names */ "func-names": "warn", /** * Enforce the consistent use of either `function` declarations or expressions. - * @see https://eslint.org/docs/rules/func-style - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#declaration + * @see https://eslint.org/docs/latest/rules/func-style + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#declaration */ "func-style": ["off", "expression"], /** * Enforce line breaks between arguments of a function call. * @since 0.6.0 - * @see https://eslint.org/docs/rules/function-call-argument-newline - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#signature-invocation-indentation + * @see https://eslint.org/docs/latest/rules/function-call-argument-newline + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#signature-invocation-indentation */ "function-call-argument-newline": ["off", "consistent"], /** * Enforce consistent line breaks inside function parentheses. - * @see https://eslint.org/docs/rules/function-paren-newline + * @see https://eslint.org/docs/latest/rules/function-paren-newline */ "function-paren-newline": ["error", "consistent"], /** * Disallow specified identifiers. - * @see https://eslint.org/docs/rules/id-blacklist + * @see https://eslint.org/docs/latest/rules/id-blacklist */ "id-blacklist": "off", /** * Enforce minimum and maximum identifier lengths. - * @see https://eslint.org/docs/rules/id-length - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/naming_conventions.html#descriptive + * @see https://eslint.org/docs/latest/rules/id-length + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/naming_conventions.md#descriptive */ "id-length": "off", /** * Require identifiers to match a specified regular expression. - * @see https://eslint.org/docs/rules/id-match + * @see https://eslint.org/docs/latest/rules/id-match */ "id-match": "off", /** * Enforce the location of arrow function bodies. - * @see https://eslint.org/docs/rules/implicit-arrow-linebreak + * @see https://eslint.org/docs/latest/rules/implicit-arrow-linebreak */ "implicit-arrow-linebreak": ["off", "beside"], /** * Enforce consistent indentation. * The list of ignored nodes has been derived from "benjamn/ast-types". - * @see https://eslint.org/docs/rules/indent - * @see https://github.com/benjamn/ast-types/blob/HEAD/def/jsx.js - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#indentation-character + * @see https://eslint.org/docs/latest/rules/indent + * @see https://github.com/benjamn/ast-types/blob/master/src/def/jsx.ts + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#indentation-character */ indent: [ "error", @@ -219,13 +218,13 @@ module.exports = { ], /** * Enforce the consistent use of either double or single quotes in JSX attributes. - * @see https://eslint.org/docs/rules/jsx-quotes - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/react/strings.html#quotes + * @see https://eslint.org/docs/latest/rules/jsx-quotes + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/strings.md#quotes */ "jsx-quotes": ["error", "prefer-double"], /** * Enforce consistent "spacing" between keys and values in object literal properties. - * @see https://eslint.org/docs/rules/key-spacing + * @see https://eslint.org/docs/latest/rules/key-spacing */ "key-spacing": [ "error", @@ -236,8 +235,8 @@ module.exports = { ], /** * Enforce consistent spacing before and after keywords. - * @see https://eslint.org/docs/rules/keyword-spacing - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#around-keywords + * @see https://eslint.org/docs/latest/rules/keyword-spacing + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#around-keywords */ "keyword-spacing": [ "error", @@ -248,33 +247,33 @@ module.exports = { ], /** * Enforce position of line comments. - * @see https://eslint.org/docs/rules/line-comment-position + * @see https://eslint.org/docs/latest/rules/line-comment-position */ "line-comment-position": ["warn", { position: "above" }], /** * Enforce consistent line break style. - * @see https://eslint.org/docs/rules/linebreak-style + * @see https://eslint.org/docs/latest/rules/linebreak-style */ "linebreak-style": ["error", "unix"], /** * Require empty lines around comments. - * @see https://eslint.org/docs/rules/lines-around-comment + * @see https://eslint.org/docs/latest/rules/lines-around-comment */ "lines-around-comment": "off", /** * Require or disallow an empty line between class members. - * @see https://eslint.org/docs/rules/lines-between-class-members + * @see https://eslint.org/docs/latest/rules/lines-between-class-members */ "lines-between-class-members": ["error", "always", { exceptAfterSingleLine: false }], /** * Enforce a maximum depth that blocks can be nested. - * @see https://eslint.org/docs/rules/max-depth + * @see https://eslint.org/docs/latest/rules/max-depth */ "max-depth": ["warn", 4], /** * Enforce a maximum line length. - * @see https://eslint.org/docs/rules/max-len - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#maximum-line-length + * @see https://eslint.org/docs/latest/rules/max-len + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#maximum-line-length */ "max-len": [ "error", @@ -290,92 +289,92 @@ module.exports = { ], /** * Enforce a maximum number of lines per file. - * @see https://eslint.org/docs/rules/max-lines + * @see https://eslint.org/docs/latest/rules/max-lines */ "max-lines": "off", /** * Enforce a maximum function length. * @since 0.6.0 - * @see https://eslint.org/docs/rules/max-lines-per-function + * @see https://eslint.org/docs/latest/rules/max-lines-per-function */ "max-lines-per-function": "off", /** * Enforce a maximum depth that callbacks can be nested. - * @see https://eslint.org/docs/rules/max-nested-callbacks + * @see https://eslint.org/docs/latest/rules/max-nested-callbacks */ "max-nested-callbacks": "off", /** * Enforce a maximum number of parameters in function definitions. - * @see https://eslint.org/docs/rules/max-params + * @see https://eslint.org/docs/latest/rules/max-params */ "max-params": "off", /** * Enforce a maximum number of statements allowed in function blocks. - * @see https://eslint.org/docs/rules/max-statements + * @see https://eslint.org/docs/latest/rules/max-statements */ "max-statements": "off", /** * Enforce a maximum number of statements allowed per line. - * @see https://eslint.org/docs/rules/max-statements-per-line + * @see https://eslint.org/docs/latest/rules/max-statements-per-line */ "max-statements-per-line": "off", /** * Enforce a particular style for multiline comments. - * @see https://eslint.org/docs/rules/multiline-comment-style + * @see https://eslint.org/docs/latest/rules/multiline-comment-style */ "multiline-comment-style": ["error", "starred-block"], /** * Enforce newlines between operands of ternary expressions. - * @see https://eslint.org/docs/rules/multiline-ternary + * @see https://eslint.org/docs/latest/rules/multiline-ternary */ "multiline-ternary": "off", /** * Require constructor names to begin with a capital letter. - * @see https://eslint.org/docs/rules/new-cap - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/naming_conventions.html#pascalcase + * @see https://eslint.org/docs/latest/rules/new-cap + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/naming_conventions.md#pascalcase */ "new-cap": "off", /** * Require parentheses when invoking a constructor with no arguments. - * @see https://eslint.org/docs/rules/new-parens + * @see https://eslint.org/docs/latest/rules/new-parens */ "new-parens": "error", /** * Require a newline after each call in a method chain. - * @see https://eslint.org/docs/rules/newline-per-chained-call - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#chains + * @see https://eslint.org/docs/latest/rules/newline-per-chained-call + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#chains */ "newline-per-chained-call": ["error", { ignoreChainWithDepth: 2 }], /** * Disallow "Array" constructors. - * @see https://eslint.org/docs/rules/no-array-constructor - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/arrays.html#literals + * @see https://eslint.org/docs/latest/rules/no-array-constructor + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/arrays.md#literals */ "no-array-constructor": "error", /** * Disallow bitwise operators. - * @see https://eslint.org/docs/rules/no-bitwise + * @see https://eslint.org/docs/latest/rules/no-bitwise */ "no-bitwise": "warn", /** * Disallow `continue` statements. - * @see https://eslint.org/docs/rules/no-continue + * @see https://eslint.org/docs/latest/rules/no-continue */ "no-continue": "error", /** * Disallow inline comments after code. - * @see https://eslint.org/docs/rules/no-inline-comments + * @see https://eslint.org/docs/latest/rules/no-inline-comments */ "no-inline-comments": "error", /** * Disallow `if` statements as the only statement in `else` blocks. - * @see https://eslint.org/docs/rules/no-lonely-if + * @see https://eslint.org/docs/latest/rules/no-lonely-if */ "no-lonely-if": "off", /** * Disallow mixes of different operators. - * @see https://eslint.org/docs/rules/no-mixed-operators - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/comparison_operators_and_equality.html#no-mixed-operators + * @see https://eslint.org/docs/latest/rules/no-mixed-operators + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/comparison_operators_and_equality.md#no-mixed-operators */ "no-mixed-operators": [ "warn", @@ -396,18 +395,18 @@ module.exports = { ], /** * Disallow mixed spaces and tabs for indentation. - * @see https://eslint.org/docs/rules/no-mixed-spaces-and-tabs + * @see https://eslint.org/docs/latest/rules/no-mixed-spaces-and-tabs */ "no-mixed-spaces-and-tabs": "error", /** * Disallow use of chained assignment expressions. - * @see https://eslint.org/docs/rules/no-multi-assign - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/variables.html#no-chain-assignment + * @see https://eslint.org/docs/latest/rules/no-multi-assign + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/variables.md#no-chain-assignment */ "no-multi-assign": "error", /** * Disallow multiple empty lines. - * @see https://eslint.org/docs/rules/no-multiple-empty-lines + * @see https://eslint.org/docs/latest/rules/no-multiple-empty-lines */ "no-multiple-empty-lines": [ "error", @@ -419,31 +418,31 @@ module.exports = { ], /** * Disallow negated conditions. - * @see https://eslint.org/docs/rules/no-negated-condition + * @see https://eslint.org/docs/latest/rules/no-negated-condition */ "no-negated-condition": "off", /** * Disallow nested ternary expressions. - * @see https://eslint.org/docs/rules/no-nested-ternary - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/comparison_operators_and_equality.html#nested-ternaries + * @see https://eslint.org/docs/latest/rules/no-nested-ternary + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/comparison_operators_and_equality.md#nested-ternaries */ "no-nested-ternary": "error", /** * Disallow Object constructors. - * @see https://eslint.org/docs/rules/no-new-object - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/objects.html#no-new + * @see https://eslint.org/docs/latest/rules/no-new-object + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/objects.md#no-new */ "no-new-object": "error", /** * Disallow the unary operators `++` and `--`. - * @see https://eslint.org/docs/rules/no-plusplus - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/variables.html#no-unary-increment-and-decrement + * @see https://eslint.org/docs/latest/rules/no-plusplus + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/variables.md#no-unary-increment-and-decrement */ "no-plusplus": "error", /** * Disallow specified syntax. - * @see https://eslint.org/docs/rules/no-restricted-syntax - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/iterators_and_generators.html#no-iterators + * @see https://eslint.org/docs/latest/rules/no-restricted-syntax + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/iterators_and_generators.md#no-iterators */ "no-restricted-syntax": [ "error", @@ -459,8 +458,7 @@ module.exports = { }, { selector: "LabeledStatement", - message: - "Labels are a form of GOTO. Using them makes code confusing, hard to maintain, and decreases the readability.", + message: "Labels are a form of GOTO. Using them makes code confusing, hard to maintain, and decreases the readability.", }, { selector: "WithStatement", @@ -469,17 +467,17 @@ module.exports = { ], /** * Disallow all tabs. - * @see https://eslint.org/docs/rules/no-tabs + * @see https://eslint.org/docs/latest/rules/no-tabs */ "no-tabs": "error", /** * Disallow ternary operators. - * @see https://eslint.org/docs/rules/no-ternary + * @see https://eslint.org/docs/latest/rules/no-ternary */ "no-ternary": "off", /** * Disallow trailing whitespace at the end of lines. - * @see https://eslint.org/docs/rules/no-trailing-spaces + * @see https://eslint.org/docs/latest/rules/no-trailing-spaces */ "no-trailing-spaces": [ "error", @@ -490,8 +488,8 @@ module.exports = { ], /** * Disallow dangling underscores in identifiers. - * @see https://eslint.org/docs/rules/no-underscore-dangle - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/naming_conventions.html#underscores + * @see https://eslint.org/docs/latest/rules/no-underscore-dangle + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/naming_conventions.md#underscores */ "no-underscore-dangle": [ "error", @@ -503,31 +501,31 @@ module.exports = { ], /** * Disallow ternary operators when simpler alternatives exist. - * @see https://eslint.org/docs/rules/no-unneeded-ternary - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/comparison_operators_and_equality.html#avoid-unneeded-ternary + * @see https://eslint.org/docs/latest/rules/no-unneeded-ternary + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/comparison_operators_and_equality.md#avoid-unneeded-ternary */ "no-unneeded-ternary": ["warn", { defaultAssignment: false }], /** * Disallow whitespace before properties. - * @see https://eslint.org/docs/rules/no-whitespace-before-property - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#chains + * @see https://eslint.org/docs/latest/rules/no-whitespace-before-property + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#chains */ "no-whitespace-before-property": "error", /** * Enforce the location of single-line statements. - * @see https://eslint.org/docs/rules/nonblock-statement-body-position - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/blocks.html#braces + * @see https://eslint.org/docs/latest/rules/nonblock-statement-body-position + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/blocks.md#braces */ "nonblock-statement-body-position": ["error", "beside"], /** * Enforce consistent spacing inside braces. - * @see https://eslint.org/docs/rules/object-curly-spacing - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#inside-braces + * @see https://eslint.org/docs/latest/rules/object-curly-spacing + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#inside-braces */ "object-curly-spacing": ["error", "always"], /** * Enforce consistent line breaks inside braces. - * @see https://eslint.org/docs/rules/object-curly-newline + * @see https://eslint.org/docs/latest/rules/object-curly-newline */ "object-curly-newline": [ "error", @@ -540,51 +538,51 @@ module.exports = { ], /** * Enforce placing object properties on separate lines. - * @see https://eslint.org/docs/rules/object-property-newline + * @see https://eslint.org/docs/latest/rules/object-property-newline */ "object-property-newline": ["warn", { allowAllPropertiesOnSameLine: true }], /** * Enforce variables to be declared either together or separately in functions. - * @see https://eslint.org/docs/rules/one-var - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/variables.html#declaration-separation + * @see https://eslint.org/docs/latest/rules/one-var + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/variables.md#declaration-separation */ "one-var": ["error", "never"], /** * Require or disallow newlines around variable declarations. - * @see https://eslint.org/docs/rules/one-var-declaration-per-line + * @see https://eslint.org/docs/latest/rules/one-var-declaration-per-line */ "one-var-declaration-per-line": ["error", "always"], /** * Require or disallow assignment operator shorthand where possible. - * @see https://eslint.org/docs/rules/operator-assignment + * @see https://eslint.org/docs/latest/rules/operator-assignment */ "operator-assignment": ["warn", "always"], /** * Enforce consistent line break style for operators. - * @see https://eslint.org/docs/rules/operator-linebreak + * @see https://eslint.org/docs/latest/rules/operator-linebreak */ "operator-linebreak": ["error", "after", { overrides: { "?": "before", ":": "before" } }], /** * Require or disallow padding within blocks. - * @see https://eslint.org/docs/rules/padded-blocks - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#padded-blocks + * @see https://eslint.org/docs/latest/rules/padded-blocks + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#padded-blocks */ "padded-blocks": ["error", "never"], /** * Require or disallow padding lines between statements. - * @see https://eslint.org/docs/rules/padding-line-between-statements - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/objects.html#quoted-properties + * @see https://eslint.org/docs/latest/rules/padding-line-between-statements + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/objects.md#quoted-properties */ "padding-line-between-statements": "off", /** * Prefer use of an object spread over `Object.assign`. * @since 0.6.0 - * @see https://eslint.org/docs/rules/prefer-object-spread + * @see https://eslint.org/docs/latest/rules/prefer-object-spread */ "prefer-object-spread": "warn", /** * Require quotes around object literal property names. - * @see https://eslint.org/docs/rules/quote-props + * @see https://eslint.org/docs/latest/rules/quote-props */ "quote-props": [ "warn", @@ -597,8 +595,8 @@ module.exports = { ], /** * Enforce the consistent use of either backticks, double, or single quotes. - * @see https://eslint.org/docs/rules/quotes - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/strings.html#quotes + * @see https://eslint.org/docs/latest/rules/quotes + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/strings.md#quotes */ quotes: [ "error", @@ -610,13 +608,13 @@ module.exports = { ], /** * Enforce or disallow semicolons instead of ASI. - * @see https://eslint.org/docs/rules/semi - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/semicolons.html + * @see https://eslint.org/docs/latest/rules/semi + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/semicolons.md */ semi: ["error", "always"], /** * Enforce consistent spacing before and after semicolons. - * @see https://eslint.org/docs/rules/semi-spacing + * @see https://eslint.org/docs/latest/rules/semi-spacing */ "semi-spacing": [ "error", @@ -627,12 +625,12 @@ module.exports = { ], /** * Enforce location of semicolons. - * @see https://eslint.org/docs/rules/semi-style + * @see https://eslint.org/docs/latest/rules/semi-style */ "semi-style": ["error", "last"], /** * Require object keys to be sorted. - * @see https://eslint.org/docs/rules/sort-keys + * @see https://eslint.org/docs/latest/rules/sort-keys */ "sort-keys": [ "off", @@ -644,20 +642,20 @@ module.exports = { ], /** * Require variables within the same declaration block to be sorted. - * @see https://eslint.org/docs/rules/sort-vars + * @see https://eslint.org/docs/latest/rules/sort-vars */ "sort-vars": "off", /** * Enforce consistent spacing before blocks. - * @see https://eslint.org/docs/rules/space-before-blocks - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#signature-spacing - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#before-blocks + * @see https://eslint.org/docs/latest/rules/space-before-blocks + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#signature-spacing + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#before-blocks */ "space-before-blocks": ["error", "always"], /** * Enforce consistent spacing before function definition opening parenthesis. - * @see https://eslint.org/docs/rules/space-before-function-paren - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/functions.html#signature-spacing + * @see https://eslint.org/docs/latest/rules/space-before-function-paren + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/functions.md#signature-spacing */ "space-before-function-paren": [ "error", @@ -669,19 +667,19 @@ module.exports = { ], /** * Enforce consistent spacing inside parentheses. - * @see https://eslint.org/docs/rules/space-in-parens - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#inside-parentheses + * @see https://eslint.org/docs/latest/rules/space-in-parens + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#inside-parentheses */ "space-in-parens": ["error", "never"], /** * Require spacing around infix operators. - * @see https://eslint.org/docs/rules/space-infix-ops - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/whitespace.html#infix-operator-spacing + * @see https://eslint.org/docs/latest/rules/space-infix-ops + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/whitespace.md#infix-operator-spacing */ "space-infix-ops": "error", /** * Enforce consistent spacing before or after unary operators. - * @see https://eslint.org/docs/rules/space-unary-ops + * @see https://eslint.org/docs/latest/rules/space-unary-ops */ "space-unary-ops": [ "error", @@ -692,8 +690,8 @@ module.exports = { ], /** * Enforce consistent spacing after the `//` or `/*` in a comment. - * @see https://eslint.org/docs/rules/spaced-comment - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/comments.html#spacing + * @see https://eslint.org/docs/latest/rules/spaced-comment + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/comments.md#spacing */ "spaced-comment": [ "warn", @@ -705,7 +703,7 @@ module.exports = { "!", /* * Support for TypeScript triple-slash directives. - * See https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html for more details. + * See https://www.typescriptlang.org/docs/handbook/triple-slash-directives.md for more details. */ "/", ], @@ -719,7 +717,7 @@ module.exports = { ], /** * Enforce spacing around colons of switch statements. - * @see https://eslint.org/docs/rules/switch-colon-spacing + * @see https://eslint.org/docs/latest/rules/switch-colon-spacing */ "switch-colon-spacing": [ "error", @@ -730,17 +728,17 @@ module.exports = { ], /** * Require or disallow spacing between template tags and their literals. - * @see https://eslint.org/docs/rules/template-tag-spacing + * @see https://eslint.org/docs/latest/rules/template-tag-spacing */ "template-tag-spacing": ["error", "never"], /** * Require or disallow Unicode byte order mark (BOM). - * @see https://eslint.org/docs/rules/unicode-bom + * @see https://eslint.org/docs/latest/rules/unicode-bom */ "unicode-bom": ["error", "never"], /** * Require parenthesis around regex literals. - * @see https://eslint.org/docs/rules/wrap-regex + * @see https://eslint.org/docs/latest/rules/wrap-regex */ "wrap-regex": "off", }, diff --git a/packages/@arcticicestudio/eslint-config-base/rules/variables.js b/packages/@svengreb/eslint-config-base/rules/variables.js similarity index 59% rename from packages/@arcticicestudio/eslint-config-base/rules/variables.js rename to packages/@svengreb/eslint-config-base/rules/variables.js index cd019c6..e2d1021 100644 --- a/packages/@arcticicestudio/eslint-config-base/rules/variables.js +++ b/packages/@svengreb/eslint-config-base/rules/variables.js @@ -1,69 +1,67 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ const confusingBrowserGlobals = require("confusing-browser-globals"); /** * Rules related to variable declarations. - * - * @see https://eslint.org/docs/rules/#variables + * @see https://eslint.org/docs/latest/rules/#variables */ module.exports = { rules: { /** * Require or disallow initialization in variable declarations. - * @see https://eslint.org/docs/rules/init-declarations + * @see https://eslint.org/docs/latest/rules/init-declarations */ "init-declarations": "off", /** * Disallow deleting variables. - * @see https://eslint.org/docs/rules/no-delete-var + * @see https://eslint.org/docs/latest/rules/no-delete-var */ "no-delete-var": "error", /** * Disallow labels that share a name with a variable. - * @see https://eslint.org/docs/rules/no-label-var + * @see https://eslint.org/docs/latest/rules/no-label-var */ "no-label-var": "error", /** * Disallow specified global variables. - * @see https://eslint.org/docs/rules/no-restricted-globals - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/standard_library.html#number-isnan - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/standard_library.html#number-numberisfinite + * @see https://eslint.org/docs/latest/rules/no-restricted-globals + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/standard_library.md#number-isnan + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/standard_library.md#number-numberisfinite */ "no-restricted-globals": ["error", "isFinite", "isNaN"].concat(confusingBrowserGlobals), /** * Disallow variable declarations from shadowing variables declared in the outer scope. - * @see https://eslint.org/docs/rules/no-shadow + * @see https://eslint.org/docs/latest/rules/no-shadow */ "no-shadow": "error", /** * Disallow identifiers from shadowing restricted names. - * @see https://eslint.org/docs/rules/no-shadow + * @see https://eslint.org/docs/latest/rules/no-shadow */ "no-shadow-restricted-names": "error", /** * Disallow the use of undeclared variables unless mentioned in global comments. - * @see https://eslint.org/docs/rules/no-undef - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/variables.html#declaration + * @see https://eslint.org/docs/latest/rules/no-undef + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/variables.md#declaration */ "no-undef": "error", /** * Disallow initializing variables to `undefined`. - * @see https://eslint.org/docs/rules/no-undef-init + * @see https://eslint.org/docs/latest/rules/no-undef-init */ "no-undef-init": "error", /** * Disallow the use of `undefined` as an identifier. - * @see https://eslint.org/docs/rules/no-undefined + * @see https://eslint.org/docs/latest/rules/no-undefined */ "no-undefined": "off", /** * Disallow unused variables. - * @see https://eslint.org/docs/rules/no-unused-vars + * @see https://eslint.org/docs/latest/rules/no-unused-vars */ "no-unused-vars": [ "error", @@ -75,7 +73,7 @@ module.exports = { ], /** * Disallow the use of variables before they are defined. - * @see https://eslint.org/docs/rules/no-use-before-define + * @see https://eslint.org/docs/latest/rules/no-use-before-define */ "no-use-before-define": [ "error", diff --git a/packages/@arcticicestudio/eslint-config-typescript/index.js b/packages/@svengreb/eslint-config-typescript/index.js similarity index 50% rename from packages/@arcticicestudio/eslint-config-typescript/index.js rename to packages/@svengreb/eslint-config-typescript/index.js index f9993d4..7f2e4fe 100644 --- a/packages/@arcticicestudio/eslint-config-typescript/index.js +++ b/packages/@svengreb/eslint-config-typescript/index.js @@ -1,22 +1,18 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** - * Arctic Ice Studio JavaScript style guide rules as an extensible remark-lint rule preset. + * The opinionated, yet universally applicable JavaScript code style guide rules with TypeScript support as an extensible shared ESLint configuration. * Imports all rule definitions and sets the default parser options. - * * @version 0.11.0 * @license MIT - * @author Arctic Ice Studio * @author Sven Greb - * @copyright 2018-present Arctic Ice Studio - * @copyright 2018-present Sven Greb + * @copyright 2016-present Sven Greb * @since 0.8.0 - * @see https://eslint.org/docs/user-guide/configuring.html#specifying-parser-options - * @see https://eslint.org/docs/user-guide/configuring.html#configuring-rules + * @see https://eslint.org/docs/latest/use/configure/parser + * @see https://eslint.org/docs/latest/use/configure/rules */ module.exports = { extends: [ diff --git a/packages/@svengreb/eslint-config-typescript/package.json b/packages/@svengreb/eslint-config-typescript/package.json new file mode 100644 index 0000000..6feff44 --- /dev/null +++ b/packages/@svengreb/eslint-config-typescript/package.json @@ -0,0 +1,63 @@ +{ + "name": "@svengreb/eslint-config-typescript", + "version": "0.11.0", + "description": "The opinionated, yet universally applicable JavaScript code style guide rules with TypeScript support as an extensible shared ESLint configuration", + "author": { + "name": "Sven Greb", + "email": "development@svengreb.de", + "url": "https://www.svengreb.de" + }, + "homepage": "https://github.com/svengreb/styleguide-javascript", + "repository": { + "type": "git", + "url": "git+https://github.com/svengreb/styleguide-javascript.git", + "directory": "packages/@svengreb/eslint-config-typescript" + }, + "bugs": { + "url": "https://github.com/svengreb/styleguide-javascript/issues" + }, + "license": "MIT", + "main": "index.js", + "files": [ + "rules", + "index.js", + "prettier.js" + ], + "publishConfig": { + "access": "public" + }, + "keywords": [ + "ecmascript", + "eslint", + "eslint-config", + "guide", + "javascript", + "preset", + "react", + "rule", + "style", + "svengreb", + "typescript" + ], + "scripts": { + "test": "run-s test:unused-rules", + "test:unused-rules": "eslint-find-rules --unused --deprecated --no-error" + }, + "devDependencies": { + "@typescript-eslint/eslint-plugin": "^4.33.0", + "@typescript-eslint/parser": "^4.33.0", + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.8.0", + "eslint-find-rules": "3.6.1", + "eslint-plugin-prettier": "^3.4.1", + "typescript": "^4.9.5" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.33.0", + "@typescript-eslint/parser": "^4.33.0", + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-prettier": "^3.4.1", + "typescript": "^4.9.5" + } +} diff --git a/packages/@arcticicestudio/eslint-config-typescript/prettier.js b/packages/@svengreb/eslint-config-typescript/prettier.js similarity index 65% rename from packages/@arcticicestudio/eslint-config-typescript/prettier.js rename to packages/@svengreb/eslint-config-typescript/prettier.js index 57b1af8..e60a9e9 100644 --- a/packages/@arcticicestudio/eslint-config-typescript/prettier.js +++ b/packages/@svengreb/eslint-config-typescript/prettier.js @@ -1,18 +1,15 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Entry point for the Prettier plugin integration with compatibility support for the following ESLint plugins: - * - * - `@typescript-eslint/eslint-plugin` - * + * - `@typescript-eslint/eslint-plugin` * @since 0.8.0 * @see https://github.com/prettier/eslint-plugin-prettier * @see https://github.com/prettier/eslint-config-prettier - * @see https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin + * @see https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/eslint-plugin */ module.exports = { extends: ["./rules/prettier"].map(require.resolve), diff --git a/packages/@svengreb/eslint-config-typescript/readme.md b/packages/@svengreb/eslint-config-typescript/readme.md new file mode 100644 index 0000000..88da6b1 --- /dev/null +++ b/packages/@svengreb/eslint-config-typescript/readme.md @@ -0,0 +1,230 @@ +

+ + + + + +

+ +

+ + + + + + +

+ +

+ + + + + + +

+ +

+ + + +

+ +

+ + + + + + + + + +

+ +This package implements the rules of the [opinionated, yet universally applicable JavaScript code style guide][19] as an extensible shared [ESLint][3] configuration with plugin support for [TypeScript][30] through the official [TypeScript ESLint][14] project as well as compatibility integrations for other projects like [Prettier][28]. + +## Getting Started + +To enable support for [React][9] and [JSX A11Y][7] plugin rules as well as compatibility integrations for [Prettier][28], use the shareable rule configuration package [@svengreb/eslint-config][21]. + +To only use the ESLint core and [`eslint-plugin-import`][6] rules, please use the base configurations of the [@svengreb/eslint-config-base][20] package. + +Note that this package uses [npm version 7.7.0 or higher][4] as the main package manager, but the documentations also include instructions to work with [Yarn][31] (classic / `v1`). + +### Installation + +Add the package as development dependency to your project: + +```sh +# With npm... +npm install --save-dev @svengreb/eslint-config-typescript + +# or Yarn. +yarn add --dev @svengreb/eslint-config-typescript +``` + +Note that [peer dependencies][23], like the [remark-lint][17] package itself, are **only installed automatically when using a npm version equal or higher than `7.0.0`**, otherwise they must be installed separately like described in the [peer dependencies](#peer-dependencies) section below. +See the [Node distribution index][24] for more information about which npm version is bundled with which Node version. + +#### Peer Dependencies + +This package depends on the [`@typescript-eslint/parser`][11], [`@typescript-eslint/eslint-plugin`][10] and [`typescript`][22] packages defined as [peer dependencies][23]. +Since this configuration provides an integration entry point for [Prettier][28] , the additional [`eslint-plugin-prettier`][8], [`eslint-config-prettier][5] peer dependencies are also required. + +##### npm versions `>=7.0.0` + +As of **npm version `7.0.0`, peer dependencies are** [**installed automatically**][16] and does not require any additional steps. + +##### npm versions `>=5.0.0 <7.0.0` + +For **npm version equal to or higher than `5.0.0` (pre-bundled with [Node.js 8][25]) but less than `7.0.0`**, all peer dependencies can be auto-installed using the pre-bundled [`npx`][27] package: + +```sh +npx install-peerdeps --dev @svengreb/eslint-config-typescript +``` + +##### npm versions `<5.0.0` + +If you’re using a **npm version less than `5.0.0`**, the `npx` package is not pre-bundled, but users can either simply install the [`npx`][27] package globally to run the above command or use the [install-peerdeps][26] helper package locally/globally to let it handle the installation of all peer dependencies: + +```sh +# Install and use the "install-peerdeps" helper package locally... +npm install install-peerdeps +./node_modules/.bin/install-peerdeps --dev @svengreb/eslint-config-typescript + +# ...or globally. +npm install --global install-peerdeps +install-peerdeps --dev @svengreb/eslint-config-typescript +``` + +To install all peer dependencies manually without `npx` or any helper package, the npm `info` command can be used to get a list of all packages and their versions: + +```sh +# List the names and versions of all peer dependencies... +npm info "@svengreb/eslint-config-typescript" peerDependencies + +# ...and install each listed package manually. +npm install PACKAGE@VERSION +``` + +### Usage + +This provides a [shareable configuration preset][1] that can be used by [extending the ESLint configuration file][2]. Add `@svengreb/eslint-config-typescript` and/or any of the [additional entry points](#entry-points) to the `extends` array in your `.eslintrc` configuration file: + +```js +module.exports = { + extends: [ + /* Provides and configures specific rules for TypeScript. */ + "@svengreb/eslint-config-typescript" + /* + * Optional entry point to enable support for projects using Prettier. + * Note that this must always be placed after the `@svengreb/eslint-config-typescript` preset to take + * precedence, otherwise it won't prevent errors due to useless and possibly conflicting rules! + */ + "@svengreb/eslint-config-typescript/prettier" + ] +}; +``` + +As of [`@typescript-eslint/parser` version `2.0.0`][13] (also see [typescript-eslint/typescript-eslint#890][15]), the parser will panic when parsing files that are not included within the provided _tsconfig(s)_. The `project` field passed to ESLint's `parserOptions` object is required and must point to a valid `tsconfig` file where [the `include` field][29] is correctly set up to contain pattern for all files that should be linted. + +Set the `project` field in your `eslintrc` to the path of your `tsconfig` and optionally also set the `tsconfigRootDir` when working with multiple _tsconfigs_: + +```js +module.exports = { + // ... + parserOptions: { + project: "./tsconfig.json", + }, + // ... +}; +``` + +Ensure your `tsconfig` is correctly configured to provide all file pattern for files that should be linted [in the `include` array][29] and optionally define pattern that should be excluded: + +```jsonc +{ + // ... + "include": [ + "src/**/*.ts", + "src/**/*.tsx", + "test/**/*.ts", + "test/**/*.tsx", + "typings/**/*.ts" + // ... + ] + // ... +} +``` + +The `extends` feature for _tsconfigs_ can be used to prevent code duplication by extending the root `tsconfig` and only overriding the `include` file or any other fields. + +See the [`@typescript-eslint/parser` configuration documentation][12] for all details about the `parserOptions` field(s) and the [TypScript `tsconfig` documentation][29] to correctly configure the `include` file pattern. + +## Entry Points + +This package provides multiple entry points that can be composed especially for the projects they are used in: + +- `@svengreb/eslint-config-typescript` — The default entry point that includes the specific rules for TypeScript by extending the lightweight and recommended shared configurations of the [`@typescript-eslint/eslint-plugin`][10] and [`eslint-config-prettier`][5] packages as well as overriding and adjusting various plugin and core rules to ensure the best compatibility with TypeScript: + - `@typescript-eslint/eslint-recommended` — Disables ESLint core rules that are already handled by TypeScript. + - `@typescript-eslint/recommended` — Slim and recommended set of rules for TypeScript that does not require type information. + - `@typescript-eslint/recommended-requiring-type-checking` — Additionally enable the slightly expanded set of rules that require type information. It also disables some ESLint core rules for compatibility since they are already handled by TypeScript. +- `@svengreb/eslint-config-typescript/prettier` — Entry point to enable support for [Prettier][28] through [`eslint-plugin-prettier`][8] and the officially recommended Prettier ESLint configuration using the [`eslint-config-prettier`][5] package. It disables possibly conflicting rules and rules that definitely not needed when using _Prettier_ for code formatting. There is also additional support when _Prettier_ is used for TypeScript based projects by extending the special `prettier/@typescript-eslint` configuration that also disables specific `react/*` and JSX rules. Note that this configuration **should always be placed after `@svengreb/eslint-config-typescript`** in order to override conflicting rules, otherwise the `@svengreb/eslint-config-typescript` preset will take precedence leaving conflicting rules untouched! + +## Contributing + +Please read the [contribution guidelines][18] of the [JavaScript style guide][19] project for detailed information. + +

+ + + + + +

+ +

+ Copyright © 2016-present Sven Greb +

+ +

+ + + + + + +

+ +[1]: https://eslint.org/docs/latest/extend/shareable-configs +[2]: https://eslint.org/docs/latest/use/configure/#extending-configuration-files +[3]: https://eslint.org +[4]: https://github.blog/2020-10-13-presenting-v7-0-0-of-the-npm-cli +[5]: https://github.com/prettier/eslint-config-prettier +[6]: https://github.com/import-js/eslint-plugin-import +[7]: https://github.com/evcohen/eslint-plugin-jsx-a11y +[8]: https://github.com/prettier/eslint-plugin-prettier +[9]: https://github.com/jsx-eslint/eslint-plugin-react +[10]: https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/eslint-plugin +[11]: https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/parser +[12]: https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/parser#configuration +[13]: https://github.com/typescript-eslint/typescript-eslint/releases/tag/v2.0.0 +[14]: https://github.com/typescript-eslint/typescript-eslint +[15]: https://github.com/typescript-eslint/typescript-eslint/issues/890 +[16]: https://github.com/npm/rfcs/blob/latest/implemented/0025-install-peer-deps.md +[17]: https://github.com/remarkjs/remark-lint +[18]: https://github.com/svengreb/styleguide-javascript#contributing +[19]: https://github.com/svengreb/styleguide-javascript +[20]: https://github.com/svengreb/styleguide-javascript/tree/main/packages/@svengreb/eslint-config-base +[21]: https://github.com/svengreb/styleguide-javascript/tree/main/packages/@svengreb/eslint-config +[22]: https://github.com/microsoft/TypeScript +[23]: https://nodejs.org/en/blog/npm/peer-dependencies +[24]: https://nodejs.org/dist/index.json +[25]: https://nodejs.org/dist/latest-v8.x +[26]: https://www.npmjs.com/package/install-peerdeps +[27]: https://www.npmjs.com/package/npx +[28]: https://prettier.io +[29]: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#details +[30]: https://www.typescriptlang.org +[31]: https://classic.yarnpkg.com diff --git a/packages/@arcticicestudio/eslint-config-typescript/rules/import/settings.js b/packages/@svengreb/eslint-config-typescript/rules/import/settings.js similarity index 50% rename from packages/@arcticicestudio/eslint-config-typescript/rules/import/settings.js rename to packages/@svengreb/eslint-config-typescript/rules/import/settings.js index fc44019..9b541bf 100644 --- a/packages/@arcticicestudio/eslint-config-typescript/rules/import/settings.js +++ b/packages/@svengreb/eslint-config-typescript/rules/import/settings.js @@ -1,15 +1,13 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Import plugin settings and resolvers. - * * @since 0.8.0 - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/README.md#settings - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/README.md#resolvers + * @see https://github.com/import-js/eslint-plugin-import/blob/main/README.md#settings + * @see https://github.com/import-js/eslint-plugin-import/blob/main/README.md#resolvers */ module.exports = { settings: { diff --git a/packages/@arcticicestudio/eslint-config-typescript/rules/import/style.js b/packages/@svengreb/eslint-config-typescript/rules/import/style.js similarity index 57% rename from packages/@arcticicestudio/eslint-config-typescript/rules/import/style.js rename to packages/@svengreb/eslint-config-typescript/rules/import/style.js index acf344e..710dc7d 100644 --- a/packages/@arcticicestudio/eslint-config-typescript/rules/import/style.js +++ b/packages/@svengreb/eslint-config-typescript/rules/import/style.js @@ -1,20 +1,18 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Import plugin related rules for code style guidelines. - * * @since 0.8.0 - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/README.md#rules + * @see https://github.com/import-js/eslint-plugin-import/blob/main/README.md#rules */ module.exports = { rules: { /** * Ensure consistent use of file extension within the import path including TypeScript. - * @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/extensions.md + * @see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/extensions.md */ "import/extensions": [ "error", diff --git a/packages/@arcticicestudio/eslint-config-typescript/rules/prettier/index.js b/packages/@svengreb/eslint-config-typescript/rules/prettier/index.js similarity index 75% rename from packages/@arcticicestudio/eslint-config-typescript/rules/prettier/index.js rename to packages/@svengreb/eslint-config-typescript/rules/prettier/index.js index 04bd8c4..b64faa7 100644 --- a/packages/@arcticicestudio/eslint-config-typescript/rules/prettier/index.js +++ b/packages/@svengreb/eslint-config-typescript/rules/prettier/index.js @@ -1,12 +1,10 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Prettier plugin rules. - * * @since 0.8.0 * @see https://github.com/prettier/eslint-plugin-prettier * @see https://github.com/prettier/eslint-config-prettier diff --git a/packages/@arcticicestudio/eslint-config-typescript/rules/react/index.js b/packages/@svengreb/eslint-config-typescript/rules/react/index.js similarity index 50% rename from packages/@arcticicestudio/eslint-config-typescript/rules/react/index.js rename to packages/@svengreb/eslint-config-typescript/rules/react/index.js index ad54a08..b7b93a0 100644 --- a/packages/@arcticicestudio/eslint-config-typescript/rules/react/index.js +++ b/packages/@svengreb/eslint-config-typescript/rules/react/index.js @@ -1,14 +1,12 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * React plugin rules. - * * @since 0.8.0 - * @see https://github.com/yannickcr/eslint-plugin-react#list-of-supported-rules + * @see https://github.com/jsx-eslint/eslint-plugin-react#list-of-supported-rules */ module.exports = { rules: { diff --git a/packages/@svengreb/eslint-config-typescript/rules/react/jsx.js b/packages/@svengreb/eslint-config-typescript/rules/react/jsx.js new file mode 100644 index 0000000..7f42aad --- /dev/null +++ b/packages/@svengreb/eslint-config-typescript/rules/react/jsx.js @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. + */ + +/** + * React plugin rules related to JSX. + * @since 0.8.0 + * @see https://github.com/jsx-eslint/eslint-plugin-react#jsx-specific-rules + */ +module.exports = { + rules: { + /* Allow TypeScript specific file extensions for JSX syntax. */ + "react/jsx-filename-extension": [ + "error", + { + extensions: [".tsx"], + }, + ], + }, +}; diff --git a/packages/@arcticicestudio/eslint-config-typescript/rules/typescript/index.js b/packages/@svengreb/eslint-config-typescript/rules/typescript/index.js similarity index 80% rename from packages/@arcticicestudio/eslint-config-typescript/rules/typescript/index.js rename to packages/@svengreb/eslint-config-typescript/rules/typescript/index.js index 5537b82..71ccf45 100644 --- a/packages/@arcticicestudio/eslint-config-typescript/rules/typescript/index.js +++ b/packages/@svengreb/eslint-config-typescript/rules/typescript/index.js @@ -1,16 +1,14 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * TypeScript plugin rules and parser configurations. - * * @since 0.8.0 * @see https://typescript-eslint.io - * @see https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin#supported-rules - * @see https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/parser + * @see https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/eslint-plugin#supported-rules + * @see https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/parser */ module.exports = { parser: "@typescript-eslint/parser", diff --git a/packages/@svengreb/eslint-config/index.js b/packages/@svengreb/eslint-config/index.js new file mode 100644 index 0000000..111596e --- /dev/null +++ b/packages/@svengreb/eslint-config/index.js @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. + */ + +/** + * The opinionated, yet universally applicable JavaScript code style guide rules with React support as an extensible shared ESLint configuration. + * Imports all rule definitions and sets the default parser options. + * @version 0.11.0 + * @license MIT + * @author Sven Greb + * @copyright 2016-present Sven Greb + * @see https://eslint.org/docs/latest/use/configure/parser + * @see https://eslint.org/docs/latest/use/configure/rules + */ +module.exports = { + extends: ["@svengreb/eslint-config-base", require.resolve("./rules/react"), require.resolve("./rules/react/jsx"), require.resolve("./rules/jsx-a11y")], +}; diff --git a/packages/@svengreb/eslint-config/package.json b/packages/@svengreb/eslint-config/package.json new file mode 100644 index 0000000..0569719 --- /dev/null +++ b/packages/@svengreb/eslint-config/package.json @@ -0,0 +1,64 @@ +{ + "name": "@svengreb/eslint-config", + "version": "0.11.0", + "description": "The opinionated, yet universally applicable JavaScript code style guide rules with React support as an extensible shared ESLint configuration", + "author": { + "name": "Sven Greb", + "email": "development@svengreb.de", + "url": "https://www.svengreb.de" + }, + "homepage": "https://github.com/svengreb/styleguide-javascript", + "repository": { + "type": "git", + "url": "git+https://github.com/svengreb/styleguide-javascript.git", + "directory": "packages/@svengreb/eslint-config" + }, + "bugs": { + "url": "https://github.com/svengreb/styleguide-javascript/issues" + }, + "license": "MIT", + "main": "index.js", + "files": [ + "rules", + "index.js", + "react-hooks.js" + ], + "publishConfig": { + "access": "public" + }, + "keywords": [ + "a11y", + "ecmascript", + "eslint", + "eslint-config", + "guide", + "javascript", + "preset", + "react", + "rule", + "style", + "svengreb" + ], + "scripts": { + "test": "run-s test:unused-rules", + "test:unused-rules": "eslint-find-rules --unused --deprecated --no-error" + }, + "dependencies": { + "@svengreb/eslint-config-base": ">=0.11.0 <1.0.0" + }, + "devDependencies": { + "eslint": "^7.32.0", + "eslint-find-rules": "3.6.1", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0" + }, + "peerDependencies": { + "eslint": "^7.32.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0" + } +} diff --git a/packages/@arcticicestudio/eslint-config/prettier.js b/packages/@svengreb/eslint-config/prettier.js similarity index 60% rename from packages/@arcticicestudio/eslint-config/prettier.js rename to packages/@svengreb/eslint-config/prettier.js index e6d358b..6f9d32b 100644 --- a/packages/@arcticicestudio/eslint-config/prettier.js +++ b/packages/@svengreb/eslint-config/prettier.js @@ -1,16 +1,13 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * Entry point for the Prettier plugin integration with compatibility support for the following ESLint plugins: - * - * - `eslint-plugin-react` - * + * - `eslint-plugin-react` * @since 0.9.0 - * @deprecated Moved into the @arcticicestudio/eslint-config-base package. + * @deprecated Moved into the @svengreb/eslint-config-base package. * This entry point will be removed in version 1.0.0. * @see https://github.com/prettier/eslint-plugin-prettier * @see https://github.com/prettier/eslint-config-prettier diff --git a/packages/@svengreb/eslint-config/react-hooks.js b/packages/@svengreb/eslint-config/react-hooks.js new file mode 100644 index 0000000..8a8954a --- /dev/null +++ b/packages/@svengreb/eslint-config/react-hooks.js @@ -0,0 +1,17 @@ +/* + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. + */ + +/** + * Entry point for the React Hooks plugin integration. + * @since 0.9.0 + * @see https://github.com/facebook/react/tree/main/packages/eslint-plugin-react-hooks + * @see https://react.dev/reference/react + * @see https://react.dev/learn/reusing-logic-with-custom-hooks + * @see https://react.dev/blog/2023/03/16/introducing-react-dev#going-all-in-on-modern-react-with-hooks + * @see https://legacy.reactjs.org/docs/hooks-rules.html + */ +module.exports = { + extends: ["./rules/react-hooks"].map(require.resolve), +}; diff --git a/packages/@svengreb/eslint-config/readme.md b/packages/@svengreb/eslint-config/readme.md new file mode 100644 index 0000000..a5a8d6c --- /dev/null +++ b/packages/@svengreb/eslint-config/readme.md @@ -0,0 +1,191 @@ +

+ + + + + +

+ +

+ + + + + + +

+ +

+ + + + + + +

+ +

+ + + +

+ +

+ + + + + + + + + +

+ +This package implements the rules of the [opinionated, yet universally applicable JavaScript code style guide][12] as an extensible shared [ESLint][3] configuration with plugin support for [React][8], its [_Hooks_][7] and [JSX A11Y][6]. + +## Getting Started + +To only use the ESLint core and [`eslint-plugin-import`][5] rules, please use the base configurations of the [@svengreb/eslint-config-base][13] package. + +Note that this package uses [npm version 7.7.0 or higher][4] as the main package manager, but the documentations also include instructions to work with [Yarn][20] (classic / `v1`). + +### Installation + +Add the package as development dependency to your project: + +```sh +# With npm... +npm install --save-dev @svengreb/eslint-config + +# or Yarn. +yarn add --dev @svengreb/eslint-config +``` + +Note that [peer dependencies][14], like the [remark-lint][10] package itself, are **only installed automatically when using a npm version equal or higher than `7.0.0`**, otherwise they must be installed separately like described in the [peer dependencies](#peer-dependencies) section below. +See the [Node distribution index][15] for more information about which npm version is bundled with which Node version. + +#### Peer Dependencies + +This package depends on the [eslint-plugin-react][8] and [eslint-plugin-jsx-a11y][6] packages that are defined as [peer dependencies][14]. +Since this configuration is build on top of the [base rules package][13], the additional [eslint-plugin-import][5] peer dependency is also required. + +##### npm versions `>=7.0.0` + +As of **npm version `7.0.0`, peer dependencies are** [**installed automatically**][9] and does not require any additional steps. + +##### npm versions `>=5.0.0 <7.0.0` + +For **npm version equal to or higher than `5.0.0` (pre-bundled with [Node.js 8][16]) but less than `7.0.0`**, all peer dependencies can be auto-installed using the pre-bundled [`npx`][18] package: + +```sh +npx install-peerdeps --dev @svengreb/eslint-config +``` + +##### npm versions `<5.0.0` + +If you’re using a **npm version less than `5.0.0`**, the `npx` package is not pre-bundled, but users can either simply install the [`npx`][18] package globally to run the above command or use the [install-peerdeps][17] helper package locally/globally to let it handle the installation of all peer dependencies: + +```sh +# Install and use the "install-peerdeps" helper package locally... +npm install install-peerdeps +./node_modules/.bin/install-peerdeps --dev @svengreb/eslint-config + +# ...or globally. +npm install --global install-peerdeps +install-peerdeps --dev @svengreb/eslint-config +``` + +To install all peer dependencies manually without `npx` or any helper package, the npm `info` command can be used to get a list of all packages and their versions: + +```sh +# List the names and versions of all peer dependencies... +npm info "@svengreb/eslint-config" peerDependencies + +# ...and install each listed package manually. +npm install PACKAGE@VERSION +``` + +##### Using Yarn instead of npm + +If you’re not using npm but Yarn, peer dependencies can be installed by either adding them manually or using the [install-peerdeps][17] helper package: + +```sh +# Either add all packages manually by listing all required names and their versions and install them manually... +yarn info @svengreb/eslint-config peerDependencies +yarn add --dev remark-lint #... + +# ...or use the "install-peerdeps" helper package. +yarn add --dev install-peerdeps +yarn run install-peerdeps --dev @svengreb/eslint-config +``` + +### Usage + +This package provides a [shareable configuration preset][1] that can be used by [extending the ESLint configuration file][2]. Add `@svengreb/eslint-config` and/or any of the [additional entry points](#entry-points) to the `extends` array in your `.eslintrc` configuration file: + +```js +module.exports = { + extends: [ + /* Provides all base rules and specific rules for "React" and "JSX A11Y". */ + "@svengreb/eslint-config" + /* + * Optional entry point to enable support for projects using React Hooks. + */ + "@svengreb/eslint-config/react-hooks" + ] +}; +``` + +## Entry Points + +This package provides multiple entry points that can be composed especially for the projects they are used in: + +- `@svengreb/eslint-config` — The default entry point that includes the base rules of the [@svengreb/eslint-config-base][13] package as well as additional rules from the [eslint-plugin-react][8] and [eslint-plugin-jsx-a11y][6] packages. +- `@svengreb/eslint-config/react-hooks` — Entry point to enable support for [React _Hooks_][19] through [eslint-plugin-react-hooks][7]. + +## Contributing + +Please read the [contribution guidelines][11] of the [JavaScript style guide][12] project for detailed information. + +

+ + + + + +

+ +

+ Copyright © 2016-present Sven Greb +

+ +

+ + + + + + +

+ +[1]: https://eslint.org/docs/developer-guide/shareable-configs +[2]: https://eslint.org/docs/user-guide/configuring#extending-configuration-files +[3]: https://eslint.org +[4]: https://github.blog/2020-10-13-presenting-v7-0-0-of-the-npm-cli +[5]: https://github.com/import-js/eslint-plugin-import +[6]: https://github.com/evcohen/eslint-plugin-jsx-a11y +[7]: https://github.com/facebook/react/tree/master/packages/eslint-plugin-react-hooks +[8]: https://github.com/jsx-eslint/eslint-plugin-react +[9]: https://github.com/npm/rfcs/blob/latest/implemented/0025-install-peer-deps.md +[10]: https://github.com/remarkjs/remark-lint +[11]: https://github.com/svengreb/styleguide-javascript#contributing +[12]: https://github.com/svengreb/styleguide-javascript +[13]: https://github.com/svengreb/styleguide-javascript/tree/main/packages/@svengreb/eslint-config-base +[14]: https://nodejs.org/en/blog/npm/peer-dependencies +[15]: https://nodejs.org/dist/index.json +[16]: https://nodejs.org/dist/latest-v8.x +[17]: https://www.npmjs.com/package/install-peerdeps +[18]: https://www.npmjs.com/package/npx +[19]: https://reactjs.org/docs/hooks-intro.html +[20]: https://classic.yarnpkg.com diff --git a/packages/@arcticicestudio/eslint-config/rules/jsx-a11y/index.js b/packages/@svengreb/eslint-config/rules/jsx-a11y/index.js similarity index 79% rename from packages/@arcticicestudio/eslint-config/rules/jsx-a11y/index.js rename to packages/@svengreb/eslint-config/rules/jsx-a11y/index.js index 6b1579e..8da4348 100644 --- a/packages/@arcticicestudio/eslint-config/rules/jsx-a11y/index.js +++ b/packages/@svengreb/eslint-config/rules/jsx-a11y/index.js @@ -1,12 +1,10 @@ /* - * Copyright (c) 2018-present Arctic Ice Studio - * Copyright (c) 2018-present Sven Greb - * This source code is licensed under the MIT license found in the LICENSE file. + * Copyright (c) 2016-present Sven Greb + * This source code is licensed under the MIT license found in the license file. */ /** * React JSX A11Y plugin rules. - * * @see https://github.com/evcohen/eslint-plugin-jsx-a11y#supported-rules */ module.exports = { @@ -19,13 +17,13 @@ module.exports = { rules: { /** * Enforce emojis are wrapped in and provide screen-reader access. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/accessible-emoji.md + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/accessible-emoji.md */ "jsx-a11y/accessible-emoji": "warn", /** * Enforce all elements that require alternative text have meaningful information to relay back to end user. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/alt-text.md - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/react/accessibility_a11y.html#img-alternate-text + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/alt-text.md + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/accessibility_a11y.md#img-alternate-text */ "jsx-a11y/alt-text": [ "warn", @@ -35,12 +33,12 @@ module.exports = { ], /** * Enforce all anchors to contain accessible content. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-has-content.md + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/anchor-has-content.md */ "jsx-a11y/anchor-has-content": "warn", /** * Enforce all anchors are valid, navigable elements. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/anchor-is-valid.md * @see https://github.com/ReactTraining/react-router/blob/master/packages/react-router-dom/docs/api/Link.md */ "jsx-a11y/anchor-is-valid": [ @@ -53,59 +51,59 @@ module.exports = { ], /** * Enforce elements with `aria-activedescendant` are tabbable. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-activedescendant-has-tabindex.md + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/aria-activedescendant-has-tabindex.md */ "jsx-a11y/aria-activedescendant-has-tabindex": "off", /** * Enforce all `aria-*` props are valid. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-props.md + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/aria-props.md */ "jsx-a11y/aria-props": "warn", /** * Enforce ARIA state and property values are valid. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-proptypes.md + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/aria-proptypes.md */ "jsx-a11y/aria-proptypes": "warn", /** * Enforce that elements with ARIA roles must use a valid, non-abstract ARIA role. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-role.md - * @see https://arcticicestudio.github.io/styleguide-javascript/rules/react/accessibility_a11y.html#valid-aria-roles + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/aria-role.md + * @see https://github.com/svengreb/styleguide-javascript/blob/main/rules/react/accessibility_a11y.md#valid-aria-roles */ "jsx-a11y/aria-role": ["error", { ignoreNonDom: false }], /** * Enforce that elements that do not support ARIA roles, states, and properties do not have those attributes. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-unsupported-elements.md + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/aria-unsupported-elements.md */ "jsx-a11y/aria-unsupported-elements": "warn", /** * Enforce a clickable non-interactive element has at least one keyboard event listener. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/click-events-have-key-events.md + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/click-events-have-key-events.md */ "jsx-a11y/click-events-have-key-events": "off", /** * Enforce heading elements contain accessible content. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/heading-has-content.md + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/heading-has-content.md */ "jsx-a11y/heading-has-content": "warn", /** * Enforce `` element has lang prop. - * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/html-has-lang.md + * @see https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/main/docs/rules/html-has-lang.md */ "jsx-a11y/html-has-lang": "off", /** * Enforce `