@shd101wyy/yo 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +17 -0
- package/README.md +80 -0
- package/out/cjs/index.cjs +51 -0
- package/out/cjs/yo-cli.cjs +2158 -0
- package/out/esm/index.mjs +51 -0
- package/out/types/src/codegen/async/runtime.d.ts +2 -0
- package/out/types/src/codegen/async/state-code-gen.d.ts +10 -0
- package/out/types/src/codegen/async/state-machine.d.ts +13 -0
- package/out/types/src/codegen/c/collection.d.ts +3 -0
- package/out/types/src/codegen/codegen-c.d.ts +12 -0
- package/out/types/src/codegen/constants.d.ts +3 -0
- package/out/types/src/codegen/expressions/array.d.ts +4 -0
- package/out/types/src/codegen/expressions/generation.d.ts +11 -0
- package/out/types/src/codegen/expressions/index.d.ts +2 -0
- package/out/types/src/codegen/functions/collection.d.ts +5 -0
- package/out/types/src/codegen/functions/context.d.ts +57 -0
- package/out/types/src/codegen/functions/generation.d.ts +25 -0
- package/out/types/src/codegen/functions/index.d.ts +2 -0
- package/out/types/src/codegen/index.d.ts +20 -0
- package/out/types/src/codegen/parallelism/runtime.d.ts +2 -0
- package/out/types/src/codegen/types/collection.d.ts +8 -0
- package/out/types/src/codegen/types/generation.d.ts +13 -0
- package/out/types/src/codegen/types/index.d.ts +2 -0
- package/out/types/src/codegen/utils/fixup.d.ts +2 -0
- package/out/types/src/codegen/utils/index.d.ts +77 -0
- package/out/types/src/codegen/values/index.d.ts +1 -0
- package/out/types/src/emitter.d.ts +11 -0
- package/out/types/src/env.d.ts +85 -0
- package/out/types/src/error.d.ts +45 -0
- package/out/types/src/evaluator/async/await-analysis-types.d.ts +23 -0
- package/out/types/src/evaluator/async/await-analysis.d.ts +5 -0
- package/out/types/src/evaluator/builtins/alignof.d.ts +8 -0
- package/out/types/src/evaluator/builtins/and_or.d.ts +8 -0
- package/out/types/src/evaluator/builtins/arc_fns.d.ts +58 -0
- package/out/types/src/evaluator/builtins/array_fns.d.ts +0 -0
- package/out/types/src/evaluator/builtins/as.d.ts +8 -0
- package/out/types/src/evaluator/builtins/async_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_assert.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_boolean_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_expect_error.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_list_fns.d.ts +33 -0
- package/out/types/src/evaluator/builtins/compt_print.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_string_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/consume.d.ts +8 -0
- package/out/types/src/evaluator/builtins/drop.d.ts +8 -0
- package/out/types/src/evaluator/builtins/dup.d.ts +8 -0
- package/out/types/src/evaluator/builtins/expr_fns.d.ts +33 -0
- package/out/types/src/evaluator/builtins/future_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/gc.d.ts +8 -0
- package/out/types/src/evaluator/builtins/gensym.d.ts +8 -0
- package/out/types/src/evaluator/builtins/impl_constraint.d.ts +8 -0
- package/out/types/src/evaluator/builtins/macro_expand.d.ts +8 -0
- package/out/types/src/evaluator/builtins/numeric_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/panic.d.ts +8 -0
- package/out/types/src/evaluator/builtins/ptr_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/quote.d.ts +13 -0
- package/out/types/src/evaluator/builtins/rc.d.ts +8 -0
- package/out/types/src/evaluator/builtins/sizeof.d.ts +8 -0
- package/out/types/src/evaluator/builtins/the.d.ts +8 -0
- package/out/types/src/evaluator/builtins/type_fns.d.ts +28 -0
- package/out/types/src/evaluator/builtins/va_start.d.ts +8 -0
- package/out/types/src/evaluator/builtins/var_fns.d.ts +18 -0
- package/out/types/src/evaluator/calls/array.d.ts +13 -0
- package/out/types/src/evaluator/calls/array_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/closure_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/compt_function.d.ts +19 -0
- package/out/types/src/evaluator/calls/compt_list_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/function.d.ts +16 -0
- package/out/types/src/evaluator/calls/function_type.d.ts +15 -0
- package/out/types/src/evaluator/calls/helper.d.ts +42 -0
- package/out/types/src/evaluator/calls/iso.d.ts +15 -0
- package/out/types/src/evaluator/calls/module_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/numeric_type.d.ts +15 -0
- package/out/types/src/evaluator/calls/pointer.d.ts +8 -0
- package/out/types/src/evaluator/calls/pointer_type.d.ts +14 -0
- package/out/types/src/evaluator/calls/type.d.ts +12 -0
- package/out/types/src/evaluator/context.d.ts +169 -0
- package/out/types/src/evaluator/exprs/_expr.d.ts +8 -0
- package/out/types/src/evaluator/exprs/assignment.d.ts +9 -0
- package/out/types/src/evaluator/exprs/begin.d.ts +10 -0
- package/out/types/src/evaluator/exprs/binding.d.ts +12 -0
- package/out/types/src/evaluator/exprs/c_include.d.ts +8 -0
- package/out/types/src/evaluator/exprs/cond.d.ts +8 -0
- package/out/types/src/evaluator/exprs/destructuring_assignment.d.ts +33 -0
- package/out/types/src/evaluator/exprs/exists.d.ts +0 -0
- package/out/types/src/evaluator/exprs/expr.d.ts +9 -0
- package/out/types/src/evaluator/exprs/extern.d.ts +8 -0
- package/out/types/src/evaluator/exprs/identifer_and_operator.d.ts +9 -0
- package/out/types/src/evaluator/exprs/import.d.ts +9 -0
- package/out/types/src/evaluator/exprs/initialization_assignment.d.ts +8 -0
- package/out/types/src/evaluator/exprs/match.d.ts +8 -0
- package/out/types/src/evaluator/exprs/open.d.ts +8 -0
- package/out/types/src/evaluator/exprs/property_access.d.ts +8 -0
- package/out/types/src/evaluator/exprs/recur.d.ts +8 -0
- package/out/types/src/evaluator/exprs/subtype_of.d.ts +21 -0
- package/out/types/src/evaluator/exprs/test.d.ts +8 -0
- package/out/types/src/evaluator/exprs/typeof.d.ts +8 -0
- package/out/types/src/evaluator/exprs/while.d.ts +8 -0
- package/out/types/src/evaluator/index.d.ts +26 -0
- package/out/types/src/evaluator/types/array.d.ts +8 -0
- package/out/types/src/evaluator/types/closure.d.ts +8 -0
- package/out/types/src/evaluator/types/compt_list.d.ts +8 -0
- package/out/types/src/evaluator/types/concrete_module.d.ts +8 -0
- package/out/types/src/evaluator/types/dyn.d.ts +8 -0
- package/out/types/src/evaluator/types/enum.d.ts +8 -0
- package/out/types/src/evaluator/types/expr_synthesizer.d.ts +14 -0
- package/out/types/src/evaluator/types/field.d.ts +14 -0
- package/out/types/src/evaluator/types/fn_module.d.ts +8 -0
- package/out/types/src/evaluator/types/function.d.ts +58 -0
- package/out/types/src/evaluator/types/future_module.d.ts +8 -0
- package/out/types/src/evaluator/types/module.d.ts +19 -0
- package/out/types/src/evaluator/types/newtype.d.ts +8 -0
- package/out/types/src/evaluator/types/object.d.ts +8 -0
- package/out/types/src/evaluator/types/proofs.d.ts +0 -0
- package/out/types/src/evaluator/types/slice.d.ts +8 -0
- package/out/types/src/evaluator/types/struct.d.ts +8 -0
- package/out/types/src/evaluator/types/synthesizer.d.ts +16 -0
- package/out/types/src/evaluator/types/tuple.d.ts +18 -0
- package/out/types/src/evaluator/types/union.d.ts +8 -0
- package/out/types/src/evaluator/types/utils.d.ts +71 -0
- package/out/types/src/evaluator/types/validation.d.ts +3 -0
- package/out/types/src/evaluator/utils/array-utils.d.ts +15 -0
- package/out/types/src/evaluator/utils/closure.d.ts +35 -0
- package/out/types/src/evaluator/utils.d.ts +4 -0
- package/out/types/src/evaluator/values/anonymous_function.d.ts +8 -0
- package/out/types/src/evaluator/values/anonymous_module.d.ts +17 -0
- package/out/types/src/evaluator/values/anonymous_struct.d.ts +8 -0
- package/out/types/src/evaluator/values/array.d.ts +8 -0
- package/out/types/src/evaluator/values/boolean.d.ts +3 -0
- package/out/types/src/evaluator/values/char.d.ts +3 -0
- package/out/types/src/evaluator/values/compt_list.d.ts +8 -0
- package/out/types/src/evaluator/values/dyn.d.ts +8 -0
- package/out/types/src/evaluator/values/float.d.ts +4 -0
- package/out/types/src/evaluator/values/integer.d.ts +4 -0
- package/out/types/src/evaluator/values/module.d.ts +58 -0
- package/out/types/src/evaluator/values/string.d.ts +3 -0
- package/out/types/src/evaluator/values/tuple.d.ts +32 -0
- package/out/types/src/expr.d.ts +456 -0
- package/out/types/src/function-value.d.ts +42 -0
- package/out/types/src/index.d.ts +4 -0
- package/out/types/src/lexer.d.ts +2 -0
- package/out/types/src/logger.d.ts +1 -0
- package/out/types/src/module-manager.d.ts +30 -0
- package/out/types/src/naming-checker.d.ts +4 -0
- package/out/types/src/parser.d.ts +33 -0
- package/out/types/src/test-runner.d.ts +30 -0
- package/out/types/src/tests/codegen.test.d.ts +1 -0
- package/out/types/src/tests/fixme.test.d.ts +1 -0
- package/out/types/src/tests/module-manager.test.d.ts +1 -0
- package/out/types/src/tests/parser.test.d.ts +1 -0
- package/out/types/src/tests/sample.test.d.ts +0 -0
- package/out/types/src/tests/std.test.d.ts +1 -0
- package/out/types/src/token.d.ts +40 -0
- package/out/types/src/type-value.d.ts +7 -0
- package/out/types/src/types/compatibility.d.ts +16 -0
- package/out/types/src/types/creators.d.ts +73 -0
- package/out/types/src/types/definitions.d.ts +218 -0
- package/out/types/src/types/guards.d.ts +70 -0
- package/out/types/src/types/hierarchy.d.ts +4 -0
- package/out/types/src/types/index.d.ts +7 -0
- package/out/types/src/types/module_field.d.ts +2 -0
- package/out/types/src/types/tags.d.ts +45 -0
- package/out/types/src/types/utils.d.ts +50 -0
- package/out/types/src/unit-value.d.ts +7 -0
- package/out/types/src/utils.d.ts +6 -0
- package/out/types/src/value-tag.d.ts +29 -0
- package/out/types/src/value.d.ts +110 -0
- package/out/types/src/yo-cli.d.ts +1 -0
- package/out/types/tsconfig.tsbuildinfo +1 -0
- package/package.json +57 -0
- package/scripts/check-liburing.js +76 -0
- package/std/alg/hash.yo +50 -0
- package/std/allocator.yo +113 -0
- package/std/allocators/c_allocator.yo +118 -0
- package/std/async.yo +13 -0
- package/std/collections/array_list.yo +415 -0
- package/std/collections/hash_map.yo +482 -0
- package/std/collections/hash_set.yo +706 -0
- package/std/collections/index.yo +11 -0
- package/std/collections/linked_list.yo +439 -0
- package/std/error.yo +0 -0
- package/std/gc.yo +10 -0
- package/std/index.yo +12 -0
- package/std/io/file.yo +191 -0
- package/std/io/index.yo +5 -0
- package/std/libc/assert.yo +39 -0
- package/std/libc/ctype.yo +57 -0
- package/std/libc/errno.yo +182 -0
- package/std/libc/float.yo +87 -0
- package/std/libc/index.yo +29 -0
- package/std/libc/limits.yo +65 -0
- package/std/libc/math.yo +679 -0
- package/std/libc/signal.yo +101 -0
- package/std/libc/stdatomic.yo +213 -0
- package/std/libc/stdint.yo +214 -0
- package/std/libc/stdio.yo +225 -0
- package/std/libc/stdlib.yo +204 -0
- package/std/libc/string.yo +151 -0
- package/std/libc/time.yo +92 -0
- package/std/libc/unistd.yo +130 -0
- package/std/monad.yo +152 -0
- package/std/prelude.yo +3094 -0
- package/std/string/index.yo +8 -0
- package/std/string/rune.yo +82 -0
- package/std/string/string.yo +288 -0
- package/std/sync.yo +95 -0
- package/std/thread.yo +36 -0
- package/std/time.yo +13 -0
- package/std/worker.yo +36 -0
- package/vendor/mimalloc/.gitattributes +12 -0
- package/vendor/mimalloc/CMakeLists.txt +763 -0
- package/vendor/mimalloc/LICENSE +21 -0
- package/vendor/mimalloc/SECURITY.md +41 -0
- package/vendor/mimalloc/azure-pipelines.yml +251 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64.lib +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64ec.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64ec.lib +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect.lib +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect32.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect32.lib +0 -0
- package/vendor/mimalloc/bin/minject-arm64.exe +0 -0
- package/vendor/mimalloc/bin/minject.exe +0 -0
- package/vendor/mimalloc/bin/minject32.exe +0 -0
- package/vendor/mimalloc/bin/readme.md +118 -0
- package/vendor/mimalloc/cmake/JoinPaths.cmake +23 -0
- package/vendor/mimalloc/cmake/mimalloc-config-version.cmake +19 -0
- package/vendor/mimalloc/cmake/mimalloc-config.cmake +14 -0
- package/vendor/mimalloc/contrib/docker/alpine/Dockerfile +23 -0
- package/vendor/mimalloc/contrib/docker/alpine-arm32v7/Dockerfile +28 -0
- package/vendor/mimalloc/contrib/docker/alpine-x86/Dockerfile +28 -0
- package/vendor/mimalloc/contrib/docker/manylinux-x64/Dockerfile +23 -0
- package/vendor/mimalloc/contrib/docker/readme.md +10 -0
- package/vendor/mimalloc/contrib/vcpkg/portfile.cmake +64 -0
- package/vendor/mimalloc/contrib/vcpkg/readme.md +40 -0
- package/vendor/mimalloc/contrib/vcpkg/usage +20 -0
- package/vendor/mimalloc/contrib/vcpkg/vcpkg-cmake-wrapper.cmake +20 -0
- package/vendor/mimalloc/contrib/vcpkg/vcpkg.json +48 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-a.svg +887 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-b.svg +1185 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-rss-a.svg +757 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-rss-b.svg +1028 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-1.svg +769 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-12xlarge-2020-01-16-a.svg +868 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-12xlarge-2020-01-16-b.svg +1157 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-2.svg +983 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-rss-1.svg +683 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-rss-2.svg +854 -0
- package/vendor/mimalloc/doc/bench-2020/bench-spec-rss.svg +713 -0
- package/vendor/mimalloc/doc/bench-2020/bench-spec.svg +713 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-1.svg +890 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-2.svg +1146 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-rss-1.svg +796 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-rss-2.svg +974 -0
- package/vendor/mimalloc/doc/bench-2021/bench-amd5950x-2021-01-30-a.svg +952 -0
- package/vendor/mimalloc/doc/bench-2021/bench-amd5950x-2021-01-30-b.svg +1255 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-a.svg +955 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-b.svg +1269 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-rss-a.svg +836 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-rss-b.svg +1131 -0
- package/vendor/mimalloc/doc/bench-2021/bench-macmini-2021-01-30.svg +766 -0
- package/vendor/mimalloc/doc/doxyfile +2895 -0
- package/vendor/mimalloc/doc/ds-logo.jpg +0 -0
- package/vendor/mimalloc/doc/ds-logo.png +0 -0
- package/vendor/mimalloc/doc/mimalloc-doc.h +1452 -0
- package/vendor/mimalloc/doc/mimalloc-doxygen.css +60 -0
- package/vendor/mimalloc/doc/mimalloc-logo-100.png +0 -0
- package/vendor/mimalloc/doc/mimalloc-logo.png +0 -0
- package/vendor/mimalloc/doc/mimalloc-logo.svg +161 -0
- package/vendor/mimalloc/doc/spades-logo.png +0 -0
- package/vendor/mimalloc/doc/unreal-logo.svg +43 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-lib.vcxproj +500 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-lib.vcxproj.filters +108 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-dll.vcxproj +508 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-dll.vcxproj.filters +111 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-test-dep.vcxproj +355 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-test.vcxproj +360 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-test-api.vcxproj +295 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-test-stress.vcxproj +292 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-test.vcxproj +289 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc.sln +151 -0
- package/vendor/mimalloc/include/mimalloc/atomic.h +557 -0
- package/vendor/mimalloc/include/mimalloc/internal.h +1153 -0
- package/vendor/mimalloc/include/mimalloc/prim.h +421 -0
- package/vendor/mimalloc/include/mimalloc/track.h +145 -0
- package/vendor/mimalloc/include/mimalloc/types.h +685 -0
- package/vendor/mimalloc/include/mimalloc-new-delete.h +66 -0
- package/vendor/mimalloc/include/mimalloc-override.h +68 -0
- package/vendor/mimalloc/include/mimalloc-stats.h +103 -0
- package/vendor/mimalloc/include/mimalloc.h +612 -0
- package/vendor/mimalloc/mimalloc.pc.in +11 -0
- package/vendor/mimalloc/readme.md +946 -0
- package/vendor/mimalloc/src/alloc-aligned.c +360 -0
- package/vendor/mimalloc/src/alloc-override.c +316 -0
- package/vendor/mimalloc/src/alloc-posix.c +185 -0
- package/vendor/mimalloc/src/alloc.c +692 -0
- package/vendor/mimalloc/src/arena-abandon.c +346 -0
- package/vendor/mimalloc/src/arena.c +1043 -0
- package/vendor/mimalloc/src/bitmap.c +441 -0
- package/vendor/mimalloc/src/bitmap.h +119 -0
- package/vendor/mimalloc/src/free.c +572 -0
- package/vendor/mimalloc/src/heap.c +733 -0
- package/vendor/mimalloc/src/init.c +714 -0
- package/vendor/mimalloc/src/libc.c +334 -0
- package/vendor/mimalloc/src/options.c +663 -0
- package/vendor/mimalloc/src/os.c +770 -0
- package/vendor/mimalloc/src/page-queue.c +390 -0
- package/vendor/mimalloc/src/page.c +1049 -0
- package/vendor/mimalloc/src/prim/emscripten/prim.c +249 -0
- package/vendor/mimalloc/src/prim/osx/alloc-override-zone.c +461 -0
- package/vendor/mimalloc/src/prim/osx/prim.c +9 -0
- package/vendor/mimalloc/src/prim/prim.c +76 -0
- package/vendor/mimalloc/src/prim/readme.md +9 -0
- package/vendor/mimalloc/src/prim/unix/prim.c +934 -0
- package/vendor/mimalloc/src/prim/wasi/prim.c +284 -0
- package/vendor/mimalloc/src/prim/windows/etw-mimalloc.wprp +61 -0
- package/vendor/mimalloc/src/prim/windows/etw.h +905 -0
- package/vendor/mimalloc/src/prim/windows/etw.man +0 -0
- package/vendor/mimalloc/src/prim/windows/prim.c +878 -0
- package/vendor/mimalloc/src/prim/windows/readme.md +17 -0
- package/vendor/mimalloc/src/random.c +258 -0
- package/vendor/mimalloc/src/segment-map.c +142 -0
- package/vendor/mimalloc/src/segment.c +1702 -0
- package/vendor/mimalloc/src/static.c +41 -0
- package/vendor/mimalloc/src/stats.c +635 -0
- package/vendor/mimalloc/test/CMakeLists.txt +56 -0
- package/vendor/mimalloc/test/main-override-dep.cpp +51 -0
- package/vendor/mimalloc/test/main-override-dep.h +11 -0
- package/vendor/mimalloc/test/main-override-static.c +539 -0
- package/vendor/mimalloc/test/main-override.c +36 -0
- package/vendor/mimalloc/test/main-override.cpp +497 -0
- package/vendor/mimalloc/test/main.c +46 -0
- package/vendor/mimalloc/test/readme.md +16 -0
- package/vendor/mimalloc/test/test-api-fill.c +343 -0
- package/vendor/mimalloc/test/test-api.c +466 -0
- package/vendor/mimalloc/test/test-stress.c +428 -0
- package/vendor/mimalloc/test/test-wrong.c +92 -0
- package/vendor/mimalloc/test/testhelper.h +49 -0
|
@@ -0,0 +1,836 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
|
2
|
+
<!-- This file was generated by dvisvgm 2.9.1 -->
|
|
3
|
+
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='381.628pt' height='207.789pt' viewBox='52.934 54.993 381.628 207.789'>
|
|
4
|
+
<rect width="1000%" height="1000%" fill="white"/>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id='clip1'>
|
|
7
|
+
<path d='M82.148 246.637H434.164V78.871H82.148Z'/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
<path id='g1-82' d='M3.891-2.914C4.806-3.165 5.452-3.811 5.452-4.546C5.452-5.469 4.411-6.223 3.129-6.223H.87V0H1.704V-2.824H3.138L4.842 0H5.703L3.891-2.914ZM1.704-3.407V-5.694H3.022C4.062-5.694 4.671-5.192 4.671-4.546C4.671-3.963 4.125-3.407 3.022-3.407H1.704Z'/>
|
|
10
|
+
<path id='g1-97' d='M3.694-2.591C3.694-3.479 3.04-4.133 2.152-4.133C1.569-4.133 1.139-3.981 .708-3.739L.762-3.102C1.21-3.434 1.65-3.569 2.143-3.569C2.645-3.569 2.95-3.165 2.95-2.582V-2.206C1.408-2.17 .395-1.766 .395-1.04C.395-.619 .672 .099 1.453 .099C1.632 .099 2.412 .081 2.977-.341V0H3.694V-2.591ZM2.95-1.255C2.95-1.067 2.95-.843 2.627-.655C2.403-.52 2.107-.484 1.928-.484C1.47-.484 1.085-.699 1.085-1.058C1.085-1.695 2.833-1.722 2.95-1.722V-1.255Z'/>
|
|
11
|
+
<path id='g1-101' d='M3.829-1.964C3.829-2.242 3.82-2.923 3.47-3.461C3.093-4.026 2.52-4.133 2.179-4.133C1.139-4.133 .314-3.174 .314-2.026C.314-.843 1.193 .099 2.313 .099C2.744 .099 3.264-.009 3.784-.341L3.73-.959C3.165-.556 2.636-.484 2.322-.484C1.578-.484 1.004-1.139 .977-1.964H3.829ZM1.031-2.493C1.175-3.067 1.614-3.551 2.179-3.551C2.511-3.551 3.12-3.398 3.291-2.493H1.031Z'/>
|
|
12
|
+
<path id='g1-105' d='M1.524-6.133H.664V-5.272H1.524V-6.133ZM1.453-3.981H.735V0H1.453V-3.981Z'/>
|
|
13
|
+
<path id='g1-108' d='M1.453-6.223H.735V0H1.453V-6.223Z'/>
|
|
14
|
+
<path id='g1-114' d='M1.462-1.91C1.462-2.851 2.197-3.425 3.013-3.434V-4.08C2.367-4.071 1.775-3.748 1.408-3.219V-4.035H.744V0H1.462V-1.91Z'/>
|
|
15
|
+
<path id='g1-115' d='M3.165-3.847C2.609-4.098 2.197-4.133 1.829-4.133C1.623-4.133 .305-4.133 .305-2.95C.305-2.52 .565-2.251 .664-2.152C1.004-1.856 1.237-1.811 1.847-1.695C2.134-1.641 2.645-1.542 2.645-1.085C2.645-.502 1.919-.502 1.802-.502C1.273-.502 .762-.681 .377-.95L.26-.296C.798-.009 1.345 .099 1.802 .099C2.385 .099 3.318-.09 3.318-1.157C3.318-1.47 3.192-1.784 2.878-2.053C2.573-2.313 2.304-2.367 1.748-2.475C1.426-2.537 .977-2.618 .977-3.04C.977-3.569 1.614-3.569 1.748-3.569C2.403-3.569 2.789-3.362 3.049-3.219L3.165-3.847Z'/>
|
|
16
|
+
<path id='g1-116' d='M1.623-3.425H2.914V-3.981H1.623V-5.12H.959V-3.981H.17V-3.425H.933V-1.13C.933-.601 1.049 .099 1.704 .099C2.098 .099 2.564 .018 3.067-.233L2.914-.798C2.681-.619 2.367-.511 2.089-.511C1.739-.511 1.623-.825 1.623-1.291V-3.425Z'/>
|
|
17
|
+
<path id='g1-118' d='M4.116-3.981H3.407L2.699-2.161C2.52-1.695 2.188-.825 2.143-.493H2.125C2.107-.646 2.08-.816 1.587-2.107C1.318-2.833 .879-3.927 .861-3.981H.126L1.704 0H2.537L4.116-3.981Z'/>
|
|
18
|
+
<use id='g3-40' xlink:href='#g0-40' transform='scale(1.143)'/>
|
|
19
|
+
<use id='g3-41' xlink:href='#g0-41' transform='scale(1.143)'/>
|
|
20
|
+
<use id='g3-78' xlink:href='#g0-78' transform='scale(1.143)'/>
|
|
21
|
+
<use id='g3-97' xlink:href='#g0-97' transform='scale(1.143)'/>
|
|
22
|
+
<use id='g3-98' xlink:href='#g0-98' transform='scale(1.143)'/>
|
|
23
|
+
<use id='g3-99' xlink:href='#g0-99' transform='scale(1.143)'/>
|
|
24
|
+
<use id='g3-100' xlink:href='#g0-100' transform='scale(1.143)'/>
|
|
25
|
+
<use id='g3-101' xlink:href='#g0-101' transform='scale(1.143)'/>
|
|
26
|
+
<use id='g3-102' xlink:href='#g0-102' transform='scale(1.143)'/>
|
|
27
|
+
<use id='g3-105' xlink:href='#g0-105' transform='scale(1.143)'/>
|
|
28
|
+
<use id='g3-108' xlink:href='#g0-108' transform='scale(1.143)'/>
|
|
29
|
+
<use id='g3-109' xlink:href='#g0-109' transform='scale(1.143)'/>
|
|
30
|
+
<use id='g3-110' xlink:href='#g0-110' transform='scale(1.143)'/>
|
|
31
|
+
<use id='g3-111' xlink:href='#g0-111' transform='scale(1.143)'/>
|
|
32
|
+
<use id='g3-112' xlink:href='#g0-112' transform='scale(1.143)'/>
|
|
33
|
+
<use id='g3-114' xlink:href='#g0-114' transform='scale(1.143)'/>
|
|
34
|
+
<use id='g3-115' xlink:href='#g0-115' transform='scale(1.143)'/>
|
|
35
|
+
<use id='g3-116' xlink:href='#g0-116' transform='scale(1.143)'/>
|
|
36
|
+
<use id='g3-119' xlink:href='#g0-119' transform='scale(1.143)'/>
|
|
37
|
+
<path id='g0-40' d='M2.127-5.23C2.008-5.23 1.995-5.23 1.911-5.154C1.032-4.387 .586-3.145 .586-1.743C.586-.425 .983 .844 1.904 1.653C1.995 1.743 2.008 1.743 2.127 1.743H2.462C2.441 1.73 1.764 1.151 1.444 .063C1.276-.481 1.193-1.053 1.193-1.743C1.193-4.156 2.322-5.112 2.462-5.23H2.127Z'/>
|
|
38
|
+
<path id='g0-41' d='M.746 1.743C.865 1.743 .879 1.743 .962 1.667C1.841 .9 2.287-.342 2.287-1.743C2.287-3.062 1.89-4.331 .969-5.14C.879-5.23 .865-5.23 .746-5.23H.411C.432-5.216 1.109-4.638 1.43-3.55C1.597-3.006 1.681-2.434 1.681-1.743C1.681 .669 .551 1.625 .411 1.743H.746Z'/>
|
|
39
|
+
<path id='g0-46' d='M1.339-.628H.711V0H1.339V-.628Z'/>
|
|
40
|
+
<path id='g0-48' d='M3.403-2.267C3.403-2.601 3.403-3.417 3.075-3.989C2.72-4.617 2.183-4.721 1.848-4.721C1.534-4.721 .99-4.624 .642-4.024C.307-3.466 .293-2.706 .293-2.267C.293-1.75 .321-1.116 .614-.586C.921-.021 1.437 .146 1.848 .146C2.545 .146 2.929-.258 3.138-.697C3.382-1.193 3.403-1.834 3.403-2.267ZM1.848-.314C1.555-.314 1.22-.481 1.046-.983C.907-1.409 .9-1.848 .9-2.357C.9-2.999 .9-4.261 1.848-4.261S2.797-2.999 2.797-2.357C2.797-1.897 2.797-1.374 2.629-.928C2.434-.425 2.078-.314 1.848-.314Z'/>
|
|
41
|
+
<path id='g0-49' d='M2.239-4.721H2.085C1.632-4.303 1.06-4.275 .642-4.261V-3.822C.914-3.829 1.262-3.843 1.611-3.982V-.439H.683V0H3.166V-.439H2.239V-4.721Z'/>
|
|
42
|
+
<path id='g0-50' d='M1.974-.537C1.89-.537 1.806-.53 1.723-.53H.928L2.008-1.485C2.134-1.597 2.476-1.855 2.608-1.967C2.915-2.246 3.327-2.608 3.327-3.215C3.327-4.003 2.741-4.721 1.743-4.721C1.004-4.721 .544-4.324 .307-3.612L.635-3.201C.795-3.787 1.039-4.24 1.646-4.24C2.232-4.24 2.678-3.829 2.678-3.201C2.678-2.622 2.336-2.294 1.918-1.897C1.778-1.757 1.402-1.444 1.255-1.304C1.053-1.123 .572-.656 .37-.481V0H3.327V-.537H1.974Z'/>
|
|
43
|
+
<path id='g0-51' d='M.697-3.578C.983-4.135 1.485-4.289 1.82-4.289C2.232-4.289 2.538-4.052 2.538-3.654C2.538-3.285 2.287-2.831 1.757-2.741C1.723-2.734 1.695-2.734 1.234-2.699V-2.239H1.778C2.441-2.239 2.685-1.716 2.685-1.276C2.685-.732 2.35-.314 1.806-.314C1.311-.314 .746-.551 .398-.997L.307-.544C.711-.091 1.276 .146 1.82 .146C2.734 .146 3.389-.537 3.389-1.269C3.389-1.841 2.929-2.301 2.378-2.462C2.908-2.734 3.18-3.201 3.18-3.654C3.18-4.247 2.573-4.721 1.827-4.721C1.213-4.721 .704-4.4 .411-3.982L.697-3.578Z'/>
|
|
44
|
+
<path id='g0-52' d='M2.762-1.165H3.487V-1.625H2.762V-4.575H2.071L.209-1.625V-1.165H2.162V0H2.762V-1.165ZM.802-1.625C1.011-1.953 2.211-3.815 2.211-4.233V-1.625H.802Z'/>
|
|
45
|
+
<path id='g0-53' d='M1.144-4.094H3.075V-4.575H.586V-1.967H1.095C1.262-2.343 1.59-2.511 1.904-2.511C2.19-2.511 2.622-2.315 2.622-1.43C2.622-.516 2.043-.314 1.688-.314C1.227-.314 .781-.558 .544-.955L.279-.537C.621-.112 1.137 .146 1.688 .146C2.608 .146 3.327-.565 3.327-1.416C3.327-2.28 2.685-2.971 1.918-2.971C1.618-2.971 1.353-2.866 1.144-2.692V-4.094Z'/>
|
|
46
|
+
<path id='g0-54' d='M3.062-4.582C2.685-4.721 2.42-4.721 2.287-4.721C1.227-4.721 .307-3.724 .307-2.253C.307-.363 1.158 .146 1.862 .146C2.427 .146 2.72-.119 2.936-.342C3.382-.816 3.389-1.311 3.389-1.555C3.389-2.469 2.894-3.229 2.218-3.229C1.534-3.229 1.165-2.873 .962-2.671C1.053-3.626 1.541-4.289 2.294-4.289C2.434-4.289 2.713-4.275 3.062-4.142V-4.582ZM.969-1.534C.969-1.576 .969-1.681 .976-1.716C.976-2.19 1.276-2.769 1.897-2.769C2.748-2.769 2.748-1.792 2.748-1.555C2.748-1.29 2.748-.997 2.559-.704C2.392-.453 2.183-.314 1.862-.314C1.123-.314 1.004-1.227 .969-1.534Z'/>
|
|
47
|
+
<path id='g0-55' d='M1.723-4.038C1.806-4.038 1.89-4.045 1.974-4.045H2.852C1.792-3.006 1.116-1.548 1.116 .07H1.771C1.771-1.967 2.762-3.431 3.389-4.087V-4.575H.307V-4.038H1.723Z'/>
|
|
48
|
+
<path id='g0-56' d='M2.385-2.469C2.845-2.615 3.285-2.985 3.285-3.501C3.285-4.135 2.678-4.721 1.848-4.721S.411-4.135 .411-3.501C.411-2.978 .865-2.608 1.311-2.469C.697-2.28 .307-1.806 .307-1.269C.307-.523 .969 .146 1.848 .146S3.389-.523 3.389-1.269C3.389-1.806 2.992-2.28 2.385-2.469ZM1.848-2.699C1.353-2.699 .948-2.985 .948-3.494C.948-3.94 1.262-4.289 1.848-4.289C2.427-4.289 2.748-3.94 2.748-3.494C2.748-2.999 2.357-2.699 1.848-2.699ZM1.848-.314C1.367-.314 .941-.621 .941-1.276C.941-1.904 1.346-2.239 1.848-2.239S2.755-1.897 2.755-1.276C2.755-.621 2.322-.314 1.848-.314Z'/>
|
|
49
|
+
<path id='g0-57' d='M.537-.174C.879 .077 1.193 .146 1.52 .146C2.497 .146 3.389-.837 3.389-2.336C3.389-4.24 2.545-4.721 1.876-4.721C1.255-4.721 .969-4.428 .767-4.226C.321-3.773 .307-3.292 .307-3.02C.307-2.12 .795-1.346 1.478-1.346C2.267-1.346 2.699-1.869 2.734-1.911C2.636-.802 2.092-.314 1.52-.314C1.158-.314 .934-.446 .774-.579L.537-.174ZM2.713-3.027C2.72-2.985 2.72-2.915 2.72-2.873C2.72-2.357 2.406-1.806 1.799-1.806C1.534-1.806 1.325-1.883 1.144-2.169C.962-2.441 .948-2.706 .948-3.02C.948-3.292 .948-3.605 1.165-3.912C1.311-4.122 1.52-4.289 1.869-4.289C2.545-4.289 2.692-3.473 2.713-3.027Z'/>
|
|
50
|
+
<path id='g0-78' d='M1.646-4.84H.697V0H1.283V-4.289H1.29L3.578 0H4.526V-4.84H3.94V-.551H3.933L1.646-4.84Z'/>
|
|
51
|
+
<path id='g0-97' d='M2.971-2.008C2.971-2.72 2.427-3.201 1.736-3.201C1.297-3.201 .962-3.11 .572-2.901L.614-2.392C.844-2.545 1.186-2.755 1.736-2.755C2.043-2.755 2.364-2.525 2.364-2.001V-1.723C1.332-1.688 .314-1.471 .314-.823C.314-.474 .551 .07 1.165 .07C1.465 .07 2.015 .007 2.385-.265V0H2.971V-2.008ZM2.364-.99C2.364-.851 2.364-.669 2.12-.523C1.897-.398 1.625-.391 1.548-.391C1.165-.391 .872-.565 .872-.83C.872-1.276 2.05-1.318 2.364-1.332V-.99Z'/>
|
|
52
|
+
<path id='g0-98' d='M1.179-4.84H.593V0H1.2V-.328C1.353-.195 1.688 .07 2.197 .07C2.957 .07 3.571-.642 3.571-1.555C3.571-2.399 3.089-3.166 2.392-3.166C1.953-3.166 1.527-3.027 1.179-2.769V-4.84ZM1.2-2.197C1.2-2.308 1.2-2.392 1.444-2.552C1.548-2.615 1.736-2.706 1.974-2.706C2.441-2.706 2.964-2.392 2.964-1.555C2.964-.704 2.385-.391 1.897-.391C1.639-.391 1.395-.509 1.2-.823V-2.197Z'/>
|
|
53
|
+
<path id='g0-99' d='M3.034-.76C2.685-.537 2.308-.411 1.876-.411C1.234-.411 .858-.928 .858-1.555C.858-2.092 1.137-2.72 1.897-2.72C2.371-2.72 2.594-2.622 2.95-2.399L3.041-2.901C2.622-3.11 2.441-3.201 1.897-3.201C.851-3.201 .251-2.357 .251-1.548C.251-.697 .921 .07 1.869 .07C2.357 .07 2.776-.077 3.075-.251L3.034-.76Z'/>
|
|
54
|
+
<path id='g0-100' d='M3.229-4.84H2.643V-2.797C2.197-3.124 1.743-3.166 1.541-3.166C.809-3.166 .251-2.434 .251-1.548S.802 .07 1.52 .07C1.953 .07 2.357-.126 2.622-.363V0H3.229V-4.84ZM2.622-.865C2.448-.579 2.183-.391 1.848-.391C1.36-.391 .858-.732 .858-1.541C.858-2.413 1.451-2.706 1.925-2.706C2.204-2.706 2.441-2.587 2.622-2.35V-.865Z'/>
|
|
55
|
+
<path id='g0-101' d='M2.999-.76C2.608-.481 2.169-.391 1.869-.391C1.262-.391 .802-.886 .781-1.527H3.068C3.068-1.848 3.034-2.315 2.762-2.713C2.511-3.068 2.092-3.201 1.75-3.201C.9-3.201 .244-2.455 .244-1.569C.244-.676 .941 .07 1.862 .07C2.267 .07 2.685-.049 3.041-.265L2.999-.76ZM.83-1.946C.99-2.504 1.402-2.741 1.75-2.741C2.057-2.741 2.511-2.594 2.643-1.946H.83Z'/>
|
|
56
|
+
<path id='g0-102' d='M1.325-2.657H2.12V-3.096H1.304V-3.898C1.304-4.38 1.743-4.449 1.974-4.449C2.12-4.449 2.308-4.428 2.566-4.331V-4.84C2.385-4.882 2.169-4.91 1.981-4.91C1.262-4.91 .739-4.394 .739-3.703V-3.096H.202V-2.657H.739V0H1.325V-2.657Z'/>
|
|
57
|
+
<path id='g0-105' d='M1.227-4.784H.523V-4.08H1.227V-4.784ZM1.172-3.096H.586V0H1.172V-3.096Z'/>
|
|
58
|
+
<path id='g0-108' d='M1.172-4.84H.586V0H1.172V-4.84Z'/>
|
|
59
|
+
<path id='g0-109' d='M5.3-2.064C5.3-2.608 5.14-3.166 4.282-3.166C3.696-3.166 3.333-2.824 3.166-2.601C3.096-2.79 2.922-3.166 2.225-3.166C1.827-3.166 1.444-3.006 1.137-2.636V-3.145H.579V0H1.186V-1.695C1.186-2.155 1.381-2.706 1.918-2.706C2.636-2.706 2.636-2.218 2.636-2.015V0H3.243V-1.695C3.243-2.155 3.438-2.706 3.975-2.706C4.693-2.706 4.693-2.218 4.693-2.015V0H5.3V-2.064Z'/>
|
|
60
|
+
<path id='g0-110' d='M3.243-2.064C3.243-2.608 3.082-3.166 2.225-3.166C1.827-3.166 1.444-3.006 1.137-2.636V-3.145H.579V0H1.186V-1.695C1.186-2.155 1.381-2.706 1.918-2.706C2.636-2.706 2.636-2.218 2.636-2.015V0H3.243V-2.064Z'/>
|
|
61
|
+
<path id='g0-111' d='M3.487-1.527C3.487-2.448 2.755-3.201 1.848-3.201S.209-2.441 .209-1.527C.209-.642 .948 .07 1.848 .07C2.755 .07 3.487-.642 3.487-1.527ZM1.848-.411C1.297-.411 .816-.816 .816-1.604S1.332-2.741 1.848-2.741C2.371-2.741 2.88-2.378 2.88-1.604C2.88-.809 2.385-.411 1.848-.411Z'/>
|
|
62
|
+
<path id='g0-112' d='M1.2-.328C1.569 .007 1.967 .07 2.204 .07C2.943 .07 3.571-.635 3.571-1.555C3.571-2.392 3.11-3.166 2.42-3.166C2.106-3.166 1.583-3.075 1.179-2.762V-3.096H.593V1.353H1.2V-.328ZM1.2-2.315C1.36-2.511 1.632-2.685 1.967-2.685C2.525-2.685 2.964-2.169 2.964-1.555C2.964-.865 2.441-.391 1.897-.391C1.792-.391 1.618-.404 1.437-.551C1.227-.711 1.2-.816 1.2-.948V-2.315Z'/>
|
|
63
|
+
<path id='g0-114' d='M1.179-1.485C1.179-2.239 1.806-2.643 2.42-2.65V-3.166C1.834-3.159 1.409-2.873 1.13-2.504V-3.145H.593V0H1.179V-1.485Z'/>
|
|
64
|
+
<path id='g0-115' d='M2.545-2.985C2.071-3.18 1.723-3.201 1.471-3.201C1.297-3.201 .244-3.201 .244-2.273C.244-1.946 .425-1.764 .516-1.681C.76-1.437 1.053-1.381 1.423-1.311C1.75-1.248 2.127-1.179 2.127-.844C2.127-.404 1.548-.404 1.451-.404C1.004-.404 .586-.565 .307-.76L.209-.237C.446-.119 .872 .07 1.451 .07C1.764 .07 2.071 .021 2.329-.167C2.587-.363 2.671-.669 2.671-.907C2.671-1.032 2.657-1.304 2.364-1.569C2.106-1.799 1.855-1.848 1.52-1.911C1.109-1.988 .788-2.05 .788-2.357C.788-2.755 1.297-2.755 1.402-2.755C1.799-2.755 2.106-2.671 2.455-2.49L2.545-2.985Z'/>
|
|
65
|
+
<path id='g0-116' d='M1.311-2.657H2.343V-3.096H1.311V-3.982H.774V-3.096H.139V-2.657H.753V-.893C.753-.425 .872 .07 1.374 .07S2.26-.091 2.469-.188L2.35-.635C2.12-.467 1.876-.411 1.681-.411C1.388-.411 1.311-.697 1.311-1.018V-2.657Z'/>
|
|
66
|
+
<path id='g0-119' d='M4.951-3.096H4.407C4.345-2.901 3.954-1.723 3.738-.997C3.682-.795 3.612-.572 3.592-.411H3.585C3.543-.697 3.299-1.451 3.285-1.499L2.769-3.096H2.239C2.036-2.497 1.513-.934 1.458-.425H1.451C1.395-.921 .879-2.462 .767-2.797C.711-2.964 .711-2.978 .676-3.096H.105L1.123 0H1.709C1.716-.028 1.904-.579 2.148-1.353C2.253-1.695 2.462-2.364 2.497-2.671L2.504-2.678C2.518-2.532 2.559-2.378 2.608-2.204S2.706-1.841 2.755-1.681L3.292 0H3.933L4.951-3.096Z'/>
|
|
67
|
+
<path id='g0-120' d='M1.932-1.597L3.285-3.096H2.671L1.681-1.953L.669-3.096H.042L1.437-1.597L0 0H.621L1.681-1.311L2.783 0H3.41L1.932-1.597Z'/>
|
|
68
|
+
<path id='g4-1' d='M1.445-1.245C1.445-1.41 1.305-1.549 1.141-1.549S.837-1.41 .837-1.245S.976-.941 1.141-.941S1.445-1.081 1.445-1.245Z'/>
|
|
69
|
+
<use id='g2-46' xlink:href='#g0-46' transform='scale(.714)'/>
|
|
70
|
+
<use id='g2-48' xlink:href='#g0-48' transform='scale(.714)'/>
|
|
71
|
+
<use id='g2-49' xlink:href='#g0-49' transform='scale(.714)'/>
|
|
72
|
+
<use id='g2-50' xlink:href='#g0-50' transform='scale(.714)'/>
|
|
73
|
+
<use id='g2-51' xlink:href='#g0-51' transform='scale(.714)'/>
|
|
74
|
+
<use id='g2-52' xlink:href='#g0-52' transform='scale(.714)'/>
|
|
75
|
+
<use id='g2-53' xlink:href='#g0-53' transform='scale(.714)'/>
|
|
76
|
+
<use id='g2-54' xlink:href='#g0-54' transform='scale(.714)'/>
|
|
77
|
+
<use id='g2-55' xlink:href='#g0-55' transform='scale(.714)'/>
|
|
78
|
+
<use id='g2-56' xlink:href='#g0-56' transform='scale(.714)'/>
|
|
79
|
+
<use id='g2-57' xlink:href='#g0-57' transform='scale(.714)'/>
|
|
80
|
+
<use id='g2-120' xlink:href='#g0-120' transform='scale(.714)'/>
|
|
81
|
+
</defs>
|
|
82
|
+
<g id='page1'>
|
|
83
|
+
<path d='M140.82 255.492V246.637M199.488 255.492V246.637M258.156 255.492V246.637M316.824 255.492V246.637M375.496 255.492V246.637M140.82 70.016V78.871M199.488 70.016V78.871M258.156 70.016V78.871M316.824 70.016V78.871M375.496 70.016V78.871' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
|
|
84
|
+
<path d='M111.484 250.887V246.637M170.152 250.887V246.637M228.824 250.887V246.637M287.492 250.887V246.637M346.16 250.887V246.637M404.828 250.887V246.637M111.484 74.617V78.871M170.152 74.617V78.871M228.824 74.617V78.871M287.492 74.617V78.871M346.16 74.617V78.871M404.828 74.617V78.871' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
|
|
85
|
+
<path d='M82.148 246.637H86.402M82.148 213.082H86.402M82.148 179.531H86.402M82.148 145.977H86.402M82.148 112.426H86.402M82.148 78.871H86.402M434.164 246.637H429.91M434.164 213.082H429.91M434.164 179.531H429.91M434.164 145.977H429.91M434.164 112.426H429.91M434.164 78.871H429.91' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
|
|
86
|
+
<path d='M82.148 246.637V78.871H434.164V246.637H82.148Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
87
|
+
<g transform='matrix(1 0 0 1 -11.54 34.954)'>
|
|
88
|
+
<use x='114.487' y='226.079' xlink:href='#g3-99'/>
|
|
89
|
+
<use x='118.25' y='226.079' xlink:href='#g3-102'/>
|
|
90
|
+
<use x='120.838' y='226.079' xlink:href='#g3-114'/>
|
|
91
|
+
<use x='123.73' y='226.079' xlink:href='#g3-97'/>
|
|
92
|
+
<use x='127.798' y='226.079' xlink:href='#g3-99'/>
|
|
93
|
+
</g>
|
|
94
|
+
<g transform='matrix(1 0 0 1 45.565 34.954)'>
|
|
95
|
+
<use x='114.487' y='226.079' xlink:href='#g3-108'/>
|
|
96
|
+
<use x='116.507' y='226.079' xlink:href='#g3-101'/>
|
|
97
|
+
<use x='120.271' y='226.079' xlink:href='#g3-97'/>
|
|
98
|
+
<use x='124.339' y='226.079' xlink:href='#g3-110'/>
|
|
99
|
+
<use x='128.711' y='226.079' xlink:href='#g3-78'/>
|
|
100
|
+
</g>
|
|
101
|
+
<g transform='matrix(1 0 0 1 106.188 34.954)'>
|
|
102
|
+
<use x='114.487' y='226.079' xlink:href='#g3-114'/>
|
|
103
|
+
<use x='117.379' y='226.079' xlink:href='#g3-101'/>
|
|
104
|
+
<use x='121.142' y='226.079' xlink:href='#g3-100'/>
|
|
105
|
+
<use x='125.515' y='226.079' xlink:href='#g3-105'/>
|
|
106
|
+
<use x='127.535' y='226.079' xlink:href='#g3-115'/>
|
|
107
|
+
</g>
|
|
108
|
+
<g transform='matrix(1 0 0 1 159.716 34.954)'>
|
|
109
|
+
<use x='114.487' y='226.079' xlink:href='#g3-108'/>
|
|
110
|
+
<use x='116.507' y='226.079' xlink:href='#g3-97'/>
|
|
111
|
+
<use x='120.34' y='226.079' xlink:href='#g3-114'/>
|
|
112
|
+
<use x='123.232' y='226.079' xlink:href='#g3-115'/>
|
|
113
|
+
<use x='126.478' y='226.079' xlink:href='#g3-111'/>
|
|
114
|
+
<use x='130.712' y='226.079' xlink:href='#g3-110'/>
|
|
115
|
+
<use x='135.085' y='226.079' xlink:href='#g3-78'/>
|
|
116
|
+
</g>
|
|
117
|
+
<g transform='matrix(1 0 0 1 215.596 34.954)'>
|
|
118
|
+
<use x='114.487' y='226.079' xlink:href='#g3-109'/>
|
|
119
|
+
<use x='121.211' y='226.079' xlink:href='#g3-115'/>
|
|
120
|
+
<use x='124.458' y='226.079' xlink:href='#g3-116'/>
|
|
121
|
+
<use x='127.516' y='226.079' xlink:href='#g3-114'/>
|
|
122
|
+
<use x='130.408' y='226.079' xlink:href='#g3-101'/>
|
|
123
|
+
<use x='134.171' y='226.079' xlink:href='#g3-115'/>
|
|
124
|
+
<use x='137.418' y='226.079' xlink:href='#g3-115'/>
|
|
125
|
+
<use x='140.664' y='226.079' xlink:href='#g3-78'/>
|
|
126
|
+
</g>
|
|
127
|
+
<g transform='matrix(1 0 0 1 277.158 34.954)'>
|
|
128
|
+
<use x='114.487' y='226.079' xlink:href='#g3-114'/>
|
|
129
|
+
<use x='117.379' y='226.079' xlink:href='#g3-112'/>
|
|
130
|
+
<use x='121.751' y='226.079' xlink:href='#g3-116'/>
|
|
131
|
+
<use x='124.809' y='226.079' xlink:href='#g3-101'/>
|
|
132
|
+
<use x='128.573' y='226.079' xlink:href='#g3-115'/>
|
|
133
|
+
<use x='131.819' y='226.079' xlink:href='#g3-116'/>
|
|
134
|
+
<use x='134.877' y='226.079' xlink:href='#g3-78'/>
|
|
135
|
+
</g>
|
|
136
|
+
<g transform='matrix(1 0 0 1 -40.942 22.192)'>
|
|
137
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
138
|
+
<use x='117.133' y='226.079' xlink:href='#g2-120'/>
|
|
139
|
+
</g>
|
|
140
|
+
<g transform='matrix(1 0 0 1 -45.059 -11.361)'>
|
|
141
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
142
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
143
|
+
<use x='118.603' y='226.079' xlink:href='#g2-53'/>
|
|
144
|
+
<use x='121.25' y='226.079' xlink:href='#g2-120'/>
|
|
145
|
+
</g>
|
|
146
|
+
<g transform='matrix(1 0 0 1 -45.059 -44.915)'>
|
|
147
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
148
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
149
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
150
|
+
<use x='121.25' y='226.079' xlink:href='#g2-120'/>
|
|
151
|
+
</g>
|
|
152
|
+
<g transform='matrix(1 0 0 1 -45.059 -78.468)'>
|
|
153
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
154
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
155
|
+
<use x='118.603' y='226.079' xlink:href='#g2-53'/>
|
|
156
|
+
<use x='121.25' y='226.079' xlink:href='#g2-120'/>
|
|
157
|
+
</g>
|
|
158
|
+
<g transform='matrix(1 0 0 1 -45.059 -112.021)'>
|
|
159
|
+
<use x='114.487' y='226.079' xlink:href='#g2-50'/>
|
|
160
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
161
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
162
|
+
<use x='121.25' y='226.079' xlink:href='#g2-120'/>
|
|
163
|
+
</g>
|
|
164
|
+
<g transform='matrix(1 0 0 1 -45.059 -145.574)'>
|
|
165
|
+
<use x='114.487' y='226.079' xlink:href='#g2-50'/>
|
|
166
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
167
|
+
<use x='118.603' y='226.079' xlink:href='#g2-53'/>
|
|
168
|
+
<use x='121.25' y='226.079' xlink:href='#g2-120'/>
|
|
169
|
+
</g>
|
|
170
|
+
<path d='M82.148 179.531H434.164' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
171
|
+
<path d='M86.328 246.637H89.566V179.531H86.328ZM144.996 246.637H148.234V179.531H144.996ZM203.668 246.637H206.902V179.531H203.668ZM262.336 246.637H265.574V179.531H262.336ZM321.004 246.637H324.242V179.531H321.004ZM379.672 246.637H382.91V179.531H379.672Z' fill='#fff' clip-path='url(#clip1)'/>
|
|
172
|
+
<path d='M86.328 246.637H89.566V179.531H86.328ZM144.996 246.637H148.234V179.531H144.996ZM203.668 246.637H206.902V179.531H203.668ZM262.336 246.637H265.574V179.531H262.336ZM321.004 246.637H324.242V179.531H321.004ZM379.672 246.637H382.91V179.531H379.672Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
173
|
+
<path d='M87.949 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
174
|
+
<path d='M85.953 179.531H89.938' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
175
|
+
<path d='M87.949 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
176
|
+
<path d='M85.953 179.531H89.938' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
177
|
+
<path d='M146.617 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
178
|
+
<path d='M144.625 179.531H148.609' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
179
|
+
<path d='M146.617 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
180
|
+
<path d='M144.625 179.531H148.609' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
181
|
+
<path d='M205.285 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
182
|
+
<path d='M203.293 179.531H207.277' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
183
|
+
<path d='M205.285 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
184
|
+
<path d='M203.293 179.531H207.277' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
185
|
+
<path d='M263.953 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
186
|
+
<path d='M261.961 179.531H265.945' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
187
|
+
<path d='M263.953 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
188
|
+
<path d='M261.961 179.531H265.945' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
189
|
+
<path d='M322.625 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
190
|
+
<path d='M320.629 179.531H324.617' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
191
|
+
<path d='M322.625 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
192
|
+
<path d='M320.629 179.531H324.617' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
193
|
+
<path d='M381.293 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
194
|
+
<path d='M379.301 179.531H383.285' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
195
|
+
<path d='M381.293 179.531' fill='#fff' clip-path='url(#clip1)'/>
|
|
196
|
+
<path d='M379.301 179.531H383.285' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
197
|
+
<path d='M91.559 246.637H94.797V180.336H91.559ZM150.227 246.637H153.465V177.449H150.227ZM208.899 246.637H212.133V179.598H208.899ZM267.567 246.637H270.805V186.441H267.567ZM326.234 246.637H329.473V78.871H326.234ZM384.902 246.637H388.141V162.754H384.902Z' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
198
|
+
<path d='M91.559 246.637H94.797V180.336H91.559ZM150.227 246.637H153.465V177.449H150.227ZM208.899 246.637H212.133V179.598H208.899ZM267.567 246.637H270.805V186.441H267.567ZM326.234 246.637H329.473V78.871H326.234ZM384.902 246.637H388.141V162.754H384.902Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
199
|
+
<path d='M93.18 180.336' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
200
|
+
<path d='M91.184 180.336H95.168' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
201
|
+
<path d='M93.18 180.336' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
202
|
+
<path d='M91.184 180.336H95.168' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
203
|
+
<path d='M151.848 177.449' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
204
|
+
<path d='M149.855 177.45H153.84' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
205
|
+
<path d='M151.848 177.449' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
206
|
+
<path d='M149.855 177.45H153.84' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
207
|
+
<path d='M210.516 179.598' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
208
|
+
<path d='M208.523 179.598H212.507' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
209
|
+
<path d='M210.516 179.598' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
210
|
+
<path d='M208.523 179.598H212.507' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
211
|
+
<path d='M269.184 186.441' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
212
|
+
<path d='M267.191 186.442H271.175' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
213
|
+
<path d='M269.184 186.441' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
214
|
+
<path d='M267.191 186.442H271.175' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
215
|
+
<path d='M327.856 78.871' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
216
|
+
<path d='M325.859 78.871H329.847' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
217
|
+
<path d='M327.856 78.871' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
218
|
+
<path d='M325.859 78.871H329.847' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
219
|
+
<path d='M386.524 162.754' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
220
|
+
<path d='M384.531 162.753H388.515' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
221
|
+
<path d='M386.524 162.754' fill='#f0e0f0' clip-path='url(#clip1)'/>
|
|
222
|
+
<path d='M384.531 162.753H388.515' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
223
|
+
<path d='M96.789 246.637H100.027V87.73H96.789ZM155.457 246.637H158.695V189.262H155.457ZM214.129 246.637H217.363V161.074H214.129ZM272.797 246.637H276.035V221.738H272.797ZM331.465 246.637H334.703V194.965H331.465ZM390.133 246.637H393.371V212.949H390.133Z' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
224
|
+
<path d='M96.789 246.637H100.027V87.73H96.789ZM155.457 246.637H158.695V189.262H155.457ZM214.129 246.637H217.363V161.074H214.129ZM272.797 246.637H276.035V221.738H272.797ZM331.465 246.637H334.703V194.965H331.465ZM390.133 246.637H393.371V212.949H390.133Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
225
|
+
<path d='M98.41 87.73' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
226
|
+
<path d='M96.414 87.73H100.399' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
227
|
+
<path d='M98.41 87.73' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
228
|
+
<path d='M96.414 87.73H100.399' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
229
|
+
<path d='M157.078 189.262' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
230
|
+
<path d='M155.086 189.261H159.071' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
231
|
+
<path d='M157.078 189.262' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
232
|
+
<path d='M155.086 189.261H159.071' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
233
|
+
<path d='M215.746 161.074' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
234
|
+
<path d='M213.754 161.074H217.738' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
235
|
+
<path d='M215.746 161.074' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
236
|
+
<path d='M213.754 161.074H217.738' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
237
|
+
<path d='M274.414 221.738' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
238
|
+
<path d='M272.422 221.739H276.406' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
239
|
+
<path d='M274.414 221.738' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
240
|
+
<path d='M272.422 221.739H276.406' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
241
|
+
<path d='M333.086 194.965' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
242
|
+
<path d='M331.09 194.964H335.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
243
|
+
<path d='M333.086 194.965' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
244
|
+
<path d='M331.09 194.964H335.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
245
|
+
<path d='M391.754 212.949' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
246
|
+
<path d='M389.762 212.949H393.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
247
|
+
<path d='M391.754 212.949' fill='#e1c2e1' clip-path='url(#clip1)'/>
|
|
248
|
+
<path d='M389.762 212.949H393.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
249
|
+
<path d='M102.02 246.637H105.258V152.219H102.02ZM160.688 246.637H163.926V180.535H160.688ZM219.359 246.637H222.594V174.766H219.359ZM278.027 246.637H281.266V206.172H278.027ZM336.695 246.637H339.934V192.953H336.695ZM395.363 246.637H398.602V183.223H395.363Z' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
250
|
+
<path d='M102.02 246.637H105.258V152.219H102.02ZM160.688 246.637H163.926V180.535H160.688ZM219.359 246.637H222.594V174.766H219.359ZM278.027 246.637H281.266V206.172H278.027ZM336.695 246.637H339.934V192.953H336.695ZM395.363 246.637H398.602V183.223H395.363Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
251
|
+
<path d='M103.641 152.219' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
252
|
+
<path d='M101.644 152.219H105.629' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
253
|
+
<path d='M103.641 152.219' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
254
|
+
<path d='M101.644 152.219H105.629' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
255
|
+
<path d='M162.309 180.535' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
256
|
+
<path d='M160.316 180.536H164.301' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
257
|
+
<path d='M162.309 180.535' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
258
|
+
<path d='M160.316 180.536H164.301' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
259
|
+
<path d='M220.977 174.766' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
260
|
+
<path d='M218.984 174.765H222.969' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
261
|
+
<path d='M220.977 174.766' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
262
|
+
<path d='M218.984 174.765H222.969' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
263
|
+
<path d='M279.645 206.172' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
264
|
+
<path d='M277.652 206.172H281.636' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
265
|
+
<path d='M279.645 206.172' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
266
|
+
<path d='M277.652 206.172H281.636' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
267
|
+
<path d='M338.317 192.953' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
268
|
+
<path d='M336.32 192.953H340.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
269
|
+
<path d='M338.317 192.953' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
270
|
+
<path d='M336.32 192.953H340.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
271
|
+
<path d='M396.984 183.223' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
272
|
+
<path d='M394.992 183.223H398.976' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
273
|
+
<path d='M396.984 183.223' fill='#d1a3d1' clip-path='url(#clip1)'/>
|
|
274
|
+
<path d='M394.992 183.223H398.976' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
275
|
+
<path d='M107.25 246.637H110.488V154.5H107.25ZM165.918 246.637H169.156V169.734H165.918ZM224.59 246.637H227.824V134.703H224.59ZM283.258 246.637H286.496V192.281H283.258ZM341.926 246.637H345.164V197.313H341.926ZM400.594 246.637H403.832V195.703H400.594Z' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
276
|
+
<path d='M107.25 246.637H110.488V154.5H107.25ZM165.918 246.637H169.156V169.734H165.918ZM224.59 246.637H227.824V134.703H224.59ZM283.258 246.637H286.496V192.281H283.258ZM341.926 246.637H345.164V197.313H341.926ZM400.594 246.637H403.832V195.703H400.594Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
277
|
+
<path d='M108.871 154.5' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
278
|
+
<path d='M106.875 154.5H110.86' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
279
|
+
<path d='M108.871 154.5' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
280
|
+
<path d='M106.875 154.5H110.86' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
281
|
+
<path d='M167.539 169.734' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
282
|
+
<path d='M165.547 169.734H169.532' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
283
|
+
<path d='M167.539 169.734' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
284
|
+
<path d='M165.547 169.734H169.532' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
285
|
+
<path d='M226.207 134.703' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
286
|
+
<path d='M224.215 134.703H228.2' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
287
|
+
<path d='M226.207 134.703' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
288
|
+
<path d='M224.215 134.703H228.2' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
289
|
+
<path d='M284.875 192.281' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
290
|
+
<path d='M282.883 192.281H286.868' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
291
|
+
<path d='M284.875 192.281' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
292
|
+
<path d='M282.883 192.281H286.868' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
293
|
+
<path d='M343.547 197.313' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
294
|
+
<path d='M341.551 197.312H345.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
295
|
+
<path d='M343.547 197.313' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
296
|
+
<path d='M341.551 197.312H345.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
297
|
+
<path d='M402.215 195.703' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
298
|
+
<path d='M400.223 195.704H404.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
299
|
+
<path d='M402.215 195.703' fill='#c285c2' clip-path='url(#clip1)'/>
|
|
300
|
+
<path d='M400.223 195.704H404.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
301
|
+
<path d='M112.481 246.637H115.719V167.922H112.481ZM171.149 246.637H174.387V172.148H171.149ZM229.82 246.637H233.055V160.07H229.82ZM288.488 246.637H291.727V196.305H288.488ZM347.156 246.637H350.395V78.871H347.156ZM405.824 246.637H409.063V146.379H405.824Z' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
302
|
+
<path d='M112.481 246.637H115.719V167.922H112.481ZM171.149 246.637H174.387V172.148H171.149ZM229.82 246.637H233.055V160.07H229.82ZM288.488 246.637H291.727V196.305H288.488ZM347.156 246.637H350.395V78.871H347.156ZM405.824 246.637H409.063V146.379H405.824Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
303
|
+
<path d='M114.098 167.922' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
304
|
+
<path d='M112.105 167.922H116.09' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
305
|
+
<path d='M114.098 167.922' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
306
|
+
<path d='M112.105 167.922H116.09' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
307
|
+
<path d='M172.77 172.148' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
308
|
+
<path d='M170.777 172.148H174.762' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
309
|
+
<path d='M172.77 172.148' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
310
|
+
<path d='M170.777 172.148H174.762' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
311
|
+
<path d='M231.438 160.07' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
312
|
+
<path d='M229.445 160.07H233.43' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
313
|
+
<path d='M231.438 160.07' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
314
|
+
<path d='M229.445 160.07H233.43' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
315
|
+
<path d='M290.106 196.305' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
316
|
+
<path d='M288.113 196.304H292.098' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
317
|
+
<path d='M290.106 196.305' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
318
|
+
<path d='M288.113 196.304H292.098' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
319
|
+
<path d='M348.777 78.871' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
320
|
+
<path d='M346.781 78.871H350.769' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
321
|
+
<path d='M348.777 78.871' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
322
|
+
<path d='M346.781 78.871H350.769' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
323
|
+
<path d='M407.445 146.379' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
324
|
+
<path d='M405.453 146.379H409.437' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
325
|
+
<path d='M407.445 146.379' fill='#b366b3' clip-path='url(#clip1)'/>
|
|
326
|
+
<path d='M405.453 146.379H409.437' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
327
|
+
<path d='M117.711 246.637H120.949V153.223H117.711ZM176.379 246.637H179.617V169.465H176.379ZM235.051 246.637H238.285V174.633H235.051ZM293.719 246.637H296.957V215.766H293.719ZM352.387 246.637H355.625V78.871H352.387ZM411.055 246.637H414.293V191.742H411.055Z' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
328
|
+
<path d='M117.711 246.637H120.949V153.223H117.711ZM176.379 246.637H179.617V169.465H176.379ZM235.051 246.637H238.285V174.633H235.051ZM293.719 246.637H296.957V215.766H293.719ZM352.387 246.637H355.625V78.871H352.387ZM411.055 246.637H414.293V191.742H411.055Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
329
|
+
<path d='M119.328 153.223' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
330
|
+
<path d='M117.336 153.222H121.321' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
331
|
+
<path d='M119.328 153.223' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
332
|
+
<path d='M117.336 153.222H121.321' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
333
|
+
<path d='M178 169.465' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
334
|
+
<path d='M176.008 169.465H179.993' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
335
|
+
<path d='M178 169.465' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
336
|
+
<path d='M176.008 169.465H179.993' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
337
|
+
<path d='M236.668 174.633' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
338
|
+
<path d='M234.676 174.633H238.661' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
339
|
+
<path d='M236.668 174.633' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
340
|
+
<path d='M234.676 174.633H238.661' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
341
|
+
<path d='M295.336 215.766' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
342
|
+
<path d='M293.344 215.765H297.329' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
343
|
+
<path d='M295.336 215.766' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
344
|
+
<path d='M293.344 215.765H297.329' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
345
|
+
<path d='M354.008 78.871' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
346
|
+
<path d='M352.012 78.871H356' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
347
|
+
<path d='M354.008 78.871' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
348
|
+
<path d='M352.012 78.871H356' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
349
|
+
<path d='M412.676 191.742' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
350
|
+
<path d='M410.684 191.742H414.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
351
|
+
<path d='M412.676 191.742' fill='#a447a4' clip-path='url(#clip1)'/>
|
|
352
|
+
<path d='M410.684 191.742H414.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
353
|
+
<path d='M122.941 246.637H126.18V177.047H122.941ZM181.609 246.637H184.848V178.457H181.609ZM240.281 246.637H243.516V178.992H240.281ZM298.949 246.637H302.188V221.875H298.949ZM357.617 246.637H360.856V78.871H357.617ZM416.285 246.637H419.524V157.25H416.285Z' fill='#942994' clip-path='url(#clip1)'/>
|
|
354
|
+
<path d='M122.941 246.637H126.18V177.047H122.941ZM181.609 246.637H184.848V178.457H181.609ZM240.281 246.637H243.516V178.992H240.281ZM298.949 246.637H302.188V221.875H298.949ZM357.617 246.637H360.856V78.871H357.617ZM416.285 246.637H419.524V157.25H416.285Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
355
|
+
<path d='M124.559 177.047' fill='#942994' clip-path='url(#clip1)'/>
|
|
356
|
+
<path d='M122.566 177.047H126.551' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
357
|
+
<path d='M124.559 177.047' fill='#942994' clip-path='url(#clip1)'/>
|
|
358
|
+
<path d='M122.566 177.047H126.551' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
359
|
+
<path d='M183.231 178.457' fill='#942994' clip-path='url(#clip1)'/>
|
|
360
|
+
<path d='M181.238 178.457H185.223' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
361
|
+
<path d='M183.231 178.457' fill='#942994' clip-path='url(#clip1)'/>
|
|
362
|
+
<path d='M181.238 178.457H185.223' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
363
|
+
<path d='M241.899 178.992' fill='#942994' clip-path='url(#clip1)'/>
|
|
364
|
+
<path d='M239.906 178.992H243.891' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
365
|
+
<path d='M241.899 178.992' fill='#942994' clip-path='url(#clip1)'/>
|
|
366
|
+
<path d='M239.906 178.992H243.891' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
367
|
+
<path d='M300.567 221.875' fill='#942994' clip-path='url(#clip1)'/>
|
|
368
|
+
<path d='M298.574 221.875H302.559' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
369
|
+
<path d='M300.567 221.875' fill='#942994' clip-path='url(#clip1)'/>
|
|
370
|
+
<path d='M298.574 221.875H302.559' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
371
|
+
<path d='M359.238 78.871' fill='#942994' clip-path='url(#clip1)'/>
|
|
372
|
+
<path d='M357.242 78.871H361.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
373
|
+
<path d='M359.238 78.871' fill='#942994' clip-path='url(#clip1)'/>
|
|
374
|
+
<path d='M357.242 78.871H361.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
375
|
+
<path d='M417.906 157.25' fill='#942994' clip-path='url(#clip1)'/>
|
|
376
|
+
<path d='M415.914 157.25H419.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
377
|
+
<path d='M417.906 157.25' fill='#942994' clip-path='url(#clip1)'/>
|
|
378
|
+
<path d='M415.914 157.25H419.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
379
|
+
<path d='M128.172 246.637H131.41V182.414H128.172ZM186.84 246.637H190.078V170.805H186.84ZM245.512 246.637H248.746V179.059H245.512ZM304.18 246.637H307.418V207.176H304.18ZM362.848 246.637H366.086V153.629H362.848ZM421.516 246.637H424.754V207.313H421.516Z' fill='#850a85' clip-path='url(#clip1)'/>
|
|
380
|
+
<path d='M128.172 246.637H131.41V182.414H128.172ZM186.84 246.637H190.078V170.805H186.84ZM245.512 246.637H248.746V179.059H245.512ZM304.18 246.637H307.418V207.176H304.18ZM362.848 246.637H366.086V153.629H362.848ZM421.516 246.637H424.754V207.313H421.516Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
381
|
+
<path d='M129.789 182.414' fill='#850a85' clip-path='url(#clip1)'/>
|
|
382
|
+
<path d='M127.797 182.415H131.782' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
383
|
+
<path d='M129.789 182.414' fill='#850a85' clip-path='url(#clip1)'/>
|
|
384
|
+
<path d='M127.797 182.415H131.782' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
385
|
+
<path d='M188.461 170.805' fill='#850a85' clip-path='url(#clip1)'/>
|
|
386
|
+
<path d='M186.469 170.805H190.454' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
387
|
+
<path d='M188.461 170.805' fill='#850a85' clip-path='url(#clip1)'/>
|
|
388
|
+
<path d='M186.469 170.805H190.454' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
389
|
+
<path d='M247.129 179.059' fill='#850a85' clip-path='url(#clip1)'/>
|
|
390
|
+
<path d='M245.137 179.058H249.122' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
391
|
+
<path d='M247.129 179.059' fill='#850a85' clip-path='url(#clip1)'/>
|
|
392
|
+
<path d='M245.137 179.058H249.122' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
393
|
+
<path d='M305.797 207.176' fill='#850a85' clip-path='url(#clip1)'/>
|
|
394
|
+
<path d='M303.804 207.176H307.789' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
395
|
+
<path d='M305.797 207.176' fill='#850a85' clip-path='url(#clip1)'/>
|
|
396
|
+
<path d='M303.804 207.176H307.789' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
397
|
+
<path d='M364.469 153.629' fill='#850a85' clip-path='url(#clip1)'/>
|
|
398
|
+
<path d='M362.473 153.629H366.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
399
|
+
<path d='M364.469 153.629' fill='#850a85' clip-path='url(#clip1)'/>
|
|
400
|
+
<path d='M362.473 153.629H366.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
401
|
+
<path d='M423.137 207.313' fill='#850a85' clip-path='url(#clip1)'/>
|
|
402
|
+
<path d='M421.144 207.313H425.128' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
403
|
+
<path d='M423.137 207.313' fill='#850a85' clip-path='url(#clip1)'/>
|
|
404
|
+
<path d='M421.144 207.313H425.128' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
405
|
+
<path d='M133.402 246.637H136.641V178.055H133.402ZM192.07 246.637H195.309V164.969H192.07ZM250.742 246.637H253.977V175.703H250.742ZM309.41 246.637H312.649V184.027H309.41ZM368.078 246.637H371.317V99.809H368.078ZM426.746 246.637H429.984V143.023H426.746Z' fill='#760076' clip-path='url(#clip1)'/>
|
|
406
|
+
<path d='M133.402 246.637H136.641V178.055H133.402ZM192.07 246.637H195.309V164.969H192.07ZM250.742 246.637H253.977V175.703H250.742ZM309.41 246.637H312.649V184.027H309.41ZM368.078 246.637H371.317V99.809H368.078ZM426.746 246.637H429.984V143.023H426.746Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
407
|
+
<path d='M135.02 178.055' fill='#760076' clip-path='url(#clip1)'/>
|
|
408
|
+
<path d='M133.027 178.055H137.012' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
409
|
+
<path d='M135.02 178.055' fill='#760076' clip-path='url(#clip1)'/>
|
|
410
|
+
<path d='M133.027 178.055H137.012' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
411
|
+
<path d='M193.692 164.969' fill='#760076' clip-path='url(#clip1)'/>
|
|
412
|
+
<path d='M191.699 164.969H195.684' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
413
|
+
<path d='M193.692 164.969' fill='#760076' clip-path='url(#clip1)'/>
|
|
414
|
+
<path d='M191.699 164.969H195.684' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
415
|
+
<path d='M252.359 175.703' fill='#760076' clip-path='url(#clip1)'/>
|
|
416
|
+
<path d='M250.367 175.703H254.352' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
417
|
+
<path d='M252.359 175.703' fill='#760076' clip-path='url(#clip1)'/>
|
|
418
|
+
<path d='M250.367 175.703H254.352' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
419
|
+
<path d='M311.027 184.027' fill='#760076' clip-path='url(#clip1)'/>
|
|
420
|
+
<path d='M309.035 184.027H313.02' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
421
|
+
<path d='M311.027 184.027' fill='#760076' clip-path='url(#clip1)'/>
|
|
422
|
+
<path d='M309.035 184.027H313.02' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
423
|
+
<path d='M369.699 99.809' fill='#760076' clip-path='url(#clip1)'/>
|
|
424
|
+
<path d='M367.703 99.809H371.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
425
|
+
<path d='M369.699 99.809' fill='#760076' clip-path='url(#clip1)'/>
|
|
426
|
+
<path d='M367.703 99.809H371.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
427
|
+
<path d='M428.367 143.023' fill='#760076' clip-path='url(#clip1)'/>
|
|
428
|
+
<path d='M426.375 143.023H430.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
429
|
+
<path d='M428.367 143.023' fill='#760076' clip-path='url(#clip1)'/>
|
|
430
|
+
<path d='M426.375 143.023H430.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
431
|
+
<g transform='matrix(0 -1 1 0 -136.497 287.813)'>
|
|
432
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
433
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
434
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
435
|
+
<use x='121.25' y='226.079' xlink:href='#g2-48'/>
|
|
436
|
+
</g>
|
|
437
|
+
<g transform='matrix(0 -1 1 0 -77.828 287.813)'>
|
|
438
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
439
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
440
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
441
|
+
<use x='121.25' y='226.079' xlink:href='#g2-48'/>
|
|
442
|
+
</g>
|
|
443
|
+
<g transform='matrix(0 -1 1 0 -19.159 287.813)'>
|
|
444
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
445
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
446
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
447
|
+
<use x='121.25' y='226.079' xlink:href='#g2-48'/>
|
|
448
|
+
</g>
|
|
449
|
+
<g transform='matrix(0 -1 1 0 39.51 287.813)'>
|
|
450
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
451
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
452
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
453
|
+
<use x='121.25' y='226.079' xlink:href='#g2-48'/>
|
|
454
|
+
</g>
|
|
455
|
+
<g transform='matrix(0 -1 1 0 98.179 287.813)'>
|
|
456
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
457
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
458
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
459
|
+
<use x='121.25' y='226.079' xlink:href='#g2-48'/>
|
|
460
|
+
</g>
|
|
461
|
+
<g transform='matrix(0 -1 1 0 156.848 287.813)'>
|
|
462
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
463
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
464
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
465
|
+
<use x='121.25' y='226.079' xlink:href='#g2-48'/>
|
|
466
|
+
</g>
|
|
467
|
+
<g transform='matrix(0 -1 1 0 -131.267 288.618)'>
|
|
468
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
469
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
470
|
+
<use x='118.603' y='226.079' xlink:href='#g2-57'/>
|
|
471
|
+
<use x='121.25' y='226.079' xlink:href='#g2-57'/>
|
|
472
|
+
</g>
|
|
473
|
+
<g transform='matrix(0 -1 1 0 -72.598 285.733)'>
|
|
474
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
475
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
476
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
477
|
+
<use x='121.25' y='226.079' xlink:href='#g2-51'/>
|
|
478
|
+
</g>
|
|
479
|
+
<g transform='matrix(0 -1 1 0 -13.929 287.88)'>
|
|
480
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
481
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
482
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
483
|
+
<use x='121.25' y='226.079' xlink:href='#g2-48'/>
|
|
484
|
+
</g>
|
|
485
|
+
<g transform='matrix(0 -1 1 0 44.74 294.725)'>
|
|
486
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
487
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
488
|
+
<use x='118.603' y='226.079' xlink:href='#g2-57'/>
|
|
489
|
+
<use x='121.25' y='226.079' xlink:href='#g2-48'/>
|
|
490
|
+
</g>
|
|
491
|
+
<g transform='matrix(0 -1 1 0 103.409 187.154)'>
|
|
492
|
+
<use x='109.598' y='226.079' xlink:href='#g4-1'/>
|
|
493
|
+
<use x='113.103' y='226.079' xlink:href='#g4-1'/>
|
|
494
|
+
<use x='116.608' y='226.079' xlink:href='#g4-1'/>
|
|
495
|
+
<use x='120.114' y='226.079' xlink:href='#g2-51'/>
|
|
496
|
+
<use x='122.76' y='226.079' xlink:href='#g2-46'/>
|
|
497
|
+
<use x='124.23' y='226.079' xlink:href='#g2-49'/>
|
|
498
|
+
<use x='126.877' y='226.079' xlink:href='#g2-55'/>
|
|
499
|
+
<use x='129.523' y='226.079' xlink:href='#g2-120'/>
|
|
500
|
+
</g>
|
|
501
|
+
<g transform='matrix(0 -1 1 0 162.078 271.036)'>
|
|
502
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
503
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
504
|
+
<use x='118.603' y='226.079' xlink:href='#g2-50'/>
|
|
505
|
+
<use x='121.25' y='226.079' xlink:href='#g2-53'/>
|
|
506
|
+
</g>
|
|
507
|
+
<g transform='matrix(0 -1 1 0 -126.036 196.012)'>
|
|
508
|
+
<use x='114.487' y='226.079' xlink:href='#g2-50'/>
|
|
509
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
510
|
+
<use x='118.603' y='226.079' xlink:href='#g2-51'/>
|
|
511
|
+
<use x='121.25' y='226.079' xlink:href='#g2-55'/>
|
|
512
|
+
</g>
|
|
513
|
+
<g transform='matrix(0 -1 1 0 -67.367 297.543)'>
|
|
514
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
515
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
516
|
+
<use x='118.603' y='226.079' xlink:href='#g2-56'/>
|
|
517
|
+
<use x='121.25' y='226.079' xlink:href='#g2-54'/>
|
|
518
|
+
</g>
|
|
519
|
+
<g transform='matrix(0 -1 1 0 -8.698 269.359)'>
|
|
520
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
521
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
522
|
+
<use x='118.603' y='226.079' xlink:href='#g2-50'/>
|
|
523
|
+
<use x='121.25' y='226.079' xlink:href='#g2-56'/>
|
|
524
|
+
</g>
|
|
525
|
+
<g transform='matrix(0 -1 1 0 49.971 330.023)'>
|
|
526
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
527
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
528
|
+
<use x='118.603' y='226.079' xlink:href='#g2-51'/>
|
|
529
|
+
<use x='121.25' y='226.079' xlink:href='#g2-55'/>
|
|
530
|
+
</g>
|
|
531
|
+
<g transform='matrix(0 -1 1 0 108.64 303.247)'>
|
|
532
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
533
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
534
|
+
<use x='118.603' y='226.079' xlink:href='#g2-55'/>
|
|
535
|
+
<use x='121.25' y='226.079' xlink:href='#g2-55'/>
|
|
536
|
+
</g>
|
|
537
|
+
<g transform='matrix(0 -1 1 0 167.309 321.232)'>
|
|
538
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
539
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
540
|
+
<use x='118.603' y='226.079' xlink:href='#g2-53'/>
|
|
541
|
+
<use x='121.25' y='226.079' xlink:href='#g2-48'/>
|
|
542
|
+
</g>
|
|
543
|
+
<g transform='matrix(0 -1 1 0 -120.806 260.501)'>
|
|
544
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
545
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
546
|
+
<use x='118.603' y='226.079' xlink:href='#g2-52'/>
|
|
547
|
+
<use x='121.25' y='226.079' xlink:href='#g2-49'/>
|
|
548
|
+
</g>
|
|
549
|
+
<g transform='matrix(0 -1 1 0 -62.137 288.819)'>
|
|
550
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
551
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
552
|
+
<use x='118.603' y='226.079' xlink:href='#g2-57'/>
|
|
553
|
+
<use x='121.25' y='226.079' xlink:href='#g2-57'/>
|
|
554
|
+
</g>
|
|
555
|
+
<g transform='matrix(0 -1 1 0 -3.468 283.048)'>
|
|
556
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
557
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
558
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
559
|
+
<use x='121.25' y='226.079' xlink:href='#g2-55'/>
|
|
560
|
+
</g>
|
|
561
|
+
<g transform='matrix(0 -1 1 0 55.201 314.454)'>
|
|
562
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
563
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
564
|
+
<use x='118.603' y='226.079' xlink:href='#g2-54'/>
|
|
565
|
+
<use x='121.25' y='226.079' xlink:href='#g2-48'/>
|
|
566
|
+
</g>
|
|
567
|
+
<g transform='matrix(0 -1 1 0 113.87 301.234)'>
|
|
568
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
569
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
570
|
+
<use x='118.603' y='226.079' xlink:href='#g2-56'/>
|
|
571
|
+
<use x='121.25' y='226.079' xlink:href='#g2-48'/>
|
|
572
|
+
</g>
|
|
573
|
+
<g transform='matrix(0 -1 1 0 172.539 291.504)'>
|
|
574
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
575
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
576
|
+
<use x='118.603' y='226.079' xlink:href='#g2-57'/>
|
|
577
|
+
<use x='121.25' y='226.079' xlink:href='#g2-52'/>
|
|
578
|
+
</g>
|
|
579
|
+
<g transform='matrix(0 -1 1 0 -115.575 262.782)'>
|
|
580
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
581
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
582
|
+
<use x='118.603' y='226.079' xlink:href='#g2-51'/>
|
|
583
|
+
<use x='121.25' y='226.079' xlink:href='#g2-55'/>
|
|
584
|
+
</g>
|
|
585
|
+
<g transform='matrix(0 -1 1 0 -56.906 278.015)'>
|
|
586
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
587
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
588
|
+
<use x='118.603' y='226.079' xlink:href='#g2-49'/>
|
|
589
|
+
<use x='121.25' y='226.079' xlink:href='#g2-53'/>
|
|
590
|
+
</g>
|
|
591
|
+
<g transform='matrix(0 -1 1 0 1.763 242.986)'>
|
|
592
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
593
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
594
|
+
<use x='118.603' y='226.079' xlink:href='#g2-54'/>
|
|
595
|
+
<use x='121.25' y='226.079' xlink:href='#g2-55'/>
|
|
596
|
+
</g>
|
|
597
|
+
<g transform='matrix(0 -1 1 0 60.432 300.563)'>
|
|
598
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
599
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
600
|
+
<use x='118.603' y='226.079' xlink:href='#g2-56'/>
|
|
601
|
+
<use x='121.25' y='226.079' xlink:href='#g2-49'/>
|
|
602
|
+
</g>
|
|
603
|
+
<g transform='matrix(0 -1 1 0 119.101 305.596)'>
|
|
604
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
605
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
606
|
+
<use x='118.603' y='226.079' xlink:href='#g2-55'/>
|
|
607
|
+
<use x='121.25' y='226.079' xlink:href='#g2-51'/>
|
|
608
|
+
</g>
|
|
609
|
+
<g transform='matrix(0 -1 1 0 177.77 303.985)'>
|
|
610
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
611
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
612
|
+
<use x='118.603' y='226.079' xlink:href='#g2-55'/>
|
|
613
|
+
<use x='121.25' y='226.079' xlink:href='#g2-54'/>
|
|
614
|
+
</g>
|
|
615
|
+
<g transform='matrix(0 -1 1 0 -110.345 276.204)'>
|
|
616
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
617
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
618
|
+
<use x='118.603' y='226.079' xlink:href='#g2-49'/>
|
|
619
|
+
<use x='121.25' y='226.079' xlink:href='#g2-55'/>
|
|
620
|
+
</g>
|
|
621
|
+
<g transform='matrix(0 -1 1 0 -51.676 280.431)'>
|
|
622
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
623
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
624
|
+
<use x='118.603' y='226.079' xlink:href='#g2-49'/>
|
|
625
|
+
<use x='121.25' y='226.079' xlink:href='#g2-49'/>
|
|
626
|
+
</g>
|
|
627
|
+
<g transform='matrix(0 -1 1 0 6.993 268.352)'>
|
|
628
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
629
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
630
|
+
<use x='118.603' y='226.079' xlink:href='#g2-50'/>
|
|
631
|
+
<use x='121.25' y='226.079' xlink:href='#g2-57'/>
|
|
632
|
+
</g>
|
|
633
|
+
<g transform='matrix(0 -1 1 0 65.662 304.589)'>
|
|
634
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
635
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
636
|
+
<use x='118.603' y='226.079' xlink:href='#g2-55'/>
|
|
637
|
+
<use x='121.25' y='226.079' xlink:href='#g2-53'/>
|
|
638
|
+
</g>
|
|
639
|
+
<g transform='matrix(0 -1 1 0 124.331 187.154)'>
|
|
640
|
+
<use x='109.598' y='226.079' xlink:href='#g4-1'/>
|
|
641
|
+
<use x='113.103' y='226.079' xlink:href='#g4-1'/>
|
|
642
|
+
<use x='116.608' y='226.079' xlink:href='#g4-1'/>
|
|
643
|
+
<use x='120.114' y='226.079' xlink:href='#g2-53'/>
|
|
644
|
+
<use x='122.76' y='226.079' xlink:href='#g2-46'/>
|
|
645
|
+
<use x='124.23' y='226.079' xlink:href='#g2-51'/>
|
|
646
|
+
<use x='126.877' y='226.079' xlink:href='#g2-50'/>
|
|
647
|
+
<use x='129.523' y='226.079' xlink:href='#g2-120'/>
|
|
648
|
+
</g>
|
|
649
|
+
<g transform='matrix(0 -1 1 0 183 254.663)'>
|
|
650
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
651
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
652
|
+
<use x='118.603' y='226.079' xlink:href='#g2-52'/>
|
|
653
|
+
<use x='121.25' y='226.079' xlink:href='#g2-57'/>
|
|
654
|
+
</g>
|
|
655
|
+
<g transform='matrix(0 -1 1 0 -105.114 261.507)'>
|
|
656
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
657
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
658
|
+
<use x='118.603' y='226.079' xlink:href='#g2-51'/>
|
|
659
|
+
<use x='121.25' y='226.079' xlink:href='#g2-57'/>
|
|
660
|
+
</g>
|
|
661
|
+
<g transform='matrix(0 -1 1 0 -46.445 277.747)'>
|
|
662
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
663
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
664
|
+
<use x='118.603' y='226.079' xlink:href='#g2-49'/>
|
|
665
|
+
<use x='121.25' y='226.079' xlink:href='#g2-53'/>
|
|
666
|
+
</g>
|
|
667
|
+
<g transform='matrix(0 -1 1 0 12.224 282.914)'>
|
|
668
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
669
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
670
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
671
|
+
<use x='121.25' y='226.079' xlink:href='#g2-55'/>
|
|
672
|
+
</g>
|
|
673
|
+
<g transform='matrix(0 -1 1 0 70.893 324.05)'>
|
|
674
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
675
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
676
|
+
<use x='118.603' y='226.079' xlink:href='#g2-52'/>
|
|
677
|
+
<use x='121.25' y='226.079' xlink:href='#g2-54'/>
|
|
678
|
+
</g>
|
|
679
|
+
<g transform='matrix(0 -1 1 0 129.562 187.154)'>
|
|
680
|
+
<use x='109.598' y='226.079' xlink:href='#g4-1'/>
|
|
681
|
+
<use x='113.103' y='226.079' xlink:href='#g4-1'/>
|
|
682
|
+
<use x='116.608' y='226.079' xlink:href='#g4-1'/>
|
|
683
|
+
<use x='120.114' y='226.079' xlink:href='#g2-50'/>
|
|
684
|
+
<use x='122.76' y='226.079' xlink:href='#g2-46'/>
|
|
685
|
+
<use x='124.23' y='226.079' xlink:href='#g2-56'/>
|
|
686
|
+
<use x='126.877' y='226.079' xlink:href='#g2-53'/>
|
|
687
|
+
<use x='129.523' y='226.079' xlink:href='#g2-120'/>
|
|
688
|
+
</g>
|
|
689
|
+
<g transform='matrix(0 -1 1 0 188.231 300.026)'>
|
|
690
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
691
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
692
|
+
<use x='118.603' y='226.079' xlink:href='#g2-56'/>
|
|
693
|
+
<use x='121.25' y='226.079' xlink:href='#g2-50'/>
|
|
694
|
+
</g>
|
|
695
|
+
<g transform='matrix(0 -1 1 0 -99.884 285.33)'>
|
|
696
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
697
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
698
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
699
|
+
<use x='121.25' y='226.079' xlink:href='#g2-52'/>
|
|
700
|
+
</g>
|
|
701
|
+
<g transform='matrix(0 -1 1 0 -41.215 286.739)'>
|
|
702
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
703
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
704
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
705
|
+
<use x='121.25' y='226.079' xlink:href='#g2-50'/>
|
|
706
|
+
</g>
|
|
707
|
+
<g transform='matrix(0 -1 1 0 17.454 287.276)'>
|
|
708
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
709
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
710
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
711
|
+
<use x='121.25' y='226.079' xlink:href='#g2-49'/>
|
|
712
|
+
</g>
|
|
713
|
+
<g transform='matrix(0 -1 1 0 76.123 330.157)'>
|
|
714
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
715
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
716
|
+
<use x='118.603' y='226.079' xlink:href='#g2-51'/>
|
|
717
|
+
<use x='121.25' y='226.079' xlink:href='#g2-55'/>
|
|
718
|
+
</g>
|
|
719
|
+
<g transform='matrix(0 -1 1 0 134.792 187.154)'>
|
|
720
|
+
<use x='109.598' y='226.079' xlink:href='#g4-1'/>
|
|
721
|
+
<use x='113.103' y='226.079' xlink:href='#g4-1'/>
|
|
722
|
+
<use x='116.608' y='226.079' xlink:href='#g4-1'/>
|
|
723
|
+
<use x='120.114' y='226.079' xlink:href='#g2-52'/>
|
|
724
|
+
<use x='122.76' y='226.079' xlink:href='#g2-46'/>
|
|
725
|
+
<use x='124.23' y='226.079' xlink:href='#g2-50'/>
|
|
726
|
+
<use x='126.877' y='226.079' xlink:href='#g2-51'/>
|
|
727
|
+
<use x='129.523' y='226.079' xlink:href='#g2-120'/>
|
|
728
|
+
</g>
|
|
729
|
+
<g transform='matrix(0 -1 1 0 193.461 265.534)'>
|
|
730
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
731
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
732
|
+
<use x='118.603' y='226.079' xlink:href='#g2-51'/>
|
|
733
|
+
<use x='121.25' y='226.079' xlink:href='#g2-51'/>
|
|
734
|
+
</g>
|
|
735
|
+
<g transform='matrix(0 -1 1 0 -94.654 290.698)'>
|
|
736
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
737
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
738
|
+
<use x='118.603' y='226.079' xlink:href='#g2-57'/>
|
|
739
|
+
<use x='121.25' y='226.079' xlink:href='#g2-54'/>
|
|
740
|
+
</g>
|
|
741
|
+
<g transform='matrix(0 -1 1 0 -35.985 279.089)'>
|
|
742
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
743
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
744
|
+
<use x='118.603' y='226.079' xlink:href='#g2-49'/>
|
|
745
|
+
<use x='121.25' y='226.079' xlink:href='#g2-51'/>
|
|
746
|
+
</g>
|
|
747
|
+
<g transform='matrix(0 -1 1 0 22.684 287.343)'>
|
|
748
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
749
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
750
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
751
|
+
<use x='121.25' y='226.079' xlink:href='#g2-49'/>
|
|
752
|
+
</g>
|
|
753
|
+
<g transform='matrix(0 -1 1 0 81.353 315.461)'>
|
|
754
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
755
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
756
|
+
<use x='118.603' y='226.079' xlink:href='#g2-53'/>
|
|
757
|
+
<use x='121.25' y='226.079' xlink:href='#g2-57'/>
|
|
758
|
+
</g>
|
|
759
|
+
<g transform='matrix(0 -1 1 0 140.022 261.91)'>
|
|
760
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
761
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
762
|
+
<use x='118.603' y='226.079' xlink:href='#g2-51'/>
|
|
763
|
+
<use x='121.25' y='226.079' xlink:href='#g2-57'/>
|
|
764
|
+
</g>
|
|
765
|
+
<g transform='matrix(0 -1 1 0 198.691 315.595)'>
|
|
766
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
767
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
768
|
+
<use x='118.603' y='226.079' xlink:href='#g2-53'/>
|
|
769
|
+
<use x='121.25' y='226.079' xlink:href='#g2-57'/>
|
|
770
|
+
</g>
|
|
771
|
+
<g transform='matrix(0 -1 1 0 -89.423 286.337)'>
|
|
772
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
773
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
774
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
775
|
+
<use x='121.25' y='226.079' xlink:href='#g2-50'/>
|
|
776
|
+
</g>
|
|
777
|
+
<g transform='matrix(0 -1 1 0 -30.754 273.251)'>
|
|
778
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
779
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
780
|
+
<use x='118.603' y='226.079' xlink:href='#g2-50'/>
|
|
781
|
+
<use x='121.25' y='226.079' xlink:href='#g2-50'/>
|
|
782
|
+
</g>
|
|
783
|
+
<g transform='matrix(0 -1 1 0 27.915 283.988)'>
|
|
784
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
785
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
786
|
+
<use x='118.603' y='226.079' xlink:href='#g2-48'/>
|
|
787
|
+
<use x='121.25' y='226.079' xlink:href='#g2-54'/>
|
|
788
|
+
</g>
|
|
789
|
+
<g transform='matrix(0 -1 1 0 86.584 292.309)'>
|
|
790
|
+
<use x='114.487' y='226.079' xlink:href='#g2-48'/>
|
|
791
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
792
|
+
<use x='118.603' y='226.079' xlink:href='#g2-57'/>
|
|
793
|
+
<use x='121.25' y='226.079' xlink:href='#g2-51'/>
|
|
794
|
+
</g>
|
|
795
|
+
<g transform='matrix(0 -1 1 0 145.253 208.091)'>
|
|
796
|
+
<use x='114.487' y='226.079' xlink:href='#g2-50'/>
|
|
797
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
798
|
+
<use x='118.603' y='226.079' xlink:href='#g2-49'/>
|
|
799
|
+
<use x='121.25' y='226.079' xlink:href='#g2-57'/>
|
|
800
|
+
</g>
|
|
801
|
+
<g transform='matrix(0 -1 1 0 203.922 251.307)'>
|
|
802
|
+
<use x='114.487' y='226.079' xlink:href='#g2-49'/>
|
|
803
|
+
<use x='117.133' y='226.079' xlink:href='#g2-46'/>
|
|
804
|
+
<use x='118.603' y='226.079' xlink:href='#g2-53'/>
|
|
805
|
+
<use x='121.25' y='226.079' xlink:href='#g2-52'/>
|
|
806
|
+
</g>
|
|
807
|
+
<g transform='matrix(0 -1 1 0 -166.719 329.135)'>
|
|
808
|
+
<use x='114.487' y='226.079' xlink:href='#g1-82'/>
|
|
809
|
+
<use x='120.457' y='226.079' xlink:href='#g1-101'/>
|
|
810
|
+
<use x='124.553' y='226.079' xlink:href='#g1-108'/>
|
|
811
|
+
<use x='126.753' y='226.079' xlink:href='#g1-97'/>
|
|
812
|
+
<use x='131.181' y='226.079' xlink:href='#g1-116'/>
|
|
813
|
+
<use x='134.509' y='226.079' xlink:href='#g1-105'/>
|
|
814
|
+
<use x='136.709' y='226.079' xlink:href='#g1-118'/>
|
|
815
|
+
<use x='140.957' y='226.079' xlink:href='#g1-101'/>
|
|
816
|
+
<use x='148.124' y='226.079' xlink:href='#g1-114'/>
|
|
817
|
+
<use x='151.272' y='226.079' xlink:href='#g1-115'/>
|
|
818
|
+
<use x='154.805' y='226.079' xlink:href='#g1-115'/>
|
|
819
|
+
<use x='161.409' y='226.079' xlink:href='#g3-40'/>
|
|
820
|
+
<use x='164.702' y='226.079' xlink:href='#g3-108'/>
|
|
821
|
+
<use x='166.722' y='226.079' xlink:href='#g3-111'/>
|
|
822
|
+
<use x='170.721' y='226.079' xlink:href='#g3-119'/>
|
|
823
|
+
<use x='176.27' y='226.079' xlink:href='#g3-101'/>
|
|
824
|
+
<use x='180.034' y='226.079' xlink:href='#g3-114'/>
|
|
825
|
+
<use x='185.749' y='226.079' xlink:href='#g3-105'/>
|
|
826
|
+
<use x='187.769' y='226.079' xlink:href='#g3-115'/>
|
|
827
|
+
<use x='193.838' y='226.079' xlink:href='#g3-98'/>
|
|
828
|
+
<use x='198.446' y='226.079' xlink:href='#g3-101'/>
|
|
829
|
+
<use x='202.209' y='226.079' xlink:href='#g3-116'/>
|
|
830
|
+
<use x='205.267' y='226.079' xlink:href='#g3-116'/>
|
|
831
|
+
<use x='208.325' y='226.079' xlink:href='#g3-101'/>
|
|
832
|
+
<use x='212.089' y='226.079' xlink:href='#g3-114'/>
|
|
833
|
+
<use x='214.981' y='226.079' xlink:href='#g3-41'/>
|
|
834
|
+
</g>
|
|
835
|
+
</g>
|
|
836
|
+
</svg>
|