vome-core 0.0.1
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/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/server/index.d.ts +1 -0
- package/dist/server/index.js +1 -0
- package/dist/src/auth/define-macro.d.ts +8 -0
- package/dist/src/auth/index.d.ts +2 -0
- package/dist/src/comm/daily-log.d.ts +8 -0
- package/dist/src/comm/env.d.ts +4 -0
- package/dist/src/comm/format-time.d.ts +10 -0
- package/dist/src/comm/merge.d.ts +2 -0
- package/dist/src/comm/scan.d.ts +4 -0
- package/dist/src/comm/startBanner.d.ts +1 -0
- package/dist/src/core/app.d.ts +37 -0
- package/dist/src/core/config.d.ts +2 -0
- package/dist/src/core/context/index.d.ts +22 -0
- package/dist/src/core/host-infra.d.ts +20 -0
- package/dist/src/core/index.d.ts +20 -0
- package/dist/src/core/plugins/async-context.d.ts +3 -0
- package/dist/src/core/plugins/error.d.ts +5 -0
- package/dist/src/core/plugins/logging.d.ts +3 -0
- package/dist/src/core/plugins/openapi.d.ts +3 -0
- package/dist/src/core/vome-config.d.ts +2 -0
- package/dist/src/ext/base-plugin.d.ts +13 -0
- package/dist/src/ext/index.d.ts +15 -0
- package/dist/src/ext/load-plugin.d.ts +12 -0
- package/dist/src/ext/micro-apps.d.ts +60 -0
- package/dist/src/ext/module-gateway.d.ts +10 -0
- package/dist/src/ext/module-registry.d.ts +45 -0
- package/dist/src/ext/path.d.ts +8 -0
- package/dist/src/index.d.ts +10 -0
- package/dist/src/ioc/container.d.ts +29 -0
- package/dist/src/ioc/decorators.d.ts +35 -0
- package/dist/src/ioc/host.d.ts +2 -0
- package/dist/src/ioc/index.d.ts +6 -0
- package/dist/src/ioc/metadata.d.ts +12 -0
- package/dist/src/ioc/scope.d.ts +9 -0
- package/dist/src/logger/bootstrap.d.ts +2 -0
- package/dist/src/logger/exception.d.ts +22 -0
- package/dist/src/logger/index.d.ts +5 -0
- package/dist/src/logger/logger.d.ts +18 -0
- package/dist/src/logger/pino.d.ts +8 -0
- package/dist/src/orm/base-columns.d.ts +11 -0
- package/dist/src/orm/column-comments.d.ts +25 -0
- package/dist/src/orm/crud-config.d.ts +7 -0
- package/dist/src/orm/crud-register.d.ts +5 -0
- package/dist/src/orm/data-scope.d.ts +24 -0
- package/dist/src/orm/db-store.d.ts +12 -0
- package/dist/src/orm/entity-schema.d.ts +7 -0
- package/dist/src/orm/index.d.ts +22 -0
- package/dist/src/orm/query-builder.d.ts +12 -0
- package/dist/src/orm/query-op.d.ts +27 -0
- package/dist/src/orm/repository.d.ts +74 -0
- package/dist/src/orm/service.d.ts +71 -0
- package/dist/src/orm/tenant.d.ts +24 -0
- package/dist/src/routing/base.d.ts +27 -0
- package/dist/src/routing/context.d.ts +14 -0
- package/dist/src/routing/crud-summary.d.ts +2 -0
- package/dist/src/routing/decorators.d.ts +48 -0
- package/dist/src/routing/eps.d.ts +16 -0
- package/dist/src/routing/index.d.ts +8 -0
- package/dist/src/routing/metadata.d.ts +28 -0
- package/dist/src/routing/openapi-tags.d.ts +23 -0
- package/dist/src/routing/path-utils.d.ts +5 -0
- package/dist/src/routing/perm.d.ts +18 -0
- package/dist/src/routing/register.d.ts +7 -0
- package/dist/src/server/index.d.ts +10 -0
- package/dist/src/shared/index.d.ts +8 -0
- package/dist/src/shared/tree.d.ts +18 -0
- package/dist/typings/comm/crud.d.ts +24 -0
- package/dist/typings/comm/page.d.ts +16 -0
- package/dist/typings/comm/scan.d.ts +6 -0
- package/dist/typings/common.d.ts +6 -0
- package/dist/typings/context/data.d.ts +10 -0
- package/dist/typings/ext/module.d.ts +45 -0
- package/dist/typings/ext/plugin.d.ts +40 -0
- package/dist/typings/ioc/metadata.d.ts +31 -0
- package/dist/typings/logger/config.d.ts +6 -0
- package/dist/typings/routing/crud.d.ts +99 -0
- package/dist/typings/routing/eps.d.ts +53 -0
- package/dist/typings/routing/meta.d.ts +56 -0
- package/dist/typings/routing/register.d.ts +15 -0
- package/dist/typings/routing/scan-context.d.ts +6 -0
- package/package.json +96 -0
- package/src/admin/api/client.ts +184 -0
- package/src/admin/components/vm-aside.vue +227 -0
- package/src/admin/components/vm-auto-perm-dialog.vue +361 -0
- package/src/admin/components/vm-check-tree.vue +338 -0
- package/src/admin/components/vm-dept-tree.vue +549 -0
- package/src/admin/components/vm-empty.vue +62 -0
- package/src/admin/components/vm-eps-perm-picker.vue +114 -0
- package/src/admin/components/vm-group-cascader.vue +563 -0
- package/src/admin/components/vm-icon-picker.vue +616 -0
- package/src/admin/components/vm-markdown.vue +141 -0
- package/src/admin/components/vm-ri-icon.vue +21 -0
- package/src/admin/components/vm-role-picker.vue +314 -0
- package/src/admin/components/vm-view-path-picker.vue +56 -0
- package/src/admin/config/plugin-dev.ts +31 -0
- package/src/admin/crud/components/vm-column-custom.vue +196 -0
- package/src/admin/crud/components/vm-context-menu.vue +99 -0
- package/src/admin/crud/components/vm-date-picker.vue +74 -0
- package/src/admin/crud/components/vm-date-range.vue +291 -0
- package/src/admin/crud/components/vm-date-text.vue +41 -0
- package/src/admin/crud/components/vm-dict-tag.vue +47 -0
- package/src/admin/crud/components/vm-file-icon.vue +54 -0
- package/src/admin/crud/components/vm-multi-select.vue +181 -0
- package/src/admin/crud/components/vm-number-range.vue +200 -0
- package/src/admin/crud/components/vm-radio.vue +87 -0
- package/src/admin/crud/components/vm-select.vue +131 -0
- package/src/admin/crud/components/vm-switch.vue +128 -0
- package/src/admin/crud/components/vm-tree-select.vue +456 -0
- package/src/admin/crud/components/vm-upload-item.vue +215 -0
- package/src/admin/crud/components/vm-upload.vue +323 -0
- package/src/admin/crud/components/vm-user-select.vue +234 -0
- package/src/admin/crud/config.ts +38 -0
- package/src/admin/crud/confirm.ts +135 -0
- package/src/admin/crud/dict.ts +49 -0
- package/src/admin/crud/index.ts +79 -0
- package/src/admin/crud/key.ts +47 -0
- package/src/admin/crud/mitt.ts +27 -0
- package/src/admin/crud/plugins.ts +298 -0
- package/src/admin/crud/registry.ts +45 -0
- package/src/admin/crud/span.ts +48 -0
- package/src/admin/crud/style.ts +112 -0
- package/src/admin/crud/useCrud.ts +81 -0
- package/src/admin/crud/validate.ts +109 -0
- package/src/admin/crud/vm-add-btn.vue +68 -0
- package/src/admin/crud/vm-adv-search.vue +73 -0
- package/src/admin/crud/vm-crud.vue +517 -0
- package/src/admin/crud/vm-dialog.vue +234 -0
- package/src/admin/crud/vm-flex1.vue +14 -0
- package/src/admin/crud/vm-form.vue +239 -0
- package/src/admin/crud/vm-multi-delete-btn.vue +48 -0
- package/src/admin/crud/vm-pagination.vue +125 -0
- package/src/admin/crud/vm-refresh-btn.vue +34 -0
- package/src/admin/crud/vm-row.vue +42 -0
- package/src/admin/crud/vm-search-key.vue +76 -0
- package/src/admin/crud/vm-search.vue +367 -0
- package/src/admin/crud/vm-table.vue +852 -0
- package/src/admin/crud/vm-toolbar.vue +245 -0
- package/src/admin/crud/vm-upsert.vue +530 -0
- package/src/admin/data/remixicon-all.json +1 -0
- package/src/admin/directives/perm.ts +18 -0
- package/src/admin/env.d.ts +5 -0
- package/src/admin/hooks/useBrowser.ts +27 -0
- package/src/admin/hooks/useUpload.ts +82 -0
- package/src/admin/hooks/useVome.ts +13 -0
- package/src/admin/index.ts +59 -0
- package/src/admin/lib/browser.ts +28 -0
- package/src/admin/lib/cn.ts +7 -0
- package/src/admin/lib/dialog-float.ts +14 -0
- package/src/admin/lib/eps.ts +43 -0
- package/src/admin/lib/menu.ts +15 -0
- package/src/admin/lib/module.ts +112 -0
- package/src/admin/lib/tree.ts +2 -0
- package/src/admin/lib/upload.ts +102 -0
- package/src/admin/router/index.ts +61 -0
- package/src/admin/router/menu-routes.ts +126 -0
- package/src/admin/service/base.ts +96 -0
- package/src/admin/service/index.ts +281 -0
- package/src/admin/static/fileicon/demo.css +539 -0
- package/src/admin/static/fileicon/demo_index.html +901 -0
- package/src/admin/static/fileicon/iconfont.css +139 -0
- package/src/admin/static/fileicon/iconfont.js +1 -0
- package/src/admin/static/fileicon/iconfont.json +226 -0
- package/src/admin/static/fileicon/iconfont.ttf +0 -0
- package/src/admin/static/fileicon/iconfont.woff +0 -0
- package/src/admin/static/fileicon/iconfont.woff2 +0 -0
- package/src/admin/static/scarce//344/270/213/350/275/275/345/244/261/350/264/245.svg +1 -0
- package/src/admin/static/scarce//346/224/257/344/273/230/346/210/220/345/212/237.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/344/274/230/346/203/240/345/210/270.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/345/206/205/345/256/271.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/345/217/221/347/245/250.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/345/233/276/347/211/207.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/345/234/260/345/235/200.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/345/272/227/351/223/272.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/216/250/351/200/201.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/220/234/347/264/242/347/273/223/346/236/234.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/224/266/350/227/217.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/225/260/346/215/256.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/235/203/351/231/220.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/346/266/210/346/201/257.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/347/244/274/347/211/251.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/347/247/257/345/210/206.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/347/275/221/347/273/234.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/350/247/206/351/242/221.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/350/256/242/345/215/225.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/350/257/204/350/256/272.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/351/205/215/351/200/201.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/351/223/266/350/241/214/345/215/241.svg +1 -0
- package/src/admin/static/scarce//346/232/202/346/227/240/351/237/263/344/271/220.svg +1 -0
- package/src/admin/static/scarce//351/241/265/351/235/242/344/270/215/345/255/230/345/234/250.svg +1 -0
- package/src/admin/stores/app.ts +30 -0
- package/src/admin/stores/tags.ts +73 -0
- package/src/admin/stores/user.ts +52 -0
- package/src/admin/styles/base.css +137 -0
- package/src/admin/tsconfig.json +19 -0
- package/typings/admin/base/auth.ts +23 -0
- package/typings/admin/base/permission.ts +19 -0
- package/typings/admin/comm/cascader.ts +7 -0
- package/typings/admin/comm/check-tree.ts +7 -0
- package/typings/admin/comm/crud.ts +294 -0
- package/typings/admin/comm/eps.ts +52 -0
- package/typings/admin/comm/request.ts +12 -0
- package/typings/admin/comm/service.ts +35 -0
- package/typings/admin/comm/upload.ts +39 -0
- package/typings/admin/host.d.ts +61 -0
- package/typings/admin/vome/browser.ts +11 -0
- package/typings/admin/vome/module.ts +13 -0
- package/typings/admin/vome/tags.ts +9 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="183"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="8" spreadMethod="pad" x1="255.6121" x2="255.6121" y1="428.0135" y2="331.2253"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="12" spreadMethod="pad" x1="190.9951" x2="190.9951" y1="486.0054" y2="269.5164"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="16" spreadMethod="pad" x1="566.7767" x2="566.7767" y1="443.3265" y2="286.8458"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="20" spreadMethod="pad" x1="629.3016" x2="629.3016" y1="465.9966" y2="296.2559"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="24" spreadMethod="pad" x1="120.589" x2="120.589" y1="508.075" y2="357.5616"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="28" spreadMethod="pad" x1="683.2622" x2="683.2622" y1="491.4696" y2="368.3374"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="32" spreadMethod="pad" x1="126.5527" x2="126.5527" y1="235.7678" y2="171.2265"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="36" spreadMethod="pad" x1="643.6211" x2="643.6211" y1="198.9473" y2="134.4061"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="40" spreadMethod="pad" x1="513.8502" x2="513.8502" y1="242.1208" y2="195.4036"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="44" spreadMethod="pad" x1="400.0675" x2="400.0675" y1="757.6456" y2="405.5167"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="50" spreadMethod="pad" x1="190.997" x2="139.5608" y1="581.1014" y2="519.8021"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="54" spreadMethod="pad" x1="111.9492" x2="176.136" y1="460.8111" y2="460.8111"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="60" spreadMethod="pad" x1="709.8591" x2="662.4937" y1="561.1288" y2="504.6809"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="64" spreadMethod="pad" x1="637.0674" x2="696.1743" y1="450.3586" y2="450.3586"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="70" spreadMethod="pad" x1="251.1965" x2="225.7552" y1="461.9581" y2="431.6384"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="74" spreadMethod="pad" x1="212.0981" x2="243.846" y1="402.4603" y2="402.4603"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="80" spreadMethod="pad" x1="523.6899" x2="436.7546" y1="682.061" y2="414.5018"><stop offset="0.0938" stop-color="#ffffff"></stop><stop offset="0.9362" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="84" spreadMethod="pad" x1="253.681" x2="351.3006" y1="375.2699" y2="375.2699"><stop offset="0" stop-color="#becfe2"></stop><stop offset="1" stop-color="#e7edf5"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="88" spreadMethod="pad" x1="13818.952" x2="13907.296" y1="375.2745" y2="375.2745"><stop offset="0" stop-color="#cfdbea"></stop><stop offset="1" stop-color="#aec3da"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="92" spreadMethod="pad" x1="439.6442" x2="537.2638" y1="375.2699" y2="375.2699"><stop offset="0" stop-color="#becfe2"></stop><stop offset="0.7733" stop-color="#e7edf5"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="96" spreadMethod="pad" x1="253.681" x2="351.3007" y1="397.2592" y2="397.2592"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#cedae8"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="100" spreadMethod="pad" x1="351.3007" x2="439.6442" y1="400.7849" y2="400.7849"><stop offset="0.0000005358273" stop-color="#e7edf5"></stop><stop offset="1" stop-color="#b9cbde"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="104" spreadMethod="pad" x1="537.2638" x2="439.6442" y1="397.9752" y2="397.9752"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#cbd9e8"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="108" spreadMethod="pad" x1="441.5032" x2="322.154" y1="285.192" y2="274.7502"><stop offset="0" stop-color="#e7edf5"></stop><stop offset="0.5658" stop-color="#b3c7dd"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="112" spreadMethod="pad" x1="316.4671" x2="436.1955" y1="279.9082" y2="279.9082"><stop offset="0.2139" stop-color="#e7edf5"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="123" spreadMethod="pad" x1="478.6757" x2="478.6757" y1="530.8804" y2="477.2761"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="127" spreadMethod="pad" x1="491.2362" x2="491.2362" y1="529.2055" y2="474.4226"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="133" spreadMethod="pad" x1="11591.696" x2="11591.696" y1="176.9684" y2="152.7643"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_29_" node-id="139" spreadMethod="pad" x1="11603.253" x2="11603.253" y1="170.4453" y2="158.8734"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="465"><g node-id="505"><path d="M 270.07 334.63 L 270.07 331.22 L 240.57 331.22 L 240.57 335.18 L 234.09 335.18 L 234.09 428.01 L 277.14 428.01 L 277.14 334.63 L 270.07 334.63 Z M 273.41 417.37 L 237.37 417.37 L 237.37 414.62 L 273.41 414.62 L 273.41 417.37 Z M 273.41 404.69 L 237.37 404.69 L 237.37 401.94 L 273.41 401.94 L 273.41 404.69 Z M 273.41 392.02 L 237.37 392.02 L 237.37 389.27 L 273.41 389.27 L 273.41 392.02 Z M 273.41 379.67 L 237.37 379.67 L 237.37 376.92 L 273.41 376.92 L 273.41 379.67 Z M 273.41 367.36 L 237.37 367.36 L 237.37 364.61 L 273.41 364.61 L 273.41 367.36 Z M 273.41 354.68 L 237.37 354.68 L 237.37 351.93 L 273.41 351.93 L 273.41 354.68 Z M 273.41 342.34 L 237.37 342.34 L 237.37 339.59 L 273.41 339.59 L 273.41 342.34 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="3,43" node-id="364" stroke="none" target-height="96.79001" target-width="43.050003" target-x="234.09001" target-y="331.22"></path><path d="M 212.09 386.44 L 212.09 278.26 L 179.34 278.26 L 179.34 269.52 L 165.48 269.52 L 165.48 322.85 L 161.75 322.85 L 161.75 486.01 L 220.26 486.01 L 220.26 386.45 L 212.09 386.45 Z M 187.59 418.25 L 179.33 418.25 L 179.33 410.24 L 187.59 410.24 L 187.59 418.25 Z M 187.59 405.72 L 179.33 405.72 L 179.33 397.71 L 187.59 397.71 L 187.59 405.72 Z M 187.59 393.25 L 179.33 393.25 L 179.33 385.24 L 187.59 385.24 L 187.59 393.25 Z M 187.59 380.81 L 179.33 380.81 L 179.33 372.80 L 187.59 372.80 L 187.59 380.81 Z M 187.59 368.28 L 179.33 368.28 L 179.33 360.27 L 187.59 360.27 L 187.59 368.28 Z M 187.59 343.28 L 179.33 343.28 L 179.33 335.27 L 187.59 335.27 L 187.59 343.28 Z M 187.59 330.75 L 179.33 330.75 L 179.33 322.74 L 187.59 322.74 L 187.59 330.75 Z M 187.59 318.27 L 179.33 318.27 L 179.33 310.26 L 187.59 310.26 L 187.59 318.27 Z M 187.59 305.84 L 179.33 305.84 L 179.33 297.83 L 187.59 297.83 L 187.59 305.84 Z M 187.59 293.31 L 179.33 293.31 L 179.33 285.30 L 187.59 285.30 L 187.59 293.31 Z M 199.94 418.25 L 191.68 418.25 L 191.68 410.24 L 199.94 410.24 L 199.94 418.25 Z M 199.94 405.72 L 191.68 405.72 L 191.68 397.71 L 199.94 397.71 L 199.94 405.72 Z M 199.94 393.25 L 191.68 393.25 L 191.68 385.24 L 199.94 385.24 L 199.94 393.25 Z M 199.94 380.81 L 191.68 380.81 L 191.68 372.80 L 199.94 372.80 L 199.94 380.81 Z M 199.94 368.28 L 191.68 368.28 L 191.68 360.27 L 199.94 360.27 L 199.94 368.28 Z M 199.94 343.28 L 191.68 343.28 L 191.68 335.27 L 199.94 335.27 L 199.94 343.28 Z M 199.94 330.75 L 191.68 330.75 L 191.68 322.74 L 199.94 322.74 L 199.94 330.75 Z M 199.94 318.27 L 191.68 318.27 L 191.68 310.26 L 199.94 310.26 L 199.94 318.27 Z M 199.94 305.84 L 191.68 305.84 L 191.68 297.83 L 199.94 297.83 L 199.94 305.84 Z M 199.94 293.31 L 191.68 293.31 L 191.68 285.30 L 199.94 285.30 L 199.94 293.31 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="3,43" node-id="366" stroke="none" target-height="216.49002" target-width="58.51001" target-x="161.75" target-y="269.52"></path><path d="M 534.39 443.33 C 534.75 438.68 534.39 286.85 534.39 286.85 L 552.92 286.85 L 552.92 320.56 L 582.42 320.56 L 582.42 391.01 L 599.15 391.01 L 599.15 443.33 L 534.39 443.33 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="3,43" node-id="368" stroke="none" target-height="156.47998" target-width="64.76001" target-x="534.39" target-y="286.85"></path><path d="M 655.61 375.18 L 655.61 370.33 L 650.61 370.33 L 650.61 328.00 L 638.41 328.00 L 638.41 323.30 L 630.18 323.30 L 630.18 316.39 L 625.89 316.39 L 625.89 296.25 L 622.80 296.25 L 622.80 316.53 L 618.86 316.53 L 618.86 323.44 L 606.66 323.44 L 606.66 334.76 L 599.61 334.76 L 599.61 466.00 L 658.99 466.00 L 658.99 375.18 L 655.61 375.18 Z M 610.10 427.96 L 606.08 427.96 L 606.08 412.72 L 610.10 412.72 L 610.10 427.96 Z M 610.10 409.31 L 606.08 409.31 L 606.08 394.07 L 610.10 394.07 L 610.10 409.31 Z M 610.10 390.66 L 606.08 390.66 L 606.08 375.42 L 610.10 375.42 L 610.10 390.66 Z M 610.10 371.68 L 606.08 371.68 L 606.08 356.44 L 610.10 356.44 L 610.10 371.68 Z M 610.10 352.69 L 606.08 352.69 L 606.08 337.45 L 610.10 337.45 L 610.10 352.69 Z M 618.38 427.96 L 614.36 427.96 L 614.36 412.72 L 618.38 412.72 L 618.38 427.96 Z M 618.38 409.31 L 614.36 409.31 L 614.36 394.07 L 618.38 394.07 L 618.38 409.31 Z M 618.38 390.66 L 614.36 390.66 L 614.36 375.42 L 618.38 375.42 L 618.38 390.66 Z M 618.38 371.68 L 614.36 371.68 L 614.36 356.44 L 618.38 356.44 L 618.38 371.68 Z M 618.38 352.69 L 614.36 352.69 L 614.36 337.45 L 618.38 337.45 L 618.38 352.69 Z M 626.66 427.96 L 622.64 427.96 L 622.64 412.72 L 626.66 412.72 L 626.66 427.96 Z M 626.66 409.31 L 622.64 409.31 L 622.64 394.07 L 626.66 394.07 L 626.66 409.31 Z M 626.66 390.66 L 622.64 390.66 L 622.64 375.42 L 626.66 375.42 L 626.66 390.66 Z M 626.66 371.68 L 622.64 371.68 L 622.64 356.44 L 626.66 356.44 L 626.66 371.68 Z M 626.66 352.69 L 622.64 352.69 L 622.64 337.45 L 626.66 337.45 L 626.66 352.69 Z M 634.94 427.96 L 630.92 427.96 L 630.92 412.72 L 634.94 412.72 L 634.94 427.96 Z M 634.94 409.31 L 630.92 409.31 L 630.92 394.07 L 634.94 394.07 L 634.94 409.31 Z M 634.94 390.66 L 630.92 390.66 L 630.92 375.42 L 634.94 375.42 L 634.94 390.66 Z M 634.94 371.68 L 630.92 371.68 L 630.92 356.44 L 634.94 356.44 L 634.94 371.68 Z M 634.94 352.69 L 630.92 352.69 L 630.92 337.45 L 634.94 337.45 L 634.94 352.69 Z M 643.22 427.96 L 639.20 427.96 L 639.20 412.72 L 643.22 412.72 L 643.22 427.96 Z M 643.22 409.31 L 639.20 409.31 L 639.20 394.07 L 643.22 394.07 L 643.22 409.31 Z M 643.22 390.66 L 639.20 390.66 L 639.20 375.42 L 643.22 375.42 L 643.22 390.66 Z M 643.22 371.68 L 639.20 371.68 L 639.20 356.44 L 643.22 356.44 L 643.22 371.68 Z M 643.22 352.69 L 639.20 352.69 L 639.20 337.45 L 643.22 337.45 L 643.22 352.69 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="3,43" node-id="370" stroke="none" target-height="169.75" target-width="59.380005" target-x="599.61" target-y="296.25"></path><path d="M 93.96 508.08 L 93.96 418.53 L 104.22 418.53 L 104.22 372.83 L 139.48 357.56 L 139.48 417.81 L 147.21 417.81 L 147.21 508.08 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="3,43" node-id="372" stroke="none" target-height="150.52002" target-width="53.250008" target-x="93.96" target-y="357.56"></path><path d="M 698.73 491.47 L 667.79 491.47 L 667.79 368.34 L 698.73 383.31 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="3,43" node-id="374" stroke="none" target-height="123.130005" target-width="30.940002" target-x="667.79" target-y="368.34"></path><path d="M 88.78 194.66 C 88.78 194.66 98.12 169.18 121.08 179.18 C 126.38 173.80 132.94 169.89 141.81 171.65 C 150.68 173.42 156.40 180.06 158.34 184.48 C 161.12 184.35 183.38 185.09 183.38 208.18 C 183.38 231.27 156.44 230.83 154.49 229.00 C 152.09 231.14 140.55 242.75 126.55 229.50 C 123.52 232.09 113.62 243.06 97.97 227.92 C 90.72 230.95 73.49 233.28 70.15 215.49 C 66.81 197.70 83.95 192.68 88.78 194.66 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="3,43" node-id="376" stroke="none" target-height="73.880005" target-width="116.57001" target-x="66.81" target-y="169.18"></path><path d="M 605.85 157.84 C 605.85 157.84 615.19 132.36 638.15 142.36 C 643.45 136.98 650.01 133.07 658.88 134.83 C 667.75 136.60 673.47 143.24 675.41 147.66 C 678.19 147.53 700.45 148.27 700.45 171.36 C 700.45 194.45 673.51 194.01 671.56 192.18 C 669.16 194.32 657.62 205.93 643.62 192.68 C 640.59 195.27 630.69 206.24 615.04 191.10 C 607.79 194.13 590.56 196.46 587.22 178.67 C 583.88 160.89 601.01 155.86 605.85 157.84 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="3,43" node-id="378" stroke="none" target-height="73.880005" target-width="116.57001" target-x="583.88" target-y="132.36"></path><path d="M 486.51 212.37 C 486.51 212.37 493.27 193.92 509.89 201.17 C 513.73 197.27 518.47 194.44 524.90 195.72 C 531.32 197.00 535.46 201.81 536.86 205.00 C 538.87 204.91 554.99 205.44 554.99 222.15 C 554.99 238.86 535.49 238.54 534.08 237.22 C 532.34 238.77 523.99 247.17 513.85 237.59 C 511.66 239.46 504.49 247.41 493.17 236.45 C 487.92 238.64 475.45 240.33 473.03 227.45 C 470.61 214.57 483.01 210.93 486.51 212.37 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="3,43" node-id="380" stroke="none" target-height="53.49002" target-width="84.379974" target-x="470.61002" target-y="193.92"></path><path d="M 771.05 581.58 C 771.05 628.27 731.96 673.06 662.39 706.07 C 592.82 739.09 498.46 757.64 400.07 757.64 C 301.68 757.64 207.32 739.09 137.75 706.07 C 68.18 673.06 29.09 628.27 29.09 581.58 C 29.09 534.89 68.18 490.10 137.75 457.09 C 207.32 424.07 301.68 405.52 400.07 405.52 C 498.46 405.52 592.82 424.07 662.39 457.09 C 731.96 490.10 771.05 534.89 771.05 581.58 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="3,43" node-id="382" stroke="none" target-height="352.12" target-width="741.9601" target-x="29.089996" target-y="405.52002"></path></g><g node-id="506"><g node-id="509"><path d="M 146.02 560.05 C 146.02 560.05 142.49 565.06 148.39 572.52 C 153.65 579.16 161.96 577.87 164.72 575.74 C 165.57 581.52 172.66 593.70 183.88 586.81 C 194.43 580.34 189.35 570.50 185.98 566.63 C 192.57 564.77 197.48 548.98 182.36 543.53 C 184.60 537.01 185.00 534.06 181.72 528.20 C 178.56 522.56 173.37 521.66 165.09 525.09 L 153.11 530.14 L 145.48 515.90 L 141.40 518.26 L 150.20 531.86 L 138.54 537.71 C 138.54 537.71 128.57 541.61 132.87 552.31 C 136.86 562.23 146.02 560.05 146.02 560.05 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="3,44,47" node-id="388" stroke="none" target-height="77.79999" target-width="68.90999" target-x="128.57" target-y="515.9"></path><path d="M 125.72 499.33 L 161.78 499.33 C 161.78 499.33 173.43 499.66 175.75 486.35 C 178.30 471.74 167.67 469.73 167.67 469.73 C 167.67 469.73 174.07 466.79 172.68 455.74 C 171.28 444.70 161.56 443.30 157.51 443.81 C 158.17 437.26 159.55 422.43 144.15 422.28 C 129.28 422.13 129.37 437.10 130.48 443.00 C 125.18 443.06 109.17 451.01 120.43 468.45 C 114.30 473.70 111.71 476.73 111.98 484.30 C 112.25 491.88 116.88 499.33 125.72 499.33 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="3,44,47" node-id="390" stroke="none" target-height="77.53003" target-width="69.130005" target-x="109.17" target-y="422.13"></path><path d="M 160.89 479.10 L 145.51 489.22 L 145.09 479.43 L 154.82 467.97 L 144.94 475.95 L 143.66 446.05 L 142.72 476.15 L 132.34 467.89 L 142.62 479.21 L 142.31 489.28 L 126.49 477.66 L 142.19 492.92 L 141.40 518.27 L 146.75 518.27 L 145.68 493.07 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="3,44,47" node-id="392" stroke="none" target-height="72.22003" target-width="34.4" target-x="126.49" target-y="446.05"></path></g><g node-id="510"><path d="M 668.44 541.74 C 668.44 541.74 665.19 546.36 670.62 553.22 C 675.46 559.34 683.12 558.15 685.66 556.18 C 686.44 561.50 692.98 572.71 703.31 566.38 C 713.02 560.42 708.35 551.36 705.24 547.80 C 711.31 546.09 715.83 531.54 701.91 526.53 C 703.98 520.53 704.35 517.81 701.32 512.42 C 698.41 507.23 693.63 506.39 686.01 509.56 L 674.97 514.21 L 667.94 501.10 L 664.19 503.27 L 672.29 515.79 L 661.56 521.18 C 661.56 521.18 652.38 524.77 656.34 534.63 C 660.00 543.75 668.44 541.74 668.44 541.74 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="3,44,48" node-id="397" stroke="none" target-height="71.610016" target-width="63.44995" target-x="652.38" target-y="501.1"></path><path d="M 649.75 485.83 L 682.95 485.83 C 682.95 485.83 693.68 486.14 695.81 473.88 C 698.15 460.43 688.37 458.58 688.37 458.58 C 688.37 458.58 694.27 455.87 692.98 445.70 C 691.69 435.53 682.74 434.24 679.01 434.72 C 679.62 428.69 680.89 415.03 666.71 414.89 C 653.02 414.75 653.10 428.53 654.12 433.97 C 649.24 434.02 634.49 441.34 644.87 457.41 C 639.23 462.24 636.84 465.04 637.09 472.00 C 637.34 478.97 641.61 485.83 649.75 485.83 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="3,44,48" node-id="399" stroke="none" target-height="71.390045" target-width="63.660034" target-x="634.49" target-y="414.74997"></path><path d="M 682.13 467.20 L 667.97 476.52 L 667.59 467.51 L 676.54 456.95 L 667.45 464.30 L 666.27 436.77 L 665.40 464.48 L 655.85 456.88 L 665.31 467.31 L 665.02 476.58 L 650.46 465.87 L 664.92 479.92 L 664.19 503.27 L 669.12 503.27 L 668.12 480.06 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="3,44,48" node-id="401" stroke="none" target-height="66.5" target-width="31.669983" target-x="650.46" target-y="436.77"></path></g><g node-id="511"><path d="M 228.95 451.54 C 228.95 451.54 227.20 454.02 230.12 457.71 C 232.72 461.00 236.83 460.36 238.20 459.30 C 238.62 462.16 242.13 468.18 247.68 464.78 C 252.90 461.58 250.39 456.71 248.72 454.80 C 251.98 453.88 254.41 446.07 246.93 443.38 C 248.04 440.16 248.24 438.70 246.61 435.80 C 245.05 433.01 242.48 432.56 238.39 434.26 L 232.46 436.76 L 228.69 429.72 L 226.67 430.89 L 231.02 437.61 L 225.25 440.50 C 225.25 440.50 220.32 442.43 222.45 447.72 C 224.42 452.62 228.95 451.54 228.95 451.54 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="3,44,49" node-id="406" stroke="none" target-height="38.460022" target-width="34.08998" target-x="220.32" target-y="429.72"></path><path d="M 218.91 421.51 L 236.74 421.51 C 236.74 421.51 242.50 421.67 243.65 415.09 C 244.91 407.86 239.65 406.87 239.65 406.87 C 239.65 406.87 242.82 405.41 242.13 399.95 C 241.44 394.49 236.63 393.80 234.63 394.05 C 234.96 390.81 235.64 383.47 228.02 383.40 C 220.66 383.33 220.71 390.73 221.26 393.65 C 218.64 393.68 210.72 397.61 216.29 406.24 C 213.26 408.83 211.97 410.34 212.11 414.08 C 212.24 417.83 214.54 421.51 218.91 421.51 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="3,44,49" node-id="408" stroke="none" target-height="38.340027" target-width="34.189987" target-x="210.72002" target-y="383.33"></path><path d="M 236.30 411.50 L 228.70 416.51 L 228.49 411.67 L 233.30 406.00 L 228.42 409.95 L 227.78 395.16 L 227.32 410.05 L 222.19 405.96 L 227.27 411.56 L 227.11 416.54 L 219.29 410.79 L 227.06 418.34 L 226.66 430.88 L 229.31 430.88 L 228.78 418.42 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="3,44,49" node-id="410" stroke="none" target-height="35.72" target-width="17.01001" target-x="219.29" target-y="395.16"></path></g></g><g node-id="507"><path d="M 351.60 442.17 L 253.68 485.17 L 413.69 704.56 L 710.05 621.51 L 537.26 449.87 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="3,45" node-id="415" stroke="none" target-height="262.38998" target-width="456.36993" target-x="253.67998" target-y="442.17"></path><path d="M 351.30 265.37 L 253.68 300.67 L 253.68 485.17 L 351.30 449.87 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="3,45" node-id="417" stroke="none" target-height="219.80002" target-width="97.62001" target-x="253.67998" target-y="265.37"></path><path d="M 351.30 265.37 L 439.64 300.67 L 439.64 485.17 L 351.30 449.87 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="3,45" node-id="419" stroke="none" target-height="219.80002" target-width="88.34003" target-x="351.3" target-y="265.37"></path><path d="M 537.26 265.37 L 439.64 300.67 L 439.64 485.17 L 537.26 449.87 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="3,45" node-id="421" stroke="none" target-height="219.80002" target-width="97.619995" target-x="439.64" target-y="265.37"></path><path d="M 351.30 372.28 C 349.83 371.97 348.27 371.75 346.60 371.62 C 329.10 370.24 313.46 390.51 300.48 410.51 C 290.25 426.28 265.08 416.00 253.67 410.21 L 253.67 414.72 C 266.70 421.10 292.30 430.46 303.83 412.68 C 321.32 385.72 334.00 374.63 346.28 375.60 C 348.09 375.74 349.75 376.00 351.29 376.37 L 351.29 372.28 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="3,45" node-id="423" stroke="none" target-height="60.22" target-width="97.630005" target-x="253.66998" target-y="370.24"></path><path d="M 439.64 415.74 C 428.90 424.10 419.22 426.37 404.18 424.85 C 386.27 423.04 380.21 414.48 374.73 398.26 C 370.03 384.35 364.27 374.98 351.30 372.28 L 351.30 376.37 C 361.95 378.90 366.62 386.74 370.95 399.54 C 375.74 413.71 381.85 426.61 403.78 428.83 C 406.75 429.13 409.53 429.29 412.17 429.29 C 422.80 429.29 431.10 426.72 439.64 420.70 L 439.64 415.74 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="3,45" node-id="425" stroke="none" target-height="57.01001" target-width="88.34003" target-x="351.3" target-y="372.28"></path><path d="M 537.26 393.50 C 529.51 380.34 521.24 375.51 507.93 375.26 C 507.74 375.26 507.56 375.25 507.37 375.25 C 483.37 375.25 452.80 403.65 446.87 409.39 C 444.37 411.81 441.98 413.92 439.64 415.74 L 439.64 420.70 C 442.89 418.41 446.18 415.62 449.65 412.27 C 465.45 396.98 489.96 379.26 507.38 379.26 C 507.54 379.26 507.70 379.26 507.85 379.26 C 521.58 379.52 529.08 385.15 537.26 402.01 L 537.26 393.50 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="3,45" node-id="427" stroke="none" target-height="45.44998" target-width="97.619995" target-x="439.64" target-y="375.25"></path><path d="M 383.64 198.79 C 350.58 198.79 323.78 225.71 323.78 258.91 C 323.78 300.26 359.79 350.03 376.22 361.02 C 380.16 361.54 382.16 361.14 383.65 361.03 C 394.26 359.24 443.51 308.99 443.51 258.92 C 443.50 225.71 416.70 198.79 383.64 198.79 Z M 383.85 299.25 C 361.66 299.25 343.67 281.26 343.67 259.07 C 343.67 236.88 361.66 218.89 383.85 218.89 C 406.04 218.89 424.03 236.88 424.03 259.07 C 424.03 281.26 406.04 299.25 383.85 299.25 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="3,45" node-id="429" stroke="none" target-height="162.75002" target-width="119.73001" target-x="323.78" target-y="198.79"></path><path d="M 376.33 198.79 C 343.27 198.79 316.47 225.71 316.47 258.91 C 316.47 306.03 365.80 361.02 376.33 361.02 C 386.94 359.23 436.19 308.98 436.19 258.91 C 436.20 225.71 409.39 198.79 376.33 198.79 Z M 376.12 299.25 C 353.93 299.25 335.94 281.26 335.94 259.07 C 335.94 236.88 353.93 218.89 376.12 218.89 C 398.31 218.89 416.30 236.88 416.30 259.07 C 416.30 281.26 398.31 299.25 376.12 299.25 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="3,45" node-id="431" stroke="none" target-height="162.23003" target-width="119.73001" target-x="316.47" target-y="198.79"></path></g><g node-id="508"><path d="M 465.18 525.94 C 465.18 525.94 465.23 527.22 461.31 529.07 C 463.44 531.91 467.88 533.26 467.88 533.26 L 471.16 527.99 L 465.18 525.94 Z" fill="#ffbe92" fill-rule="nonzero" group-id="3,46" node-id="435" stroke="none" target-height="7.3200073" target-width="9.850006" target-x="461.31" target-y="525.94"></path><path d="M 467.45 537.47 L 450.71 527.33 C 450.71 527.33 452.90 521.79 459.37 525.99 C 460.68 526.84 462.69 526.01 463.76 526.71 C 464.89 530.50 469.48 532.77 469.48 532.77 L 467.45 537.47 Z" fill="#f8b62d" fill-rule="nonzero" group-id="3,46" node-id="437" stroke="none" target-height="15.679993" target-width="18.77002" target-x="450.71" target-y="521.79"></path><path d="M 467.12 538.77 L 459.35 534.96 L 459.89 533.45 L 450.06 528.33 L 450.56 527.08 L 468.31 536.09 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="3,46" node-id="439" stroke="none" target-height="11.690002" target-width="18.25003" target-x="450.06" target-y="527.08"></path><path d="M 500.40 527.83 C 500.40 527.83 502.31 528.43 501.27 532.66 C 504.81 532.79 507.75 530.35 507.75 530.35 L 505.75 524.46 L 500.40 527.83 Z" fill="#ffbe92" fill-rule="nonzero" group-id="3,46" node-id="441" stroke="none" target-height="8.329956" target-width="7.350006" target-x="500.4" target-y="524.46"></path><path d="M 510.73 533.34 L 492.35 540.00 C 492.35 540.00 489.46 534.80 496.78 532.40 C 498.26 531.92 498.89 529.82 500.11 529.43 C 503.75 530.94 508.40 528.79 508.40 528.79 L 510.73 533.34 Z" fill="#f8b62d" fill-rule="nonzero" group-id="3,46" node-id="443" stroke="none" target-height="11.210022" target-width="21.269989" target-x="489.46" target-y="528.79"></path><path d="M 511.53 534.41 L 503.69 538.07 L 502.86 536.69 L 492.71 541.13 L 492.06 539.95 L 510.22 531.80 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="3,46" node-id="445" stroke="none" target-height="9.330017" target-width="19.46997" target-x="492.06003" target-y="531.8"></path><path d="M 476.05 477.61 C 476.05 477.61 472.94 492.52 471.79 500.86 C 470.63 509.20 464.46 526.60 464.46 526.60 L 469.58 530.89 C 469.58 530.89 480.53 510.86 481.21 508.43 C 481.89 506.00 487.21 500.09 487.21 500.09 L 492.90 477.29 L 476.05 477.61 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="3,46" node-id="447" stroke="none" target-height="53.600006" target-width="28.440002" target-x="464.46" target-y="477.29"></path><path d="M 475.21 477.00 C 475.21 477.00 476.54 488.17 482.49 498.00 C 488.44 507.83 501.24 529.21 501.24 529.21 L 507.27 527.91 C 507.27 527.91 500.90 508.20 497.27 500.74 C 493.64 493.29 494.74 488.81 494.95 486.83 C 495.16 484.84 497.16 482.36 494.74 476.84 C 492.32 471.31 475.21 477.00 475.21 477.00 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="3,46" node-id="449" stroke="none" target-height="57.900024" target-width="32.060028" target-x="475.20996" target-y="471.31"></path><path d="M 481.78 423.59 C 481.78 423.59 479.03 427.20 480.95 432.92 C 481.44 434.02 482.38 435.92 484.99 434.49 C 485.22 434.44 485.37 434.77 485.42 435.07 C 485.47 435.37 486.18 440.65 486.18 440.65 L 493.68 440.70 C 493.68 440.70 490.22 427.64 490.28 425.08 C 490.31 423.76 488.91 421.45 486.12 421.32 C 483.35 421.19 481.78 423.59 481.78 423.59 Z" fill="#ffbe92" fill-rule="nonzero" group-id="3,46" node-id="451" stroke="none" target-height="19.51001" target-width="14.649994" target-x="479.03" target-y="421.19"></path><path d="M 483.41 418.20 C 483.41 418.20 482.65 416.76 480.55 417.81 C 478.45 418.85 479.45 420.71 479.53 421.17 C 479.60 421.63 479.31 421.99 478.69 421.74 C 478.07 421.49 476.97 421.31 476.20 422.72 C 475.44 424.13 477.05 427.87 479.51 427.50 C 481.96 427.13 483.19 425.87 484.08 424.98 C 484.97 424.09 486.67 423.02 486.92 424.08 C 487.17 425.14 487.10 427.35 487.59 427.02 C 488.05 426.71 487.78 424.44 489.15 424.44 C 490.52 424.44 490.41 426.40 489.52 427.45 C 489.14 427.90 489.16 427.82 489.29 428.27 C 489.42 428.73 489.39 429.04 489.88 429.58 C 490.38 430.13 490.58 430.42 490.99 429.63 C 491.40 428.84 492.16 427.33 491.76 424.13 C 491.59 423.23 491.88 423.18 492.34 422.67 C 492.81 422.16 493.48 421.37 492.80 420.22 C 492.12 419.07 491.47 419.21 490.62 419.25 C 489.77 419.29 489.81 418.98 489.80 418.47 C 489.79 417.96 489.17 416.02 487.49 416.05 C 485.81 416.08 485.08 417.04 484.65 417.84 C 484.22 418.64 483.68 418.47 483.41 418.20 Z" fill="#171c61" fill-rule="nonzero" group-id="3,46" node-id="453" stroke="none" target-height="14.400024" target-width="18.040009" target-x="475.44" target-y="416.02"></path><path d="M 495.43 451.70 C 495.43 451.70 496.45 435.29 491.22 435.70 C 485.99 436.11 480.09 436.45 476.96 450.58 C 475.91 455.93 476.09 464.15 475.32 468.38 C 474.55 472.61 472.13 477.35 474.21 479.11 C 476.28 480.87 488.62 481.95 491.90 481.73 C 495.18 481.51 497.56 481.66 497.59 477.02 C 497.63 472.38 495.15 460.49 495.43 451.70 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="3,46" node-id="455" stroke="none" target-height="46.660034" target-width="25.50003" target-x="472.12997" target-y="435.28998"></path><path d="M 465.17 442.20 C 465.08 441.97 462.95 434.35 462.58 433.03 C 462.55 432.92 462.61 432.81 462.71 432.77 C 463.03 432.66 463.67 432.44 463.98 432.34 C 464.08 432.31 464.18 432.37 464.21 432.48 L 466.74 441.54 L 466.85 442.57 L 465.17 442.20 Z" fill="#171c61" fill-rule="nonzero" group-id="3,46" node-id="457" stroke="none" target-height="10.26001" target-width="4.3000183" target-x="462.55" target-y="432.31"></path><path d="M 481.46 445.40 C 481.46 445.40 478.23 449.68 477.50 450.91 C 476.77 452.15 475.72 451.64 475.16 451.04 C 474.40 450.21 469.84 445.91 469.29 445.37 C 468.74 444.83 468.68 444.78 468.61 444.03 C 468.53 443.28 467.78 441.12 467.20 439.95 C 466.62 438.77 466.62 437.74 466.14 438.50 C 465.65 439.26 466.14 440.65 466.12 441.04 C 466.10 441.44 465.13 441.41 464.80 440.61 C 464.47 439.81 464.47 439.88 464.51 439.10 C 464.56 438.32 464.21 437.38 463.48 438.11 C 462.75 438.84 462.15 442.31 462.87 443.82 C 463.59 445.33 464.34 445.68 465.11 446.03 C 465.88 446.38 466.28 447.16 466.99 448.38 C 467.70 449.60 472.84 457.19 473.50 457.95 C 474.24 458.80 475.01 459.15 476.96 458.35 C 478.72 457.62 482.63 455.50 486.15 451.06 C 484.31 448.51 481.46 445.40 481.46 445.40 Z" fill="#ffbe92" fill-rule="nonzero" group-id="3,46" node-id="459" stroke="none" target-height="21.769989" target-width="24" target-x="462.15" target-y="437.38"></path><path d="M 479.50 446.41 L 485.35 454.11 C 485.35 454.11 494.52 446.84 489.65 441.71 C 484.78 436.58 479.50 446.41 479.50 446.41 Z" fill="url(#SVGID_29_)" fill-rule="nonzero" group-id="3,46" node-id="461" stroke="none" target-height="17.53003" target-width="15.019989" target-x="479.5" target-y="436.58"></path></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="237"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="41" spreadMethod="pad" x1="256.5107" x2="256.5107" y1="422.0669" y2="325.2787"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="45" spreadMethod="pad" x1="191.8937" x2="191.8937" y1="480.0588" y2="263.5698"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="49" spreadMethod="pad" x1="567.6753" x2="567.6753" y1="437.3799" y2="280.8992"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="53" spreadMethod="pad" x1="630.2001" x2="630.2001" y1="460.0499" y2="290.3093"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="57" spreadMethod="pad" x1="121.4876" x2="121.4876" y1="502.1284" y2="351.6151"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="61" spreadMethod="pad" x1="684.1608" x2="684.1608" y1="485.523" y2="362.3908"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="65" spreadMethod="pad" x1="127.4512" x2="127.4512" y1="229.8212" y2="165.2799"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="69" spreadMethod="pad" x1="644.5197" x2="644.5197" y1="193.0007" y2="128.4595"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="73" spreadMethod="pad" x1="514.7488" x2="514.7488" y1="236.1742" y2="189.457"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="77" spreadMethod="pad" x1="400.9661" x2="400.9661" y1="751.699" y2="399.5701"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="83" spreadMethod="pad" x1="191.8956" x2="140.4594" y1="575.1548" y2="513.8555"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="87" spreadMethod="pad" x1="112.8478" x2="177.0346" y1="454.8645" y2="454.8645"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="93" spreadMethod="pad" x1="710.7578" x2="663.3923" y1="555.1823" y2="498.7343"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="97" spreadMethod="pad" x1="637.9659" x2="697.0729" y1="444.412" y2="444.412"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="103" spreadMethod="pad" x1="252.0951" x2="226.6538" y1="456.0115" y2="425.6917"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="107" spreadMethod="pad" x1="212.9966" x2="244.7446" y1="396.5137" y2="396.5137"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="113" spreadMethod="pad" x1="514.0807" x2="447.1352" y1="688.3334" y2="454.8667"><stop offset="0.0938" stop-color="#ffffff"></stop><stop offset="0.9362" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="117" spreadMethod="pad" x1="258.384" x2="550.8012" y1="387.1277" y2="387.1277"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="121" spreadMethod="pad" x1="269.8687" x2="539.5374" y1="217.0295" y2="217.0295"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="125" spreadMethod="pad" x1="252.3104" x2="557.7582" y1="261.735" y2="261.735"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="129" spreadMethod="pad" x1="248.3349" x2="561.0712" y1="249.8086" y2="249.8086"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="134" spreadMethod="pad" x1="286.8503" x2="378.3595" y1="398.2074" y2="398.2074"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="140" spreadMethod="pad" x1="250.5803" x2="559.3411" y1="505.508" y2="505.508"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="144" spreadMethod="pad" x1="430.3595" x2="524.1509" y1="456.7718" y2="456.7718"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="148" spreadMethod="pad" x1="430.3595" x2="524.1509" y1="387.2013" y2="387.2013"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="158" spreadMethod="pad" x1="277.476" x2="328.7153" y1="363.7169" y2="363.7169"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="162" spreadMethod="pad" x1="226.384" x2="277.6233" y1="363.7169" y2="363.7169"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="166" spreadMethod="pad" x1="379.7337" x2="430.973" y1="363.7169" y2="363.7169"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_29_" node-id="170" spreadMethod="pad" x1="328.6417" x2="379.881" y1="363.7169" y2="363.7169"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_30_" node-id="174" spreadMethod="pad" x1="481.9178" x2="533.157" y1="363.7169" y2="363.7169"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_31_" node-id="178" spreadMethod="pad" x1="532.7153" x2="583.9546" y1="363.7169" y2="363.7169"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_32_" node-id="182" spreadMethod="pad" x1="430.8257" x2="482.065" y1="363.7169" y2="363.7169"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#9fb7ce"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_33_" node-id="186" spreadMethod="pad" x1="226.384" x2="310.9484" y1="315.2752" y2="315.2752"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_34_" node-id="190" spreadMethod="pad" x1="277.6233" x2="348.4944" y1="315.2752" y2="315.2752"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_35_" node-id="194" spreadMethod="pad" x1="328.6417" x2="385.7092" y1="315.2752" y2="315.2752"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_36_" node-id="198" spreadMethod="pad" x1="379.881" x2="430.8257" y1="315.2752" y2="315.2752"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_37_" node-id="202" spreadMethod="pad" x1="424.3595" x2="482.065" y1="315.2752" y2="315.2752"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_38_" node-id="206" spreadMethod="pad" x1="460.9116" x2="533.157" y1="315.2871" y2="315.2871"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_39_" node-id="210" spreadMethod="pad" x1="499.6724" x2="583.9546" y1="315.3705" y2="315.3705"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_40_" node-id="216" spreadMethod="pad" x1="331.4756" x2="331.4756" y1="392.8622" y2="376.8446"><stop offset="0.3408" stop-color="#f4ae7f"></stop><stop offset="1" stop-color="#ffbe92"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_41_" node-id="222" spreadMethod="pad" x1="333.4719" x2="333.4719" y1="441.5694" y2="425.4388"><stop offset="0" stop-color="#53a6f1"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_42_" node-id="226" spreadMethod="pad" x1="332.4627" x2="332.4627" y1="432.3365" y2="390.4594"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="696"><g node-id="703"><path d="M 270.97 328.68 L 270.97 325.27 L 241.47 325.27 L 241.47 329.23 L 234.99 329.23 L 234.99 422.06 L 278.04 422.06 L 278.04 328.68 L 270.97 328.68 Z M 274.31 411.42 L 238.27 411.42 L 238.27 408.67 L 274.31 408.67 L 274.31 411.42 Z M 274.31 398.75 L 238.27 398.75 L 238.27 396.00 L 274.31 396.00 L 274.31 398.75 Z M 274.31 386.07 L 238.27 386.07 L 238.27 383.32 L 274.31 383.32 L 274.31 386.07 Z M 274.31 373.73 L 238.27 373.73 L 238.27 370.98 L 274.31 370.98 L 274.31 373.73 Z M 274.31 361.41 L 238.27 361.41 L 238.27 358.66 L 274.31 358.66 L 274.31 361.41 Z M 274.31 348.74 L 238.27 348.74 L 238.27 345.99 L 274.31 345.99 L 274.31 348.74 Z M 274.31 336.39 L 238.27 336.39 L 238.27 333.64 L 274.31 333.64 L 274.31 336.39 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="36,43" node-id="529" stroke="none" target-height="96.79001" target-width="43.050003" target-x="234.99" target-y="325.27"></path><path d="M 212.98 380.50 L 212.98 272.31 L 180.23 272.31 L 180.23 263.57 L 166.37 263.57 L 166.37 316.90 L 162.64 316.90 L 162.64 480.06 L 221.15 480.06 L 221.15 380.50 L 212.98 380.50 Z M 188.49 412.30 L 180.23 412.30 L 180.23 404.29 L 188.49 404.29 L 188.49 412.30 Z M 188.49 399.78 L 180.23 399.78 L 180.23 391.77 L 188.49 391.77 L 188.49 399.78 Z M 188.49 387.30 L 180.23 387.30 L 180.23 379.29 L 188.49 379.29 L 188.49 387.30 Z M 188.49 374.86 L 180.23 374.86 L 180.23 366.85 L 188.49 366.85 L 188.49 374.86 Z M 188.49 362.33 L 180.23 362.33 L 180.23 354.32 L 188.49 354.32 L 188.49 362.33 Z M 188.49 337.33 L 180.23 337.33 L 180.23 329.32 L 188.49 329.32 L 188.49 337.33 Z M 188.49 324.80 L 180.23 324.80 L 180.23 316.79 L 188.49 316.79 L 188.49 324.80 Z M 188.49 312.33 L 180.23 312.33 L 180.23 304.32 L 188.49 304.32 L 188.49 312.33 Z M 188.49 299.89 L 180.23 299.89 L 180.23 291.88 L 188.49 291.88 L 188.49 299.89 Z M 188.49 287.36 L 180.23 287.36 L 180.23 279.35 L 188.49 279.35 L 188.49 287.36 Z M 200.84 412.30 L 192.58 412.30 L 192.58 404.29 L 200.84 404.29 L 200.84 412.30 Z M 200.84 399.78 L 192.58 399.78 L 192.58 391.77 L 200.84 391.77 L 200.84 399.78 Z M 200.84 387.30 L 192.58 387.30 L 192.58 379.29 L 200.84 379.29 L 200.84 387.30 Z M 200.84 374.86 L 192.58 374.86 L 192.58 366.85 L 200.84 366.85 L 200.84 374.86 Z M 200.84 362.33 L 192.58 362.33 L 192.58 354.32 L 200.84 354.32 L 200.84 362.33 Z M 200.84 337.33 L 192.58 337.33 L 192.58 329.32 L 200.84 329.32 L 200.84 337.33 Z M 200.84 324.80 L 192.58 324.80 L 192.58 316.79 L 200.84 316.79 L 200.84 324.80 Z M 200.84 312.33 L 192.58 312.33 L 192.58 304.32 L 200.84 304.32 L 200.84 312.33 Z M 200.84 299.89 L 192.58 299.89 L 192.58 291.88 L 200.84 291.88 L 200.84 299.89 Z M 200.84 287.36 L 192.58 287.36 L 192.58 279.35 L 200.84 279.35 L 200.84 287.36 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="36,43" node-id="531" stroke="none" target-height="216.48999" target-width="58.51001" target-x="162.64" target-y="263.57"></path><path d="M 535.29 437.38 C 535.65 432.73 535.29 280.90 535.29 280.90 L 553.82 280.90 L 553.82 314.61 L 583.32 314.61 L 583.32 385.06 L 600.05 385.06 L 600.05 437.38 L 535.29 437.38 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="36,43" node-id="533" stroke="none" target-height="156.48001" target-width="64.76001" target-x="535.29" target-y="280.9"></path><path d="M 656.51 369.23 L 656.51 364.38 L 651.51 364.38 L 651.51 322.05 L 639.31 322.05 L 639.31 317.35 L 631.08 317.35 L 631.08 310.44 L 626.79 310.44 L 626.79 290.30 L 623.70 290.30 L 623.70 310.58 L 619.76 310.58 L 619.76 317.49 L 607.56 317.49 L 607.56 328.81 L 600.51 328.81 L 600.51 460.04 L 659.89 460.04 L 659.89 369.22 L 656.51 369.22 Z M 611.00 422.02 L 606.98 422.02 L 606.98 406.78 L 611.00 406.78 L 611.00 422.02 Z M 611.00 403.37 L 606.98 403.37 L 606.98 388.13 L 611.00 388.13 L 611.00 403.37 Z M 611.00 384.72 L 606.98 384.72 L 606.98 369.48 L 611.00 369.48 L 611.00 384.72 Z M 611.00 365.73 L 606.98 365.73 L 606.98 350.50 L 611.00 350.50 L 611.00 365.73 Z M 611.00 346.75 L 606.98 346.75 L 606.98 331.51 L 611.00 331.51 L 611.00 346.75 Z M 619.28 422.02 L 615.26 422.02 L 615.26 406.78 L 619.28 406.78 L 619.28 422.02 Z M 619.28 403.37 L 615.26 403.37 L 615.26 388.13 L 619.28 388.13 L 619.28 403.37 Z M 619.28 384.72 L 615.26 384.72 L 615.26 369.48 L 619.28 369.48 L 619.28 384.72 Z M 619.28 365.73 L 615.26 365.73 L 615.26 350.50 L 619.28 350.50 L 619.28 365.73 Z M 619.28 346.75 L 615.26 346.75 L 615.26 331.51 L 619.28 331.51 L 619.28 346.75 Z M 627.55 422.02 L 623.53 422.02 L 623.53 406.78 L 627.55 406.78 L 627.55 422.02 Z M 627.55 403.37 L 623.53 403.37 L 623.53 388.13 L 627.55 388.13 L 627.55 403.37 Z M 627.55 384.72 L 623.53 384.72 L 623.53 369.48 L 627.55 369.48 L 627.55 384.72 Z M 627.55 365.73 L 623.53 365.73 L 623.53 350.50 L 627.55 350.50 L 627.55 365.73 Z M 627.55 346.75 L 623.53 346.75 L 623.53 331.51 L 627.55 331.51 L 627.55 346.75 Z M 635.83 422.02 L 631.81 422.02 L 631.81 406.78 L 635.83 406.78 L 635.83 422.02 Z M 635.83 403.37 L 631.81 403.37 L 631.81 388.13 L 635.83 388.13 L 635.83 403.37 Z M 635.83 384.72 L 631.81 384.72 L 631.81 369.48 L 635.83 369.48 L 635.83 384.72 Z M 635.83 365.73 L 631.81 365.73 L 631.81 350.50 L 635.83 350.50 L 635.83 365.73 Z M 635.83 346.75 L 631.81 346.75 L 631.81 331.51 L 635.83 331.51 L 635.83 346.75 Z M 644.11 422.02 L 640.09 422.02 L 640.09 406.78 L 644.11 406.78 L 644.11 422.02 Z M 644.11 403.37 L 640.09 403.37 L 640.09 388.13 L 644.11 388.13 L 644.11 403.37 Z M 644.11 384.72 L 640.09 384.72 L 640.09 369.48 L 644.11 369.48 L 644.11 384.72 Z M 644.11 365.73 L 640.09 365.73 L 640.09 350.50 L 644.11 350.50 L 644.11 365.73 Z M 644.11 346.75 L 640.09 346.75 L 640.09 331.51 L 644.11 331.51 L 644.11 346.75 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="36,43" node-id="535" stroke="none" target-height="169.74005" target-width="59.380005" target-x="600.51" target-y="290.3"></path><path d="M 94.86 502.13 L 94.86 412.58 L 105.12 412.58 L 105.12 366.89 L 140.38 351.62 L 140.38 411.86 L 148.11 411.86 L 148.11 502.13 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="36,43" node-id="537" stroke="none" target-height="150.50998" target-width="53.25" target-x="94.86" target-y="351.62003"></path><path d="M 699.63 485.52 L 668.69 485.52 L 668.69 362.39 L 699.63 377.36 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="36,43" node-id="539" stroke="none" target-height="123.130005" target-width="30.940002" target-x="668.69" target-y="362.38998"></path><path d="M 89.68 188.71 C 89.68 188.71 99.02 163.23 121.98 173.23 C 127.28 167.85 133.84 163.94 142.71 165.70 C 151.58 167.47 157.30 174.11 159.24 178.53 C 162.02 178.40 184.28 179.14 184.28 202.23 C 184.28 225.32 157.34 224.88 155.39 223.05 C 152.99 225.19 141.45 236.80 127.45 223.55 C 124.42 226.14 114.52 237.11 98.87 221.97 C 91.62 225.00 74.39 227.33 71.05 209.54 C 67.71 191.75 84.84 186.74 89.68 188.71 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="36,43" node-id="541" stroke="none" target-height="73.880005" target-width="116.57" target-x="67.71" target-y="163.23"></path><path d="M 606.75 151.89 C 606.75 151.89 616.09 126.41 639.05 136.41 C 644.35 131.03 650.91 127.12 659.78 128.88 C 668.65 130.65 674.37 137.29 676.31 141.71 C 679.09 141.58 701.35 142.32 701.35 165.41 C 701.35 188.50 674.41 188.06 672.46 186.23 C 670.06 188.37 658.52 199.98 644.52 186.73 C 641.49 189.32 631.59 200.29 615.94 185.15 C 608.69 188.18 591.46 190.51 588.12 172.72 C 584.78 154.94 601.91 149.92 606.75 151.89 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="36,43" node-id="543" stroke="none" target-height="73.87999" target-width="116.56995" target-x="584.78" target-y="126.41"></path><path d="M 487.41 206.42 C 487.41 206.42 494.17 187.97 510.79 195.22 C 514.63 191.32 519.37 188.49 525.80 189.77 C 532.22 191.05 536.36 195.86 537.76 199.05 C 539.77 198.96 555.89 199.49 555.89 216.20 C 555.89 232.91 536.39 232.59 534.98 231.27 C 533.24 232.82 524.89 241.22 514.75 231.64 C 512.56 233.51 505.39 241.46 494.07 230.50 C 488.82 232.69 476.35 234.38 473.93 221.50 C 471.50 208.63 483.91 204.99 487.41 206.42 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="36,43" node-id="545" stroke="none" target-height="53.48999" target-width="84.390045" target-x="471.49997" target-y="187.97"></path><path d="M 771.95 575.63 C 771.95 622.32 732.86 667.11 663.29 700.12 C 593.72 733.14 499.36 751.69 400.97 751.69 C 302.58 751.69 208.22 733.14 138.65 700.12 C 69.08 667.11 29.99 622.32 29.99 575.63 C 29.99 528.94 69.08 484.15 138.65 451.14 C 208.22 418.12 302.58 399.57 400.97 399.57 C 499.36 399.57 593.72 418.12 663.29 451.14 C 732.86 484.15 771.95 528.94 771.95 575.63 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="36,43" node-id="547" stroke="none" target-height="352.12" target-width="741.96" target-x="29.98999" target-y="399.57"></path></g><g node-id="704"><g node-id="707"><path d="M 146.91 554.10 C 146.91 554.10 143.38 559.11 149.28 566.57 C 154.54 573.21 162.85 571.92 165.61 569.79 C 166.46 575.57 173.55 587.75 184.77 580.86 C 195.32 574.39 190.24 564.55 186.87 560.68 C 193.46 558.82 198.37 543.03 183.25 537.58 C 185.49 531.06 185.89 528.11 182.61 522.25 C 179.45 516.61 174.26 515.71 165.98 519.14 L 154.00 524.19 L 146.37 509.95 L 142.29 512.31 L 151.09 525.91 L 139.43 531.76 C 139.43 531.76 129.46 535.66 133.76 546.36 C 137.75 556.28 146.91 554.10 146.91 554.10 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="36,44,47" node-id="553" stroke="none" target-height="77.80002" target-width="68.90999" target-x="129.46" target-y="509.94998"></path><path d="M 126.62 493.39 L 162.68 493.39 C 162.68 493.39 174.33 493.72 176.65 480.41 C 179.20 465.80 168.57 463.79 168.57 463.79 C 168.57 463.79 174.97 460.85 173.58 449.80 C 172.19 438.75 162.46 437.36 158.41 437.87 C 159.07 431.32 160.45 416.49 145.05 416.34 C 130.18 416.19 130.27 431.16 131.38 437.06 C 126.08 437.12 110.07 445.07 121.33 462.51 C 115.20 467.76 112.61 470.79 112.88 478.36 C 113.14 485.93 117.78 493.39 126.62 493.39 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="36,44,47" node-id="555" stroke="none" target-height="77.53" target-width="69.130005" target-x="110.06999" target-y="416.19"></path><path d="M 161.79 473.15 L 146.41 483.27 L 145.99 473.48 L 155.71 462.02 L 145.84 470.01 L 144.56 440.10 L 143.62 470.20 L 133.24 461.94 L 143.52 473.27 L 143.21 483.34 L 127.39 471.71 L 143.09 486.97 L 142.30 512.32 L 147.65 512.32 L 146.57 487.12 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="36,44,47" node-id="557" stroke="none" target-height="72.22" target-width="34.399994" target-x="127.39" target-y="440.1"></path></g><g node-id="708"><path d="M 669.34 535.80 C 669.34 535.80 666.09 540.42 671.52 547.28 C 676.36 553.40 684.02 552.21 686.56 550.24 C 687.34 555.56 693.88 566.77 704.21 560.44 C 713.92 554.48 709.25 545.42 706.14 541.86 C 712.21 540.15 716.73 525.60 702.81 520.59 C 704.88 514.59 705.25 511.87 702.22 506.48 C 699.31 501.29 694.53 500.45 686.91 503.62 L 675.87 508.27 L 668.84 495.16 L 665.09 497.33 L 673.19 509.85 L 662.46 515.24 C 662.46 515.24 653.28 518.83 657.24 528.69 C 660.90 537.80 669.34 535.80 669.34 535.80 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="36,44,48" node-id="562" stroke="none" target-height="71.610016" target-width="63.44995" target-x="653.28" target-y="495.16"></path><path d="M 650.64 479.88 L 683.84 479.88 C 683.84 479.88 694.57 480.19 696.70 467.93 C 699.04 454.48 689.26 452.63 689.26 452.63 C 689.26 452.63 695.16 449.92 693.87 439.75 C 692.58 429.58 683.63 428.29 679.90 428.77 C 680.51 422.74 681.78 409.08 667.60 408.94 C 653.91 408.80 653.99 422.58 655.01 428.02 C 650.13 428.07 635.38 435.39 645.76 451.46 C 640.12 456.29 637.73 459.09 637.98 466.05 C 638.24 473.02 642.51 479.88 650.64 479.88 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="36,44,48" node-id="564" stroke="none" target-height="71.390045" target-width="63.659973" target-x="635.38" target-y="408.79996"></path><path d="M 683.03 461.25 L 668.87 470.57 L 668.49 461.56 L 677.44 451.00 L 668.35 458.36 L 667.17 430.82 L 666.30 458.54 L 656.75 450.93 L 666.21 461.36 L 665.92 470.63 L 651.36 459.93 L 665.82 473.98 L 665.08 497.32 L 670.02 497.32 L 669.02 474.12 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="36,44,48" node-id="566" stroke="none" target-height="66.49997" target-width="31.670044" target-x="651.36" target-y="430.82004"></path></g><g node-id="709"><path d="M 229.85 445.60 C 229.85 445.60 228.10 448.08 231.02 451.77 C 233.62 455.06 237.73 454.42 239.10 453.36 C 239.52 456.22 243.03 462.24 248.58 458.84 C 253.80 455.64 251.29 450.77 249.62 448.86 C 252.88 447.94 255.31 440.13 247.83 437.44 C 248.94 434.22 249.14 432.76 247.51 429.86 C 245.95 427.07 243.38 426.62 239.29 428.32 L 233.36 430.82 L 229.59 423.78 L 227.57 424.95 L 231.92 431.67 L 226.15 434.56 C 226.15 434.56 221.22 436.49 223.35 441.78 C 225.32 446.68 229.85 445.60 229.85 445.60 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="36,44,49" node-id="571" stroke="none" target-height="38.460022" target-width="34.08998" target-x="221.22" target-y="423.77997"></path><path d="M 219.81 415.57 L 237.64 415.57 C 237.64 415.57 243.40 415.73 244.55 409.15 C 245.81 401.92 240.55 400.93 240.55 400.93 C 240.55 400.93 243.72 399.47 243.03 394.01 C 242.34 388.55 237.53 387.86 235.53 388.11 C 235.86 384.87 236.54 377.53 228.92 377.46 C 221.56 377.39 221.61 384.79 222.16 387.71 C 219.54 387.74 211.62 391.67 217.19 400.30 C 214.16 402.89 212.87 404.40 213.01 408.14 C 213.14 411.88 215.44 415.57 219.81 415.57 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="36,44,49" node-id="573" stroke="none" target-height="38.339996" target-width="34.189987" target-x="211.62001" target-y="377.38998"></path><path d="M 237.20 405.56 L 229.60 410.56 L 229.39 405.72 L 234.20 400.05 L 229.32 404.00 L 228.68 389.21 L 228.22 404.10 L 223.08 400.01 L 228.17 405.62 L 228.01 410.60 L 220.19 404.85 L 227.96 412.39 L 227.56 424.93 L 230.21 424.93 L 229.68 412.47 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="36,44,49" node-id="575" stroke="none" target-height="35.71997" target-width="17.009995" target-x="220.19" target-y="389.21"></path></g></g><g node-id="705"><path d="M 542.48 504.99 L 559.11 510.74 L 710.33 632.06 L 385.00 718.86 L 250.89 511.14 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="36,45" node-id="581" stroke="none" target-height="213.87" target-width="459.44" target-x="250.89" target-y="504.99"></path><path d="M 258.38 268.08 L 550.80 268.08 L 550.80 506.17 L 258.38 506.17 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="36,45" node-id="583" stroke="none" target-height="238.09003" target-width="292.42004" target-x="258.38" target-y="268.08"></path><path d="M 269.87 190.05 L 539.54 190.05 L 539.54 244.01 L 269.87 244.01 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="36,45" node-id="585" stroke="none" target-height="53.960007" target-width="269.67004" target-x="269.87" target-y="190.05"></path><path d="M 555.16 276.37 L 254.91 276.37 C 253.48 276.37 252.31 275.21 252.31 273.77 L 252.31 249.70 C 252.31 248.27 253.47 247.10 254.91 247.10 L 555.17 247.10 C 556.60 247.10 557.77 248.26 557.77 249.70 L 557.77 273.77 C 557.76 275.21 556.60 276.37 555.16 276.37 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="36,45" node-id="587" stroke="none" target-height="29.269989" target-width="305.46002" target-x="252.31" target-y="247.1"></path><path d="M 248.33 242.80 L 561.07 242.80 L 561.07 256.82 L 248.33 256.82 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="36,45" node-id="589" stroke="none" target-height="14.020004" target-width="312.74" target-x="248.33" target-y="242.8"></path><path d="M 274.81 342.00 L 390.39 342.00 L 390.39 452.06 L 274.81 452.06 Z" fill="#a3b9d1" fill-rule="nonzero" group-id="36,45" node-id="591" stroke="none" target-height="110.06" target-width="115.58002" target-x="274.81" target-y="342"></path><path d="M 286.85 352.75 L 378.36 352.75 L 378.36 443.67 L 286.85 443.67 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="36,45" node-id="593" stroke="none" target-height="90.91995" target-width="91.51001" target-x="286.85" target-y="352.75003"></path><path d="M 394.06 463.32 L 271.15 463.32 C 270.27 463.32 269.55 462.60 269.55 461.72 L 269.55 443.17 C 269.55 442.29 270.27 441.57 271.15 441.57 L 394.06 441.57 C 394.94 441.57 395.66 442.29 395.66 443.17 L 395.66 461.72 C 395.66 462.61 394.94 463.32 394.06 463.32 Z" fill="#a3b9d1" fill-rule="nonzero" group-id="36,45" node-id="595" stroke="none" target-height="21.75003" target-width="126.110016" target-x="269.55" target-y="441.57"></path><path d="M 418.51 335.89 L 535.57 335.89 L 535.57 499.10 L 418.51 499.10 Z" fill="#a3b9d1" fill-rule="nonzero" group-id="36,45" node-id="597" stroke="none" target-height="163.20999" target-width="117.05997" target-x="418.51004" target-y="335.89"></path><path d="M 556.40 512.80 L 253.53 512.80 C 251.90 512.80 250.59 511.48 250.59 509.86 L 250.59 501.17 C 250.59 499.54 251.91 498.23 253.53 498.23 L 556.40 498.23 C 558.03 498.23 559.34 499.55 559.34 501.17 L 559.34 509.86 C 559.34 511.48 558.02 512.80 556.40 512.80 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="36,45" node-id="599" stroke="none" target-height="14.569977" target-width="308.75003" target-x="250.59" target-y="498.23"></path><path d="M 430.36 430.78 L 524.15 430.78 L 524.15 482.76 L 430.36 482.76 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="36,45" node-id="601" stroke="none" target-height="51.98001" target-width="93.78995" target-x="430.36002" target-y="430.78"></path><path d="M 430.36 359.23 L 524.15 359.23 L 524.15 415.18 L 430.36 415.18 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="36,45" node-id="603" stroke="none" target-height="55.950012" target-width="93.78995" target-x="430.36002" target-y="359.23"></path><g node-id="710"><path d="M 344.54 226.66 L 347.81 222.74 C 349.85 224.62 352.54 225.89 355.04 225.89 C 358.00 225.89 359.58 224.62 359.58 222.62 C 359.58 220.51 357.85 219.85 355.31 218.77 L 351.50 217.16 C 348.62 215.97 345.73 213.66 345.73 209.51 C 345.73 204.86 349.81 201.28 355.57 201.28 C 358.88 201.28 362.18 202.59 364.49 204.93 L 361.61 208.51 C 359.80 207.01 357.92 206.16 355.57 206.16 C 353.07 206.16 351.46 207.28 351.46 209.16 C 351.46 211.20 353.50 211.93 355.92 212.89 L 359.65 214.47 C 363.11 215.89 365.38 218.08 365.38 222.20 C 365.38 226.85 361.50 230.81 354.92 230.81 C 351.11 230.82 347.30 229.32 344.54 226.66 Z" fill="#ffffff" fill-rule="nonzero" group-id="36,45,50" node-id="607" stroke="none" target-height="29.540009" target-width="20.839996" target-x="344.54" target-y="201.28"></path><path d="M 375.14 206.55 L 367.14 206.55 L 367.14 201.82 L 388.90 201.82 L 388.90 206.55 L 380.83 206.55 L 380.83 230.27 L 375.14 230.27 L 375.14 206.55 Z" fill="#ffffff" fill-rule="nonzero" group-id="36,45,50" node-id="609" stroke="none" target-height="28.449997" target-width="21.75998" target-x="367.14" target-y="201.82002"></path><path d="M 390.87 215.94 C 390.87 206.67 396.06 201.29 403.60 201.29 C 411.14 201.29 416.33 206.71 416.33 215.94 C 416.33 225.17 411.14 230.82 403.60 230.82 C 396.06 230.82 390.87 225.16 390.87 215.94 Z M 410.52 215.94 C 410.52 209.83 407.83 206.17 403.60 206.17 C 399.37 206.17 396.68 209.82 396.68 215.94 C 396.68 222.01 399.37 225.90 403.60 225.90 C 407.83 225.90 410.52 222.01 410.52 215.94 Z" fill="#ffffff" fill-rule="nonzero" group-id="36,45,50" node-id="611" stroke="none" target-height="29.530014" target-width="25.460022" target-x="390.86996" target-y="201.29"></path><path d="M 437.35 230.28 L 431.51 219.51 L 427.55 219.51 L 427.55 230.28 L 421.86 230.28 L 421.86 201.83 L 431.78 201.83 C 437.74 201.83 442.47 203.91 442.47 210.44 C 442.47 214.71 440.32 217.36 437.05 218.63 L 443.70 230.28 L 437.35 230.28 Z M 427.55 215.01 L 431.24 215.01 C 434.89 215.01 436.89 213.47 436.89 210.43 C 436.89 207.35 434.89 206.32 431.24 206.32 L 427.55 206.32 L 427.55 215.01 Z" fill="#ffffff" fill-rule="nonzero" group-id="36,45,50" node-id="613" stroke="none" target-height="28.449997" target-width="21.840027" target-x="421.86" target-y="201.83002"></path><path d="M 448.04 201.83 L 465.50 201.83 L 465.50 206.56 L 453.73 206.56 L 453.73 213.14 L 463.73 213.14 L 463.73 217.91 L 453.73 217.91 L 453.73 225.52 L 465.92 225.52 L 465.92 230.29 L 448.04 230.29 L 448.04 201.83 Z" fill="#ffffff" fill-rule="nonzero" group-id="36,45,50" node-id="615" stroke="none" target-height="28.459991" target-width="17.880005" target-x="448.04" target-y="201.83002"></path></g><path d="M 277.48 354.07 L 328.72 354.07 C 328.72 354.07 326.70 373.36 302.40 373.36 C 278.10 373.36 277.48 354.07 277.48 354.07 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="36,45" node-id="618" stroke="none" target-height="19.289978" target-width="51.23999" target-x="277.48" target-y="354.07"></path><path d="M 226.38 354.07 L 277.62 354.07 C 277.62 354.07 275.60 373.36 251.30 373.36 C 227.00 373.36 226.38 354.07 226.38 354.07 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="36,45" node-id="620" stroke="none" target-height="19.289978" target-width="51.23999" target-x="226.38" target-y="354.07"></path><path d="M 379.73 354.07 L 430.97 354.07 C 430.97 354.07 428.95 373.36 404.65 373.36 C 380.35 373.36 379.73 354.07 379.73 354.07 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="36,45" node-id="622" stroke="none" target-height="19.289978" target-width="51.24002" target-x="379.73" target-y="354.07"></path><path d="M 328.64 354.07 L 379.88 354.07 C 379.88 354.07 377.86 373.36 353.56 373.36 C 329.27 373.36 328.64 354.07 328.64 354.07 Z" fill="url(#SVGID_29_)" fill-rule="nonzero" group-id="36,45" node-id="624" stroke="none" target-height="19.289978" target-width="51.23999" target-x="328.64" target-y="354.07"></path><path d="M 481.92 354.07 L 533.16 354.07 C 533.16 354.07 531.14 373.36 506.84 373.36 C 482.54 373.36 481.92 354.07 481.92 354.07 Z" fill="url(#SVGID_30_)" fill-rule="nonzero" group-id="36,45" node-id="626" stroke="none" target-height="19.289978" target-width="51.23996" target-x="481.92" target-y="354.07"></path><path d="M 532.72 354.07 L 583.96 354.07 C 583.96 354.07 581.94 373.36 557.64 373.36 C 533.34 373.36 532.72 354.07 532.72 354.07 Z" fill="url(#SVGID_31_)" fill-rule="nonzero" group-id="36,45" node-id="628" stroke="none" target-height="19.289978" target-width="51.24005" target-x="532.72" target-y="354.07"></path><path d="M 430.83 354.07 L 482.07 354.07 C 482.07 354.07 480.05 373.36 455.75 373.36 C 431.45 373.36 430.83 354.07 430.83 354.07 Z" fill="url(#SVGID_32_)" fill-rule="nonzero" group-id="36,45" node-id="630" stroke="none" target-height="19.289978" target-width="51.24002" target-x="430.83" target-y="354.07"></path><path d="M 273.07 276.48 L 226.38 354.07 L 277.62 354.07 L 310.95 276.57 Z" fill="url(#SVGID_33_)" fill-rule="nonzero" group-id="36,45" node-id="632" stroke="none" target-height="77.59" target-width="84.57001" target-x="226.38" target-y="276.48"></path><path d="M 348.49 276.48 L 328.64 354.07 L 277.62 354.07 L 310.95 276.57 Z" fill="url(#SVGID_34_)" fill-rule="nonzero" group-id="36,45" node-id="634" stroke="none" target-height="77.59" target-width="70.869965" target-x="277.62" target-y="276.48"></path><path d="M 385.71 276.57 L 379.88 354.07 L 328.64 354.07 L 348.49 276.48 Z" fill="url(#SVGID_35_)" fill-rule="nonzero" group-id="36,45" node-id="636" stroke="none" target-height="77.59" target-width="57.069977" target-x="328.64" target-y="276.48"></path><path d="M 424.36 276.48 L 430.83 354.07 L 379.88 354.07 L 385.71 276.57 Z" fill="url(#SVGID_36_)" fill-rule="nonzero" group-id="36,45" node-id="638" stroke="none" target-height="77.59" target-width="50.94998" target-x="379.88" target-y="276.48"></path><path d="M 460.91 276.50 L 482.07 354.07 L 430.83 354.07 L 424.36 276.48 Z" fill="url(#SVGID_37_)" fill-rule="nonzero" group-id="36,45" node-id="640" stroke="none" target-height="77.59" target-width="57.710022" target-x="424.36" target-y="276.48"></path><path d="M 499.67 276.76 L 533.16 354.07 L 482.07 354.07 L 460.91 276.50 Z" fill="url(#SVGID_38_)" fill-rule="nonzero" group-id="36,45" node-id="642" stroke="none" target-height="77.57001" target-width="72.24997" target-x="460.91" target-y="276.5"></path><path d="M 537.00 276.67 L 583.95 354.07 L 533.16 354.07 L 499.67 276.76 Z" fill="url(#SVGID_39_)" fill-rule="nonzero" group-id="36,45" node-id="644" stroke="none" target-height="77.399994" target-width="84.28" target-x="499.67" target-y="276.67"></path></g><g node-id="706"><path d="M 331.48 373.06 C 331.48 373.06 332.50 371.76 333.95 371.90 C 335.50 372.06 335.10 373.04 336.16 373.26 C 337.23 373.48 337.90 373.41 337.61 375.44 C 337.45 376.56 337.58 376.56 337.88 377.08 C 338.06 377.40 339.35 378.48 338.48 379.87 C 337.63 381.23 337.38 380.73 337.60 382.03 C 337.82 383.33 337.32 384.48 336.54 384.88 C 335.78 385.27 335.97 385.97 336.11 386.38 C 336.25 386.77 335.82 388.06 334.53 387.60 C 333.24 387.14 332.10 386.97 331.08 387.42 C 330.06 387.87 325.87 388.12 326.76 386.29 C 327.57 384.61 326.44 384.27 325.68 383.52 C 324.92 382.77 324.30 381.48 324.70 380.20 C 324.93 379.46 325.26 378.67 324.35 377.56 C 323.41 376.42 325.03 373.31 326.09 373.42 C 327.14 373.54 328.60 370.57 331.48 373.06 Z" fill="#171c61" fill-rule="nonzero" group-id="36,46" node-id="649" stroke="none" target-height="17.549988" target-width="15.940002" target-x="323.41" target-y="370.57"></path><path d="M 328.19 378.28 C 327.24 379.27 327.32 379.04 327.10 379.65 C 325.62 378.86 325.56 383.06 326.79 383.16 C 327.13 385.37 328.08 385.99 328.63 386.52 C 328.98 387.74 328.14 392.86 328.14 392.86 L 334.48 392.86 L 334.13 386.38 C 334.13 386.38 335.56 385.93 335.85 383.36 C 337.03 383.49 337.69 378.90 336.08 380.02 C 336.13 378.81 334.28 378.50 334.04 377.09 C 334.01 376.92 333.86 376.80 333.71 376.87 C 333.05 377.16 331.95 377.93 330.84 377.90 C 329.92 377.87 328.84 377.60 328.19 378.28 Z" fill="url(#SVGID_40_)" fill-rule="nonzero" group-id="36,46" node-id="651" stroke="none" target-height="16.060028" target-width="12.130005" target-x="325.56" target-y="376.79996"></path><path d="M 366.76 393.20 C 366.76 393.20 364.70 394.12 364.53 395.41 C 364.13 398.38 357.78 404.31 356.12 404.66 C 354.46 405.01 348.37 396.80 347.76 396.81 C 346.33 398.07 344.15 402.12 344.15 402.12 C 344.15 402.12 352.71 412.73 356.53 410.91 C 360.35 409.09 364.13 403.66 366.62 399.88 C 367.22 398.68 368.09 398.37 368.65 398.23 C 369.21 398.09 372.49 396.72 372.42 393.60 C 372.38 391.72 369.52 393.87 369.17 394.30 C 368.82 394.73 366.95 396.08 367.22 394.06 C 367.42 393.31 367.27 392.91 366.76 393.20 Z" fill="#ffbe92" fill-rule="nonzero" group-id="36,46" node-id="653" stroke="none" target-height="21.00998" target-width="28.340027" target-x="344.14996" target-y="391.72003"></path><path d="M 298.58 395.30 C 298.58 395.30 300.64 396.22 300.81 397.51 C 301.21 400.48 307.56 406.41 309.22 406.76 C 310.88 407.11 316.10 398.41 316.71 398.42 C 318.14 399.68 321.19 404.22 321.19 404.22 C 321.19 404.22 312.35 414.75 308.53 412.94 C 304.71 411.12 301.21 405.77 298.72 401.98 C 298.12 400.78 297.25 400.47 296.69 400.33 C 296.13 400.19 292.85 398.82 292.92 395.70 C 292.96 393.82 295.82 395.97 296.17 396.40 C 296.52 396.83 298.39 398.18 298.12 396.16 C 297.92 395.41 298.08 395.02 298.58 395.30 Z" fill="#ffbe92" fill-rule="nonzero" group-id="36,46" node-id="655" stroke="none" target-height="20.929962" target-width="28.339996" target-x="292.85" target-y="393.82"></path><path d="M 346.02 441.57 C 345.74 436.29 344.79 426.54 343.65 425.44 L 323.75 425.44 C 323.75 425.44 321.28 434.93 320.92 441.53 L 346.02 441.57 Z" fill="url(#SVGID_41_)" fill-rule="nonzero" group-id="36,46" node-id="657" stroke="none" target-height="16.130005" target-width="25.099976" target-x="320.92" target-y="425.44"></path><path d="M 352.42 400.02 L 347.85 407.59 C 347.85 407.59 346.26 405.89 344.89 404.23 C 344.74 406.21 344.94 406.21 345.05 408.27 C 345.16 410.33 348.28 429.99 344.99 431.21 C 341.70 432.44 324.71 432.56 322.20 432.06 C 319.69 431.56 320.18 413.89 321.12 408.71 C 321.57 406.14 321.40 404.60 321.40 404.60 L 318.58 407.69 L 312.49 402.01 C 312.49 402.01 315.68 393.70 320.40 392.07 C 324.75 390.57 328.12 390.73 328.45 390.56 C 328.67 391.35 329.26 392.80 331.39 392.86 C 332.77 392.90 334.10 392.04 334.33 390.46 C 334.86 390.69 338.15 390.54 342.80 391.72 C 347.30 392.86 349.22 397.01 352.42 400.02 Z" fill="url(#SVGID_42_)" fill-rule="nonzero" group-id="36,46" node-id="659" stroke="none" target-height="42.100006" target-width="39.930023" target-x="312.49" target-y="390.46"></path></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="168"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="40" spreadMethod="pad" x1="254.2285" x2="254.2285" y1="423.3921" y2="326.6038"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="44" spreadMethod="pad" x1="189.6115" x2="189.6115" y1="481.384" y2="264.895"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="48" spreadMethod="pad" x1="565.3931" x2="565.3931" y1="438.7051" y2="282.2243"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="52" spreadMethod="pad" x1="627.9179" x2="627.9179" y1="461.3751" y2="291.6344"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="56" spreadMethod="pad" x1="119.2054" x2="119.2054" y1="503.4536" y2="352.9402"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="60" spreadMethod="pad" x1="681.8785" x2="681.8785" y1="486.8482" y2="363.7159"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="64" spreadMethod="pad" x1="125.169" x2="125.169" y1="231.1463" y2="166.605"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="68" spreadMethod="pad" x1="642.2375" x2="642.2375" y1="194.3259" y2="129.7846"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="72" spreadMethod="pad" x1="512.4666" x2="512.4666" y1="237.4993" y2="190.7821"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="76" spreadMethod="pad" x1="398.6839" x2="398.6839" y1="753.0242" y2="400.8953"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="82" spreadMethod="pad" x1="189.6134" x2="138.1772" y1="576.48" y2="515.1807"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="86" spreadMethod="pad" x1="110.5656" x2="174.7524" y1="456.1896" y2="456.1896"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="92" spreadMethod="pad" x1="708.4755" x2="661.1101" y1="556.5074" y2="500.0595"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="96" spreadMethod="pad" x1="635.6838" x2="694.7906" y1="445.7372" y2="445.7372"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="102" spreadMethod="pad" x1="249.8129" x2="224.3716" y1="457.3366" y2="427.0169"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="106" spreadMethod="pad" x1="210.7144" x2="242.4624" y1="397.8389" y2="397.8389"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="112" spreadMethod="pad" x1="572.7738" x2="495.6428" y1="669.0638" y2="457.1481"><stop offset="0.1895" stop-color="#ffffff"></stop><stop offset="0.9362" stop-color="#d4deeb"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="116" spreadMethod="pad" x1="510.3682" x2="510.3682" y1="403.3711" y2="209.3958"><stop offset="0" stop-color="#dfe8f3"></stop><stop offset="1" stop-color="#80a1b7"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="120" spreadMethod="pad" x1="347.2382" x2="673.4982" y1="295.3738" y2="295.3738"><stop offset="0.0000002877006" stop-color="#e0e8f2"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="124" spreadMethod="pad" x1="267.7328" x2="673.4982" y1="246.7374" y2="246.7374"><stop offset="0.0000002877006" stop-color="#e0e8f2"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="128" spreadMethod="pad" x1="420.5255" x2="420.5255" y1="494.3586" y2="305.7238"><stop offset="0" stop-color="#d5e0ee"></stop><stop offset="1" stop-color="#f5f9fa"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="133" spreadMethod="pad" x1="299.746" x2="364.394" y1="373.804" y2="373.804"><stop offset="0.2247" stop-color="#d0ddea"></stop><stop offset="1" stop-color="#a0b8cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="143" spreadMethod="pad" x1="45.7296" x2="95.1154" y1="176.6602" y2="176.6602"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="149" spreadMethod="pad" x1="329.5606" x2="353.9365" y1="398.6796" y2="356.4592"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="153" spreadMethod="pad" x1="368.9024" x2="338.2419" y1="343.8551" y2="347.1584"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient></defs><g node-id="486"><g node-id="494"><path d="M 268.69 330.01 L 268.69 326.60 L 239.19 326.60 L 239.19 330.56 L 232.71 330.56 L 232.71 423.39 L 275.76 423.39 L 275.76 330.01 L 268.69 330.01 Z M 272.03 412.75 L 235.99 412.75 L 235.99 410.00 L 272.03 410.00 L 272.03 412.75 Z M 272.03 400.07 L 235.99 400.07 L 235.99 397.32 L 272.03 397.32 L 272.03 400.07 Z M 272.03 387.39 L 235.99 387.39 L 235.99 384.64 L 272.03 384.64 L 272.03 387.39 Z M 272.03 375.05 L 235.99 375.05 L 235.99 372.30 L 272.03 372.30 L 272.03 375.05 Z M 272.03 362.74 L 235.99 362.74 L 235.99 359.99 L 272.03 359.99 L 272.03 362.74 Z M 272.03 350.06 L 235.99 350.06 L 235.99 347.31 L 272.03 347.31 L 272.03 350.06 Z M 272.03 337.72 L 235.99 337.72 L 235.99 334.97 L 272.03 334.97 L 272.03 337.72 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="35,43" node-id="357" stroke="none" target-height="96.79001" target-width="43.050003" target-x="232.71" target-y="326.6"></path><path d="M 210.70 381.82 L 210.70 273.64 L 177.95 273.64 L 177.95 264.90 L 164.09 264.90 L 164.09 318.23 L 160.36 318.23 L 160.36 481.39 L 218.87 481.39 L 218.87 381.83 L 210.70 381.83 Z M 186.20 413.63 L 177.94 413.63 L 177.94 405.62 L 186.20 405.62 L 186.20 413.63 Z M 186.20 401.10 L 177.94 401.10 L 177.94 393.09 L 186.20 393.09 L 186.20 401.10 Z M 186.20 388.63 L 177.94 388.63 L 177.94 380.62 L 186.20 380.62 L 186.20 388.63 Z M 186.20 376.19 L 177.94 376.19 L 177.94 368.18 L 186.20 368.18 L 186.20 376.19 Z M 186.20 363.66 L 177.94 363.66 L 177.94 355.65 L 186.20 355.65 L 186.20 363.66 Z M 186.20 338.66 L 177.94 338.66 L 177.94 330.65 L 186.20 330.65 L 186.20 338.66 Z M 186.20 326.13 L 177.94 326.13 L 177.94 318.12 L 186.20 318.12 L 186.20 326.13 Z M 186.20 313.65 L 177.94 313.65 L 177.94 305.64 L 186.20 305.64 L 186.20 313.65 Z M 186.20 301.22 L 177.94 301.22 L 177.94 293.21 L 186.20 293.21 L 186.20 301.22 Z M 186.20 288.69 L 177.94 288.69 L 177.94 280.68 L 186.20 280.68 L 186.20 288.69 Z M 198.56 413.63 L 190.30 413.63 L 190.30 405.62 L 198.56 405.62 L 198.56 413.63 Z M 198.56 401.10 L 190.30 401.10 L 190.30 393.09 L 198.56 393.09 L 198.56 401.10 Z M 198.56 388.63 L 190.30 388.63 L 190.30 380.62 L 198.56 380.62 L 198.56 388.63 Z M 198.56 376.19 L 190.30 376.19 L 190.30 368.18 L 198.56 368.18 L 198.56 376.19 Z M 198.56 363.66 L 190.30 363.66 L 190.30 355.65 L 198.56 355.65 L 198.56 363.66 Z M 198.56 338.66 L 190.30 338.66 L 190.30 330.65 L 198.56 330.65 L 198.56 338.66 Z M 198.56 326.13 L 190.30 326.13 L 190.30 318.12 L 198.56 318.12 L 198.56 326.13 Z M 198.56 313.65 L 190.30 313.65 L 190.30 305.64 L 198.56 305.64 L 198.56 313.65 Z M 198.56 301.22 L 190.30 301.22 L 190.30 293.21 L 198.56 293.21 L 198.56 301.22 Z M 198.56 288.69 L 190.30 288.69 L 190.30 280.68 L 198.56 280.68 L 198.56 288.69 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="35,43" node-id="359" stroke="none" target-height="216.49002" target-width="58.50998" target-x="160.36" target-y="264.9"></path><path d="M 533.01 438.71 C 533.37 434.06 533.01 282.23 533.01 282.23 L 551.54 282.23 L 551.54 315.94 L 581.04 315.94 L 581.04 386.39 L 597.77 386.39 L 597.77 438.71 L 533.01 438.71 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="35,43" node-id="361" stroke="none" target-height="156.47998" target-width="64.76001" target-x="533.01" target-y="282.23"></path><path d="M 654.23 370.56 L 654.23 365.71 L 649.23 365.71 L 649.23 323.38 L 637.03 323.38 L 637.03 318.68 L 628.80 318.68 L 628.80 311.77 L 624.51 311.77 L 624.51 291.63 L 621.42 291.63 L 621.42 311.91 L 617.48 311.91 L 617.48 318.82 L 605.28 318.82 L 605.28 330.14 L 598.23 330.14 L 598.23 461.37 L 657.61 461.37 L 657.61 370.55 L 654.23 370.55 Z M 608.71 423.34 L 604.69 423.34 L 604.69 408.10 L 608.71 408.10 L 608.71 423.34 Z M 608.71 404.69 L 604.69 404.69 L 604.69 389.45 L 608.71 389.45 L 608.71 404.69 Z M 608.71 386.04 L 604.69 386.04 L 604.69 370.80 L 608.71 370.80 L 608.71 386.04 Z M 608.71 367.06 L 604.69 367.06 L 604.69 351.82 L 608.71 351.82 L 608.71 367.06 Z M 608.71 348.07 L 604.69 348.07 L 604.69 332.83 L 608.71 332.83 L 608.71 348.07 Z M 616.99 423.34 L 612.97 423.34 L 612.97 408.10 L 616.99 408.10 L 616.99 423.34 Z M 616.99 404.69 L 612.97 404.69 L 612.97 389.45 L 616.99 389.45 L 616.99 404.69 Z M 616.99 386.04 L 612.97 386.04 L 612.97 370.80 L 616.99 370.80 L 616.99 386.04 Z M 616.99 367.06 L 612.97 367.06 L 612.97 351.82 L 616.99 351.82 L 616.99 367.06 Z M 616.99 348.07 L 612.97 348.07 L 612.97 332.83 L 616.99 332.83 L 616.99 348.07 Z M 625.27 423.34 L 621.25 423.34 L 621.25 408.10 L 625.27 408.10 L 625.27 423.34 Z M 625.27 404.69 L 621.25 404.69 L 621.25 389.45 L 625.27 389.45 L 625.27 404.69 Z M 625.27 386.04 L 621.25 386.04 L 621.25 370.80 L 625.27 370.80 L 625.27 386.04 Z M 625.27 367.06 L 621.25 367.06 L 621.25 351.82 L 625.27 351.82 L 625.27 367.06 Z M 625.27 348.07 L 621.25 348.07 L 621.25 332.83 L 625.27 332.83 L 625.27 348.07 Z M 633.55 423.34 L 629.53 423.34 L 629.53 408.10 L 633.55 408.10 L 633.55 423.34 Z M 633.55 404.69 L 629.53 404.69 L 629.53 389.45 L 633.55 389.45 L 633.55 404.69 Z M 633.55 386.04 L 629.53 386.04 L 629.53 370.80 L 633.55 370.80 L 633.55 386.04 Z M 633.55 367.06 L 629.53 367.06 L 629.53 351.82 L 633.55 351.82 L 633.55 367.06 Z M 633.55 348.07 L 629.53 348.07 L 629.53 332.83 L 633.55 332.83 L 633.55 348.07 Z M 641.83 423.34 L 637.81 423.34 L 637.81 408.10 L 641.83 408.10 L 641.83 423.34 Z M 641.83 404.69 L 637.81 404.69 L 637.81 389.45 L 641.83 389.45 L 641.83 404.69 Z M 641.83 386.04 L 637.81 386.04 L 637.81 370.80 L 641.83 370.80 L 641.83 386.04 Z M 641.83 367.06 L 637.81 367.06 L 637.81 351.82 L 641.83 351.82 L 641.83 367.06 Z M 641.83 348.07 L 637.81 348.07 L 637.81 332.83 L 641.83 332.83 L 641.83 348.07 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="35,43" node-id="363" stroke="none" target-height="169.73999" target-width="59.380005" target-x="598.23" target-y="291.63"></path><path d="M 92.58 503.45 L 92.58 413.91 L 102.83 413.91 L 102.83 368.21 L 138.10 352.94 L 138.10 413.19 L 145.83 413.19 L 145.83 503.45 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="35,43" node-id="365" stroke="none" target-height="150.51001" target-width="53.25" target-x="92.58" target-y="352.94"></path><path d="M 697.35 486.85 L 666.41 486.85 L 666.41 363.72 L 697.35 378.69 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="35,43" node-id="367" stroke="none" target-height="123.129974" target-width="30.940002" target-x="666.41" target-y="363.72"></path><path d="M 87.40 190.04 C 87.40 190.04 96.74 164.56 119.70 174.56 C 125.00 169.18 131.56 165.27 140.43 167.03 C 149.30 168.79 155.02 175.44 156.96 179.86 C 159.74 179.73 182.00 180.47 182.00 203.56 C 182.00 226.65 155.06 226.21 153.11 224.38 C 150.71 226.52 139.17 238.13 125.17 224.88 C 122.14 227.47 112.24 238.44 96.59 223.30 C 89.34 226.33 72.11 228.66 68.77 210.87 C 65.43 193.09 82.56 188.06 87.40 190.04 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="35,43" node-id="369" stroke="none" target-height="73.880005" target-width="116.57" target-x="65.43" target-y="164.56"></path><path d="M 604.47 153.22 C 604.47 153.22 613.81 127.74 636.77 137.74 C 642.07 132.36 648.63 128.45 657.50 130.21 C 666.37 131.97 672.09 138.62 674.03 143.04 C 676.81 142.91 699.07 143.65 699.07 166.74 C 699.07 189.83 672.13 189.39 670.18 187.56 C 667.78 189.70 656.24 201.31 642.24 188.06 C 639.21 190.65 629.31 201.62 613.66 186.48 C 606.41 189.51 589.18 191.84 585.84 174.05 C 582.49 156.27 599.63 151.24 604.47 153.22 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="35,43" node-id="371" stroke="none" target-height="73.88" target-width="116.579956" target-x="582.49" target-y="127.74"></path><path d="M 485.13 207.74 C 485.13 207.74 491.89 189.29 508.51 196.54 C 512.35 192.64 517.09 189.81 523.52 191.09 C 529.94 192.37 534.08 197.18 535.48 200.37 C 537.49 200.28 553.61 200.81 553.61 217.52 C 553.61 234.23 534.11 233.91 532.70 232.59 C 530.96 234.14 522.61 242.54 512.47 232.96 C 510.28 234.83 503.11 242.78 491.79 231.82 C 486.54 234.01 474.07 235.70 471.65 222.82 C 469.22 209.95 481.63 206.31 485.13 207.74 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="35,43" node-id="373" stroke="none" target-height="53.49002" target-width="84.390015" target-x="469.21997" target-y="189.28998"></path><path d="M 769.66 576.96 C 769.66 623.65 730.57 668.44 661.00 701.45 C 591.43 734.47 497.07 753.02 398.68 753.02 C 300.29 753.02 205.93 734.47 136.36 701.45 C 66.79 668.44 27.70 623.65 27.70 576.96 C 27.70 530.27 66.79 485.48 136.36 452.47 C 205.93 419.45 300.29 400.90 398.68 400.90 C 497.07 400.90 591.43 419.45 661.00 452.47 C 730.57 485.48 769.66 530.27 769.66 576.96 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="35,43" node-id="375" stroke="none" target-height="352.12" target-width="741.9601" target-x="27.699982" target-y="400.90002"></path></g><g node-id="495"><g node-id="498"><path d="M 144.63 555.43 C 144.63 555.43 141.10 560.44 147.00 567.90 C 152.26 574.54 160.57 573.25 163.33 571.12 C 164.18 576.90 171.27 589.08 182.49 582.19 C 193.04 575.72 187.96 565.88 184.59 562.01 C 191.18 560.15 196.09 544.36 180.97 538.91 C 183.21 532.39 183.61 529.44 180.33 523.58 C 177.17 517.94 171.98 517.04 163.70 520.47 L 151.72 525.52 L 144.09 511.28 L 140.01 513.64 L 148.81 527.24 L 137.15 533.09 C 137.15 533.09 127.18 536.99 131.48 547.69 C 135.47 557.60 144.63 555.43 144.63 555.43 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="35,44,47" node-id="381" stroke="none" target-height="77.80002" target-width="68.909996" target-x="127.18" target-y="511.28"></path><path d="M 124.33 494.71 L 160.39 494.71 C 160.39 494.71 172.04 495.04 174.36 481.73 C 176.91 467.12 166.28 465.11 166.28 465.11 C 166.28 465.11 172.68 462.17 171.29 451.12 C 169.90 440.07 160.17 438.68 156.12 439.19 C 156.78 432.64 158.16 417.81 142.76 417.66 C 127.89 417.51 127.98 432.48 129.09 438.38 C 123.79 438.44 107.78 446.39 119.04 463.83 C 112.91 469.08 110.32 472.11 110.59 479.68 C 110.86 487.26 115.50 494.71 124.33 494.71 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="35,44,47" node-id="383" stroke="none" target-height="77.53003" target-width="69.13" target-x="107.78001" target-y="417.50998"></path><path d="M 159.51 474.48 L 144.13 484.60 L 143.71 474.81 L 153.43 463.35 L 143.56 471.33 L 142.28 441.43 L 141.34 471.53 L 130.96 463.27 L 141.24 474.59 L 140.92 484.66 L 125.11 473.04 L 140.81 488.30 L 140.01 513.65 L 145.37 513.65 L 144.29 488.45 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="35,44,47" node-id="385" stroke="none" target-height="72.22006" target-width="34.4" target-x="125.10999" target-y="441.42996"></path></g><g node-id="499"><path d="M 667.05 537.12 C 667.05 537.12 663.80 541.74 669.23 548.60 C 674.07 554.72 681.73 553.53 684.27 551.56 C 685.05 556.88 691.59 568.09 701.92 561.76 C 711.63 555.80 706.96 546.74 703.85 543.18 C 709.92 541.47 714.44 526.92 700.52 521.91 C 702.59 515.91 702.96 513.19 699.93 507.80 C 697.02 502.61 692.24 501.77 684.62 504.94 L 673.58 509.59 L 666.55 496.48 L 662.80 498.65 L 670.90 511.17 L 660.17 516.56 C 660.17 516.56 650.99 520.15 654.95 530.01 C 658.62 539.13 667.05 537.12 667.05 537.12 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="35,44,48" node-id="390" stroke="none" target-height="71.610016" target-width="63.44995" target-x="650.99" target-y="496.48"></path><path d="M 648.36 481.21 L 681.56 481.21 C 681.56 481.21 692.29 481.52 694.42 469.26 C 696.76 455.81 686.98 453.96 686.98 453.96 C 686.98 453.96 692.88 451.25 691.59 441.08 C 690.30 430.91 681.35 429.62 677.62 430.10 C 678.23 424.07 679.50 410.41 665.32 410.27 C 651.63 410.13 651.71 423.91 652.73 429.35 C 647.85 429.40 633.10 436.72 643.48 452.79 C 637.84 457.62 635.45 460.42 635.70 467.38 C 635.96 474.35 640.23 481.21 648.36 481.21 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="35,44,48" node-id="392" stroke="none" target-height="71.38995" target-width="63.660034" target-x="633.1" target-y="410.13004"></path><path d="M 680.75 462.58 L 666.59 471.89 L 666.20 462.88 L 675.16 452.33 L 666.07 459.68 L 664.89 432.14 L 664.02 459.86 L 654.46 452.25 L 663.93 462.68 L 663.64 471.96 L 649.07 461.25 L 663.53 475.30 L 662.80 498.65 L 667.73 498.65 L 666.74 475.44 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="35,44,48" node-id="394" stroke="none" target-height="66.50998" target-width="31.679993" target-x="649.07" target-y="432.14"></path></g><g node-id="500"><path d="M 227.56 446.92 C 227.56 446.92 225.81 449.40 228.73 453.09 C 231.33 456.38 235.44 455.74 236.81 454.68 C 237.23 457.54 240.74 463.56 246.29 460.16 C 251.51 456.96 249.00 452.09 247.33 450.18 C 250.59 449.26 253.02 441.45 245.54 438.76 C 246.65 435.54 246.85 434.08 245.22 431.18 C 243.66 428.39 241.09 427.94 237.00 429.64 L 231.07 432.14 L 227.30 425.10 L 225.28 426.27 L 229.63 432.99 L 223.86 435.88 C 223.86 435.88 218.93 437.81 221.06 443.10 C 223.03 448.00 227.56 446.92 227.56 446.92 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="35,44,49" node-id="399" stroke="none" target-height="38.45999" target-width="34.089996" target-x="218.93" target-y="425.1"></path><path d="M 217.52 416.89 L 235.35 416.89 C 235.35 416.89 241.11 417.05 242.26 410.47 C 243.52 403.24 238.26 402.25 238.26 402.25 C 238.26 402.25 241.43 400.79 240.74 395.33 C 240.05 389.87 235.24 389.18 233.24 389.43 C 233.57 386.19 234.25 378.85 226.63 378.78 C 219.27 378.71 219.32 386.11 219.87 389.03 C 217.25 389.06 209.33 392.99 214.90 401.62 C 211.87 404.21 210.58 405.72 210.72 409.46 C 210.86 413.20 213.15 416.89 217.52 416.89 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="35,44,49" node-id="401" stroke="none" target-height="38.339996" target-width="34.190018" target-x="209.32999" target-y="378.70996"></path><path d="M 234.92 406.88 L 227.31 411.89 L 227.11 407.05 L 231.92 401.38 L 227.03 405.33 L 226.40 390.54 L 225.93 405.42 L 220.80 401.34 L 225.89 406.94 L 225.73 411.92 L 217.91 406.17 L 225.67 413.72 L 225.28 426.26 L 227.93 426.26 L 227.40 413.79 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="35,44,49" node-id="403" stroke="none" target-height="35.72003" target-width="17.009995" target-x="217.91" target-y="390.54"></path></g></g><g node-id="496"><path d="M 507.80 452.72 C 511.46 456.93 693.76 588.99 693.76 588.99 L 495.43 697.21 L 372.19 530.47 L 507.80 452.72 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="35,45" node-id="409" stroke="none" target-height="244.49011" target-width="321.57" target-x="372.19" target-y="452.71997"></path><path d="M 319.54 384.76 L 343.39 499.77 L 625.14 247.26 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="35,45" node-id="411" stroke="none" target-height="252.51" target-width="305.6" target-x="319.54" target-y="247.26"></path><path d="M 448.86 454.99 L 319.54 384.76 L 625.15 247.26 L 458.79 452.80 C 456.25 455.94 452.23 456.82 448.86 454.99 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="35,45" node-id="413" stroke="none" target-height="209.56001" target-width="305.61002" target-x="319.54" target-y="247.26"></path><path d="M 230.42 322.27 L 625.14 247.26 L 319.53 384.76 L 229.28 330.29 C 226.11 328.38 226.88 322.94 230.42 322.27 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="35,45" node-id="415" stroke="none" target-height="137.50002" target-width="399.03003" target-x="226.10999" target-y="247.26"></path><path d="M 296.46 370.90 L 521.69 293.70 L 338.36 395.12 L 343.39 499.77 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="35,45" node-id="417" stroke="none" target-height="206.06998" target-width="225.23001" target-x="296.46" target-y="293.7"></path></g><g node-id="497"><path d="M 299.75 378.75 C 299.75 378.75 330.60 357.62 350.84 361.74 C 362.25 362.55 363.65 365.35 363.65 365.35 C 363.65 365.35 366.52 372.05 361.00 374.85 C 355.48 377.65 346.28 378.16 346.28 378.16 L 347.16 380.15 L 333.76 384.79 C 333.76 384.79 328.53 377.72 320.95 379.56 C 313.37 381.40 302.93 386.39 302.93 386.39 L 299.75 378.75 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="35,46" node-id="422" stroke="none" target-height="28.77002" target-width="66.76999" target-x="299.75" target-y="357.62"></path><path d="M 300.62 374.29 C 300.62 374.29 300.71 375.44 297.24 377.25 C 299.26 379.74 303.31 380.80 303.31 380.80 L 306.09 375.93 L 300.62 374.29 Z" fill="#ffbe92" fill-rule="nonzero" group-id="35,46" node-id="424" stroke="none" target-height="6.5099792" target-width="8.850006" target-x="297.24" target-y="374.29"></path><path d="M 342.71 404.72 C 342.71 404.72 343.73 405.25 343.44 409.16 C 346.62 408.76 349.66 405.88 349.66 405.88 L 346.99 400.95 L 342.71 404.72 Z" fill="#ffbe92" fill-rule="nonzero" group-id="35,46" node-id="426" stroke="none" target-height="8.209991" target-width="6.950012" target-x="342.71" target-y="400.95"></path><path d="M 303.18 385.21 L 287.73 376.64 C 287.73 376.64 289.51 371.57 295.49 375.13 C 296.70 375.85 298.48 375.03 299.47 375.63 C 300.62 379.01 304.84 380.90 304.84 380.90 L 303.18 385.21 Z" fill="#f8b62d" fill-rule="nonzero" group-id="35,46" node-id="428" stroke="none" target-height="13.640015" target-width="17.109985" target-x="287.73" target-y="371.56998"></path><path d="M 302.93 386.39 L 295.80 383.22 L 296.23 381.84 L 287.19 377.56 L 287.59 376.41 L 303.92 383.94 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="35,46" node-id="430" stroke="none" target-height="9.980011" target-width="16.730011" target-x="287.19" target-y="376.41"></path><path d="M 349.79 313.71 C 349.79 313.71 346.66 316.35 347.23 321.77 C 347.45 322.83 347.91 324.69 350.49 323.94 C 350.70 323.94 350.77 324.26 350.76 324.54 C 350.75 324.82 350.33 329.60 350.33 329.60 L 356.93 331.11 C 356.93 331.11 356.44 318.92 357.00 316.68 C 357.28 315.52 356.50 313.21 354.07 312.55 C 351.64 311.89 349.79 313.71 349.79 313.71 Z" fill="#ffbe92" fill-rule="nonzero" group-id="35,46" node-id="432" stroke="none" target-height="19.21997" target-width="10.619995" target-x="346.66" target-y="311.89"></path><path d="M 352.29 309.28 C 352.29 309.28 351.90 307.87 349.84 308.37 C 347.78 308.88 348.30 310.71 348.28 311.13 C 348.25 311.55 347.93 311.81 347.43 311.47 C 346.93 311.13 346.00 310.75 345.05 311.85 C 344.10 312.95 344.79 316.56 347.03 316.72 C 349.26 316.88 350.59 316.01 351.55 315.40 C 352.51 314.79 354.22 314.18 354.23 315.16 C 354.24 316.14 353.75 318.08 354.24 317.89 C 354.70 317.71 354.92 315.66 356.12 315.92 C 357.32 316.18 356.85 317.89 355.85 318.65 C 355.43 318.97 355.46 318.90 355.49 319.33 C 355.52 319.76 355.42 320.03 355.75 320.60 C 356.08 321.18 356.20 321.48 356.71 320.86 C 357.22 320.24 358.19 319.07 358.46 316.17 C 358.49 315.35 358.75 315.35 359.26 315.00 C 359.77 314.65 360.52 314.08 360.15 312.93 C 359.78 311.78 359.17 311.78 358.42 311.65 C 357.67 311.52 357.76 311.25 357.85 310.80 C 357.94 310.35 357.78 308.51 356.29 308.21 C 354.80 307.91 353.97 308.61 353.44 309.23 C 352.91 309.85 352.47 309.56 352.29 309.28 Z" fill="#171c61" fill-rule="nonzero" group-id="35,46" node-id="434" stroke="none" target-height="13.610016" target-width="16.420013" target-x="344.1" target-y="307.87"></path><path d="M 352.49 355.75 C 351.98 355.27 324.91 334.30 318.98 337.29 C 313.05 340.28 299.81 375.06 299.81 375.06 L 305.04 379.07 C 305.04 379.07 319.67 362.58 323.31 351.96 C 326.43 356.41 339.26 363.59 339.26 363.59 L 352.49 355.75 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="35,46" node-id="436" stroke="none" target-height="44.77002" target-width="52.679993" target-x="299.81" target-y="334.3"></path><path d="M 353.00 407.78 L 339.49 416.67 C 339.49 416.67 338.14 416.31 337.36 415.53 C 336.52 414.69 336.29 413.41 337.48 412.88 C 338.68 412.35 340.42 412.95 341.31 410.14 C 341.74 408.80 342.03 407.41 342.82 406.74 C 346.34 407.25 349.93 404.33 349.93 404.33 L 353.00 407.78 Z" fill="#f8b62d" fill-rule="nonzero" group-id="35,46" node-id="438" stroke="none" target-height="12.339996" target-width="16.709991" target-x="336.29" target-y="404.33002"></path><path d="M 353.94 408.55 L 347.90 413.49 L 346.87 412.47 C 346.87 412.47 341.95 416.28 341.26 416.65 C 340.57 417.02 338.34 416.69 337.99 416.50 C 337.64 416.31 337.19 415.32 337.19 415.32 C 337.19 415.32 340.44 415.87 340.98 415.43 C 341.52 414.99 352.21 406.54 352.21 406.54 L 353.94 408.55 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="35,46" node-id="440" stroke="none" target-height="10.47998" target-width="16.75" target-x="337.19" target-y="406.54"></path><path d="M 349.43 359.06 C 349.43 359.06 325.75 361.70 324.15 369.33 C 322.55 376.96 342.35 406.07 342.35 406.07 L 349.45 403.35 C 349.45 403.35 342.99 379.64 338.96 375.06 C 350.43 375.46 366.88 373.36 363.14 362.15 C 362.05 359.90 353.02 358.71 349.43 359.06 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="35,46" node-id="442" stroke="none" target-height="47.360046" target-width="44.330017" target-x="322.55" target-y="358.71"></path><path d="M 363.83 329.36 C 363.83 329.36 361.40 327.93 356.95 326.63 C 355.09 327.79 353.18 329.04 350.59 326.10 C 349.07 326.63 345.38 326.35 344.21 327.10 C 342.34 328.15 337.65 330.91 336.66 332.36 C 337.28 333.56 339.25 339.49 339.68 341.26 C 340.75 340.36 343.61 338.06 343.40 339.70 C 342.97 344.60 343.33 348.72 341.37 352.06 C 338.84 356.38 338.79 356.78 341.77 359.06 C 344.11 360.85 351.48 363.92 354.43 364.16 C 357.89 364.45 363.64 365.69 363.67 361.50 C 363.69 358.92 363.94 350.86 361.98 342.58 C 363.30 342.16 366.77 340.98 368.54 340.49 C 368.25 335.87 364.24 329.79 363.83 329.36 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="35,46" node-id="444" stroke="none" target-height="39.590027" target-width="31.880005" target-x="336.66" target-y="326.1"></path><path d="M 339.38 338.82 L 342.86 347.63 C 342.98 347.94 343.27 348.16 343.60 348.19 L 348.01 348.59 C 348.66 348.65 349.15 348.01 348.92 347.40 L 345.56 338.42 C 345.44 338.09 345.13 337.86 344.78 337.85 L 340.25 337.62 C 339.60 337.58 339.14 338.22 339.38 338.82 Z" fill="#171c61" fill-rule="nonzero" group-id="35,46" node-id="446" stroke="none" target-height="11.070007" target-width="10.009979" target-x="339.14" target-y="337.58"></path><path d="M 337.13 333.32 C 335.54 334.95 333.12 337.05 331.78 336.49 C 329.62 335.59 322.30 333.31 319.82 332.59 C 317.34 331.87 315.73 332.42 313.63 333.64 C 312.16 334.55 310.57 338.30 311.47 339.02 C 312.37 339.74 313.28 337.01 314.81 336.88 C 316.24 336.76 317.22 335.40 317.98 335.82 C 318.74 336.24 323.34 338.64 324.34 339.08 C 325.34 339.52 332.92 343.93 335.06 342.62 C 336.01 342.04 337.71 340.95 339.31 339.92 L 337.13 333.32 Z" fill="#ffbe92" fill-rule="nonzero" group-id="35,46" node-id="448" stroke="none" target-height="12.059998" target-width="28.73999" target-x="310.57" target-y="331.87"></path><path d="M 368.41 340.52 L 361.25 342.75 C 361.96 345.56 362.71 348.41 362.85 348.60 C 361.27 348.26 350.43 345.94 349.72 345.63 C 349.01 345.32 348.52 342.39 346.29 342.54 C 345.53 342.61 345.25 343.27 345.24 343.38 C 345.22 343.50 345.16 343.97 344.86 344.42 C 344.56 344.88 344.47 345.32 344.68 345.84 C 344.89 346.37 344.72 346.69 345.00 347.08 C 345.29 347.47 346.28 348.19 347.09 348.28 C 347.90 348.37 348.23 348.44 349.70 349.12 C 351.17 349.80 358.86 354.63 364.72 355.42 C 366.20 355.51 369.59 356.37 369.38 350.90 C 369.25 347.50 369.03 343.68 368.41 340.52 Z" fill="#ffbe92" fill-rule="nonzero" group-id="35,46" node-id="450" stroke="none" target-height="15.850006" target-width="25.119995" target-x="344.47" target-y="340.52"></path></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="179"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="13" spreadMethod="pad" x1="255.8907" x2="255.8907" y1="426.4184" y2="329.6301"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="17" spreadMethod="pad" x1="191.2738" x2="191.2738" y1="484.4102" y2="267.9212"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="21" spreadMethod="pad" x1="567.0554" x2="567.0554" y1="441.7314" y2="285.2506"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="25" spreadMethod="pad" x1="629.5802" x2="629.5802" y1="464.4014" y2="294.6607"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="29" spreadMethod="pad" x1="120.8677" x2="120.8677" y1="506.4799" y2="355.9665"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="33" spreadMethod="pad" x1="683.5408" x2="683.5408" y1="489.8745" y2="366.7422"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="37" spreadMethod="pad" x1="126.8313" x2="126.8313" y1="234.1726" y2="169.6313"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="41" spreadMethod="pad" x1="643.8998" x2="643.8998" y1="197.3522" y2="132.8109"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="45" spreadMethod="pad" x1="514.1288" x2="514.1288" y1="240.5256" y2="193.8084"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="49" spreadMethod="pad" x1="400.3461" x2="400.3461" y1="756.0504" y2="403.9216"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="55" spreadMethod="pad" x1="191.2757" x2="139.8395" y1="579.5063" y2="518.207"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="59" spreadMethod="pad" x1="112.2279" x2="176.4147" y1="459.2159" y2="459.2159"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="65" spreadMethod="pad" x1="710.1378" x2="662.7723" y1="559.5337" y2="503.0858"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="69" spreadMethod="pad" x1="637.346" x2="696.4529" y1="448.7634" y2="448.7634"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="75" spreadMethod="pad" x1="251.4752" x2="226.0339" y1="460.3629" y2="430.0432"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="79" spreadMethod="pad" x1="212.3767" x2="244.1247" y1="400.8652" y2="400.8652"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="85" spreadMethod="pad" x1="539.1889" x2="467.5389" y1="709.0822" y2="459.2088"><stop offset="0.1887" stop-color="#ffffff"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="89" spreadMethod="pad" x1="329.2207" x2="526.6727" y1="355.7325" y2="355.7325"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="93" spreadMethod="pad" x1="284.3214" x2="481.7735" y1="394.3465" y2="394.3465"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="106" spreadMethod="pad" x1="569.0545" x2="441.0057" y1="460.02" y2="460.02"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#a3b9d1"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="110" spreadMethod="pad" x1="435.624" x2="564.6737" y1="460.2505" y2="460.2505"><stop offset="0" stop-color="#eff3f9"></stop><stop offset="1" stop-color="#b6c9de"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="116" spreadMethod="pad" x1="502.6904" x2="502.6904" y1="355.5377" y2="338.9199"><stop offset="0.3408" stop-color="#f4ae7f"></stop><stop offset="1" stop-color="#ffbe92"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="122" spreadMethod="pad" x1="502.3931" x2="502.3931" y1="385.5446" y2="351.3852"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="126" spreadMethod="pad" x1="501.9057" x2="501.9057" y1="388.0353" y2="368.6981"><stop offset="0" stop-color="#171c61"></stop><stop offset="0.7869" stop-color="#272f7c"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="131" spreadMethod="pad" x1="488.967" x2="513.5679" y1="390.9068" y2="390.9068"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="140" spreadMethod="pad" x1="581.7508" x2="569.6813" y1="386.4545" y2="402.4522"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient></defs><g node-id="464"><g node-id="499"><path d="M 270.35 333.04 L 270.35 329.63 L 240.85 329.63 L 240.85 333.59 L 234.37 333.59 L 234.37 426.42 L 277.42 426.42 L 277.42 333.04 L 270.35 333.04 Z M 273.69 415.77 L 237.65 415.77 L 237.65 413.02 L 273.69 413.02 L 273.69 415.77 Z M 273.69 403.10 L 237.65 403.10 L 237.65 400.35 L 273.69 400.35 L 273.69 403.10 Z M 273.69 390.42 L 237.65 390.42 L 237.65 387.67 L 273.69 387.67 L 273.69 390.42 Z M 273.69 378.08 L 237.65 378.08 L 237.65 375.33 L 273.69 375.33 L 273.69 378.08 Z M 273.69 365.76 L 237.65 365.76 L 237.65 363.01 L 273.69 363.01 L 273.69 365.76 Z M 273.69 353.09 L 237.65 353.09 L 237.65 350.34 L 273.69 350.34 L 273.69 353.09 Z M 273.69 340.74 L 237.65 340.74 L 237.65 338.00 L 273.69 338.00 L 273.69 340.74 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="8,43" node-id="347" stroke="none" target-height="96.79001" target-width="43.050034" target-x="234.36998" target-y="329.63"></path><path d="M 212.36 384.85 L 212.36 276.66 L 179.61 276.66 L 179.61 267.92 L 165.75 267.92 L 165.75 321.25 L 162.02 321.25 L 162.02 484.41 L 220.53 484.41 L 220.53 384.85 L 212.36 384.85 Z M 187.87 416.66 L 179.61 416.66 L 179.61 408.65 L 187.87 408.65 L 187.87 416.66 Z M 187.87 404.13 L 179.61 404.13 L 179.61 396.12 L 187.87 396.12 L 187.87 404.13 Z M 187.87 391.65 L 179.61 391.65 L 179.61 383.64 L 187.87 383.64 L 187.87 391.65 Z M 187.87 379.22 L 179.61 379.22 L 179.61 371.21 L 187.87 371.21 L 187.87 379.22 Z M 187.87 366.68 L 179.61 366.68 L 179.61 358.67 L 187.87 358.67 L 187.87 366.68 Z M 187.87 341.68 L 179.61 341.68 L 179.61 333.67 L 187.87 333.67 L 187.87 341.68 Z M 187.87 329.15 L 179.61 329.15 L 179.61 321.14 L 187.87 321.14 L 187.87 329.15 Z M 187.87 316.68 L 179.61 316.68 L 179.61 308.67 L 187.87 308.67 L 187.87 316.68 Z M 187.87 304.24 L 179.61 304.24 L 179.61 296.23 L 187.87 296.23 L 187.87 304.24 Z M 187.87 291.71 L 179.61 291.71 L 179.61 283.70 L 187.87 283.70 L 187.87 291.71 Z M 200.22 416.66 L 191.96 416.66 L 191.96 408.65 L 200.22 408.65 L 200.22 416.66 Z M 200.22 404.13 L 191.96 404.13 L 191.96 396.12 L 200.22 396.12 L 200.22 404.13 Z M 200.22 391.65 L 191.96 391.65 L 191.96 383.64 L 200.22 383.64 L 200.22 391.65 Z M 200.22 379.22 L 191.96 379.22 L 191.96 371.21 L 200.22 371.21 L 200.22 379.22 Z M 200.22 366.68 L 191.96 366.68 L 191.96 358.67 L 200.22 358.67 L 200.22 366.68 Z M 200.22 341.68 L 191.96 341.68 L 191.96 333.67 L 200.22 333.67 L 200.22 341.68 Z M 200.22 329.15 L 191.96 329.15 L 191.96 321.14 L 200.22 321.14 L 200.22 329.15 Z M 200.22 316.68 L 191.96 316.68 L 191.96 308.67 L 200.22 308.67 L 200.22 316.68 Z M 200.22 304.24 L 191.96 304.24 L 191.96 296.23 L 200.22 296.23 L 200.22 304.24 Z M 200.22 291.71 L 191.96 291.71 L 191.96 283.70 L 200.22 283.70 L 200.22 291.71 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="8,43" node-id="349" stroke="none" target-height="216.48999" target-width="58.509995" target-x="162.02" target-y="267.92"></path><path d="M 534.67 441.73 C 535.03 437.08 534.67 285.25 534.67 285.25 L 553.20 285.25 L 553.20 318.96 L 582.70 318.96 L 582.70 389.41 L 599.43 389.41 L 599.43 441.73 L 534.67 441.73 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="8,43" node-id="351" stroke="none" target-height="156.48001" target-width="64.76001" target-x="534.67" target-y="285.25"></path><path d="M 655.89 373.59 L 655.89 368.74 L 650.89 368.74 L 650.89 326.41 L 638.69 326.41 L 638.69 321.71 L 630.46 321.71 L 630.46 314.80 L 626.17 314.80 L 626.17 294.66 L 623.08 294.66 L 623.08 314.94 L 619.14 314.94 L 619.14 321.85 L 606.94 321.85 L 606.94 333.17 L 599.89 333.17 L 599.89 464.40 L 659.27 464.40 L 659.27 373.58 L 655.89 373.58 Z M 610.38 426.37 L 606.36 426.37 L 606.36 411.13 L 610.38 411.13 L 610.38 426.37 Z M 610.38 407.72 L 606.36 407.72 L 606.36 392.48 L 610.38 392.48 L 610.38 407.72 Z M 610.38 389.07 L 606.36 389.07 L 606.36 373.83 L 610.38 373.83 L 610.38 389.07 Z M 610.38 370.08 L 606.36 370.08 L 606.36 354.84 L 610.38 354.84 L 610.38 370.08 Z M 610.38 351.10 L 606.36 351.10 L 606.36 335.86 L 610.38 335.86 L 610.38 351.10 Z M 618.66 426.37 L 614.64 426.37 L 614.64 411.13 L 618.66 411.13 L 618.66 426.37 Z M 618.66 407.72 L 614.64 407.72 L 614.64 392.48 L 618.66 392.48 L 618.66 407.72 Z M 618.66 389.07 L 614.64 389.07 L 614.64 373.83 L 618.66 373.83 L 618.66 389.07 Z M 618.66 370.08 L 614.64 370.08 L 614.64 354.84 L 618.66 354.84 L 618.66 370.08 Z M 618.66 351.10 L 614.64 351.10 L 614.64 335.86 L 618.66 335.86 L 618.66 351.10 Z M 626.93 426.37 L 622.91 426.37 L 622.91 411.13 L 626.93 411.13 L 626.93 426.37 Z M 626.93 407.72 L 622.91 407.72 L 622.91 392.48 L 626.93 392.48 L 626.93 407.72 Z M 626.93 389.07 L 622.91 389.07 L 622.91 373.83 L 626.93 373.83 L 626.93 389.07 Z M 626.93 370.08 L 622.91 370.08 L 622.91 354.84 L 626.93 354.84 L 626.93 370.08 Z M 626.93 351.10 L 622.91 351.10 L 622.91 335.86 L 626.93 335.86 L 626.93 351.10 Z M 635.21 426.37 L 631.19 426.37 L 631.19 411.13 L 635.21 411.13 L 635.21 426.37 Z M 635.21 407.72 L 631.19 407.72 L 631.19 392.48 L 635.21 392.48 L 635.21 407.72 Z M 635.21 389.07 L 631.19 389.07 L 631.19 373.83 L 635.21 373.83 L 635.21 389.07 Z M 635.21 370.08 L 631.19 370.08 L 631.19 354.84 L 635.21 354.84 L 635.21 370.08 Z M 635.21 351.10 L 631.19 351.10 L 631.19 335.86 L 635.21 335.86 L 635.21 351.10 Z M 643.49 426.37 L 639.47 426.37 L 639.47 411.13 L 643.49 411.13 L 643.49 426.37 Z M 643.49 407.72 L 639.47 407.72 L 639.47 392.48 L 643.49 392.48 L 643.49 407.72 Z M 643.49 389.07 L 639.47 389.07 L 639.47 373.83 L 643.49 373.83 L 643.49 389.07 Z M 643.49 370.08 L 639.47 370.08 L 639.47 354.84 L 643.49 354.84 L 643.49 370.08 Z M 643.49 351.10 L 639.47 351.10 L 639.47 335.86 L 643.49 335.86 L 643.49 351.10 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="8,43" node-id="353" stroke="none" target-height="169.73996" target-width="59.380005" target-x="599.89" target-y="294.66"></path><path d="M 94.24 506.48 L 94.24 416.94 L 104.50 416.94 L 104.50 371.24 L 139.76 355.97 L 139.76 416.22 L 147.49 416.22 L 147.49 506.48 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="8,43" node-id="355" stroke="none" target-height="150.51001" target-width="53.250008" target-x="94.24" target-y="355.97"></path><path d="M 699.01 489.87 L 668.07 489.87 L 668.07 366.74 L 699.01 381.71 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="8,43" node-id="357" stroke="none" target-height="123.130005" target-width="30.940002" target-x="668.07" target-y="366.74"></path><path d="M 89.06 193.06 C 89.06 193.06 98.40 167.58 121.36 177.58 C 126.66 172.20 133.22 168.29 142.09 170.05 C 150.96 171.81 156.68 178.46 158.62 182.88 C 161.40 182.75 183.66 183.49 183.66 206.58 C 183.66 229.67 156.72 229.23 154.77 227.40 C 152.37 229.54 140.83 241.15 126.83 227.90 C 123.80 230.49 113.90 241.46 98.25 226.32 C 91.00 229.35 73.77 231.68 70.43 213.89 C 67.09 196.11 84.22 191.09 89.06 193.06 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="8,43" node-id="359" stroke="none" target-height="73.87999" target-width="116.57002" target-x="67.09" target-y="167.58"></path><path d="M 606.13 156.24 C 606.13 156.24 615.47 130.76 638.43 140.76 C 643.73 135.38 650.29 131.47 659.16 133.23 C 668.03 135.00 673.75 141.64 675.69 146.06 C 678.47 145.93 700.73 146.67 700.73 169.76 C 700.73 192.85 673.79 192.41 671.84 190.58 C 669.44 192.72 657.90 204.33 643.90 191.08 C 640.87 193.67 630.97 204.64 615.32 189.50 C 608.07 192.53 590.84 194.86 587.50 177.07 C 584.16 159.29 601.29 154.27 606.13 156.24 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="8,43" node-id="361" stroke="none" target-height="73.87999" target-width="116.57001" target-x="584.16" target-y="130.76"></path><path d="M 486.79 210.77 C 486.79 210.77 493.55 192.32 510.17 199.57 C 514.01 195.67 518.75 192.84 525.18 194.12 C 531.61 195.40 535.74 200.21 537.14 203.40 C 539.15 203.31 555.27 203.84 555.27 220.55 C 555.27 237.26 535.77 236.94 534.36 235.62 C 532.62 237.17 524.27 245.57 514.13 235.99 C 511.94 237.86 504.77 245.81 493.45 234.85 C 488.20 237.04 475.73 238.73 473.31 225.85 C 470.88 212.98 483.29 209.34 486.79 210.77 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="8,43" node-id="363" stroke="none" target-height="53.48999" target-width="84.390015" target-x="470.88" target-y="192.32"></path><path d="M 771.33 579.99 C 771.33 626.68 732.24 671.47 662.67 704.48 C 593.10 737.50 498.74 756.05 400.35 756.05 C 301.96 756.05 207.60 737.50 138.03 704.48 C 68.46 671.47 29.37 626.68 29.37 579.99 C 29.37 533.30 68.46 488.51 138.03 455.50 C 207.60 422.48 301.96 403.93 400.35 403.93 C 498.74 403.93 593.10 422.48 662.67 455.50 C 732.24 488.51 771.33 533.30 771.33 579.99 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="8,43" node-id="365" stroke="none" target-height="352.12" target-width="741.9601" target-x="29.369995" target-y="403.93"></path></g><g node-id="500"><g node-id="503"><path d="M 146.29 558.45 C 146.29 558.45 142.76 563.46 148.66 570.92 C 153.92 577.56 162.23 576.27 164.99 574.14 C 165.84 579.92 172.93 592.10 184.15 585.21 C 194.70 578.74 189.62 568.90 186.25 565.03 C 192.84 563.17 197.75 547.38 182.63 541.93 C 184.87 535.41 185.27 532.46 181.99 526.60 C 178.83 520.96 173.64 520.06 165.36 523.49 L 153.38 528.54 L 145.75 514.30 L 141.67 516.66 L 150.47 530.26 L 138.81 536.11 C 138.81 536.11 128.84 540.01 133.14 550.71 C 137.13 560.63 146.29 558.45 146.29 558.45 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="8,44,47" node-id="371" stroke="none" target-height="77.79999" target-width="68.91" target-x="128.84" target-y="514.3"></path><path d="M 126.00 497.74 L 162.06 497.74 C 162.06 497.74 173.71 498.07 176.03 484.76 C 178.58 470.15 167.95 468.14 167.95 468.14 C 167.95 468.14 174.35 465.20 172.96 454.15 C 171.56 443.11 161.84 441.71 157.79 442.22 C 158.45 435.67 159.83 420.84 144.43 420.69 C 129.56 420.54 129.65 435.51 130.76 441.41 C 125.46 441.47 109.45 449.42 120.71 466.86 C 114.58 472.11 111.99 475.14 112.26 482.71 C 112.52 490.28 117.16 497.74 126.00 497.74 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="8,44,47" node-id="373" stroke="none" target-height="77.53" target-width="69.130005" target-x="109.45" target-y="420.54"></path><path d="M 161.17 477.50 L 145.79 487.62 L 145.37 477.84 L 155.09 466.38 L 145.22 474.36 L 143.94 444.46 L 143.00 474.55 L 132.62 466.29 L 142.90 477.62 L 142.59 487.69 L 126.77 476.07 L 142.47 491.32 L 141.68 516.68 L 147.03 516.68 L 145.95 491.47 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="8,44,47" node-id="375" stroke="none" target-height="72.22" target-width="34.40001" target-x="126.76999" target-y="444.46"></path></g><g node-id="504"><path d="M 668.72 540.15 C 668.72 540.15 665.47 544.77 670.90 551.63 C 675.74 557.75 683.40 556.56 685.94 554.59 C 686.72 559.91 693.26 571.12 703.59 564.79 C 713.30 558.83 708.63 549.77 705.52 546.21 C 711.59 544.50 716.11 529.95 702.19 524.94 C 704.26 518.94 704.63 516.22 701.60 510.83 C 698.69 505.64 693.91 504.80 686.29 507.97 L 675.25 512.62 L 668.22 499.51 L 664.47 501.68 L 672.57 514.20 L 661.84 519.59 C 661.84 519.59 652.66 523.18 656.62 533.04 C 660.28 542.15 668.72 540.15 668.72 540.15 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="8,44,48" node-id="380" stroke="none" target-height="71.609955" target-width="63.450012" target-x="652.66" target-y="499.51004"></path><path d="M 650.02 484.24 L 683.22 484.24 C 683.22 484.24 693.95 484.55 696.08 472.29 C 698.42 458.84 688.64 456.99 688.64 456.99 C 688.64 456.99 694.54 454.28 693.25 444.11 C 691.96 433.94 683.01 432.65 679.28 433.13 C 679.89 427.10 681.16 413.44 666.98 413.30 C 653.29 413.16 653.37 426.94 654.39 432.38 C 649.51 432.43 634.76 439.75 645.14 455.82 C 639.50 460.65 637.11 463.45 637.36 470.41 C 637.62 477.37 641.89 484.24 650.02 484.24 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="8,44,48" node-id="382" stroke="none" target-height="71.389984" target-width="63.660034" target-x="634.76" target-y="413.16"></path><path d="M 682.41 465.60 L 668.25 474.92 L 667.87 465.91 L 676.82 455.36 L 667.73 462.71 L 666.55 435.17 L 665.68 462.89 L 656.13 455.28 L 665.59 465.71 L 665.30 474.98 L 650.74 464.28 L 665.20 478.33 L 664.46 501.68 L 669.40 501.68 L 668.40 478.47 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="8,44,48" node-id="384" stroke="none" target-height="66.50998" target-width="31.669983" target-x="650.74" target-y="435.17"></path></g><g node-id="505"><path d="M 229.23 449.95 C 229.23 449.95 227.48 452.43 230.40 456.12 C 233.00 459.41 237.11 458.77 238.48 457.71 C 238.90 460.57 242.41 466.59 247.96 463.19 C 253.18 459.99 250.67 455.12 249.00 453.21 C 252.26 452.29 254.69 444.48 247.21 441.79 C 248.32 438.57 248.52 437.11 246.89 434.21 C 245.33 431.42 242.76 430.97 238.67 432.67 L 232.74 435.17 L 228.97 428.13 L 226.95 429.30 L 231.30 436.02 L 225.53 438.91 C 225.53 438.91 220.60 440.84 222.73 446.13 C 224.70 451.03 229.23 449.95 229.23 449.95 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="8,44,49" node-id="389" stroke="none" target-height="38.45999" target-width="34.089996" target-x="220.6" target-y="428.13"></path><path d="M 219.19 419.92 L 237.02 419.92 C 237.02 419.92 242.78 420.08 243.93 413.50 C 245.19 406.27 239.93 405.28 239.93 405.28 C 239.93 405.28 243.10 403.82 242.41 398.36 C 241.72 392.90 236.91 392.21 234.91 392.46 C 235.24 389.22 235.92 381.88 228.30 381.81 C 220.94 381.74 220.99 389.14 221.54 392.06 C 218.92 392.09 211.00 396.02 216.57 404.65 C 213.54 407.24 212.25 408.75 212.39 412.49 C 212.52 416.23 214.82 419.92 219.19 419.92 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="8,44,49" node-id="391" stroke="none" target-height="38.339996" target-width="34.190002" target-x="211" target-y="381.74"></path><path d="M 236.58 409.91 L 228.98 414.92 L 228.77 410.08 L 233.58 404.41 L 228.70 408.35 L 228.06 393.56 L 227.60 408.45 L 222.46 404.37 L 227.55 409.97 L 227.39 414.95 L 219.57 409.20 L 227.34 416.75 L 226.94 429.29 L 229.59 429.29 L 229.06 416.82 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="8,44,49" node-id="393" stroke="none" target-height="35.73004" target-width="17.009995" target-x="219.57" target-y="393.55997"></path></g></g><g node-id="501"><path d="M 309.08 506.48 L 287.08 510.96 L 447.91 735.26 L 711.35 628.40 L 519.28 474.06 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="8,45" node-id="398" stroke="none" target-height="261.20004" target-width="424.26993" target-x="287.08" target-y="474.05997"></path><path d="M 505.99 482.71 L 349.90 482.71 C 338.48 482.71 329.22 473.45 329.22 462.03 L 329.22 249.43 C 329.22 238.01 338.48 228.75 349.90 228.75 L 505.99 228.75 C 517.41 228.75 526.67 238.01 526.67 249.43 L 526.67 462.03 C 526.67 473.45 517.41 482.71 505.99 482.71 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="8,45" node-id="400" stroke="none" target-height="253.95998" target-width="197.44998" target-x="329.22" target-y="228.75002"></path><path d="M 461.09 521.33 L 305.00 521.33 C 293.58 521.33 284.32 512.07 284.32 500.65 L 284.32 288.05 C 284.32 276.63 293.58 267.37 305.00 267.37 L 461.09 267.37 C 472.51 267.37 481.77 276.63 481.77 288.05 L 481.77 500.65 C 481.77 512.07 472.51 521.33 461.09 521.33 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="8,45" node-id="402" stroke="none" target-height="253.96002" target-width="197.45001" target-x="284.32" target-y="267.37"></path><path d="M 309.08 297.37 L 345.11 297.37 L 345.11 333.40 L 309.08 333.40 Z" fill="#ffffff" fill-rule="nonzero" group-id="8,45" node-id="404" stroke="none" target-height="36.03" target-width="36.03" target-x="309.08" target-y="297.37"></path><path d="M 365.91 297.37 L 447.92 297.37 L 447.92 307.74 L 365.91 307.74 Z" fill="#ffffff" fill-rule="nonzero" group-id="8,45" node-id="406" stroke="none" target-height="10.369995" target-width="82.01001" target-x="365.91" target-y="297.37"></path><path d="M 365.91 316.25 L 413.00 316.25 L 413.00 326.62 L 365.91 326.62 Z" fill="#ffffff" fill-rule="nonzero" group-id="8,45" node-id="408" stroke="none" target-height="10.369995" target-width="47.089996" target-x="365.91" target-y="316.25"></path><path d="M 309.08 361.12 L 345.11 361.12 L 345.11 397.15 L 309.08 397.15 Z" fill="#ffffff" fill-rule="nonzero" group-id="8,45" node-id="410" stroke="none" target-height="36.03" target-width="36.03" target-x="309.08" target-y="361.12"></path><path d="M 365.91 361.12 L 447.92 361.12 L 447.92 371.49 L 365.91 371.49 Z" fill="#ffffff" fill-rule="nonzero" group-id="8,45" node-id="412" stroke="none" target-height="10.369995" target-width="82.01001" target-x="365.91" target-y="361.12"></path><path d="M 365.91 380.01 L 413.00 380.01 L 413.00 390.38 L 365.91 390.38 Z" fill="#ffffff" fill-rule="nonzero" group-id="8,45" node-id="414" stroke="none" target-height="10.369995" target-width="47.089996" target-x="365.91" target-y="380.01"></path><path d="M 309.08 426.51 L 345.11 426.51 L 345.11 462.54 L 309.08 462.54 Z" fill="#ffffff" fill-rule="nonzero" group-id="8,45" node-id="416" stroke="none" target-height="36.03" target-width="36.03" target-x="309.08" target-y="426.51"></path><path d="M 365.91 426.51 L 447.92 426.51 L 447.92 436.88 L 365.91 436.88 Z" fill="#ffffff" fill-rule="nonzero" group-id="8,45" node-id="418" stroke="none" target-height="10.369995" target-width="82.01001" target-x="365.91" target-y="426.51"></path><path d="M 365.91 445.40 L 413.00 445.40 L 413.00 455.77 L 365.91 455.77 Z" fill="#ffffff" fill-rule="nonzero" group-id="8,45" node-id="420" stroke="none" target-height="10.369995" target-width="47.089996" target-x="365.91" target-y="445.4"></path><path d="M 566.45 517.89 L 549.51 494.42 C 561.54 482.77 569.05 466.47 569.05 448.44 C 569.05 413.14 540.33 384.42 505.03 384.42 C 469.73 384.42 441.01 413.14 441.01 448.44 C 441.01 483.74 469.73 512.46 505.03 512.46 C 515.12 512.46 524.67 510.11 533.16 505.93 L 550.24 529.59 C 552.20 532.30 554.32 535.62 557.42 535.62 C 559.45 535.62 562.61 533.34 564.20 531.84 C 568.77 527.54 569.05 521.60 566.45 517.89 Z M 459.01 448.44 C 459.01 423.06 479.66 402.42 505.03 402.42 C 530.40 402.42 551.05 423.07 551.05 448.44 C 551.05 473.81 530.40 494.46 505.03 494.46 C 479.66 494.46 459.01 473.81 459.01 448.44 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="8,45" node-id="422" stroke="none" target-height="151.19998" target-width="128.03998" target-x="441.01" target-y="384.42"></path><path d="M 562.78 520.23 L 544.13 494.41 C 556.16 482.76 563.67 466.46 563.67 448.43 C 563.67 413.13 534.95 384.41 499.65 384.41 C 464.35 384.41 435.63 413.13 435.63 448.43 C 435.63 483.73 464.35 512.45 499.65 512.45 C 509.74 512.45 519.29 510.10 527.78 505.92 L 546.57 531.93 C 548.53 534.64 551.58 536.08 554.69 536.08 C 556.72 536.08 558.77 535.46 560.54 534.19 C 565.00 530.96 566.01 524.71 562.78 520.23 Z M 453.62 448.44 C 453.62 423.06 474.27 402.42 499.64 402.42 C 525.01 402.42 545.66 423.07 545.66 448.44 C 545.66 473.81 525.01 494.46 499.64 494.46 C 474.27 494.46 453.62 473.81 453.62 448.44 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="8,45" node-id="424" stroke="none" target-height="151.67001" target-width="130.38" target-x="435.63" target-y="384.41"></path></g><g node-id="502"><path d="M 502.69 334.99 C 502.69 334.99 503.75 333.64 505.25 333.79 C 506.86 333.95 506.44 334.97 507.54 335.20 C 508.65 335.43 509.34 335.35 509.04 337.46 C 508.87 338.63 509.01 338.62 509.32 339.17 C 509.51 339.50 510.84 340.62 509.94 342.07 C 509.05 343.48 508.80 342.96 509.03 344.31 C 509.26 345.66 508.74 346.85 507.93 347.26 C 507.14 347.66 507.34 348.39 507.49 348.81 C 507.63 349.22 507.19 350.55 505.85 350.07 C 504.51 349.59 503.32 349.42 502.27 349.88 C 501.22 350.34 496.86 350.61 497.79 348.71 C 498.64 346.97 497.46 346.62 496.66 345.84 C 495.87 345.06 495.23 343.72 495.64 342.40 C 495.88 341.63 496.22 340.81 495.27 339.66 C 494.29 338.47 495.97 335.25 497.08 335.37 C 498.19 335.49 499.71 332.41 502.69 334.99 Z" fill="#171c61" fill-rule="nonzero" group-id="8,46" node-id="429" stroke="none" target-height="18.199982" target-width="16.550018" target-x="494.29" target-y="332.41"></path><path d="M 499.28 340.41 C 498.29 341.44 498.38 341.20 498.15 341.83 C 496.62 341.01 496.55 345.36 497.83 345.47 C 498.19 347.76 499.17 348.40 499.74 348.95 C 500.11 350.21 499.23 355.53 499.23 355.53 L 505.80 355.53 L 505.44 348.80 C 505.44 348.80 506.92 348.33 507.23 345.66 C 508.45 345.80 509.14 341.03 507.47 342.19 C 507.52 340.93 505.60 340.61 505.35 339.16 C 505.32 338.98 505.16 338.86 505.01 338.93 C 504.33 339.23 503.19 340.03 502.03 340.00 C 501.08 339.98 499.95 339.71 499.28 340.41 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="8,46" node-id="431" stroke="none" target-height="16.670044" target-width="12.590057" target-x="496.54996" target-y="338.86"></path><path d="M 487.96 361.78 C 487.96 361.78 484.63 371.19 485.99 374.54 C 487.08 377.24 489.57 380.30 492.15 381.19 C 493.78 379.85 492.92 378.50 492.92 378.50 C 492.92 378.50 489.81 375.07 489.39 373.48 C 488.97 371.89 492.37 364.51 492.37 364.51 L 487.96 361.78 Z" fill="#ffbe92" fill-rule="nonzero" group-id="8,46" node-id="433" stroke="none" target-height="19.410004" target-width="9.149994" target-x="484.63" target-y="361.78003"></path><path d="M 517.06 361.96 C 517.06 361.96 520.02 371.49 518.53 374.79 C 517.33 377.44 514.73 380.41 512.12 381.20 C 510.54 379.80 511.45 378.48 511.45 378.48 C 511.45 378.48 514.69 375.17 515.17 373.60 C 515.65 372.03 512.54 364.53 512.54 364.53 L 517.06 361.96 Z" fill="#ffbe92" fill-rule="nonzero" group-id="8,46" node-id="435" stroke="none" target-height="19.24002" target-width="9.480011" target-x="510.54" target-y="361.96"></path><path d="M 518.12 364.00 L 512.44 366.63 C 512.44 366.63 512.19 364.22 511.43 361.79 C 511.48 363.64 511.86 365.06 511.94 366.70 C 512.02 368.34 513.89 383.95 511.46 384.93 C 509.03 385.91 495.14 385.51 493.30 385.11 C 491.46 384.71 492.23 370.96 492.93 366.83 C 493.36 363.59 493.30 362.75 493.30 362.75 L 492.13 366.01 L 486.67 363.80 C 486.67 363.80 489.10 354.71 492.34 352.85 C 495.16 351.23 499.40 351.55 499.74 351.53 C 499.80 352.03 500.29 353.61 502.69 353.61 C 504.79 353.49 505.32 352.34 505.57 351.39 C 507.47 351.51 515.68 351.00 518.12 364.00 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="8,46" node-id="437" stroke="none" target-height="34.910004" target-width="31.449982" target-x="486.67" target-y="351"></path><path d="M 513.49 388.04 L 490.31 388.04 C 488.81 388.04 487.60 386.83 487.60 385.33 L 487.60 371.42 C 487.60 369.92 488.81 368.71 490.31 368.71 L 513.49 368.71 C 514.99 368.71 516.20 369.92 516.20 371.42 L 516.20 385.33 C 516.21 386.82 514.99 388.04 513.49 388.04 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="8,46" node-id="439" stroke="none" target-height="19.330017" target-width="28.610016" target-x="487.6" target-y="368.71"></path><path d="M 512.14 404.15 L 515.21 407.84 L 513.07 411.57 L 508.41 406.99 Z" fill="#ffbe92" fill-rule="nonzero" group-id="8,46" node-id="441" stroke="none" target-height="7.4200134" target-width="6.799988" target-x="508.41003" target-y="404.15"></path><path d="M 513.57 404.94 L 508.99 408.45 C 508.99 408.45 480.61 382.61 491.44 374.32 C 495.63 371.78 498.89 374.12 503.21 384.07 C 507.52 394.01 513.57 404.94 513.57 404.94 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="8,46" node-id="443" stroke="none" target-height="36.670013" target-width="32.960022" target-x="480.61" target-y="371.78"></path><path d="M 510.63 409.16 C 510.81 409.34 511.04 409.47 511.30 409.50 C 511.83 409.58 512.73 409.58 513.47 408.93 C 514.58 407.95 514.33 407.41 514.10 406.51 C 515.49 406.71 516.84 409.04 518.11 410.41 C 519.38 411.78 522.31 413.39 520.83 416.14 C 519.35 418.89 515.36 417.44 514.07 415.34 C 512.77 413.24 511.00 410.31 510.24 409.56 C 509.79 408.97 509.73 408.30 509.73 408.30 C 509.73 408.30 510.29 408.81 510.63 409.16 Z" fill="#f8b62d" fill-rule="nonzero" group-id="8,46" node-id="445" stroke="none" target-height="12.380005" target-width="12.579987" target-x="509.73" target-y="406.51"></path><path d="M 513.95 414.98 C 513.95 414.98 516.36 417.91 518.19 418.15 C 518.85 418.23 521.63 418.20 521.89 415.08 C 521.96 415.53 522.39 416.89 521.18 418.17 C 520.58 418.66 519.28 419.56 517.21 418.66 C 515.16 417.77 513.95 414.98 513.95 414.98 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="8,46" node-id="447" stroke="none" target-height="4.5799866" target-width="8.440002" target-x="513.95" target-y="414.98"></path><path d="M 495.55 406.89 L 493.33 411.67 L 496.36 415.59 L 500.15 409.21 Z" fill="#ffbe92" fill-rule="nonzero" group-id="8,46" node-id="449" stroke="none" target-height="8.699982" target-width="6.8200073" target-x="493.33" target-y="406.89"></path><path d="M 498.19 412.14 C 498.01 412.38 497.77 412.56 497.48 412.64 C 496.89 412.81 496.43 413.26 495.48 412.64 C 494.05 411.69 493.98 411.07 494.10 410.00 C 492.80 411.03 491.65 413.30 490.42 415.07 C 489.19 416.84 486.11 419.14 488.23 422.04 C 490.35 424.94 494.68 422.65 495.82 420.04 C 496.96 417.44 497.96 413.51 498.69 412.53 C 499.11 411.79 499.07 411.01 499.07 411.01 C 499.07 411.01 498.52 411.69 498.19 412.14 Z" fill="#f8b62d" fill-rule="nonzero" group-id="8,46" node-id="451" stroke="none" target-height="14.940002" target-width="12.999939" target-x="486.11002" target-y="410"></path><path d="M 496.57 418.34 C 496.57 418.34 494.29 422.07 492.24 422.63 C 491.50 422.82 488.33 423.24 487.53 419.71 C 487.52 420.23 487.25 421.85 488.83 423.12 C 489.60 423.58 491.22 424.40 493.43 423.05 C 495.64 421.70 496.57 418.34 496.57 418.34 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="8,46" node-id="453" stroke="none" target-height="6.0599976" target-width="9.320007" target-x="487.25" target-y="418.34"></path><path d="M 493.90 409.19 L 498.93 412.03 C 498.93 412.03 523.45 382.50 511.58 375.79 C 507.08 373.86 504.18 376.63 501.27 387.08 C 498.38 397.53 493.90 409.19 493.90 409.19 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="8,46" node-id="455" stroke="none" target-height="38.170013" target-width="29.550018" target-x="493.9" target-y="373.86"></path></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="800" node-id="1" sillyvg="true" template-height="800" template-width="800" version="1.1" viewBox="0 0 800 800" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="212"><linearGradient gradientUnits="objectBoundingBox" id="SVGID_1_" node-id="10" spreadMethod="pad" x1="254.8575" x2="254.8575" y1="429.3264" y2="332.5381"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_2_" node-id="14" spreadMethod="pad" x1="190.2405" x2="190.2405" y1="487.3183" y2="270.8293"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_3_" node-id="18" spreadMethod="pad" x1="566.0221" x2="566.0221" y1="444.6394" y2="288.1587"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_4_" node-id="22" spreadMethod="pad" x1="628.5469" x2="628.5469" y1="467.3094" y2="297.5688"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dbe3ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_5_" node-id="26" spreadMethod="pad" x1="119.8344" x2="119.8344" y1="509.3879" y2="358.8745"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_6_" node-id="30" spreadMethod="pad" x1="682.5076" x2="682.5076" y1="492.7825" y2="369.6503"><stop offset="0.0000005358273" stop-color="#ffffff"></stop><stop offset="1" stop-color="#edf1f9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_7_" node-id="34" spreadMethod="pad" x1="125.7981" x2="125.7981" y1="237.0806" y2="172.5394"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_8_" node-id="38" spreadMethod="pad" x1="642.8665" x2="642.8665" y1="200.2602" y2="135.719"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_9_" node-id="42" spreadMethod="pad" x1="513.0956" x2="513.0956" y1="243.4337" y2="196.7165"><stop offset="0.2332" stop-color="#ffffff"></stop><stop offset="1" stop-color="#d3dfee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_10_" node-id="46" spreadMethod="pad" x1="399.3129" x2="399.3129" y1="758.9585" y2="406.8296"><stop offset="0.4065" stop-color="#ffffff"></stop><stop offset="1" stop-color="#dae4ef"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_11_" node-id="52" spreadMethod="pad" x1="190.2424" x2="138.8062" y1="582.4143" y2="521.115"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_12_" node-id="56" spreadMethod="pad" x1="111.1946" x2="175.3815" y1="462.124" y2="462.124"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_13_" node-id="62" spreadMethod="pad" x1="709.1046" x2="661.7391" y1="562.4417" y2="505.9938"><stop offset="0.4034" stop-color="#eff4f8"></stop><stop offset="1" stop-color="#d4dfec"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_14_" node-id="66" spreadMethod="pad" x1="636.3128" x2="695.4197" y1="451.6715" y2="451.6715"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_15_" node-id="72" spreadMethod="pad" x1="250.4419" x2="225.0007" y1="463.271" y2="432.9512"><stop offset="0.0000001438503" stop-color="#eaeff6"></stop><stop offset="1" stop-color="#cddae9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_16_" node-id="76" spreadMethod="pad" x1="211.3435" x2="243.0914" y1="403.7732" y2="403.7732"><stop offset="0.1022" stop-color="#f0f5f8"></stop><stop offset="1" stop-color="#b4c7dc"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_17_" node-id="82" spreadMethod="pad" x1="545.3754" x2="447.0908" y1="677.8552" y2="407.8204"><stop offset="0.0938" stop-color="#ffffff"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_18_" node-id="86" spreadMethod="pad" x1="356.9417" x2="486.8474" y1="374.3993" y2="374.3993"><stop offset="0" stop-color="#becfe2"></stop><stop offset="0.7733" stop-color="#e7edf5"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_19_" node-id="90" spreadMethod="pad" x1="356.9417" x2="297.6963" y1="376.8626" y2="376.8626"><stop offset="0" stop-color="#cfdbea"></stop><stop offset="1" stop-color="#aec3da"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_20_" node-id="94" spreadMethod="pad" x1="381.4643" x2="381.4643" y1="295.7743" y2="270.5677"><stop offset="0.0000005309115" stop-color="#e5ecf3"></stop><stop offset="1" stop-color="#becfe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_21_" node-id="98" spreadMethod="pad" x1="297.6963" x2="473.9955" y1="472.8251" y2="472.8251"><stop offset="0" stop-color="#becfe2"></stop><stop offset="0.7733" stop-color="#e7edf5"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_22_" node-id="102" spreadMethod="pad" x1="465.2322" x2="527.8404" y1="385.7147" y2="385.7147"><stop offset="0.0000005309115" stop-color="#e5ecf3"></stop><stop offset="1" stop-color="#becfe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_23_" node-id="106" spreadMethod="pad" x1="506.7049" x2="297.6963" y1="255.6187" y2="255.6187"><stop offset="0" stop-color="#becfe2"></stop><stop offset="0.7733" stop-color="#e7edf5"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_24_" node-id="110" spreadMethod="pad" x1="465.2322" x2="512.1425" y1="387.5417" y2="387.5417"><stop offset="0" stop-color="#becfe2"></stop><stop offset="0.7733" stop-color="#e7edf5"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_25_" node-id="114" spreadMethod="pad" x1="324.0647" x2="446.383" y1="398.204" y2="398.204"><stop offset="0.0000005309115" stop-color="#e5ecf3"></stop><stop offset="1" stop-color="#afc4da"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_26_" node-id="118" spreadMethod="pad" x1="327.773" x2="446.1534" y1="400.3981" y2="400.3981"><stop offset="0.0000004424263" stop-color="#f7fafb"></stop><stop offset="1" stop-color="#cfdbea"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_27_" node-id="122" spreadMethod="pad" x1="359.4836" x2="367.264" y1="533.2283" y2="484.1049"><stop offset="0" stop-color="#ffffff"></stop><stop offset="1" stop-color="#bbcbe0"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_28_" node-id="126" spreadMethod="pad" x1="263.1717" x2="297.6963" y1="376.8626" y2="376.8626"><stop offset="0.0000004424263" stop-color="#f7fafb"></stop><stop offset="1" stop-color="#d5e0ee"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_29_" node-id="132" spreadMethod="pad" x1="323.135" x2="355.5085" y1="489.3006" y2="489.3006"><stop offset="0" stop-color="#4ea2f4"></stop><stop offset="0.6903" stop-color="#1e77cf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_30_" node-id="136" spreadMethod="pad" x1="300.1656" x2="354.7723" y1="494.499" y2="494.499"><stop offset="0" stop-color="#78c8ff"></stop><stop offset="0.6903" stop-color="#2a80e2"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_31_" node-id="142" spreadMethod="pad" x1="367.7374" x2="367.7374" y1="512.8907" y2="486.733"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_32_" node-id="147" spreadMethod="pad" x1="384.7233" x2="376.9703" y1="518.0352" y2="504.6067"><stop offset="0" stop-color="#f2a319"></stop><stop offset="0.4796" stop-color="#ffc552"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_33_" node-id="153" spreadMethod="pad" x1="290.0985" x2="307.4727" y1="476.6396" y2="476.6396"><stop offset="0.0000004424263" stop-color="#f7fafb"></stop><stop offset="1" stop-color="#cfdbea"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_34_" node-id="161" spreadMethod="pad" x1="417.2743" x2="430.9384" y1="514.7715" y2="530.4904"><stop offset="0.0000005754013" stop-color="#eff3f9"></stop><stop offset="0.2694" stop-color="#becfe2"></stop><stop offset="1" stop-color="#90aabf"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_35_" node-id="166" spreadMethod="pad" x1="409.2484" x2="437.2333" y1="521.5635" y2="521.5635"><stop offset="0.0000005309115" stop-color="#e5ecf3"></stop><stop offset="1" stop-color="#afc4da"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="SVGID_36_" node-id="170" spreadMethod="pad" x1="418.0966" x2="429.8657" y1="529.101" y2="514.0372"><stop offset="0.0000004424263" stop-color="#f7fafb"></stop><stop offset="1" stop-color="#cfdbea"></stop></linearGradient></defs><g node-id="557"><g node-id="595"><path d="M 269.31 335.94 L 269.31 332.53 L 239.81 332.53 L 239.81 336.49 L 233.33 336.49 L 233.33 429.32 L 276.38 429.32 L 276.38 335.94 L 269.31 335.94 Z M 272.65 418.68 L 236.61 418.68 L 236.61 415.93 L 272.65 415.93 L 272.65 418.68 Z M 272.65 406.00 L 236.61 406.00 L 236.61 403.25 L 272.65 403.25 L 272.65 406.00 Z M 272.65 393.33 L 236.61 393.33 L 236.61 390.58 L 272.65 390.58 L 272.65 393.33 Z M 272.65 380.99 L 236.61 380.99 L 236.61 378.24 L 272.65 378.24 L 272.65 380.99 Z M 272.65 368.67 L 236.61 368.67 L 236.61 365.92 L 272.65 365.92 L 272.65 368.67 Z M 272.65 355.99 L 236.61 355.99 L 236.61 353.24 L 272.65 353.24 L 272.65 355.99 Z M 272.65 343.65 L 236.61 343.65 L 236.61 340.90 L 272.65 340.90 L 272.65 343.65 Z" fill="url(#SVGID_1_)" fill-rule="nonzero" group-id="5,43" node-id="439" stroke="none" target-height="96.78998" target-width="43.05002" target-x="233.32999" target-y="332.53"></path><path d="M 211.33 387.76 L 211.33 279.57 L 178.58 279.57 L 178.58 270.83 L 164.72 270.83 L 164.72 324.16 L 160.99 324.16 L 160.99 487.32 L 219.50 487.32 L 219.50 387.76 L 211.33 387.76 Z M 186.83 419.56 L 178.57 419.56 L 178.57 411.55 L 186.83 411.55 L 186.83 419.56 Z M 186.83 407.04 L 178.57 407.04 L 178.57 399.03 L 186.83 399.03 L 186.83 407.04 Z M 186.83 394.56 L 178.57 394.56 L 178.57 386.55 L 186.83 386.55 L 186.83 394.56 Z M 186.83 382.12 L 178.57 382.12 L 178.57 374.11 L 186.83 374.11 L 186.83 382.12 Z M 186.83 369.59 L 178.57 369.59 L 178.57 361.58 L 186.83 361.58 L 186.83 369.59 Z M 186.83 344.59 L 178.57 344.59 L 178.57 336.58 L 186.83 336.58 L 186.83 344.59 Z M 186.83 332.06 L 178.57 332.06 L 178.57 324.05 L 186.83 324.05 L 186.83 332.06 Z M 186.83 319.59 L 178.57 319.59 L 178.57 311.58 L 186.83 311.58 L 186.83 319.59 Z M 186.83 307.15 L 178.57 307.15 L 178.57 299.14 L 186.83 299.14 L 186.83 307.15 Z M 186.83 294.62 L 178.57 294.62 L 178.57 286.61 L 186.83 286.61 L 186.83 294.62 Z M 199.18 419.56 L 190.92 419.56 L 190.92 411.55 L 199.18 411.55 L 199.18 419.56 Z M 199.18 407.04 L 190.92 407.04 L 190.92 399.03 L 199.18 399.03 L 199.18 407.04 Z M 199.18 394.56 L 190.92 394.56 L 190.92 386.55 L 199.18 386.55 L 199.18 394.56 Z M 199.18 382.12 L 190.92 382.12 L 190.92 374.11 L 199.18 374.11 L 199.18 382.12 Z M 199.18 369.59 L 190.92 369.59 L 190.92 361.58 L 199.18 361.58 L 199.18 369.59 Z M 199.18 344.59 L 190.92 344.59 L 190.92 336.58 L 199.18 336.58 L 199.18 344.59 Z M 199.18 332.06 L 190.92 332.06 L 190.92 324.05 L 199.18 324.05 L 199.18 332.06 Z M 199.18 319.59 L 190.92 319.59 L 190.92 311.58 L 199.18 311.58 L 199.18 319.59 Z M 199.18 307.15 L 190.92 307.15 L 190.92 299.14 L 199.18 299.14 L 199.18 307.15 Z M 199.18 294.62 L 190.92 294.62 L 190.92 286.61 L 199.18 286.61 L 199.18 294.62 Z" fill="url(#SVGID_2_)" fill-rule="nonzero" group-id="5,43" node-id="441" stroke="none" target-height="216.49002" target-width="58.50998" target-x="160.99" target-y="270.83"></path><path d="M 533.64 444.64 C 534.00 439.99 533.64 288.16 533.64 288.16 L 552.17 288.16 L 552.17 321.87 L 581.67 321.87 L 581.67 392.32 L 598.40 392.32 L 598.40 444.64 L 533.64 444.64 Z" fill="url(#SVGID_3_)" fill-rule="nonzero" group-id="5,43" node-id="443" stroke="none" target-height="156.48001" target-width="64.76001" target-x="533.64" target-y="288.16"></path><path d="M 654.86 376.49 L 654.86 371.64 L 649.86 371.64 L 649.86 329.31 L 637.66 329.31 L 637.66 324.61 L 629.43 324.61 L 629.43 317.70 L 625.14 317.70 L 625.14 297.56 L 622.05 297.56 L 622.05 317.84 L 618.11 317.84 L 618.11 324.75 L 605.91 324.75 L 605.91 336.07 L 598.86 336.07 L 598.86 467.30 L 658.24 467.30 L 658.24 376.48 L 654.86 376.48 Z M 609.34 429.28 L 605.32 429.28 L 605.32 414.04 L 609.34 414.04 L 609.34 429.28 Z M 609.34 410.63 L 605.32 410.63 L 605.32 395.39 L 609.34 395.39 L 609.34 410.63 Z M 609.34 391.97 L 605.32 391.97 L 605.32 376.73 L 609.34 376.73 L 609.34 391.97 Z M 609.34 372.99 L 605.32 372.99 L 605.32 357.75 L 609.34 357.75 L 609.34 372.99 Z M 609.34 354.01 L 605.32 354.01 L 605.32 338.77 L 609.34 338.77 L 609.34 354.01 Z M 617.62 429.28 L 613.60 429.28 L 613.60 414.04 L 617.62 414.04 L 617.62 429.28 Z M 617.62 410.63 L 613.60 410.63 L 613.60 395.39 L 617.62 395.39 L 617.62 410.63 Z M 617.62 391.97 L 613.60 391.97 L 613.60 376.73 L 617.62 376.73 L 617.62 391.97 Z M 617.62 372.99 L 613.60 372.99 L 613.60 357.75 L 617.62 357.75 L 617.62 372.99 Z M 617.62 354.01 L 613.60 354.01 L 613.60 338.77 L 617.62 338.77 L 617.62 354.01 Z M 625.90 429.28 L 621.88 429.28 L 621.88 414.04 L 625.90 414.04 L 625.90 429.28 Z M 625.90 410.63 L 621.88 410.63 L 621.88 395.39 L 625.90 395.39 L 625.90 410.63 Z M 625.90 391.97 L 621.88 391.97 L 621.88 376.73 L 625.90 376.73 L 625.90 391.97 Z M 625.90 372.99 L 621.88 372.99 L 621.88 357.75 L 625.90 357.75 L 625.90 372.99 Z M 625.90 354.01 L 621.88 354.01 L 621.88 338.77 L 625.90 338.77 L 625.90 354.01 Z M 634.18 429.28 L 630.16 429.28 L 630.16 414.04 L 634.18 414.04 L 634.18 429.28 Z M 634.18 410.63 L 630.16 410.63 L 630.16 395.39 L 634.18 395.39 L 634.18 410.63 Z M 634.18 391.97 L 630.16 391.97 L 630.16 376.73 L 634.18 376.73 L 634.18 391.97 Z M 634.18 372.99 L 630.16 372.99 L 630.16 357.75 L 634.18 357.75 L 634.18 372.99 Z M 634.18 354.01 L 630.16 354.01 L 630.16 338.77 L 634.18 338.77 L 634.18 354.01 Z M 642.46 429.28 L 638.44 429.28 L 638.44 414.04 L 642.46 414.04 L 642.46 429.28 Z M 642.46 410.63 L 638.44 410.63 L 638.44 395.39 L 642.46 395.39 L 642.46 410.63 Z M 642.46 391.97 L 638.44 391.97 L 638.44 376.73 L 642.46 376.73 L 642.46 391.97 Z M 642.46 372.99 L 638.44 372.99 L 638.44 357.75 L 642.46 357.75 L 642.46 372.99 Z M 642.46 354.01 L 638.44 354.01 L 638.44 338.77 L 642.46 338.77 L 642.46 354.01 Z" fill="url(#SVGID_4_)" fill-rule="nonzero" group-id="5,43" node-id="445" stroke="none" target-height="169.73999" target-width="59.380005" target-x="598.86" target-y="297.56"></path><path d="M 93.21 509.39 L 93.21 419.84 L 103.46 419.84 L 103.46 374.15 L 138.72 358.87 L 138.72 419.12 L 146.46 419.12 L 146.46 509.39 Z" fill="url(#SVGID_5_)" fill-rule="nonzero" group-id="5,43" node-id="447" stroke="none" target-height="150.52005" target-width="53.250008" target-x="93.21" target-y="358.86996"></path><path d="M 697.98 492.78 L 667.04 492.78 L 667.04 369.65 L 697.98 384.62 Z" fill="url(#SVGID_6_)" fill-rule="nonzero" group-id="5,43" node-id="449" stroke="none" target-height="123.130005" target-width="30.939941" target-x="667.04" target-y="369.65"></path><path d="M 88.03 195.97 C 88.03 195.97 97.37 170.49 120.33 180.49 C 125.63 175.11 132.19 171.20 141.06 172.96 C 149.93 174.73 155.65 181.37 157.59 185.79 C 160.37 185.66 182.63 186.40 182.63 209.49 C 182.63 232.58 155.69 232.14 153.74 230.31 C 151.34 232.45 139.80 244.06 125.80 230.81 C 122.77 233.40 112.87 244.37 97.22 229.23 C 89.97 232.26 72.74 234.59 69.40 216.80 C 66.06 199.01 83.19 194.00 88.03 195.97 Z" fill="url(#SVGID_7_)" fill-rule="nonzero" group-id="5,43" node-id="451" stroke="none" target-height="73.87999" target-width="116.57001" target-x="66.06" target-y="170.49"></path><path d="M 605.10 159.15 C 605.10 159.15 614.44 133.67 637.40 143.67 C 642.70 138.29 649.26 134.38 658.13 136.14 C 667.00 137.90 672.72 144.55 674.66 148.97 C 677.44 148.84 699.70 149.58 699.70 172.67 C 699.70 195.76 672.76 195.32 670.81 193.49 C 668.41 195.63 656.87 207.24 642.87 193.99 C 639.84 196.58 629.94 207.55 614.29 192.41 C 607.04 195.44 589.81 197.77 586.47 179.98 C 583.12 162.20 600.26 157.18 605.10 159.15 Z" fill="url(#SVGID_8_)" fill-rule="nonzero" group-id="5,43" node-id="453" stroke="none" target-height="73.87999" target-width="116.58002" target-x="583.12" target-y="133.67"></path><path d="M 485.76 213.68 C 485.76 213.68 492.52 195.23 509.14 202.48 C 512.98 198.58 517.72 195.75 524.15 197.03 C 530.57 198.31 534.71 203.12 536.11 206.31 C 538.12 206.22 554.24 206.75 554.24 223.46 C 554.24 240.17 534.74 239.85 533.33 238.53 C 531.59 240.08 523.24 248.48 513.10 238.90 C 510.91 240.77 503.74 248.72 492.42 237.76 C 487.17 239.95 474.70 241.64 472.28 228.76 C 469.85 215.89 482.26 212.25 485.76 213.68 Z" fill="url(#SVGID_9_)" fill-rule="nonzero" group-id="5,43" node-id="455" stroke="none" target-height="53.490005" target-width="84.390015" target-x="469.84998" target-y="195.23"></path><path d="M 770.29 582.89 C 770.29 629.58 731.20 674.37 661.63 707.38 C 592.06 740.40 497.70 758.95 399.31 758.95 C 300.92 758.95 206.56 740.40 136.99 707.38 C 67.42 674.37 28.33 629.58 28.33 582.89 C 28.33 536.20 67.42 491.41 136.99 458.40 C 206.56 425.38 300.92 406.83 399.31 406.83 C 497.70 406.83 592.06 425.38 661.63 458.40 C 731.20 491.41 770.29 536.20 770.29 582.89 Z" fill="url(#SVGID_10_)" fill-rule="nonzero" group-id="5,43" node-id="457" stroke="none" target-height="352.1201" target-width="741.9601" target-x="28.329987" target-y="406.83"></path></g><g node-id="596"><g node-id="599"><path d="M 145.26 561.36 C 145.26 561.36 141.73 566.37 147.63 573.83 C 152.89 580.47 161.20 579.18 163.96 577.05 C 164.81 582.83 171.90 595.01 183.12 588.12 C 193.67 581.65 188.59 571.81 185.22 567.94 C 191.81 566.08 196.72 550.29 181.60 544.84 C 183.84 538.32 184.24 535.37 180.96 529.51 C 177.80 523.87 172.61 522.97 164.33 526.40 L 152.35 531.45 L 144.72 517.21 L 140.64 519.57 L 149.44 533.17 L 137.78 539.02 C 137.78 539.02 127.81 542.92 132.11 553.62 C 136.10 563.54 145.26 561.36 145.26 561.36 Z" fill="url(#SVGID_11_)" fill-rule="nonzero" group-id="5,44,47" node-id="463" stroke="none" target-height="77.79999" target-width="68.91" target-x="127.81" target-y="517.21"></path><path d="M 124.96 500.65 L 161.02 500.65 C 161.02 500.65 172.67 500.98 174.99 487.67 C 177.54 473.06 166.91 471.05 166.91 471.05 C 166.91 471.05 173.31 468.11 171.92 457.06 C 170.53 446.01 160.80 444.62 156.75 445.13 C 157.41 438.58 158.79 423.75 143.39 423.60 C 128.52 423.45 128.61 438.42 129.72 444.32 C 124.42 444.38 108.41 452.33 119.67 469.77 C 113.54 475.02 110.95 478.05 111.22 485.62 C 111.49 493.19 116.13 500.65 124.96 500.65 Z" fill="url(#SVGID_12_)" fill-rule="nonzero" group-id="5,44,47" node-id="465" stroke="none" target-height="77.53" target-width="69.13" target-x="108.409996" target-y="423.45"></path><path d="M 160.13 480.41 L 144.76 490.53 L 144.34 480.74 L 154.06 469.28 L 144.19 477.27 L 142.91 447.36 L 141.96 477.46 L 131.59 469.20 L 141.87 480.53 L 141.55 490.60 L 125.74 478.97 L 141.44 494.23 L 140.64 519.58 L 146.00 519.58 L 144.92 494.38 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="5,44,47" node-id="467" stroke="none" target-height="72.22003" target-width="34.390007" target-x="125.74" target-y="447.36"></path></g><g node-id="600"><path d="M 667.68 543.05 C 667.68 543.05 664.43 547.67 669.86 554.53 C 674.70 560.65 682.36 559.46 684.90 557.49 C 685.68 562.81 692.22 574.02 702.55 567.69 C 712.26 561.73 707.59 552.67 704.48 549.11 C 710.55 547.40 715.07 532.85 701.15 527.84 C 703.22 521.84 703.59 519.12 700.56 513.73 C 697.65 508.54 692.87 507.70 685.25 510.87 L 674.21 515.52 L 667.18 502.41 L 663.43 504.58 L 671.53 517.10 L 660.80 522.49 C 660.80 522.49 651.62 526.08 655.58 535.94 C 659.25 545.06 667.68 543.05 667.68 543.05 Z" fill="url(#SVGID_13_)" fill-rule="nonzero" group-id="5,44,48" node-id="472" stroke="none" target-height="71.610016" target-width="63.450012" target-x="651.62" target-y="502.41"></path><path d="M 648.99 487.14 L 682.19 487.14 C 682.19 487.14 692.92 487.45 695.05 475.19 C 697.39 461.74 687.61 459.89 687.61 459.89 C 687.61 459.89 693.51 457.18 692.22 447.01 C 690.93 436.84 681.98 435.55 678.25 436.03 C 678.86 430.00 680.13 416.34 665.95 416.20 C 652.26 416.06 652.34 429.84 653.36 435.28 C 648.48 435.33 633.73 442.65 644.11 458.72 C 638.47 463.55 636.08 466.35 636.33 473.31 C 636.58 480.27 640.86 487.14 648.99 487.14 Z" fill="url(#SVGID_14_)" fill-rule="nonzero" group-id="5,44,48" node-id="474" stroke="none" target-height="71.390015" target-width="63.660034" target-x="633.73" target-y="416.06"></path><path d="M 681.38 468.51 L 667.22 477.83 L 666.83 468.82 L 675.79 458.26 L 666.69 465.61 L 665.52 438.08 L 664.65 465.79 L 655.09 458.19 L 664.56 468.62 L 664.27 477.89 L 649.70 467.19 L 664.16 481.24 L 663.43 504.58 L 668.36 504.58 L 667.37 481.38 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="5,44,48" node-id="476" stroke="none" target-height="66.5" target-width="31.679993" target-x="649.7" target-y="438.08"></path></g><g node-id="601"><path d="M 228.19 452.86 C 228.19 452.86 226.44 455.34 229.36 459.03 C 231.96 462.32 236.07 461.68 237.44 460.62 C 237.86 463.48 241.37 469.50 246.92 466.10 C 252.14 462.90 249.63 458.03 247.96 456.12 C 251.22 455.20 253.65 447.39 246.17 444.70 C 247.28 441.48 247.48 440.02 245.85 437.12 C 244.29 434.33 241.72 433.88 237.63 435.58 L 231.70 438.08 L 227.93 431.04 L 225.91 432.21 L 230.26 438.93 L 224.49 441.82 C 224.49 441.82 219.56 443.75 221.69 449.04 C 223.66 453.93 228.19 452.86 228.19 452.86 Z" fill="url(#SVGID_15_)" fill-rule="nonzero" group-id="5,44,49" node-id="481" stroke="none" target-height="38.45999" target-width="34.09001" target-x="219.56" target-y="431.04"></path><path d="M 218.15 422.83 L 235.98 422.83 C 235.98 422.83 241.74 422.99 242.89 416.41 C 244.15 409.18 238.89 408.19 238.89 408.19 C 238.89 408.19 242.06 406.73 241.37 401.27 C 240.68 395.81 235.87 395.12 233.87 395.37 C 234.20 392.13 234.88 384.79 227.26 384.72 C 219.90 384.65 219.95 392.05 220.50 394.97 C 217.88 395.00 209.96 398.93 215.53 407.56 C 212.50 410.15 211.21 411.66 211.35 415.40 C 211.49 419.14 213.78 422.83 218.15 422.83 Z" fill="url(#SVGID_16_)" fill-rule="nonzero" group-id="5,44,49" node-id="483" stroke="none" target-height="38.339996" target-width="34.189987" target-x="209.95999" target-y="384.65"></path><path d="M 235.55 412.82 L 227.94 417.82 L 227.74 412.98 L 232.55 407.31 L 227.66 411.26 L 227.03 396.47 L 226.56 411.36 L 221.43 407.27 L 226.52 412.88 L 226.36 417.86 L 218.54 412.11 L 226.30 419.65 L 225.91 432.19 L 228.56 432.19 L 228.03 419.73 Z" fill="#c6d5e6" fill-rule="nonzero" group-id="5,44,49" node-id="485" stroke="none" target-height="35.72003" target-width="17.01001" target-x="218.54" target-y="396.46997"></path></g></g><g node-id="597"><path d="M 263.17 474.76 L 451.90 702.64 L 729.29 610.91 L 527.84 456.86 Z" fill="url(#SVGID_17_)" fill-rule="nonzero" group-id="5,45" node-id="490" stroke="none" target-height="245.78009" target-width="466.12003" target-x="263.17" target-y="456.86"></path><path d="M 484.07 453.96 L 356.94 446.03 L 356.94 295.77 L 486.85 294.84 Z" fill="url(#SVGID_18_)" fill-rule="nonzero" group-id="5,45" node-id="492" stroke="none" target-height="159.12003" target-width="129.90994" target-x="356.94003" target-y="294.84"></path><path d="M 356.94 446.03 L 297.70 483.16 L 297.70 270.57 L 356.94 295.77 Z" fill="url(#SVGID_19_)" fill-rule="nonzero" group-id="5,45" node-id="494" stroke="none" target-height="212.59003" target-width="59.24002" target-x="297.7" target-y="270.57"></path><path d="M 356.94 295.77 L 297.70 270.57 L 465.23 271.81 L 465.23 294.84 Z" fill="url(#SVGID_20_)" fill-rule="nonzero" group-id="5,45" node-id="496" stroke="none" target-height="25.199982" target-width="167.53003" target-x="297.7" target-y="270.57"></path><path d="M 356.94 446.03 L 474.00 453.17 L 465.36 499.62 L 297.70 483.16 Z" fill="url(#SVGID_21_)" fill-rule="nonzero" group-id="5,45" node-id="498" stroke="none" target-height="53.589996" target-width="176.29999" target-x="297.7" target-y="446.03"></path><path d="M 465.23 271.81 L 465.23 499.62 L 527.84 456.86 L 527.84 294.84 Z" fill="url(#SVGID_22_)" fill-rule="nonzero" group-id="5,45" node-id="500" stroke="none" target-height="227.81" target-width="62.609985" target-x="465.23004" target-y="271.81"></path><path d="M 297.70 270.57 C 297.70 270.57 347.08 238.79 349.99 239.44 C 352.90 240.10 506.71 239.44 506.71 239.44 L 465.24 271.81 L 297.70 270.57 Z" fill="url(#SVGID_23_)" fill-rule="nonzero" group-id="5,45" node-id="502" stroke="none" target-height="33.020004" target-width="209.00995" target-x="297.7" target-y="238.79"></path><path d="M 465.23 271.81 L 465.23 499.62 L 512.14 515.22 L 512.14 259.87 Z" fill="url(#SVGID_24_)" fill-rule="nonzero" group-id="5,45" node-id="504" stroke="none" target-height="255.34998" target-width="46.909973" target-x="465.23004" target-y="259.87"></path><path d="M 390.09 342.73 L 403.96 370.84 C 404.86 372.67 406.61 373.94 408.63 374.24 L 439.65 378.75 C 445.75 379.61 448.37 388.19 444.69 391.79 L 420.65 411.22 C 419.19 412.65 418.52 414.70 418.86 416.71 L 424.16 447.61 C 425.03 452.68 419.71 456.55 415.15 454.15 L 387.40 439.56 C 385.59 438.61 383.43 438.61 381.62 439.56 L 356.45 456.53 C 351.90 458.92 343.86 453.74 344.87 447.60 L 350.17 416.70 C 350.52 414.69 349.85 412.63 348.38 411.21 L 325.93 389.33 C 322.25 385.74 324.28 379.48 329.37 378.74 L 360.39 374.23 C 362.41 373.94 364.16 372.67 365.06 370.83 L 378.93 342.72 C 381.23 338.12 387.81 338.12 390.09 342.73 Z" fill="url(#SVGID_25_)" fill-rule="nonzero" group-id="5,45" node-id="506" stroke="none" target-height="120.80002" target-width="126.119995" target-x="322.25" target-y="338.12"></path><path d="M 392.41 347.19 L 406.00 374.72 C 406.89 376.51 408.60 377.76 410.58 378.04 L 440.95 382.45 C 445.93 383.17 447.92 389.30 444.32 392.82 L 422.34 414.24 C 420.91 415.64 420.25 417.65 420.59 419.62 L 425.78 449.87 C 426.63 454.83 421.42 458.62 416.96 456.28 L 389.79 442.00 C 388.02 441.07 385.90 441.07 384.13 442.00 L 356.96 456.28 C 352.50 458.62 347.29 454.84 348.14 449.87 L 353.33 419.62 C 353.67 417.65 353.01 415.64 351.58 414.24 L 329.60 392.82 C 325.99 389.30 327.98 383.18 332.97 382.45 L 363.34 378.04 C 365.32 377.75 367.03 376.51 367.92 374.72 L 381.50 347.20 C 383.74 342.68 390.18 342.68 392.41 347.19 Z" fill="url(#SVGID_26_)" fill-rule="nonzero" group-id="5,45" node-id="508" stroke="none" target-height="115.94" target-width="121.93002" target-x="325.99" target-y="342.68"></path><path d="M 297.70 483.16 L 261.52 517.71 L 450.57 543.33 L 465.23 499.62 Z" fill="url(#SVGID_27_)" fill-rule="nonzero" group-id="5,45" node-id="510" stroke="none" target-height="60.169983" target-width="203.71005" target-x="261.52" target-y="483.16003"></path><path d="M 297.70 270.57 L 297.70 483.16 L 263.17 474.76 L 263.17 272.85 Z" fill="url(#SVGID_28_)" fill-rule="nonzero" group-id="5,45" node-id="512" stroke="none" target-height="212.59003" target-width="34.53" target-x="263.17" target-y="270.57"></path><path d="M 261.52 517.71 L 303.38 523.38 L 303.48 523.38 L 282.35 497.81 Z" fill="#f4f8fa" fill-rule="nonzero" group-id="5,45" node-id="514" stroke="none" target-height="25.570038" target-width="41.960022" target-x="261.52" target-y="497.80997"></path></g><g node-id="598"><path d="M 337.23 474.25 L 341.79 476.64 C 341.79 476.64 335.53 486.78 332.35 488.79 C 337.76 487.41 348.71 485.18 355.48 489.18 C 355.87 497.85 349.79 504.36 349.79 504.36 C 349.79 504.36 323.14 501.30 323.12 491.26 C 323.37 485.91 337.23 474.25 337.23 474.25 Z" fill="url(#SVGID_29_)" fill-rule="nonzero" group-id="5,46" node-id="519" stroke="none" target-height="30.109985" target-width="32.75" target-x="323.12" target-y="474.25"></path><path d="M 300.17 482.27 C 300.89 482.10 306.99 480.61 306.99 480.61 C 306.99 480.61 319.11 490.44 321.94 492.80 C 322.58 493.28 325.17 495.68 326.83 495.40 C 328.49 495.12 335.69 492.46 336.69 492.20 C 340.56 491.18 350.13 489.34 354.76 493.61 C 355.13 500.24 349.64 508.22 349.64 508.22 C 349.64 508.22 334.22 509.25 325.09 506.23 C 315.96 503.21 300.17 482.27 300.17 482.27 Z" fill="url(#SVGID_30_)" fill-rule="nonzero" group-id="5,46" node-id="521" stroke="none" target-height="28.640015" target-width="54.95999" target-x="300.17" target-y="480.61"></path><path d="M 393.15 506.08 C 393.15 506.08 405.39 516.21 409.35 513.33 C 410.84 512.24 413.97 508.45 404.29 501.04 C 403.04 498.79 402.54 494.93 400.59 494.86 C 399.38 495.74 400.52 502.26 400.85 502.85 C 401.18 503.44 404.67 506.98 405.17 507.44 C 405.11 507.56 400.95 504.12 400.40 503.86 C 399.86 503.60 394.46 505.04 394.49 505.07 C 394.51 505.09 393.15 506.08 393.15 506.08 Z" fill="#ffbe92" fill-rule="nonzero" group-id="5,46" node-id="523" stroke="none" target-height="21.350006" target-width="20.819946" target-x="393.15002" target-y="494.86002"></path><path d="M 398.53 492.11 C 398.53 492.11 401.14 495.39 401.81 500.10 C 402.34 503.52 402.40 506.91 399.05 508.12 C 395.70 509.33 391.91 506.57 391.91 506.57 C 391.91 506.57 389.80 506.92 387.01 506.99 C 384.54 504.49 383.33 502.83 384.14 500.70 C 386.89 499.12 389.62 490.01 398.53 492.11 Z" fill="#f9caaa" fill-rule="nonzero" group-id="5,46" node-id="525" stroke="none" target-height="19.319977" target-width="19.070038" target-x="383.33" target-y="490.01"></path><path d="M 387.29 492.94 C 387.29 492.94 382.73 492.46 380.00 493.23 C 377.27 494.00 363.36 491.68 358.98 488.52 C 354.60 485.35 355.00 486.94 352.72 489.07 C 350.44 491.20 343.92 498.27 345.06 505.34 C 346.20 512.41 348.59 511.05 350.91 510.64 C 353.23 510.24 367.58 511.12 372.78 512.44 C 377.97 513.77 380.51 511.92 382.90 509.46 C 385.40 509.17 390.48 507.95 390.52 505.15 C 390.57 502.36 387.29 492.94 387.29 492.94 Z" fill="url(#SVGID_31_)" fill-rule="nonzero" group-id="5,46" node-id="527" stroke="none" target-height="28.420044" target-width="46.650024" target-x="343.92" target-y="485.34998"></path><path d="M 399.47 489.77 C 399.97 490.86 402.59 491.38 401.50 493.36 C 400.41 495.34 401.16 495.86 400.98 496.63 C 400.33 499.38 395.99 498.34 396.46 500.32 C 396.93 502.29 396.10 503.10 393.45 503.18 C 392.51 503.21 392.20 502.82 391.53 502.71 C 390.86 502.60 391.01 503.91 391.01 505.20 C 391.01 506.50 389.04 506.91 388.10 505.51 C 387.16 504.11 387.32 503.17 385.35 502.03 C 383.38 500.89 380.57 500.47 382.18 498.76 C 383.79 497.05 383.56 496.58 383.17 495.30 C 382.42 492.85 381.89 493.03 383.79 490.86 C 384.70 489.82 387.95 490.08 388.99 487.69 C 390.03 485.30 392.06 485.56 393.87 487.22 C 395.69 488.88 396.10 488.73 397.30 488.42 C 398.48 488.11 398.85 488.42 399.47 489.77 Z" fill="#171c61" fill-rule="nonzero" group-id="5,46" node-id="529" stroke="none" target-height="21.610046" target-width="22.019989" target-x="380.57" target-y="485.3"></path><path d="M 388.99 513.85 C 388.99 513.85 383.78 518.71 380.61 520.41 C 377.31 516.87 370.05 509.23 376.25 505.05 C 380.43 502.22 385.57 505.76 388.99 513.85 Z" fill="url(#SVGID_32_)" fill-rule="nonzero" group-id="5,46" node-id="531" stroke="none" target-height="18.190002" target-width="18.939972" target-x="370.05002" target-y="502.21997"></path><path d="M 397.61 506.88 C 396.74 505.96 392.22 505.81 391.90 505.33 C 390.57 503.27 388.48 502.66 387.90 502.85 C 387.32 503.04 387.96 504.73 389.42 507.02 C 390.88 509.31 394.01 509.68 395.04 510.18 C 396.07 510.68 395.57 511.39 395.57 511.39 L 391.63 520.57 C 390.76 519.15 389.24 516.40 388.21 514.52 C 387.42 515.29 384.53 517.73 382.06 519.47 C 387.01 527.03 391.69 530.41 394.29 529.85 C 397.20 529.22 398.71 517.46 398.95 512.62 C 399.20 507.79 398.47 507.80 397.61 506.88 Z" fill="#ffbe92" fill-rule="nonzero" group-id="5,46" node-id="533" stroke="none" target-height="27.74997" target-width="17.140015" target-x="382.06" target-y="502.66"></path><path d="M 290.16 475.35 C 290.16 475.35 289.85 478.65 291.67 479.45 C 293.49 480.25 296.77 479.88 300.03 482.71 C 301.42 482.03 304.06 480.83 307.83 481.06 C 307.76 479.84 307.68 476.20 306.75 476.20 C 305.82 476.20 291.14 475.46 291.14 475.46 L 290.16 475.35 Z" fill="#f8b62d" fill-rule="nonzero" group-id="5,46" node-id="535" stroke="none" target-height="7.3599854" target-width="17.97998" target-x="289.85" target-y="475.35"></path><path d="M 301.73 475.45 C 299.35 475.26 292.57 472.51 290.53 474.69 C 288.49 476.87 294.24 478.44 297.23 478.87 C 300.47 479.33 302.34 479.48 303.55 479.42 C 304.27 479.39 307.63 478.71 307.47 476.73 C 307.37 475.51 304.16 475.25 301.78 475.08 C 301.76 475.21 301.76 475.31 301.73 475.45 Z" fill="url(#SVGID_33_)" fill-rule="nonzero" group-id="5,46" node-id="537" stroke="none" target-height="6.970001" target-width="19.140015" target-x="288.49" target-y="472.51"></path><path d="M 338.64 459.53 L 337.09 459.75 C 337.09 459.75 334.43 461.69 335.89 467.24 C 336.54 469.23 336.21 471.54 336.17 472.77 C 336.14 474.00 335.77 477.39 338.51 478.04 C 341.25 478.69 342.03 476.83 342.16 476.25 C 342.31 475.66 338.64 459.53 338.64 459.53 Z" fill="#f8b62d" fill-rule="nonzero" group-id="5,46" node-id="539" stroke="none" target-height="19.160004" target-width="7.880005" target-x="334.43" target-y="459.53"></path><path d="M 343.13 471.27 C 343.13 471.27 347.27 459.51 340.19 458.98 C 333.11 458.46 337.52 467.70 337.37 470.12 C 337.22 472.54 335.73 477.30 339.56 477.77 C 343.39 478.24 343.13 471.27 343.13 471.27 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="5,46" node-id="541" stroke="none" target-height="19.779999" target-width="14.160004" target-x="333.11" target-y="458.46"></path><path d="M 290.19 475.18 C 290.19 475.18 289.84 476.98 294.35 477.85 C 296.55 478.27 298.44 478.51 299.92 478.65 C 299.91 478.57 299.97 478.22 300.01 478.07 C 301.41 478.19 302.58 478.37 303.07 478.41 C 304.40 478.51 307.40 478.00 307.43 476.53 C 307.56 476.92 307.62 477.67 307.64 478.20 C 307.70 478.83 306.40 479.94 303.17 479.75 C 300.13 479.57 296.60 479.11 295.18 478.84 C 293.76 478.56 290.71 478.03 290.06 476.21 C 290.02 475.60 290.12 475.19 290.19 475.18 Z" fill="#e6e8e8" fill-rule="nonzero" group-id="5,46" node-id="543" stroke="none" target-height="4.76001" target-width="17.860016" target-x="289.84" target-y="475.18"></path><path d="M 301.73 475.45 L 300.01 478.06 L 299.92 478.65 L 298.60 478.52 Z" fill="#d4dfec" fill-rule="nonzero" group-id="5,46" node-id="545" stroke="none" target-height="3.1999817" target-width="3.130005" target-x="298.6" target-y="475.45"></path><path d="M 416.22 515.73 L 409.35 524.78 C 408.83 525.77 409.19 526.80 409.90 526.90 L 431.56 529.51 C 431.97 529.57 432.37 529.37 432.56 529.00 L 437.41 518.50 C 437.72 517.91 437.70 516.74 436.53 516.34 L 417.16 515.32 C 416.78 515.27 416.42 515.43 416.22 515.73 Z" fill="url(#SVGID_34_)" fill-rule="nonzero" group-id="5,46" node-id="547" stroke="none" target-height="14.299988" target-width="28.889984" target-x="408.83" target-y="515.27"></path><path d="M 415.90 514.95 L 409.42 524.67 C 409.02 525.26 409.37 526.06 410.07 526.16 L 431.29 528.71 C 431.69 528.77 432.09 528.57 432.28 528.20 L 437.13 517.70 C 437.44 517.11 437.06 516.39 436.40 516.31 L 417.06 514.41 C 416.70 514.37 416.10 514.65 415.90 514.95 Z" fill="url(#SVGID_35_)" fill-rule="nonzero" group-id="5,46" node-id="549" stroke="none" target-height="14.400024" target-width="28.420013" target-x="409.02002" target-y="514.37"></path><path d="M 417.38 516.24 L 412.27 524.04 C 411.98 524.50 412.49 524.81 413.07 524.89 L 430.13 526.83 C 430.46 526.88 430.78 526.71 430.94 526.42 L 434.72 518.67 C 434.97 518.19 434.84 517.67 434.13 517.53 L 418.13 515.90 C 417.84 515.87 417.55 516.00 417.38 516.24 Z" fill="url(#SVGID_36_)" fill-rule="nonzero" group-id="5,46" node-id="551" stroke="none" target-height="11.01001" target-width="22.98999" target-x="411.98" target-y="515.87"></path></g></g></svg>
|