@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,766 @@
|
|
|
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='315.585pt' height='208.604pt' viewBox='52.934 54.994 315.585 208.604'>
|
|
4
|
+
<rect width="1000%" height="1000%" fill="white"/>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id='clip1'>
|
|
7
|
+
<path d='M82.148 203.938H368.121V78.692H82.148Z'/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
<use id='g2-44' xlink:href='#g0-44' transform='scale(.714)'/>
|
|
10
|
+
<use id='g2-45' xlink:href='#g0-45' transform='scale(.714)'/>
|
|
11
|
+
<use id='g2-46' xlink:href='#g0-46' transform='scale(.714)'/>
|
|
12
|
+
<use id='g2-48' xlink:href='#g0-48' transform='scale(.714)'/>
|
|
13
|
+
<use id='g2-49' xlink:href='#g0-49' transform='scale(.714)'/>
|
|
14
|
+
<use id='g2-50' xlink:href='#g0-50' transform='scale(.714)'/>
|
|
15
|
+
<use id='g2-51' xlink:href='#g0-51' transform='scale(.714)'/>
|
|
16
|
+
<use id='g2-52' xlink:href='#g0-52' transform='scale(.714)'/>
|
|
17
|
+
<use id='g2-53' xlink:href='#g0-53' transform='scale(.714)'/>
|
|
18
|
+
<use id='g2-54' xlink:href='#g0-54' transform='scale(.714)'/>
|
|
19
|
+
<use id='g2-55' xlink:href='#g0-55' transform='scale(.714)'/>
|
|
20
|
+
<use id='g2-56' xlink:href='#g0-56' transform='scale(.714)'/>
|
|
21
|
+
<use id='g2-57' xlink:href='#g0-57' transform='scale(.714)'/>
|
|
22
|
+
<use id='g2-64' xlink:href='#g0-64' transform='scale(.714)'/>
|
|
23
|
+
<use id='g2-65' xlink:href='#g0-65' transform='scale(.714)'/>
|
|
24
|
+
<use id='g2-67' xlink:href='#g0-67' transform='scale(.714)'/>
|
|
25
|
+
<use id='g2-71' xlink:href='#g0-71' transform='scale(.714)'/>
|
|
26
|
+
<use id='g2-73' xlink:href='#g0-73' transform='scale(.714)'/>
|
|
27
|
+
<use id='g2-79' xlink:href='#g0-79' transform='scale(.714)'/>
|
|
28
|
+
<use id='g2-83' xlink:href='#g0-83' transform='scale(.714)'/>
|
|
29
|
+
<use id='g2-97' xlink:href='#g0-97' transform='scale(.714)'/>
|
|
30
|
+
<use id='g2-98' xlink:href='#g0-98' transform='scale(.714)'/>
|
|
31
|
+
<use id='g2-99' xlink:href='#g0-99' transform='scale(.714)'/>
|
|
32
|
+
<use id='g2-101' xlink:href='#g0-101' transform='scale(.714)'/>
|
|
33
|
+
<use id='g2-103' xlink:href='#g0-103' transform='scale(.714)'/>
|
|
34
|
+
<use id='g2-104' xlink:href='#g0-104' transform='scale(.714)'/>
|
|
35
|
+
<use id='g2-105' xlink:href='#g0-105' transform='scale(.714)'/>
|
|
36
|
+
<use id='g2-108' xlink:href='#g0-108' transform='scale(.714)'/>
|
|
37
|
+
<use id='g2-109' xlink:href='#g0-109' transform='scale(.714)'/>
|
|
38
|
+
<use id='g2-110' xlink:href='#g0-110' transform='scale(.714)'/>
|
|
39
|
+
<use id='g2-111' xlink:href='#g0-111' transform='scale(.714)'/>
|
|
40
|
+
<use id='g2-112' xlink:href='#g0-112' transform='scale(.714)'/>
|
|
41
|
+
<use id='g2-114' xlink:href='#g0-114' transform='scale(.714)'/>
|
|
42
|
+
<use id='g2-115' xlink:href='#g0-115' transform='scale(.714)'/>
|
|
43
|
+
<use id='g2-116' xlink:href='#g0-116' transform='scale(.714)'/>
|
|
44
|
+
<use id='g2-120' xlink:href='#g0-120' transform='scale(.714)'/>
|
|
45
|
+
<use id='g2-122' xlink:href='#g0-122' transform='scale(.714)'/>
|
|
46
|
+
<use id='g3-40' xlink:href='#g0-40' transform='scale(1.143)'/>
|
|
47
|
+
<use id='g3-41' xlink:href='#g0-41' transform='scale(1.143)'/>
|
|
48
|
+
<use id='g3-45' xlink:href='#g0-45' transform='scale(1.143)'/>
|
|
49
|
+
<use id='g3-58' xlink:href='#g0-58' transform='scale(1.143)'/>
|
|
50
|
+
<use id='g3-78' xlink:href='#g0-78' transform='scale(1.143)'/>
|
|
51
|
+
<use id='g3-97' xlink:href='#g0-97' transform='scale(1.143)'/>
|
|
52
|
+
<use id='g3-98' xlink:href='#g0-98' transform='scale(1.143)'/>
|
|
53
|
+
<use id='g3-99' xlink:href='#g0-99' transform='scale(1.143)'/>
|
|
54
|
+
<use id='g3-100' xlink:href='#g0-100' transform='scale(1.143)'/>
|
|
55
|
+
<use id='g3-101' xlink:href='#g0-101' transform='scale(1.143)'/>
|
|
56
|
+
<use id='g3-102' xlink:href='#g0-102' transform='scale(1.143)'/>
|
|
57
|
+
<use id='g3-104' xlink:href='#g0-104' transform='scale(1.143)'/>
|
|
58
|
+
<use id='g3-105' xlink:href='#g0-105' transform='scale(1.143)'/>
|
|
59
|
+
<use id='g3-106' xlink:href='#g0-106' transform='scale(1.143)'/>
|
|
60
|
+
<use id='g3-108' xlink:href='#g0-108' transform='scale(1.143)'/>
|
|
61
|
+
<use id='g3-109' xlink:href='#g0-109' transform='scale(1.143)'/>
|
|
62
|
+
<use id='g3-110' xlink:href='#g0-110' transform='scale(1.143)'/>
|
|
63
|
+
<use id='g3-111' xlink:href='#g0-111' transform='scale(1.143)'/>
|
|
64
|
+
<use id='g3-114' xlink:href='#g0-114' transform='scale(1.143)'/>
|
|
65
|
+
<use id='g3-115' xlink:href='#g0-115' transform='scale(1.143)'/>
|
|
66
|
+
<use id='g3-116' xlink:href='#g0-116' transform='scale(1.143)'/>
|
|
67
|
+
<use id='g3-119' xlink:href='#g0-119' transform='scale(1.143)'/>
|
|
68
|
+
<use id='g3-120' xlink:href='#g0-120' transform='scale(1.143)'/>
|
|
69
|
+
<use id='g3-121' xlink:href='#g0-121' transform='scale(1.143)'/>
|
|
70
|
+
<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'/>
|
|
71
|
+
<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'/>
|
|
72
|
+
<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'/>
|
|
73
|
+
<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'/>
|
|
74
|
+
<path id='g1-105' d='M1.524-6.133H.664V-5.272H1.524V-6.133ZM1.453-3.981H.735V0H1.453V-3.981Z'/>
|
|
75
|
+
<path id='g1-108' d='M1.453-6.223H.735V0H1.453V-6.223Z'/>
|
|
76
|
+
<path id='g1-109' d='M6.581-2.663C6.581-3.327 6.402-4.08 5.317-4.08C4.564-4.08 4.142-3.622 3.927-3.344C3.865-3.524 3.676-4.08 2.762-4.08C2.053-4.08 1.623-3.667 1.417-3.398V-4.035H.726V0H1.47V-2.188C1.47-2.78 1.704-3.497 2.385-3.497C3.282-3.497 3.282-2.86 3.282-2.6V0H4.026V-2.188C4.026-2.78 4.259-3.497 4.94-3.497C5.837-3.497 5.837-2.86 5.837-2.6V0H6.581V-2.663Z'/>
|
|
77
|
+
<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'/>
|
|
78
|
+
<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'/>
|
|
79
|
+
<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'/>
|
|
80
|
+
<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'/>
|
|
81
|
+
<path id='g0-44' d='M1.339-.007V-.628H.711V0H.907L.704 .893H1.018L1.339-.007Z'/>
|
|
82
|
+
<path id='g0-45' d='M2.05-1.332V-1.771H.084V-1.332H2.05Z'/>
|
|
83
|
+
<path id='g0-46' d='M1.339-.628H.711V0H1.339V-.628Z'/>
|
|
84
|
+
<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'/>
|
|
85
|
+
<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'/>
|
|
86
|
+
<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'/>
|
|
87
|
+
<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'/>
|
|
88
|
+
<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'/>
|
|
89
|
+
<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'/>
|
|
90
|
+
<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'/>
|
|
91
|
+
<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'/>
|
|
92
|
+
<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'/>
|
|
93
|
+
<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'/>
|
|
94
|
+
<path id='g0-58' d='M1.339-3.096H.711V-2.469H1.339V-3.096ZM.711-.628V0H1.339V-.628H.711Z'/>
|
|
95
|
+
<path id='g0-64' d='M4.142-.614C4.038-.614 4.024-.614 3.968-.586C3.626-.467 3.271-.391 2.901-.391C1.778-.391 .976-1.339 .976-2.42C.976-3.592 1.883-4.449 2.859-4.449C3.055-4.449 3.515-4.4 3.745-3.843C3.55-3.954 3.333-4.003 3.152-4.003C2.406-4.003 1.778-3.306 1.778-2.42C1.778-1.513 2.427-.837 3.145-.837C3.689-.837 4.519-1.276 4.519-2.518C4.519-3.222 4.47-4.91 2.866-4.91C1.541-4.91 .411-3.815 .411-2.42C.411-1.039 1.527 .07 2.873 .07C3.515 .07 4.115-.195 4.519-.614H4.142ZM3.152-1.297C2.72-1.297 2.343-1.778 2.343-2.42C2.343-3.082 2.734-3.543 3.145-3.543C3.578-3.543 3.954-3.062 3.954-2.42C3.954-1.757 3.564-1.297 3.152-1.297Z'/>
|
|
96
|
+
<path id='g0-65' d='M2.803-4.84H2.127L.209 0H.781L1.325-1.381H3.445L3.989 0H4.721L2.803-4.84ZM2.392-4.31L3.271-1.792H1.499L2.392-4.31Z'/>
|
|
97
|
+
<path id='g0-67' d='M4.317-.851C3.829-.551 3.605-.418 2.908-.418C1.827-.418 1.172-1.43 1.172-2.434C1.172-3.466 1.89-4.435 2.908-4.435C3.368-4.435 3.843-4.289 4.163-4.045L4.275-4.679C3.787-4.861 3.396-4.917 2.887-4.917C1.506-4.917 .474-3.773 .474-2.427C.474-.99 1.569 .07 2.929 .07C3.612 .07 3.898-.07 4.359-.321L4.317-.851Z'/>
|
|
98
|
+
<path id='g0-71' d='M4.442-2.085H2.88V-1.625H3.829V-.558C3.522-.481 3.222-.418 2.908-.418C1.834-.418 1.172-1.43 1.172-2.427C1.172-3.382 1.82-4.435 2.873-4.435C3.515-4.435 3.919-4.24 4.268-3.947L4.38-4.582C3.898-4.812 3.473-4.924 2.943-4.924C1.534-4.924 .474-3.822 .474-2.427C.474-1.067 1.527 .07 2.901 .07C3.403 .07 3.996-.042 4.442-.272V-2.085Z'/>
|
|
99
|
+
<path id='g0-73' d='M1.381-4.84H.676V0H1.381V-4.84Z'/>
|
|
100
|
+
<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'/>
|
|
101
|
+
<path id='g0-79' d='M5.056-2.399C5.056-3.843 3.996-4.986 2.734-4.986S.411-3.843 .411-2.399S1.485 .146 2.734 .146C3.989 .146 5.056-.962 5.056-2.399ZM2.734-.349C1.89-.349 1.116-1.193 1.116-2.511C1.116-3.745 1.897-4.505 2.734-4.505S4.352-3.745 4.352-2.511C4.352-1.186 3.578-.349 2.734-.349Z'/>
|
|
102
|
+
<path id='g0-83' d='M3.445-4.645C2.999-4.875 2.601-4.986 2.085-4.986C1.032-4.986 .411-4.275 .411-3.605C.411-3.32 .502-2.985 .844-2.664C1.151-2.378 1.471-2.308 1.904-2.204C2.49-2.064 2.65-2.029 2.852-1.82C2.985-1.688 3.096-1.492 3.096-1.255C3.096-.823 2.706-.377 2.029-.377C1.632-.377 .99-.495 .439-.962L.328-.335C.676-.133 1.255 .146 2.036 .146C3.006 .146 3.696-.558 3.696-1.339C3.696-1.904 3.368-2.225 3.229-2.371C2.936-2.657 2.615-2.734 2.078-2.859C1.653-2.957 1.43-3.013 1.262-3.173C1.172-3.264 1.011-3.424 1.011-3.689C1.011-4.08 1.402-4.484 2.078-4.484C2.608-4.484 2.978-4.317 3.333-4.017L3.445-4.645Z'/>
|
|
103
|
+
<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'/>
|
|
104
|
+
<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'/>
|
|
105
|
+
<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'/>
|
|
106
|
+
<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'/>
|
|
107
|
+
<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'/>
|
|
108
|
+
<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'/>
|
|
109
|
+
<path id='g0-103' d='M3.508-3.166C3.354-3.166 2.887-3.159 2.357-2.957L2.343-2.95C2.092-3.117 1.848-3.166 1.646-3.166C.962-3.166 .453-2.629 .453-2.029C.453-1.785 .537-1.534 .697-1.339C.6-1.22 .495-1.025 .495-.76C.495-.488 .607-.314 .669-.23C.286-.007 .209 .314 .209 .481C.209 1.011 .941 1.43 1.848 1.43C2.762 1.43 3.487 1.011 3.487 .481C3.487-.502 2.267-.502 1.967-.502H1.318C1.206-.502 .907-.502 .907-.865C.907-1.004 .955-1.074 .962-1.088C1.206-.934 1.451-.886 1.639-.886C2.322-.886 2.831-1.423 2.831-2.022C2.831-2.246 2.769-2.448 2.643-2.636C2.615-2.678 2.615-2.685 2.615-2.692C2.615-2.72 3.034-2.72 3.068-2.72C3.075-2.72 3.34-2.72 3.592-2.692L3.508-3.166ZM1.646-1.318C1.269-1.318 .99-1.555 .99-2.022C.99-2.566 1.339-2.734 1.639-2.734C2.015-2.734 2.294-2.497 2.294-2.029C2.294-1.485 1.946-1.318 1.646-1.318ZM1.974 .042C2.134 .042 2.957 .042 2.957 .488C2.957 .788 2.434 .997 1.848 .997S.739 .788 .739 .488C.739 .453 .739 .042 1.304 .042H1.974Z'/>
|
|
110
|
+
<path id='g0-104' d='M3.243-2.064C3.243-2.608 3.082-3.166 2.225-3.166C1.625-3.166 1.304-2.817 1.165-2.671V-4.84H.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'/>
|
|
111
|
+
<path id='g0-105' d='M1.227-4.784H.523V-4.08H1.227V-4.784ZM1.172-3.096H.586V0H1.172V-3.096Z'/>
|
|
112
|
+
<path id='g0-106' d='M1.381-4.784H.676V-4.08H1.381V-4.784ZM-.453 1.186C-.133 1.36 .181 1.423 .446 1.423C.928 1.423 1.381 1.053 1.381 .411V-3.096H.795V.46C.795 .586 .795 .697 .649 .816C.488 .934 .293 .934 .23 .934C-.063 .934-.244 .802-.328 .725L-.453 1.186Z'/>
|
|
113
|
+
<path id='g0-108' d='M1.172-4.84H.586V0H1.172V-4.84Z'/>
|
|
114
|
+
<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'/>
|
|
115
|
+
<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'/>
|
|
116
|
+
<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'/>
|
|
117
|
+
<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'/>
|
|
118
|
+
<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'/>
|
|
119
|
+
<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'/>
|
|
120
|
+
<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'/>
|
|
121
|
+
<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'/>
|
|
122
|
+
<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'/>
|
|
123
|
+
<path id='g0-121' d='M3.306-3.096H2.741C2.176-1.764 1.785-.865 1.757-.439C1.743-.635 1.618-.983 1.492-1.311C1.381-1.59 1.269-1.869 1.144-2.141L.704-3.096H.105L1.548 0C1.465 .202 1.325 .523 1.283 .614C1.137 .907 1.039 1.004 .851 1.004C.823 1.004 .565 1.004 .265 .879L.307 1.367C.37 1.381 .628 1.423 .844 1.423C1.123 1.423 1.374 1.318 1.667 .649L3.306-3.096Z'/>
|
|
124
|
+
<path id='g0-122' d='M2.957-2.803V-3.096H.307V-2.65H1.332C1.416-2.65 1.499-2.657 1.583-2.657H2.127L.209-.307V0H2.978V-.467H1.897C1.813-.467 1.73-.46 1.646-.46H1.039L2.957-2.803Z'/>
|
|
125
|
+
</defs>
|
|
126
|
+
<g id='page1'>
|
|
127
|
+
<path d='M139.344 212.797V203.938M196.539 212.797V203.938M253.734 212.797V203.938M310.926 212.797V203.938M139.344 69.836V78.692M196.539 69.836V78.692M253.734 69.836V78.692M310.926 69.836V78.692' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
|
|
128
|
+
<path d='M110.746 208.192V203.938M167.941 208.192V203.938M225.137 208.192V203.938M282.332 208.192V203.938M339.524 208.192V203.938M110.746 74.442V78.692M167.941 74.442V78.692M225.137 74.442V78.692M282.332 74.442V78.692M339.524 74.442V78.692' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
|
|
129
|
+
<path d='M82.148 203.938H86.402M82.148 172.629H86.402M82.148 141.317H86.402M82.148 110.004H86.402M82.148 78.692H86.402M368.121 203.938H363.871M368.121 172.629H363.871M368.121 141.317H363.871M368.121 110.004H363.871M368.121 78.692H363.871' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
|
|
130
|
+
<path d='M82.148 203.938V78.692H368.121V203.938H82.148Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
131
|
+
<g transform='matrix(1 0 0 1 -12.278 72.902)'>
|
|
132
|
+
<use x='114.487' y='145.434' xlink:href='#g3-99'/>
|
|
133
|
+
<use x='118.25' y='145.434' xlink:href='#g3-102'/>
|
|
134
|
+
<use x='120.838' y='145.434' xlink:href='#g3-114'/>
|
|
135
|
+
<use x='123.73' y='145.434' xlink:href='#g3-97'/>
|
|
136
|
+
<use x='127.798' y='145.434' xlink:href='#g3-99'/>
|
|
137
|
+
</g>
|
|
138
|
+
<g transform='matrix(1 0 0 1 43.353 72.902)'>
|
|
139
|
+
<use x='114.487' y='145.434' xlink:href='#g3-108'/>
|
|
140
|
+
<use x='116.507' y='145.434' xlink:href='#g3-101'/>
|
|
141
|
+
<use x='120.271' y='145.434' xlink:href='#g3-97'/>
|
|
142
|
+
<use x='124.339' y='145.434' xlink:href='#g3-110'/>
|
|
143
|
+
<use x='128.711' y='145.434' xlink:href='#g3-78'/>
|
|
144
|
+
</g>
|
|
145
|
+
<g transform='matrix(1 0 0 1 97.361 72.902)'>
|
|
146
|
+
<use x='114.487' y='145.434' xlink:href='#g3-108'/>
|
|
147
|
+
<use x='116.507' y='145.434' xlink:href='#g3-97'/>
|
|
148
|
+
<use x='120.34' y='145.434' xlink:href='#g3-114'/>
|
|
149
|
+
<use x='123.232' y='145.434' xlink:href='#g3-115'/>
|
|
150
|
+
<use x='126.478' y='145.434' xlink:href='#g3-111'/>
|
|
151
|
+
<use x='130.712' y='145.434' xlink:href='#g3-110'/>
|
|
152
|
+
<use x='135.085' y='145.434' xlink:href='#g3-78'/>
|
|
153
|
+
</g>
|
|
154
|
+
<g transform='matrix(1 0 0 1 151.766 72.902)'>
|
|
155
|
+
<use x='114.487' y='145.434' xlink:href='#g3-109'/>
|
|
156
|
+
<use x='121.211' y='145.434' xlink:href='#g3-115'/>
|
|
157
|
+
<use x='124.458' y='145.434' xlink:href='#g3-116'/>
|
|
158
|
+
<use x='127.516' y='145.434' xlink:href='#g3-114'/>
|
|
159
|
+
<use x='130.408' y='145.434' xlink:href='#g3-101'/>
|
|
160
|
+
<use x='134.171' y='145.434' xlink:href='#g3-115'/>
|
|
161
|
+
<use x='137.418' y='145.434' xlink:href='#g3-115'/>
|
|
162
|
+
<use x='140.664' y='145.434' xlink:href='#g3-78'/>
|
|
163
|
+
</g>
|
|
164
|
+
<g transform='matrix(1 0 0 1 200.59 72.902)'>
|
|
165
|
+
<use x='114.487' y='145.434' xlink:href='#g3-120'/>
|
|
166
|
+
<use x='118.389' y='145.434' xlink:href='#g3-109'/>
|
|
167
|
+
<use x='125.114' y='145.434' xlink:href='#g3-97'/>
|
|
168
|
+
<use x='129.182' y='145.434' xlink:href='#g3-108'/>
|
|
169
|
+
<use x='131.202' y='145.434' xlink:href='#g3-108'/>
|
|
170
|
+
<use x='133.222' y='145.434' xlink:href='#g3-111'/>
|
|
171
|
+
<use x='137.692' y='145.434' xlink:href='#g3-99'/>
|
|
172
|
+
<use x='141.455' y='145.434' xlink:href='#g3-45'/>
|
|
173
|
+
<use x='144.278' y='145.434' xlink:href='#g3-116'/>
|
|
174
|
+
<use x='147.336' y='145.434' xlink:href='#g3-101'/>
|
|
175
|
+
<use x='151.1' y='145.434' xlink:href='#g3-115'/>
|
|
176
|
+
<use x='154.346' y='145.434' xlink:href='#g3-116'/>
|
|
177
|
+
<use x='157.404' y='145.434' xlink:href='#g3-78'/>
|
|
178
|
+
</g>
|
|
179
|
+
<g transform='matrix(1 0 0 1 -40.942 60.139)'>
|
|
180
|
+
<use x='114.487' y='145.434' xlink:href='#g2-48'/>
|
|
181
|
+
<use x='117.133' y='145.434' xlink:href='#g2-120'/>
|
|
182
|
+
</g>
|
|
183
|
+
<g transform='matrix(1 0 0 1 -45.059 28.828)'>
|
|
184
|
+
<use x='114.487' y='145.434' xlink:href='#g2-48'/>
|
|
185
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
186
|
+
<use x='118.603' y='145.434' xlink:href='#g2-53'/>
|
|
187
|
+
<use x='121.25' y='145.434' xlink:href='#g2-120'/>
|
|
188
|
+
</g>
|
|
189
|
+
<g transform='matrix(1 0 0 1 -45.059 -2.484)'>
|
|
190
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
191
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
192
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
193
|
+
<use x='121.25' y='145.434' xlink:href='#g2-120'/>
|
|
194
|
+
</g>
|
|
195
|
+
<g transform='matrix(1 0 0 1 -45.059 -33.795)'>
|
|
196
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
197
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
198
|
+
<use x='118.603' y='145.434' xlink:href='#g2-53'/>
|
|
199
|
+
<use x='121.25' y='145.434' xlink:href='#g2-120'/>
|
|
200
|
+
</g>
|
|
201
|
+
<g transform='matrix(1 0 0 1 -45.059 -65.107)'>
|
|
202
|
+
<use x='114.487' y='145.434' xlink:href='#g2-50'/>
|
|
203
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
204
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
205
|
+
<use x='121.25' y='145.434' xlink:href='#g2-120'/>
|
|
206
|
+
</g>
|
|
207
|
+
<path d='M82.148 141.317H368.121' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
208
|
+
<path d='M96.051 203.938H99.289V141.317H96.051ZM153.246 203.938H156.484V141.317H153.246ZM210.442 203.938H213.68V141.317H210.442ZM267.637 203.938H270.875V141.317H267.637ZM324.828 203.938H328.067V141.317H324.828Z' fill='#933' clip-path='url(#clip1)'/>
|
|
209
|
+
<path d='M96.051 203.938H99.289V141.317H96.051ZM153.246 203.938H156.484V141.317H153.246ZM210.442 203.938H213.68V141.317H210.442ZM267.637 203.938H270.875V141.317H267.637ZM324.828 203.938H328.067V141.317H324.828Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
210
|
+
<path d='M97.672 141.317' fill='#933' clip-path='url(#clip1)'/>
|
|
211
|
+
<path d='M95.68 141.317H99.664' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
212
|
+
<path d='M97.672 141.317' fill='#933' clip-path='url(#clip1)'/>
|
|
213
|
+
<path d='M95.68 141.317H99.664' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
214
|
+
<path d='M154.867 141.317V141.067' fill='#933' clip-path='url(#clip1)'/>
|
|
215
|
+
<path d='M154.867 141.317V141.067' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
216
|
+
<path d='M152.871 141.066H156.859' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
217
|
+
<path d='M154.867 141.317V141.567' fill='#933' clip-path='url(#clip1)'/>
|
|
218
|
+
<path d='M154.867 141.317V141.567' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
219
|
+
<path d='M156.86 141.566H152.875' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
220
|
+
<path d='M212.059 141.317V141.067' fill='#933' clip-path='url(#clip1)'/>
|
|
221
|
+
<path d='M212.059 141.317V141.067' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
222
|
+
<path d='M210.066 141.066H214.05' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
223
|
+
<path d='M212.059 141.317V141.567' fill='#933' clip-path='url(#clip1)'/>
|
|
224
|
+
<path d='M212.059 141.317V141.567' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
225
|
+
<path d='M214.054 141.566H210.066' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
226
|
+
<path d='M269.254 141.317V141.254' fill='#933' clip-path='url(#clip1)'/>
|
|
227
|
+
<path d='M269.254 141.317V141.254' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
228
|
+
<path d='M267.262 141.254H271.246' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
229
|
+
<path d='M269.254 141.317V141.379' fill='#933' clip-path='url(#clip1)'/>
|
|
230
|
+
<path d='M269.254 141.317V141.379' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
231
|
+
<path d='M271.246 141.379H267.262' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
232
|
+
<path d='M326.449 141.317V141.067' fill='#933' clip-path='url(#clip1)'/>
|
|
233
|
+
<path d='M326.449 141.317V141.067' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
234
|
+
<path d='M324.457 141.066H328.441' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
235
|
+
<path d='M326.449 141.317V141.567' fill='#933' clip-path='url(#clip1)'/>
|
|
236
|
+
<path d='M326.449 141.317V141.567' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
237
|
+
<path d='M328.441 141.566H324.457' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
238
|
+
<path d='M101.281 203.938H104.52V142.067H101.281ZM158.477 203.938H161.715V140.817H158.477ZM215.672 203.938H218.91V143.696H215.672ZM272.867 203.938H276.106V141.442H272.867ZM330.059 203.938H333.297V138.122H330.059Z' fill='#bf8080' clip-path='url(#clip1)'/>
|
|
239
|
+
<path d='M101.281 203.938H104.52V142.067H101.281ZM158.477 203.938H161.715V140.817H158.477ZM215.672 203.938H218.91V143.696H215.672ZM272.867 203.938H276.106V141.442H272.867ZM330.059 203.938H333.297V138.122H330.059Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
240
|
+
<path d='M102.902 142.067' fill='#bf8080' clip-path='url(#clip1)'/>
|
|
241
|
+
<path d='M100.91 142.066H104.895' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
242
|
+
<path d='M102.902 142.067' fill='#bf8080' clip-path='url(#clip1)'/>
|
|
243
|
+
<path d='M100.91 142.066H104.895' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
244
|
+
<path d='M160.098 140.817V140.563' fill='#bf8080' clip-path='url(#clip1)'/>
|
|
245
|
+
<path d='M160.098 140.817V140.563' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
246
|
+
<path d='M158.101 140.562H162.089' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
247
|
+
<path d='M160.098 140.817V141.067' fill='#bf8080' clip-path='url(#clip1)'/>
|
|
248
|
+
<path d='M160.098 140.817V141.067' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
249
|
+
<path d='M162.09 141.066H158.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
250
|
+
<path d='M217.289 143.696V143.508' fill='#bf8080' clip-path='url(#clip1)'/>
|
|
251
|
+
<path d='M217.289 143.696V143.508' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
252
|
+
<path d='M215.297 143.507H219.282' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
253
|
+
<path d='M217.289 143.696V143.883' fill='#bf8080' clip-path='url(#clip1)'/>
|
|
254
|
+
<path d='M217.289 143.696V143.883' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
255
|
+
<path d='M219.285 143.883H215.297' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
256
|
+
<path d='M274.484 141.442' fill='#bf8080' clip-path='url(#clip1)'/>
|
|
257
|
+
<path d='M272.492 141.442H276.476' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
258
|
+
<path d='M274.484 141.442' fill='#bf8080' clip-path='url(#clip1)'/>
|
|
259
|
+
<path d='M272.492 141.442H276.476' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
260
|
+
<path d='M331.68 138.122V138.059' fill='#bf8080' clip-path='url(#clip1)'/>
|
|
261
|
+
<path d='M331.68 138.122V138.059' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
262
|
+
<path d='M329.688 138.058H333.672' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
263
|
+
<path d='M331.68 138.122V138.184' fill='#bf8080' clip-path='url(#clip1)'/>
|
|
264
|
+
<path d='M331.68 138.122V138.184' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
265
|
+
<path d='M333.671 138.183H329.687' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
266
|
+
<path d='M106.512 203.938H109.75V122.028H106.512ZM163.707 203.938H166.945V128.918H163.707ZM220.902 203.938H224.141V119.961H220.902ZM278.098 203.938H281.336V139.375H278.098ZM335.289 203.938H338.527V78.692H335.289Z' fill='#8080bf' clip-path='url(#clip1)'/>
|
|
267
|
+
<path d='M106.512 203.938H109.75V122.028H106.512ZM163.707 203.938H166.945V128.918H163.707ZM220.902 203.938H224.141V119.961H220.902ZM278.098 203.938H281.336V139.375H278.098ZM335.289 203.938H338.527V78.692H335.289Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
268
|
+
<path d='M108.133 122.028' fill='#8080bf' clip-path='url(#clip1)'/>
|
|
269
|
+
<path d='M106.14 122.028H110.125' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
270
|
+
<path d='M108.133 122.028' fill='#8080bf' clip-path='url(#clip1)'/>
|
|
271
|
+
<path d='M106.14 122.028H110.125' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
272
|
+
<path d='M165.328 128.918V128.856' fill='#8080bf' clip-path='url(#clip1)'/>
|
|
273
|
+
<path d='M165.328 128.918V128.856' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
274
|
+
<path d='M163.332 128.856H167.317' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
275
|
+
<path d='M165.328 128.918V128.981' fill='#8080bf' clip-path='url(#clip1)'/>
|
|
276
|
+
<path d='M165.328 128.918V128.981' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
277
|
+
<path d='M167.321 128.981H163.336' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
278
|
+
<path d='M222.52 119.961V119.836' fill='#8080bf' clip-path='url(#clip1)'/>
|
|
279
|
+
<path d='M222.52 119.961V119.836' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
280
|
+
<path d='M220.527 119.836H224.512' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
281
|
+
<path d='M222.52 119.961V120.086' fill='#8080bf' clip-path='url(#clip1)'/>
|
|
282
|
+
<path d='M222.52 119.961V120.086' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
283
|
+
<path d='M224.512 120.086H220.527' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
284
|
+
<path d='M279.715 139.375V139.125' fill='#8080bf' clip-path='url(#clip1)'/>
|
|
285
|
+
<path d='M279.715 139.375V139.125' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
286
|
+
<path d='M277.723 139.125H281.707' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
287
|
+
<path d='M279.715 139.375V139.625' fill='#8080bf' clip-path='url(#clip1)'/>
|
|
288
|
+
<path d='M279.715 139.375V139.625' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
289
|
+
<path d='M281.708 139.625H277.723' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
290
|
+
<path d='M336.91 78.692' fill='#8080bf' clip-path='url(#clip1)'/>
|
|
291
|
+
<path d='M334.918 78.691H338.902' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
292
|
+
<path d='M336.91 78.692' fill='#8080bf' clip-path='url(#clip1)'/>
|
|
293
|
+
<path d='M334.918 78.691H338.902' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
294
|
+
<path d='M111.742 203.938H114.981V120.086H111.742ZM168.938 203.938H172.176V136.43H168.938ZM226.133 203.938H229.371V136.809H226.133ZM283.328 203.938H286.567V78.692H283.328ZM340.52 203.938H343.758V112.571H340.52Z' fill='#ffb733' clip-path='url(#clip1)'/>
|
|
295
|
+
<path d='M111.742 203.938H114.981V120.086H111.742ZM168.938 203.938H172.176V136.43H168.938ZM226.133 203.938H229.371V136.809H226.133ZM283.328 203.938H286.567V78.692H283.328ZM340.52 203.938H343.758V112.571H340.52Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
296
|
+
<path d='M113.363 120.086V119.899' fill='#ffb733' clip-path='url(#clip1)'/>
|
|
297
|
+
<path d='M113.363 120.086V119.899' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
298
|
+
<path d='M111.371 119.899H115.356' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
299
|
+
<path d='M113.363 120.086V120.274' fill='#ffb733' clip-path='url(#clip1)'/>
|
|
300
|
+
<path d='M113.363 120.086V120.274' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
301
|
+
<path d='M115.356 120.273H111.371' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
302
|
+
<path d='M170.559 136.43' fill='#ffb733' clip-path='url(#clip1)'/>
|
|
303
|
+
<path d='M168.562 136.43H172.547' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
304
|
+
<path d='M170.559 136.43' fill='#ffb733' clip-path='url(#clip1)'/>
|
|
305
|
+
<path d='M168.562 136.43H172.547' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
306
|
+
<path d='M227.75 136.809' fill='#ffb733' clip-path='url(#clip1)'/>
|
|
307
|
+
<path d='M225.758 136.809H229.743' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
308
|
+
<path d='M227.75 136.809' fill='#ffb733' clip-path='url(#clip1)'/>
|
|
309
|
+
<path d='M225.758 136.809H229.743' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
310
|
+
<path d='M284.945 78.692' fill='#ffb733' clip-path='url(#clip1)'/>
|
|
311
|
+
<path d='M282.953 78.691H286.937' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
312
|
+
<path d='M284.945 78.692' fill='#ffb733' clip-path='url(#clip1)'/>
|
|
313
|
+
<path d='M282.953 78.691H286.937' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
314
|
+
<path d='M342.141 112.571V112.383' fill='#ffb733' clip-path='url(#clip1)'/>
|
|
315
|
+
<path d='M342.141 112.571V112.383' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
316
|
+
<path d='M340.149 112.383H344.133' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
317
|
+
<path d='M342.141 112.571V112.758' fill='#ffb733' clip-path='url(#clip1)'/>
|
|
318
|
+
<path d='M342.141 112.571V112.758' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
319
|
+
<path d='M344.132 112.757H340.148' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
320
|
+
<path d='M116.973 203.938H120.211V137.059H116.973ZM174.168 203.938H177.406V131.235H174.168ZM231.363 203.938H234.602V78.692H231.363ZM288.559 203.938H291.797V79.696H288.559ZM345.75 203.938H348.988V78.692H345.75Z' fill='#80bf80' clip-path='url(#clip1)'/>
|
|
321
|
+
<path d='M116.973 203.938H120.211V137.059H116.973ZM174.168 203.938H177.406V131.235H174.168ZM231.363 203.938H234.602V78.692H231.363ZM288.559 203.938H291.797V79.696H288.559ZM345.75 203.938H348.988V78.692H345.75Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
322
|
+
<path d='M118.594 137.059V136.809' fill='#80bf80' clip-path='url(#clip1)'/>
|
|
323
|
+
<path d='M118.594 137.059V136.809' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
324
|
+
<path d='M116.601 136.809H120.586' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
325
|
+
<path d='M118.594 137.059V137.309' fill='#80bf80' clip-path='url(#clip1)'/>
|
|
326
|
+
<path d='M118.594 137.059V137.309' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
327
|
+
<path d='M120.586 137.309H116.601' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
328
|
+
<path d='M175.789 131.235V131.047' fill='#80bf80' clip-path='url(#clip1)'/>
|
|
329
|
+
<path d='M175.789 131.235V131.047' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
330
|
+
<path d='M173.793 131.046H177.778' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
331
|
+
<path d='M175.789 131.235V131.422' fill='#80bf80' clip-path='url(#clip1)'/>
|
|
332
|
+
<path d='M175.789 131.235V131.422' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
333
|
+
<path d='M177.782 131.422H173.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
334
|
+
<path d='M232.981 78.692' fill='#80bf80' clip-path='url(#clip1)'/>
|
|
335
|
+
<path d='M230.988 78.691H234.973' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
336
|
+
<path d='M232.981 78.692' fill='#80bf80' clip-path='url(#clip1)'/>
|
|
337
|
+
<path d='M230.988 78.691H234.973' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
338
|
+
<path d='M290.176 79.696V79.383' fill='#80bf80' clip-path='url(#clip1)'/>
|
|
339
|
+
<path d='M290.176 79.696V79.383' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
340
|
+
<path d='M288.184 79.383H292.168' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
341
|
+
<path d='M290.176 79.696V80.008' fill='#80bf80' clip-path='url(#clip1)'/>
|
|
342
|
+
<path d='M290.176 79.696V80.008' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
343
|
+
<path d='M292.168 80.008H288.183' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
344
|
+
<path d='M347.371 78.692' fill='#80bf80' clip-path='url(#clip1)'/>
|
|
345
|
+
<path d='M345.379 78.691H349.363' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
346
|
+
<path d='M347.371 78.692' fill='#80bf80' clip-path='url(#clip1)'/>
|
|
347
|
+
<path d='M345.379 78.691H349.363' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
348
|
+
<path d='M122.203 203.938H125.441V78.692H122.203ZM179.399 203.938H182.637V93.286H179.399ZM236.594 203.938H239.832V78.692H236.594ZM293.789 203.938H297.024V78.692H293.789ZM350.981 203.938H354.219V78.692H350.981Z' fill='#399' clip-path='url(#clip1)'/>
|
|
349
|
+
<path d='M122.203 203.938H125.441V78.692H122.203ZM179.399 203.938H182.637V93.286H179.399ZM236.594 203.938H239.832V78.692H236.594ZM293.789 203.938H297.024V78.692H293.789ZM350.981 203.938H354.219V78.692H350.981Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
350
|
+
<path d='M123.824 78.692' fill='#399' clip-path='url(#clip1)'/>
|
|
351
|
+
<path d='M121.832 78.691H125.817' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
352
|
+
<path d='M123.824 78.692' fill='#399' clip-path='url(#clip1)'/>
|
|
353
|
+
<path d='M121.832 78.691H125.817' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
354
|
+
<path d='M181.02 93.286V93.161' fill='#399' clip-path='url(#clip1)'/>
|
|
355
|
+
<path d='M181.02 93.286V93.161' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
356
|
+
<path d='M179.023 93.16H183.008' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
357
|
+
<path d='M181.02 93.286V93.411' fill='#399' clip-path='url(#clip1)'/>
|
|
358
|
+
<path d='M181.02 93.286V93.411' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
359
|
+
<path d='M183.012 93.41H179.027' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
360
|
+
<path d='M238.211 78.692' fill='#399' clip-path='url(#clip1)'/>
|
|
361
|
+
<path d='M236.219 78.691H240.204' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
362
|
+
<path d='M238.211 78.692' fill='#399' clip-path='url(#clip1)'/>
|
|
363
|
+
<path d='M236.219 78.691H240.204' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
364
|
+
<path d='M295.406 78.692' fill='#399' clip-path='url(#clip1)'/>
|
|
365
|
+
<path d='M293.414 78.691H297.398' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
366
|
+
<path d='M295.406 78.692' fill='#399' clip-path='url(#clip1)'/>
|
|
367
|
+
<path d='M293.414 78.691H297.398' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
368
|
+
<path d='M352.602 78.692' fill='#399' clip-path='url(#clip1)'/>
|
|
369
|
+
<path d='M350.609 78.691H354.593' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
370
|
+
<path d='M352.602 78.692' fill='#399' clip-path='url(#clip1)'/>
|
|
371
|
+
<path d='M350.609 78.691H354.593' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
372
|
+
<path d='M263.02 263.2H367.922V229.188H263.02Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
|
|
373
|
+
<g transform='matrix(1 0 0 1 151.853 114.444)'>
|
|
374
|
+
<use x='114.487' y='121.524' xlink:href='#g2-109'/>
|
|
375
|
+
<use x='118.69' y='121.524' xlink:href='#g2-97'/>
|
|
376
|
+
<use x='121.232' y='121.524' xlink:href='#g2-99'/>
|
|
377
|
+
<use x='125.349' y='121.524' xlink:href='#g2-109'/>
|
|
378
|
+
<use x='129.552' y='121.524' xlink:href='#g2-105'/>
|
|
379
|
+
<use x='130.814' y='121.524' xlink:href='#g2-110'/>
|
|
380
|
+
<use x='133.547' y='121.524' xlink:href='#g2-105'/>
|
|
381
|
+
<use x='134.81' y='121.524' xlink:href='#g2-44'/>
|
|
382
|
+
<use x='138.044' y='121.524' xlink:href='#g2-49'/>
|
|
383
|
+
<use x='140.691' y='121.524' xlink:href='#g2-54'/>
|
|
384
|
+
<use x='143.337' y='121.524' xlink:href='#g2-71'/>
|
|
385
|
+
<use x='146.866' y='121.524' xlink:href='#g2-98'/>
|
|
386
|
+
<use x='114.487' y='127.501' xlink:href='#g2-52'/>
|
|
387
|
+
<use x='117.133' y='127.501' xlink:href='#g2-45'/>
|
|
388
|
+
<use x='118.897' y='127.501' xlink:href='#g2-99'/>
|
|
389
|
+
<use x='121.25' y='127.501' xlink:href='#g2-111'/>
|
|
390
|
+
<use x='123.749' y='127.501' xlink:href='#g2-114'/>
|
|
391
|
+
<use x='125.556' y='127.501' xlink:href='#g2-101'/>
|
|
392
|
+
<use x='129.673' y='127.501' xlink:href='#g2-73'/>
|
|
393
|
+
<use x='131.143' y='127.501' xlink:href='#g2-110'/>
|
|
394
|
+
<use x='133.876' y='127.501' xlink:href='#g2-116'/>
|
|
395
|
+
<use x='135.787' y='127.501' xlink:href='#g2-101'/>
|
|
396
|
+
<use x='138.14' y='127.501' xlink:href='#g2-108'/>
|
|
397
|
+
<use x='141.166' y='127.501' xlink:href='#g2-105'/>
|
|
398
|
+
<use x='142.429' y='127.501' xlink:href='#g2-51'/>
|
|
399
|
+
<use x='146.84' y='127.501' xlink:href='#g2-64'/>
|
|
400
|
+
<use x='150.368' y='127.501' xlink:href='#g2-51'/>
|
|
401
|
+
<use x='153.015' y='127.501' xlink:href='#g2-46'/>
|
|
402
|
+
<use x='154.485' y='127.501' xlink:href='#g2-54'/>
|
|
403
|
+
<use x='157.131' y='127.501' xlink:href='#g2-71'/>
|
|
404
|
+
<use x='160.66' y='127.501' xlink:href='#g2-104'/>
|
|
405
|
+
<use x='163.392' y='127.501' xlink:href='#g2-122'/>
|
|
406
|
+
<use x='114.487' y='133.479' xlink:href='#g2-109'/>
|
|
407
|
+
<use x='118.69' y='133.479' xlink:href='#g2-97'/>
|
|
408
|
+
<use x='121.232' y='133.479' xlink:href='#g2-99'/>
|
|
409
|
+
<use x='123.585' y='133.479' xlink:href='#g2-79'/>
|
|
410
|
+
<use x='127.494' y='133.479' xlink:href='#g2-83'/>
|
|
411
|
+
<use x='132.198' y='133.479' xlink:href='#g2-67'/>
|
|
412
|
+
<use x='135.58' y='133.479' xlink:href='#g2-97'/>
|
|
413
|
+
<use x='138.122' y='133.479' xlink:href='#g2-116'/>
|
|
414
|
+
<use x='140.034' y='133.479' xlink:href='#g2-97'/>
|
|
415
|
+
<use x='142.576' y='133.479' xlink:href='#g2-108'/>
|
|
416
|
+
<use x='143.839' y='133.479' xlink:href='#g2-105'/>
|
|
417
|
+
<use x='145.101' y='133.479' xlink:href='#g2-110'/>
|
|
418
|
+
<use x='147.834' y='133.479' xlink:href='#g2-97'/>
|
|
419
|
+
<use x='152.141' y='133.479' xlink:href='#g2-49'/>
|
|
420
|
+
<use x='154.787' y='133.479' xlink:href='#g2-48'/>
|
|
421
|
+
<use x='157.434' y='133.479' xlink:href='#g2-46'/>
|
|
422
|
+
<use x='158.904' y='133.479' xlink:href='#g2-49'/>
|
|
423
|
+
<use x='161.55' y='133.479' xlink:href='#g2-53'/>
|
|
424
|
+
<use x='164.197' y='133.479' xlink:href='#g2-46'/>
|
|
425
|
+
<use x='165.667' y='133.479' xlink:href='#g2-55'/>
|
|
426
|
+
<use x='168.313' y='133.479' xlink:href='#g2-44'/>
|
|
427
|
+
<use x='171.548' y='133.479' xlink:href='#g2-65'/>
|
|
428
|
+
<use x='175.076' y='133.479' xlink:href='#g2-112'/>
|
|
429
|
+
<use x='177.809' y='133.479' xlink:href='#g2-112'/>
|
|
430
|
+
<use x='180.542' y='133.479' xlink:href='#g2-108'/>
|
|
431
|
+
<use x='181.805' y='133.479' xlink:href='#g2-101'/>
|
|
432
|
+
<use x='185.921' y='133.479' xlink:href='#g2-99'/>
|
|
433
|
+
<use x='188.273' y='133.479' xlink:href='#g2-108'/>
|
|
434
|
+
<use x='189.536' y='133.479' xlink:href='#g2-97'/>
|
|
435
|
+
<use x='192.079' y='133.479' xlink:href='#g2-110'/>
|
|
436
|
+
<use x='194.812' y='133.479' xlink:href='#g2-103'/>
|
|
437
|
+
<use x='199.222' y='133.479' xlink:href='#g2-49'/>
|
|
438
|
+
<use x='201.868' y='133.479' xlink:href='#g2-49'/>
|
|
439
|
+
<use x='204.515' y='133.479' xlink:href='#g2-46'/>
|
|
440
|
+
<use x='205.985' y='133.479' xlink:href='#g2-48'/>
|
|
441
|
+
<use x='208.631' y='133.479' xlink:href='#g2-46'/>
|
|
442
|
+
<use x='210.102' y='133.479' xlink:href='#g2-51'/>
|
|
443
|
+
<use x='114.487' y='139.456' xlink:href='#g2-56'/>
|
|
444
|
+
<use x='118.897' y='139.456' xlink:href='#g2-108'/>
|
|
445
|
+
<use x='120.16' y='139.456' xlink:href='#g2-111'/>
|
|
446
|
+
<use x='122.806' y='139.456' xlink:href='#g2-103'/>
|
|
447
|
+
<use x='125.453' y='139.456' xlink:href='#g2-105'/>
|
|
448
|
+
<use x='126.715' y='139.456' xlink:href='#g2-99'/>
|
|
449
|
+
<use x='129.068' y='139.456' xlink:href='#g2-97'/>
|
|
450
|
+
<use x='131.61' y='139.456' xlink:href='#g2-108'/>
|
|
451
|
+
<use x='134.637' y='139.456' xlink:href='#g2-99'/>
|
|
452
|
+
<use x='136.989' y='139.456' xlink:href='#g2-111'/>
|
|
453
|
+
<use x='139.489' y='139.456' xlink:href='#g2-114'/>
|
|
454
|
+
<use x='141.296' y='139.456' xlink:href='#g2-101'/>
|
|
455
|
+
<use x='143.648' y='139.456' xlink:href='#g2-115'/>
|
|
456
|
+
<use x='114.487' y='145.434' xlink:href='#g2-50'/>
|
|
457
|
+
<use x='117.133' y='145.434' xlink:href='#g2-48'/>
|
|
458
|
+
<use x='119.779' y='145.434' xlink:href='#g2-50'/>
|
|
459
|
+
<use x='122.426' y='145.434' xlink:href='#g2-49'/>
|
|
460
|
+
<use x='125.072' y='145.434' xlink:href='#g2-45'/>
|
|
461
|
+
<use x='126.836' y='145.434' xlink:href='#g2-48'/>
|
|
462
|
+
<use x='129.483' y='145.434' xlink:href='#g2-49'/>
|
|
463
|
+
<use x='132.129' y='145.434' xlink:href='#g2-45'/>
|
|
464
|
+
<use x='133.893' y='145.434' xlink:href='#g2-51'/>
|
|
465
|
+
<use x='136.54' y='145.434' xlink:href='#g2-48'/>
|
|
466
|
+
</g>
|
|
467
|
+
<g transform='matrix(0 -1 1 0 -46.129 249.778)'>
|
|
468
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
469
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
470
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
471
|
+
<use x='121.25' y='145.434' xlink:href='#g2-48'/>
|
|
472
|
+
</g>
|
|
473
|
+
<g transform='matrix(0 -1 1 0 11.066 249.778)'>
|
|
474
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
475
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
476
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
477
|
+
<use x='121.25' y='145.434' xlink:href='#g2-48'/>
|
|
478
|
+
</g>
|
|
479
|
+
<g transform='matrix(0 -1 1 0 68.26 249.778)'>
|
|
480
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
481
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
482
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
483
|
+
<use x='121.25' y='145.434' xlink:href='#g2-48'/>
|
|
484
|
+
</g>
|
|
485
|
+
<g transform='matrix(0 -1 1 0 125.455 249.778)'>
|
|
486
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
487
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
488
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
489
|
+
<use x='121.25' y='145.434' xlink:href='#g2-48'/>
|
|
490
|
+
</g>
|
|
491
|
+
<g transform='matrix(0 -1 1 0 182.649 249.778)'>
|
|
492
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
493
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
494
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
495
|
+
<use x='121.25' y='145.434' xlink:href='#g2-48'/>
|
|
496
|
+
</g>
|
|
497
|
+
<g transform='matrix(0 -1 1 0 -40.898 250.529)'>
|
|
498
|
+
<use x='114.487' y='145.434' xlink:href='#g2-48'/>
|
|
499
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
500
|
+
<use x='118.603' y='145.434' xlink:href='#g2-57'/>
|
|
501
|
+
<use x='121.25' y='145.434' xlink:href='#g2-57'/>
|
|
502
|
+
</g>
|
|
503
|
+
<g transform='matrix(0 -1 1 0 16.296 249.277)'>
|
|
504
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
505
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
506
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
507
|
+
<use x='121.25' y='145.434' xlink:href='#g2-49'/>
|
|
508
|
+
</g>
|
|
509
|
+
<g transform='matrix(0 -1 1 0 73.491 252.158)'>
|
|
510
|
+
<use x='114.487' y='145.434' xlink:href='#g2-48'/>
|
|
511
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
512
|
+
<use x='118.603' y='145.434' xlink:href='#g2-57'/>
|
|
513
|
+
<use x='121.25' y='145.434' xlink:href='#g2-54'/>
|
|
514
|
+
</g>
|
|
515
|
+
<g transform='matrix(0 -1 1 0 130.685 249.903)'>
|
|
516
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
517
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
518
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
519
|
+
<use x='121.25' y='145.434' xlink:href='#g2-48'/>
|
|
520
|
+
</g>
|
|
521
|
+
<g transform='matrix(0 -1 1 0 187.88 246.584)'>
|
|
522
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
523
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
524
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
525
|
+
<use x='121.25' y='145.434' xlink:href='#g2-53'/>
|
|
526
|
+
</g>
|
|
527
|
+
<g transform='matrix(0 -1 1 0 -35.668 230.49)'>
|
|
528
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
529
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
530
|
+
<use x='118.603' y='145.434' xlink:href='#g2-51'/>
|
|
531
|
+
<use x='121.25' y='145.434' xlink:href='#g2-49'/>
|
|
532
|
+
</g>
|
|
533
|
+
<g transform='matrix(0 -1 1 0 21.527 237.378)'>
|
|
534
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
535
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
536
|
+
<use x='118.603' y='145.434' xlink:href='#g2-50'/>
|
|
537
|
+
<use x='121.25' y='145.434' xlink:href='#g2-48'/>
|
|
538
|
+
</g>
|
|
539
|
+
<g transform='matrix(0 -1 1 0 78.721 228.423)'>
|
|
540
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
541
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
542
|
+
<use x='118.603' y='145.434' xlink:href='#g2-51'/>
|
|
543
|
+
<use x='121.25' y='145.434' xlink:href='#g2-52'/>
|
|
544
|
+
</g>
|
|
545
|
+
<g transform='matrix(0 -1 1 0 135.916 247.837)'>
|
|
546
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
547
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
548
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
549
|
+
<use x='121.25' y='145.434' xlink:href='#g2-51'/>
|
|
550
|
+
</g>
|
|
551
|
+
<g transform='matrix(0 -1 1 0 193.11 187.155)'>
|
|
552
|
+
<use x='109.598' y='145.434' xlink:href='#g4-1'/>
|
|
553
|
+
<use x='113.103' y='145.434' xlink:href='#g4-1'/>
|
|
554
|
+
<use x='116.608' y='145.434' xlink:href='#g4-1'/>
|
|
555
|
+
<use x='120.114' y='145.434' xlink:href='#g2-53'/>
|
|
556
|
+
<use x='122.76' y='145.434' xlink:href='#g2-46'/>
|
|
557
|
+
<use x='124.23' y='145.434' xlink:href='#g2-52'/>
|
|
558
|
+
<use x='126.877' y='145.434' xlink:href='#g2-55'/>
|
|
559
|
+
<use x='129.523' y='145.434' xlink:href='#g2-120'/>
|
|
560
|
+
</g>
|
|
561
|
+
<g transform='matrix(0 -1 1 0 -30.437 228.549)'>
|
|
562
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
563
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
564
|
+
<use x='118.603' y='145.434' xlink:href='#g2-51'/>
|
|
565
|
+
<use x='121.25' y='145.434' xlink:href='#g2-52'/>
|
|
566
|
+
</g>
|
|
567
|
+
<g transform='matrix(0 -1 1 0 26.757 244.893)'>
|
|
568
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
569
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
570
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
571
|
+
<use x='121.25' y='145.434' xlink:href='#g2-56'/>
|
|
572
|
+
</g>
|
|
573
|
+
<g transform='matrix(0 -1 1 0 83.952 245.269)'>
|
|
574
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
575
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
576
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
577
|
+
<use x='121.25' y='145.434' xlink:href='#g2-55'/>
|
|
578
|
+
</g>
|
|
579
|
+
<g transform='matrix(0 -1 1 0 141.146 187.155)'>
|
|
580
|
+
<use x='109.598' y='145.434' xlink:href='#g4-1'/>
|
|
581
|
+
<use x='113.103' y='145.434' xlink:href='#g4-1'/>
|
|
582
|
+
<use x='116.608' y='145.434' xlink:href='#g4-1'/>
|
|
583
|
+
<use x='120.114' y='145.434' xlink:href='#g2-51'/>
|
|
584
|
+
<use x='122.76' y='145.434' xlink:href='#g2-46'/>
|
|
585
|
+
<use x='124.23' y='145.434' xlink:href='#g2-50'/>
|
|
586
|
+
<use x='126.877' y='145.434' xlink:href='#g2-49'/>
|
|
587
|
+
<use x='129.523' y='145.434' xlink:href='#g2-120'/>
|
|
588
|
+
</g>
|
|
589
|
+
<g transform='matrix(0 -1 1 0 198.34 221.034)'>
|
|
590
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
591
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
592
|
+
<use x='118.603' y='145.434' xlink:href='#g2-52'/>
|
|
593
|
+
<use x='121.25' y='145.434' xlink:href='#g2-54'/>
|
|
594
|
+
</g>
|
|
595
|
+
<g transform='matrix(0 -1 1 0 -25.207 245.519)'>
|
|
596
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
597
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
598
|
+
<use x='118.603' y='145.434' xlink:href='#g2-48'/>
|
|
599
|
+
<use x='121.25' y='145.434' xlink:href='#g2-55'/>
|
|
600
|
+
</g>
|
|
601
|
+
<g transform='matrix(0 -1 1 0 31.988 239.696)'>
|
|
602
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
603
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
604
|
+
<use x='118.603' y='145.434' xlink:href='#g2-49'/>
|
|
605
|
+
<use x='121.25' y='145.434' xlink:href='#g2-54'/>
|
|
606
|
+
</g>
|
|
607
|
+
<g transform='matrix(0 -1 1 0 89.182 187.155)'>
|
|
608
|
+
<use x='109.598' y='145.434' xlink:href='#g4-1'/>
|
|
609
|
+
<use x='113.103' y='145.434' xlink:href='#g4-1'/>
|
|
610
|
+
<use x='116.608' y='145.434' xlink:href='#g4-1'/>
|
|
611
|
+
<use x='120.114' y='145.434' xlink:href='#g2-50'/>
|
|
612
|
+
<use x='122.76' y='145.434' xlink:href='#g2-46'/>
|
|
613
|
+
<use x='124.23' y='145.434' xlink:href='#g2-49'/>
|
|
614
|
+
<use x='126.877' y='145.434' xlink:href='#g2-52'/>
|
|
615
|
+
<use x='129.523' y='145.434' xlink:href='#g2-120'/>
|
|
616
|
+
</g>
|
|
617
|
+
<g transform='matrix(0 -1 1 0 146.376 188.157)'>
|
|
618
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
619
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
620
|
+
<use x='118.603' y='145.434' xlink:href='#g2-57'/>
|
|
621
|
+
<use x='121.25' y='145.434' xlink:href='#g2-56'/>
|
|
622
|
+
</g>
|
|
623
|
+
<g transform='matrix(0 -1 1 0 203.571 187.155)'>
|
|
624
|
+
<use x='109.598' y='145.434' xlink:href='#g4-1'/>
|
|
625
|
+
<use x='113.103' y='145.434' xlink:href='#g4-1'/>
|
|
626
|
+
<use x='116.608' y='145.434' xlink:href='#g4-1'/>
|
|
627
|
+
<use x='120.114' y='145.434' xlink:href='#g2-52'/>
|
|
628
|
+
<use x='122.76' y='145.434' xlink:href='#g2-46'/>
|
|
629
|
+
<use x='124.23' y='145.434' xlink:href='#g2-52'/>
|
|
630
|
+
<use x='126.877' y='145.434' xlink:href='#g2-57'/>
|
|
631
|
+
<use x='129.523' y='145.434' xlink:href='#g2-120'/>
|
|
632
|
+
</g>
|
|
633
|
+
<g transform='matrix(0 -1 1 0 -19.976 187.155)'>
|
|
634
|
+
<use x='114.487' y='145.434' xlink:href='#g2-50'/>
|
|
635
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
636
|
+
<use x='118.603' y='145.434' xlink:href='#g2-50'/>
|
|
637
|
+
<use x='121.25' y='145.434' xlink:href='#g2-48'/>
|
|
638
|
+
</g>
|
|
639
|
+
<g transform='matrix(0 -1 1 0 37.218 201.746)'>
|
|
640
|
+
<use x='114.487' y='145.434' xlink:href='#g2-49'/>
|
|
641
|
+
<use x='117.133' y='145.434' xlink:href='#g2-46'/>
|
|
642
|
+
<use x='118.603' y='145.434' xlink:href='#g2-55'/>
|
|
643
|
+
<use x='121.25' y='145.434' xlink:href='#g2-55'/>
|
|
644
|
+
</g>
|
|
645
|
+
<g transform='matrix(0 -1 1 0 94.413 187.155)'>
|
|
646
|
+
<use x='109.598' y='145.434' xlink:href='#g4-1'/>
|
|
647
|
+
<use x='113.103' y='145.434' xlink:href='#g4-1'/>
|
|
648
|
+
<use x='116.608' y='145.434' xlink:href='#g4-1'/>
|
|
649
|
+
<use x='120.114' y='145.434' xlink:href='#g2-56'/>
|
|
650
|
+
<use x='122.76' y='145.434' xlink:href='#g2-46'/>
|
|
651
|
+
<use x='124.23' y='145.434' xlink:href='#g2-48'/>
|
|
652
|
+
<use x='126.877' y='145.434' xlink:href='#g2-52'/>
|
|
653
|
+
<use x='129.523' y='145.434' xlink:href='#g2-120'/>
|
|
654
|
+
</g>
|
|
655
|
+
<g transform='matrix(0 -1 1 0 151.607 187.155)'>
|
|
656
|
+
<use x='109.598' y='145.434' xlink:href='#g4-1'/>
|
|
657
|
+
<use x='113.103' y='145.434' xlink:href='#g4-1'/>
|
|
658
|
+
<use x='116.608' y='145.434' xlink:href='#g4-1'/>
|
|
659
|
+
<use x='120.114' y='145.434' xlink:href='#g2-50'/>
|
|
660
|
+
<use x='122.76' y='145.434' xlink:href='#g2-46'/>
|
|
661
|
+
<use x='124.23' y='145.434' xlink:href='#g2-55'/>
|
|
662
|
+
<use x='126.877' y='145.434' xlink:href='#g2-56'/>
|
|
663
|
+
<use x='129.523' y='145.434' xlink:href='#g2-120'/>
|
|
664
|
+
</g>
|
|
665
|
+
<g transform='matrix(0 -1 1 0 208.801 187.155)'>
|
|
666
|
+
<use x='109.598' y='145.434' xlink:href='#g4-1'/>
|
|
667
|
+
<use x='113.103' y='145.434' xlink:href='#g4-1'/>
|
|
668
|
+
<use x='116.608' y='145.434' xlink:href='#g4-1'/>
|
|
669
|
+
<use x='120.114' y='145.434' xlink:href='#g2-56'/>
|
|
670
|
+
<use x='122.76' y='145.434' xlink:href='#g2-46'/>
|
|
671
|
+
<use x='124.23' y='145.434' xlink:href='#g2-54'/>
|
|
672
|
+
<use x='126.877' y='145.434' xlink:href='#g2-49'/>
|
|
673
|
+
<use x='129.523' y='145.434' xlink:href='#g2-120'/>
|
|
674
|
+
</g>
|
|
675
|
+
<g transform='matrix(0 -1 1 0 -86.074 311.062)'>
|
|
676
|
+
<use x='114.487' y='145.434' xlink:href='#g1-82'/>
|
|
677
|
+
<use x='120.457' y='145.434' xlink:href='#g1-101'/>
|
|
678
|
+
<use x='124.553' y='145.434' xlink:href='#g1-108'/>
|
|
679
|
+
<use x='126.753' y='145.434' xlink:href='#g1-97'/>
|
|
680
|
+
<use x='131.181' y='145.434' xlink:href='#g1-116'/>
|
|
681
|
+
<use x='134.509' y='145.434' xlink:href='#g1-105'/>
|
|
682
|
+
<use x='136.709' y='145.434' xlink:href='#g1-118'/>
|
|
683
|
+
<use x='140.957' y='145.434' xlink:href='#g1-101'/>
|
|
684
|
+
<use x='148.124' y='145.434' xlink:href='#g1-116'/>
|
|
685
|
+
<use x='151.452' y='145.434' xlink:href='#g1-105'/>
|
|
686
|
+
<use x='153.652' y='145.434' xlink:href='#g1-109'/>
|
|
687
|
+
<use x='160.972' y='145.434' xlink:href='#g1-101'/>
|
|
688
|
+
<use x='168.139' y='145.434' xlink:href='#g3-40'/>
|
|
689
|
+
<use x='171.432' y='145.434' xlink:href='#g3-108'/>
|
|
690
|
+
<use x='173.453' y='145.434' xlink:href='#g3-111'/>
|
|
691
|
+
<use x='177.452' y='145.434' xlink:href='#g3-119'/>
|
|
692
|
+
<use x='183' y='145.434' xlink:href='#g3-101'/>
|
|
693
|
+
<use x='186.764' y='145.434' xlink:href='#g3-114'/>
|
|
694
|
+
<use x='192.479' y='145.434' xlink:href='#g3-105'/>
|
|
695
|
+
<use x='194.499' y='145.434' xlink:href='#g3-115'/>
|
|
696
|
+
<use x='200.568' y='145.434' xlink:href='#g3-98'/>
|
|
697
|
+
<use x='205.176' y='145.434' xlink:href='#g3-101'/>
|
|
698
|
+
<use x='208.94' y='145.434' xlink:href='#g3-116'/>
|
|
699
|
+
<use x='211.998' y='145.434' xlink:href='#g3-116'/>
|
|
700
|
+
<use x='215.056' y='145.434' xlink:href='#g3-101'/>
|
|
701
|
+
<use x='218.819' y='145.434' xlink:href='#g3-114'/>
|
|
702
|
+
<use x='221.711' y='145.434' xlink:href='#g3-41'/>
|
|
703
|
+
</g>
|
|
704
|
+
<path d='M82.348 262.243H231.688V232.317H82.348Z' fill='#fff'/>
|
|
705
|
+
<path d='M82.348 262.243H231.688V232.317H82.348Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
706
|
+
<path d='M85.535 242.77H88.523V234.801H85.535ZM91.516 242.77H94.504V236.793H91.516Z' fill='#933'/>
|
|
707
|
+
<path d='M85.535 242.77H88.523V234.801H85.535ZM91.516 242.77H94.504V236.793H91.516Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
708
|
+
<g transform='matrix(1 0 0 1 -40.354 110.298)'>
|
|
709
|
+
<use x='141.573' y='132.464' xlink:href='#g3-120'/>
|
|
710
|
+
<use x='145.475' y='132.464' xlink:href='#g3-109'/>
|
|
711
|
+
<use x='152.2' y='132.464' xlink:href='#g3-105'/>
|
|
712
|
+
<use x='154.221' y='132.464' xlink:href='#g3-58'/>
|
|
713
|
+
<use x='156.573' y='132.464' xlink:href='#g0-57'/>
|
|
714
|
+
<use x='160.278' y='132.464' xlink:href='#g0-48'/>
|
|
715
|
+
</g>
|
|
716
|
+
<path d='M130.344 242.77H133.336V234.801H130.344ZM136.324 242.77H139.313V236.793H136.324Z' fill='#bf8080'/>
|
|
717
|
+
<path d='M130.344 242.77H133.336V234.801H130.344ZM136.324 242.77H139.313V236.793H136.324Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
718
|
+
<g transform='matrix(1 0 0 1 -38.403 110.298)'>
|
|
719
|
+
<use x='181.727' y='132.464' xlink:href='#g3-109'/>
|
|
720
|
+
<use x='188.452' y='132.464' xlink:href='#g3-105'/>
|
|
721
|
+
<use x='190.472' y='132.464' xlink:href='#g3-58'/>
|
|
722
|
+
<use x='192.825' y='132.464' xlink:href='#g0-57'/>
|
|
723
|
+
<use x='196.53' y='132.464' xlink:href='#g0-51'/>
|
|
724
|
+
</g>
|
|
725
|
+
<path d='M165.844 242.77H168.832V234.801H165.844ZM171.82 242.77H174.813V236.793H171.82Z' fill='#8080bf'/>
|
|
726
|
+
<path d='M165.844 242.77H168.832V234.801H165.844ZM171.82 242.77H174.813V236.793H171.82Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
727
|
+
<g transform='matrix(1 0 0 1 -37.441 109.855)'>
|
|
728
|
+
<use x='215.44' y='132.464' xlink:href='#g3-116'/>
|
|
729
|
+
<use x='218.498' y='132.464' xlink:href='#g3-99'/>
|
|
730
|
+
<use x='222.262' y='132.464' xlink:href='#g3-58'/>
|
|
731
|
+
<use x='224.614' y='132.464' xlink:href='#g0-53'/>
|
|
732
|
+
<use x='228.319' y='132.464' xlink:href='#g0-48'/>
|
|
733
|
+
</g>
|
|
734
|
+
<path d='M197.77 242.77H200.758V234.801H197.77ZM203.75 242.77H206.738V236.793H203.75Z' fill='#ffb733'/>
|
|
735
|
+
<path d='M197.77 242.77H200.758V234.801H197.77ZM203.75 242.77H206.738V236.793H203.75Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
736
|
+
<g transform='matrix(1 0 0 1 -37.04 110.298)'>
|
|
737
|
+
<use x='246.965' y='132.464' xlink:href='#g3-106'/>
|
|
738
|
+
<use x='249.221' y='132.464' xlink:href='#g3-101'/>
|
|
739
|
+
<use x='252.984' y='132.464' xlink:href='#g3-58'/>
|
|
740
|
+
<use x='255.337' y='132.464' xlink:href='#g0-53'/>
|
|
741
|
+
<use x='259.041' y='132.464' xlink:href='#g0-51'/>
|
|
742
|
+
</g>
|
|
743
|
+
<path d='M85.535 255.742H88.523V247.77H85.535ZM91.516 255.742H94.504V249.762H91.516Z' fill='#80bf80'/>
|
|
744
|
+
<path d='M85.535 255.742H88.523V247.77H85.535ZM91.516 255.742H94.504V249.762H91.516Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
745
|
+
<g transform='matrix(1 0 0 1 -43.882 110.334)'>
|
|
746
|
+
<use x='141.573' y='145.434' xlink:href='#g3-104'/>
|
|
747
|
+
<use x='145.946' y='145.434' xlink:href='#g3-111'/>
|
|
748
|
+
<use x='150.18' y='145.434' xlink:href='#g3-97'/>
|
|
749
|
+
<use x='154.013' y='145.434' xlink:href='#g3-114'/>
|
|
750
|
+
<use x='156.905' y='145.434' xlink:href='#g3-100'/>
|
|
751
|
+
<use x='161.278' y='145.434' xlink:href='#g3-58'/>
|
|
752
|
+
<use x='163.63' y='145.434' xlink:href='#g0-53'/>
|
|
753
|
+
<use x='167.335' y='145.434' xlink:href='#g0-51'/>
|
|
754
|
+
</g>
|
|
755
|
+
<path d='M130.344 255.742H133.336V247.77H130.344ZM136.324 255.742H139.313V249.762H136.324Z' fill='#399'/>
|
|
756
|
+
<path d='M130.344 255.742H133.336V247.77H130.344ZM136.324 255.742H139.313V249.762H136.324Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
757
|
+
<g transform='matrix(1 0 0 1 -39.227 109.855)'>
|
|
758
|
+
<use x='181.727' y='145.434' xlink:href='#g3-115'/>
|
|
759
|
+
<use x='184.974' y='145.434' xlink:href='#g3-121'/>
|
|
760
|
+
<use x='188.876' y='145.434' xlink:href='#g3-115'/>
|
|
761
|
+
<use x='192.122' y='145.434' xlink:href='#g3-58'/>
|
|
762
|
+
<use x='194.474' y='145.434' xlink:href='#g0-50'/>
|
|
763
|
+
<use x='198.179' y='145.434' xlink:href='#g0-51'/>
|
|
764
|
+
</g>
|
|
765
|
+
</g>
|
|
766
|
+
</svg>
|