@zhangqingcq/vgce 0.0.13 → 0.0.15
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +16 -2
- package/dist/style.css +1 -1
- package/dist/vgce.js +28 -34
- package/dist/vgce.umd.cjs +5 -5
- package/package.json +3 -2
- package/src/App.vue +11 -0
- package/src/assets/base.less +49 -0
- package/src/assets/icons/add.svg +1 -0
- package/src/assets/icons/delete.svg +12 -0
- package/src/assets/icons/export.svg +1 -0
- package/src/assets/icons/group.svg +13 -0
- package/src/assets/icons/import.svg +1 -0
- package/src/assets/icons/lock.svg +7 -0
- package/src/assets/icons/menu-fold.svg +9 -0
- package/src/assets/icons/menu-unfold.svg +9 -0
- package/src/assets/icons/preview.svg +6 -0
- package/src/assets/icons/redo.svg +8 -0
- package/src/assets/icons/return.svg +8 -0
- package/src/assets/icons/rotate.svg +1 -0
- package/src/assets/icons/save.svg +9 -0
- package/src/assets/icons/setting.svg +6 -0
- package/src/assets/icons/undo.svg +7 -0
- package/src/assets/icons/ungroup.svg +16 -0
- package/src/assets/icons/unlock.svg +7 -0
- package/src/assets/main.less +6 -0
- package/src/assets/svgs/alternator.svg +8 -0
- package/src/assets/svgs/bot-12.svg +1 -0
- package/src/assets/svgs/bot-2.svg +1 -0
- package/src/assets/svgs/bot-3.svg +1 -0
- package/src/assets/svgs/bot-7.svg +1 -0
- package/src/assets/svgs/bot-9.svg +94 -0
- package/src/assets/svgs/car.svg +1 -0
- package/src/assets/svgs/circuit-breaker.svg +11 -0
- package/src/assets/svgs/clock-a.svg +23 -0
- package/src/assets/svgs/common-table.svg +7 -0
- package/src/assets/svgs/el-button.svg +10 -0
- package/src/assets/svgs/el-tag.svg +13 -0
- package/src/assets/svgs/hospital.svg +1 -0
- package/src/assets/svgs/house.svg +1 -0
- package/src/assets/svgs/light.svg +24 -0
- package/src/assets/svgs/now-time.svg +9 -0
- package/src/assets/svgs/package.svg +1 -0
- package/src/assets/svgs/pie-charts.svg +10 -0
- package/src/assets/svgs/progress-a.svg +1 -0
- package/src/assets/svgs/reservoir.svg +10 -0
- package/src/assets/svgs/svg-text.svg +5 -0
- package/src/assets/svgs/switch-a.svg +5 -0
- package/src/assets/svgs/traction-transformer.svg +11 -0
- package/src/components/ace-edit/index.ts +27 -0
- package/src/components/config/index.ts +450 -0
- package/src/components/config/types.ts +25 -0
- package/src/components/svg-analysis/index.vue +11 -0
- package/src/components/svg-editor/center-panel/index.vue +867 -0
- package/src/components/svg-editor/center-panel/types.ts +11 -0
- package/src/components/svg-editor/component-tree/index.vue +33 -0
- package/src/components/svg-editor/connection-line/index.vue +125 -0
- package/src/components/svg-editor/connection-panel/index.vue +198 -0
- package/src/components/svg-editor/export-json/index.vue +37 -0
- package/src/components/svg-editor/handle-panel/index.vue +342 -0
- package/src/components/svg-editor/import-json/index.vue +37 -0
- package/src/components/svg-editor/index.vue +280 -0
- package/src/components/svg-editor/left-panel/index.vue +83 -0
- package/src/components/svg-editor/right-panel/code-edit-modal.vue +50 -0
- package/src/components/svg-editor/right-panel/common-animate.vue +96 -0
- package/src/components/svg-editor/right-panel/condition.vue +101 -0
- package/src/components/svg-editor/right-panel/dynamic-el-form-item.vue +97 -0
- package/src/components/svg-editor/right-panel/index.vue +304 -0
- package/src/components/svg-editor/right-panel/list.vue +86 -0
- package/src/components/svg-editor/top-panel/index.vue +139 -0
- package/src/components/svg-editor/types.ts +22 -0
- package/src/components/svg-viewer/index.vue +340 -0
- package/src/components/vue3-ruler-tool/index.vue +506 -0
- package/src/config/files/clock-a.vue +66 -0
- package/src/config/files/common-table.vue +49 -0
- package/src/config/files/light-a.vue +72 -0
- package/src/config/files/now-time.vue +53 -0
- package/src/config/files/pie-charts.vue +72 -0
- package/src/config/files/progress.vue +40 -0
- package/src/config/files/svg-text.vue +39 -0
- package/src/config/files/switch-a.vue +45 -0
- package/src/config/index.ts +28 -0
- package/src/config/svg/animation/index.ts +8 -0
- package/src/config/svg/animation/reservoir.ts +32 -0
- package/src/config/svg/custom/clock-a.ts +23 -0
- package/src/config/svg/custom/index.ts +11 -0
- package/src/config/svg/custom/light.ts +29 -0
- package/src/config/svg/custom/svg-text.ts +54 -0
- package/src/config/svg/custom/switch-a.ts +29 -0
- package/src/config/svg/index.ts +12 -0
- package/src/config/svg/stateful/circuit-breaker.ts +38 -0
- package/src/config/svg/stateful/index.ts +8 -0
- package/src/config/svg/stateless/alternator.ts +28 -0
- package/src/config/svg/stateless/bot-12.ts +22 -0
- package/src/config/svg/stateless/bot-2.ts +22 -0
- package/src/config/svg/stateless/bot-3.ts +22 -0
- package/src/config/svg/stateless/bot-7.ts +22 -0
- package/src/config/svg/stateless/bot-9.ts +22 -0
- package/src/config/svg/stateless/car.ts +22 -0
- package/src/config/svg/stateless/hospital.ts +22 -0
- package/src/config/svg/stateless/house.ts +22 -0
- package/src/config/svg/stateless/index.ts +30 -0
- package/src/config/svg/stateless/package.ts +22 -0
- package/src/config/svg/stateless/traction-transformer.ts +28 -0
- package/src/config/types.ts +126 -0
- package/src/config/vue/component/button.ts +57 -0
- package/src/config/vue/component/common-table.ts +124 -0
- package/src/config/vue/component/index.ts +13 -0
- package/src/config/vue/component/now-time.ts +29 -0
- package/src/config/vue/component/progress.ts +29 -0
- package/src/config/vue/component/tag.ts +46 -0
- package/src/config/vue/echarts/index.ts +8 -0
- package/src/config/vue/echarts/pie-charts.ts +60 -0
- package/src/config/vue/index.ts +5 -0
- package/src/hooks.ts +47 -0
- package/src/index.ts +14 -0
- package/src/main.ts +15 -0
- package/src/router.ts +24 -0
- package/src/stores/config/index.ts +44 -0
- package/src/stores/config/types.ts +27 -0
- package/src/stores/global/index.ts +109 -0
- package/src/stores/global/types.ts +115 -0
- package/src/stores/main.ts +10 -0
- package/src/stores/svg-edit-layout/index.ts +17 -0
- package/src/stores/svg-edit-layout/types.ts +8 -0
- package/src/stores/system/index.ts +174 -0
- package/src/stores/system/types.ts +43 -0
- package/src/utils/fetch.ts +351 -0
- package/src/utils/file-read-write.ts +26 -0
- package/src/utils/index.ts +397 -0
- package/src/utils/mqtt-net.ts +48 -0
- package/src/utils/proxy.ts +7 -0
- package/src/utils/scale-core.ts +214 -0
- package/src/utils/types.ts +13 -0
- package/src/views/EditorS.vue +18 -0
- package/src/views/Preview.vue +12 -0
package/package.json
CHANGED
@@ -1,12 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zhangqingcq/vgce",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.15",
|
4
4
|
"description": "Vector graphics configure editor. svg组态编辑器。基于vue3.3+ts+element-plus+vite",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
7
7
|
},
|
8
|
+
"type": "module",
|
8
9
|
"files": [
|
9
10
|
"dist",
|
11
|
+
"src",
|
10
12
|
"types"
|
11
13
|
],
|
12
14
|
"main": "./dist/vgce.umd.cjs",
|
@@ -23,7 +25,6 @@
|
|
23
25
|
}
|
24
26
|
},
|
25
27
|
"types": "types/index.d.ts",
|
26
|
-
"type": "module",
|
27
28
|
"scripts": {
|
28
29
|
"dev": "vite",
|
29
30
|
"build": "run-p type-check build-only",
|
package/src/App.vue
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
*,
|
2
|
+
*::before,
|
3
|
+
*::after {
|
4
|
+
box-sizing: border-box;
|
5
|
+
margin: 0;
|
6
|
+
font-weight: normal;
|
7
|
+
}
|
8
|
+
|
9
|
+
body {
|
10
|
+
font-family:
|
11
|
+
Inter,
|
12
|
+
-apple-system,
|
13
|
+
BlinkMacSystemFont,
|
14
|
+
'Segoe UI',
|
15
|
+
Roboto,
|
16
|
+
Oxygen,
|
17
|
+
Ubuntu,
|
18
|
+
Cantarell,
|
19
|
+
'Fira Sans',
|
20
|
+
'Droid Sans',
|
21
|
+
'Helvetica Neue',
|
22
|
+
sans-serif;
|
23
|
+
text-rendering: optimizeLegibility;
|
24
|
+
-webkit-font-smoothing: antialiased;
|
25
|
+
-moz-osx-font-smoothing: grayscale;
|
26
|
+
}
|
27
|
+
|
28
|
+
.modal-full {
|
29
|
+
.el-dialog__body {
|
30
|
+
padding: 0 !important;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
.bt-Icon {
|
35
|
+
cursor: pointer;
|
36
|
+
|
37
|
+
&:hover {
|
38
|
+
color: #409eff;
|
39
|
+
}
|
40
|
+
}
|
41
|
+
|
42
|
+
.props-row {
|
43
|
+
margin-bottom: 0 !important;
|
44
|
+
|
45
|
+
.el-form-item__content,
|
46
|
+
.el-form-item__label {
|
47
|
+
color: #aaa;
|
48
|
+
}
|
49
|
+
}
|
@@ -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 t="1686279304877" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="12132" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><path d="M512 128c211.2 0 384 172.8 384 384s-172.8 384-384 384-384-172.8-384-384 172.8-384 384-384m0-64C262.4 64 64 262.4 64 512s198.4 448 448 448 448-198.4 448-448-198.4-448-448-448z" p-id="12133"></path><path d="M320 512m-32 0a32 32 0 1 0 64 0 32 32 0 1 0-64 0Z" p-id="12134"></path><path d="M704 512m-32 0a32 32 0 1 0 64 0 32 32 0 1 0-64 0Z" p-id="12135"></path><path d="M512 320m-32 0a32 32 0 1 0 64 0 32 32 0 1 0-64 0Z" p-id="12136"></path><path d="M512 704m-32 0a32 32 0 1 0 64 0 32 32 0 1 0-64 0Z" p-id="12137"></path><path d="M320 480h384v64H320z" p-id="12138"></path><path d="M480 320h64v384h-64z" p-id="12139"></path></svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
|
3
|
+
xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<g stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
|
5
|
+
<path d="M9 10V44H39V10H9Z" />
|
6
|
+
<path d="M20 20V33" />
|
7
|
+
<path d="M28 20V33" />
|
8
|
+
<path d="M4 10H44" />
|
9
|
+
<path d="M16 10L19.289 4H28.7771L32 10H16Z" />
|
10
|
+
</g>
|
11
|
+
|
12
|
+
</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 t="1684895012486" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1208" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><path d="M394.6 689.8c-13.2 3.2-27.4-9.5-31.7-23.2-8.4-28.5-12.7-58.6-12.7-88.1 0-159.4 151.5-325.1 314.1-352.1v-5.3c0-1.6 0-3.7 0.5-5.3l0.5-2.1c1.6-11.6 5.8-38.5 32.2-55.4 10.6-6.9 22.2-10 34.3-10 14.8 0 26.9 5.3 34.3 9.5 1.6 0.5 2.6 1.6 4.2 2.6L929.2 286c17.4 13.2 28 34.8 28 57 0 22.7-10.6 44.3-28.5 57.5L770.5 525.7c-11.6 9-25.3 13.7-39.1 13.7-12.1 0-23.8-3.7-34.8-10.6-21.1-13.7-31.7-34.8-31.7-64.4v-1.1C559.3 475 442.2 569 416.3 657.6c-4.8 14.3-13.7 32.2-21.7 32.2z m335.7-466.6V256c0 17.4-13.7 31.7-31.1 32.7-125.6 6.9-257.6 131.4-279.7 254.4C486 458.7 595.2 390 699.7 397.4c17.4 1.1 30.6 15.3 30.6 32.7V465c0 4.7 0.5 6.9 0.5 7.9l157.3-124.6c2.1-1.6 2.6-3.2 2.6-5.3 0-2.1-1.1-4.2-2.6-5.3L731.9 214.3c-1.1 1.6-1.6 5.8-2.1 8.4l0.5 0.5z m0 0" p-id="1209"></path><path d="M715.6 916.3H188.3c-67 0-121.9-54.9-121.9-121.9v-568c0-67 54.9-121.9 121.9-121.9h436.5v69.7H188.3c-28.5 0-52.3 23.2-52.3 52.3V795c0 28.5 23.2 52.3 52.3 52.3h527.3c28.5 0 52.3-23.2 52.3-52.3V593.2H837v201.6c0 66.6-54.4 121.5-121.4 121.5z m0 0" p-id="1210"></path><path d="M183 566.9h112.4V626H183v-59.1z m0 154.1h296.1v59.1H183V721z m0-425.4h237v59.1H183v-59.1z m0 140.9h112.4v59.1H183v-59.1z m0 0" p-id="1211"></path></svg>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
|
3
|
+
xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<path d="M12 4H4V12H12V4Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
5
|
+
<path d="M44 36H36V44H44V36Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
6
|
+
<path d="M12 36H4V44H12V36Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
7
|
+
<path d="M44 4H36V12H44V4Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
8
|
+
<path d="M8 36V12" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
9
|
+
<path d="M40 36V12" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
10
|
+
<path d="M12 8H36" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
11
|
+
<path d="M12 40H36" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
12
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 16H25.6V22.4H32V32H22.4V25.6H16V16Z" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
13
|
+
</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 t="1684895003122" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1052" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><path d="M111.6 148.8c7.9 0 16.9 17.9 21.6 32.2 25.9 88.7 143 182.6 248.6 194.2v-1.1c0-29.6 10.6-50.7 31.7-64.4 11.1-6.9 22.7-10.6 34.8-10.6 13.7 0 27.4 4.8 39.1 13.7L645.8 438c17.9 13.2 28.5 34.8 28.5 57.5 0 22.2-10.6 43.8-28 57L487.4 678.2c-1.6 1.1-2.6 2.1-4.2 2.6-7.4 4.2-19.5 9.5-34.3 9.5-12.1 0-23.7-3.2-34.3-10-26.4-16.9-30.6-43.8-32.2-55.4l-0.5-2.1c-0.5-1.6-0.5-3.7-0.5-5.3v-5.3c-162.6-26.9-314.1-192.6-314.1-352 0-29.6 4.2-59.6 12.7-88.1 4.2-13.8 18.4-26.5 31.6-23.3z m335.2 467.1c0.5 2.6 1.1 6.9 2.1 8.4l156.2-123.5c1.6-1.1 2.6-3.2 2.6-5.3 0-2.1-0.5-3.7-2.6-5.3L447.8 365.7c0 1.1-0.5 3.2-0.5 7.9v34.8c0 17.4-13.2 31.7-30.6 32.7-104.5 7.4-213.8-61.2-280.3-145.7 22.2 123 154.1 247.5 279.7 254.4 17.4 1.1 31.1 15.3 31.1 32.7v32.7l-0.4 0.7z m0.5-0.5" p-id="1053"></path><path d="M309 916.3c-67 0-121.4-54.9-121.4-121.4V593.2h69.1v201.6c0 29 23.8 52.3 52.3 52.3h527.3c29 0 52.3-23.8 52.3-52.3V226.4c0-29-23.8-52.3-52.3-52.3H399.8v-69.7h436.5c67 0 121.9 54.9 121.9 121.9v567.9c0 67-54.9 121.9-121.9 121.9H309v0.2z m0 0" p-id="1054"></path><path d="M841.6 626H729.1v-59.1h112.4V626z m0 154.1H545.5V721h296.1v59.1z m0-425.4h-237v-59.1h237v59.1z m0 140.9H729.1v-59.1h112.4v59.1z m0-59.1" p-id="1055"></path></svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
|
3
|
+
xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<rect x="6" y="22" width="36" height="22" rx="2" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
5
|
+
<path d="M14 22V14C14 8.47715 18.4772 4 24 4C29.5228 4 34 8.47715 34 14V22" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
6
|
+
<path d="M24 30V36" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
7
|
+
</svg>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
|
3
|
+
xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<path d="M8 10.5H40" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
5
|
+
<path d="M24 19.5H40" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
6
|
+
<path d="M24 28.5H40" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
7
|
+
<path d="M8 37.5H40" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
8
|
+
<path d="M8 19L16 24L8 29V19Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
9
|
+
</svg>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
|
3
|
+
xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<path d="M8 10.5H40" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
5
|
+
<path d="M24 19.5H40" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
6
|
+
<path d="M24 28.5H40" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
7
|
+
<path d="M8 37.5H40" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
8
|
+
<path d="M16 19L8 24L16 29V19Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
9
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
|
3
|
+
xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<path d="M24 36C35.0457 36 44 24 44 24C44 24 35.0457 12 24 12C12.9543 12 4 24 4 24C4 24 12.9543 36 24 36Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
5
|
+
<path d="M24 29C26.7614 29 29 26.7614 29 24C29 21.2386 26.7614 19 24 19C21.2386 19 19 21.2386 19 24C19 26.7614 21.2386 29 24 29Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
6
|
+
</svg>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
|
3
|
+
xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<g stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
|
5
|
+
<path d="M36.728 36.728A17.943 17.943 0 0 1 24 42c-9.941 0-18-8.059-18-18S14.059 6 24 6c4.97 0 9.47 2.015 12.728 5.272C38.386 12.93 42 17 42 17"></path>
|
6
|
+
<path d="M42 8v9h-9"></path>
|
7
|
+
</g>
|
8
|
+
</svg>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<path d="M12.9998 8L6 14L12.9998 21" stroke="currentColor" stroke-width="4" stroke-linecap="round"
|
4
|
+
stroke-linejoin="round" />
|
5
|
+
<path
|
6
|
+
d="M6 14H28.9938C35.8768 14 41.7221 19.6204 41.9904 26.5C42.2739 33.7696 36.2671 40 28.9938 40H11.9984"
|
7
|
+
stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" />
|
8
|
+
</svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44C30.9566 44 37.0836 40.4483 40.6667 35.0593" stroke="currentColor" stroke-width="4" stroke-linecap="round"/><path d="M44 24H30" stroke="currentColor" stroke-width="4" stroke-linecap="round"/><circle cx="24" cy="24" r="6" fill="currentColor" stroke="currentColor" stroke-width="4"/></svg>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<g stroke="#ffffff" stroke-width="4">
|
4
|
+
<path d="M39.3 6.00012H8.7C7.20883 6.00012 6 7.20895 6 8.70012V39.3001C6 40.7913 7.20883 42.0001 8.7 42.0001H39.3C40.7912 42.0001 42 40.7913 42 39.3001V8.70012C42 7.20895 40.7912 6.00012 39.3 6.00012Z" fill="none" stroke-linejoin="round" />
|
5
|
+
<path d="M32 6V24H15V6H32Z" stroke-linejoin="round" />
|
6
|
+
<path d="M26 13.0001V17.0001" stroke-linecap="round" />
|
7
|
+
<path d="M10.9969 6.00012H35.9985" stroke-linecap="round" />
|
8
|
+
</g>
|
9
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<svg viewBox="0 0 1024 1024" version="1.1"
|
2
|
+
xmlns="http://www.w3.org/2000/svg" width="200" height="200">
|
3
|
+
<path
|
4
|
+
d="M919.6 405.6l-57.2-8c-12.7-1.8-23-10.4-28-22.1-11.3-26.7-25.7-51.7-42.9-74.5-7.7-10.2-10-23.5-5.2-35.3l21.7-53.5c6.7-16.4 0.2-35.3-15.2-44.1L669.1 96.6c-15.4-8.9-34.9-5.1-45.8 8.9l-35.4 45.3c-7.9 10.2-20.7 14.9-33.5 13.3-14-1.8-28.3-2.8-42.8-2.8-14.5 0-28.8 1-42.8 2.8-12.8 1.6-25.6-3.1-33.5-13.3l-35.4-45.3c-10.9-14-30.4-17.8-45.8-8.9L230.4 168c-15.4 8.9-21.8 27.7-15.2 44.1l21.7 53.5c4.8 11.9 2.5 25.1-5.2 35.3-17.2 22.8-31.7 47.8-42.9 74.5-5 11.8-15.3 20.4-28 22.1l-57.2 8C86 408 72.9 423 72.9 440.8v142.9c0 17.7 13.1 32.7 30.6 35.2l57.2 8c12.7 1.8 23 10.4 28 22.1 11.3 26.7 25.7 51.7 42.9 74.5 7.7 10.2 10 23.5 5.2 35.3l-21.7 53.5c-6.7 16.4-0.2 35.3 15.2 44.1L354 927.8c15.4 8.9 34.9 5.1 45.8-8.9l35.4-45.3c7.9-10.2 20.7-14.9 33.5-13.3 14 1.8 28.3 2.8 42.8 2.8 14.5 0 28.8-1 42.8-2.8 12.8-1.6 25.6 3.1 33.5 13.3l35.4 45.3c10.9 14 30.4 17.8 45.8 8.9l123.7-71.4c15.4-8.9 21.8-27.7 15.2-44.1l-21.7-53.5c-4.8-11.8-2.5-25.1 5.2-35.3 17.2-22.8 31.7-47.8 42.9-74.5 5-11.8 15.3-20.4 28-22.1l57.2-8c17.6-2.5 30.6-17.5 30.6-35.2V440.8c0.2-17.8-12.9-32.8-30.5-35.2z m-408 245.5c-76.7 0-138.9-62.2-138.9-138.9s62.2-138.9 138.9-138.9 138.9 62.2 138.9 138.9-62.2 138.9-138.9 138.9z"
|
5
|
+
></path>
|
6
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<g stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
|
4
|
+
<path d="M11.2721 36.7279C14.5294 39.9853 19.0294 42 24 42C33.9411 42 42 33.9411 42 24C42 14.0589 33.9411 6 24 6C19.0294 6 14.5294 8.01472 11.2721 11.2721C9.61407 12.9301 6 17 6 17"/>
|
5
|
+
<path d="M6 9V17H14" />
|
6
|
+
</g>
|
7
|
+
</svg>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
|
3
|
+
xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<path d="M11.2727 4H4V11.2727H11.2727V4Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
5
|
+
<path d="M43.9998 36.7271H36.7271V43.9998H43.9998V36.7271Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
6
|
+
<path d="M11.2727 24H4V31.2727H11.2727V24Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
7
|
+
<path d="M23.9998 36.7271H16.7271V43.9998H23.9998V36.7271Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
8
|
+
<path d="M31.2727 4H24V11.2727H31.2727V4Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
9
|
+
<path d="M43.9998 16.7271H36.7271V23.9998H43.9998V16.7271Z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
10
|
+
<path d="M11.2729 7.63623H24.0002" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
11
|
+
<path d="M24 40.3638H36.7273" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
12
|
+
<path d="M11.2729 27.6366H27.6366V11.2729" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
13
|
+
<path d="M28.8275 20.3633H36.7269M20.3633 36.7269V27.6282V36.7269Z" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
14
|
+
<path d="M7.63672 11.2725V23.9997" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
15
|
+
<path d="M40.3633 24V36.7273" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
16
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
|
3
|
+
xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<rect x="7" y="22.0476" width="34" height="22" rx="2" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/>
|
5
|
+
<path d="M14 22V14.0047C13.9948 8.87022 17.9227 4.56718 23.0859 4.05117C28.249 3.53516 32.9673 6.97408 34 12.0059" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
6
|
+
<path d="M24 30V36" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
7
|
+
</svg>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
2
|
+
<svg viewBox="0 0 1024 1024" version="1.1"
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
4
|
+
xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
|
5
|
+
<path d="M512 273.194667A238.805333 238.805333 0 1 1 273.194667 512 238.805333 238.805333 0 0 1 512 273.194667M512 234.666667a277.333333 277.333333 0 1 0 277.333333 277.333333 277.333333 277.333333 0 0 0-277.333333-277.333333z"></path>
|
6
|
+
<path d="M675.157333 556.928a14.677333 14.677333 0 0 0-12.8 7.445333 96 96 0 0 1-137.109333 24.661334 125.098667 125.098667 0 0 0-188.032 24.149333 14.208 14.208 0 0 0-1.28 2.133333 5.802667 5.802667 0 0 0-0.661333 1.408 14.656 14.656 0 0 0 24.149333 15.68 6.272 6.272 0 0 0 1.28-1.493333 96.832 96.832 0 0 1 13.248-16.490667 95.765333 95.765333 0 0 1 124.629333-9.301333 125.077333 125.077333 0 0 0 189.269334-26.176 5.824 5.824 0 0 0 0.682666-1.493333 14.634667 14.634667 0 0 0-13.44-20.437334z"></path>
|
7
|
+
<path d="M593.834667 444.778667l-12.8 1.557333c-0.192 13.674667-0.384 27.733333-0.384 43.2v9.621333a89.6 89.6 0 0 1-47.296 12.8 76.16 76.16 0 0 1 1.173333-152.277333 81.066667 81.066667 0 0 1 42.666667 10.666667l-0.405334 33.813333h-11.648l-8.213333-32.426667a41.088 41.088 0 0 0-18.965333-4.117333c-29.333333 0-50.837333 23.104-50.837334 68.053333 0 42.666667 20.714667 68.266667 49.642667 68.266667a65.088 65.088 0 0 0 17.792-2.304v-12.8c0-14.272-0.192-27.946667-0.597333-42.026667l-21.461334-2.133333v-6.848h61.376z"></path>
|
8
|
+
</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="1534" node-id="1" sillyvg="true" template-height="1534" template-width="1051" version="1.1" viewBox="0 0 1051 1534" width="1051" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="147"><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-1" node-id="5" spreadMethod="pad" x1="0" x2="1" y1="0.5" y2="0.5"><stop offset="0" stop-color="#252424"></stop><stop offset="1" stop-color="#181818"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-2" node-id="8" spreadMethod="pad" x1="0.0161995" x2="1" y1="0.5" y2="0.5"><stop offset="0" stop-color="#a5a5a5"></stop><stop offset="1" stop-color="#7b7a7a"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-3" node-id="11" spreadMethod="pad" x1="0" x2="1" y1="0.5" y2="0.5"><stop offset="0" stop-color="#252424"></stop><stop offset="1" stop-color="#181818"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-4" node-id="14" spreadMethod="pad" x1="0" x2="1" y1="0.5" y2="0.5"><stop offset="0" stop-color="#252424"></stop><stop offset="1" stop-color="#181818"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-5" node-id="17" spreadMethod="pad" x1="0" x2="1" y1="0.5" y2="0.5"><stop offset="0" stop-color="#252424"></stop><stop offset="1" stop-color="#181818"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-6" node-id="20" spreadMethod="pad" x1="0.9069435" x2="0" y1="0.079825416" y2="0.9818688"><stop offset="0" stop-color="#e2e2e2"></stop><stop offset="1" stop-color="#f7f7f7"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-7" node-id="23" spreadMethod="pad" x1="0.537308" x2="1" y1="0.4529399" y2="0.82563865"><stop offset="0" stop-color="#fafafa"></stop><stop offset="1" stop-color="#c9c9c9"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-8" node-id="26" spreadMethod="pad" x1="0.98747736" x2="0" y1="0.5125712" y2="0.4875145"><stop offset="0" stop-color="#f7f7f7"></stop><stop offset="1" stop-color="#e2e2e2"></stop></linearGradient></defs><g node-id="196"><g node-id="197"><g node-id="200"><g node-id="217"><path d="M 405.00 1402.72 L 499.83 1408.01 L 499.83 1512.14 L 500.13 1514.32 L 499.83 1516.51 L 499.83 1521.70 L 496.71 1521.53 L 494.17 1523.68 L 490.85 1525.78 L 486.61 1527.80 L 482.20 1529.42 L 477.16 1530.84 L 471.41 1532.04 L 465.61 1532.88 L 459.39 1533.40 L 452.71 1533.60 L 446.58 1533.44 L 440.82 1532.99 L 435.41 1532.27 L 430.04 1531.25 L 425.24 1530.04 L 420.96 1528.64 L 416.80 1526.91 L 413.38 1525.09 L 410.61 1523.19 L 408.16 1520.94 L 406.53 1518.70 L 405.58 1516.44 L 405.00 1516.41 L 405.00 1402.72 Z" fill="url(#linearGradient-1)" fill-rule="nonzero" group-id="1,2,5,22" id="形状结合" node-id="34" stroke="none" target-height="130.88" target-width="95.130005" target-x="405" target-y="1402.72"></path><path d="M 500.13 1406.13 L 499.89 1408.04 L 499.22 1409.90 L 498.08 1411.76 L 496.40 1413.64 L 493.82 1415.75 L 490.48 1417.79 L 486.24 1419.76 L 481.86 1421.34 L 476.85 1422.73 L 471.17 1423.89 L 465.44 1424.71 L 459.30 1425.22 L 452.71 1425.41 L 446.13 1425.22 L 439.99 1424.71 L 434.26 1423.89 L 428.57 1422.73 L 423.57 1421.34 L 419.18 1419.76 L 414.95 1417.79 L 411.61 1415.75 L 409.02 1413.64 L 407.34 1411.76 L 406.20 1409.90 L 405.54 1408.04 L 405.30 1406.13 L 405.54 1404.22 L 406.20 1402.36 L 407.34 1400.51 L 409.02 1398.63 L 411.61 1396.52 L 414.95 1394.47 L 419.18 1392.50 L 423.57 1390.92 L 428.57 1389.54 L 434.26 1388.37 L 439.99 1387.56 L 446.13 1387.04 L 452.71 1386.86 L 459.30 1387.04 L 465.44 1387.56 L 471.17 1388.37 L 476.85 1389.54 L 481.86 1390.92 L 486.24 1392.50 L 490.48 1394.47 L 493.82 1396.52 L 496.40 1398.63 L 498.08 1400.51 L 499.22 1402.36 L 499.89 1404.22 L 500.13 1406.13 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,5,22" id="形状结合" node-id="35" stroke="none" target-height="38.55005" target-width="94.83002" target-x="405.3" target-y="1386.86"></path></g><g node-id="218"><path d="M 438.38 1367.03 L 470.00 1368.96 L 470.00 1410.65 L 469.14 1410.60 L 467.91 1411.62 L 466.08 1412.59 L 463.47 1413.49 L 460.79 1414.08 L 457.71 1414.47 L 454.19 1414.62 L 449.89 1414.40 L 446.21 1413.81 L 442.87 1412.82 L 440.54 1411.67 L 439.29 1410.66 L 438.62 1409.67 L 438.38 1408.67 L 438.39 1408.71 L 438.38 1367.03 Z" fill="url(#linearGradient-2)" fill-rule="nonzero" group-id="1,2,5,23" id="形状结合备份" node-id="37" stroke="none" target-height="47.589966" target-width="31.619995" target-x="438.38" target-y="1367.03"></path><path d="M 470.00 1365.14 L 469.76 1366.16 L 469.09 1367.17 L 467.84 1368.19 L 465.51 1369.36 L 462.17 1370.36 L 458.49 1370.96 L 454.19 1371.19 L 449.89 1370.96 L 446.21 1370.36 L 442.87 1369.36 L 440.54 1368.19 L 439.29 1367.17 L 438.62 1366.16 L 438.38 1365.14 L 438.62 1364.12 L 439.29 1363.11 L 440.54 1362.09 L 442.87 1360.92 L 446.21 1359.92 L 449.89 1359.32 L 454.19 1359.09 L 458.49 1359.32 L 462.17 1359.92 L 465.51 1360.92 L 467.84 1362.09 L 469.09 1363.11 L 469.76 1364.12 L 470.00 1365.14 Z" fill="#585858" fill-rule="nonzero" group-id="1,2,5,23" id="形状结合备份-2" node-id="38" stroke="none" target-height="12.099976" target-width="31.619995" target-x="438.38" target-y="1359.09"></path></g></g><g node-id="201"><g node-id="219"><path d="M 877.26 1151.83 L 972.09 1157.12 L 972.09 1261.25 L 972.40 1263.43 L 972.09 1265.62 L 972.09 1270.81 L 968.97 1270.64 L 966.43 1272.79 L 963.12 1274.89 L 958.87 1276.91 L 954.47 1278.53 L 949.43 1279.95 L 943.68 1281.15 L 937.88 1281.99 L 931.66 1282.52 L 924.98 1282.71 L 918.84 1282.55 L 913.09 1282.10 L 907.68 1281.39 L 902.31 1280.37 L 897.51 1279.15 L 893.23 1277.75 L 889.06 1276.02 L 885.65 1274.20 L 882.88 1272.31 L 880.43 1270.05 L 878.80 1267.82 L 877.85 1265.56 L 877.26 1265.52 L 877.26 1151.83 Z" fill="url(#linearGradient-1)" fill-rule="nonzero" group-id="1,2,6,24" id="形状结合" node-id="41" stroke="none" target-height="130.88" target-width="95.140015" target-x="877.26" target-y="1151.83"></path><path d="M 972.40 1155.24 L 972.16 1157.15 L 971.49 1159.02 L 970.35 1160.87 L 968.67 1162.75 L 966.08 1164.86 L 962.74 1166.90 L 958.51 1168.88 L 954.12 1170.45 L 949.12 1171.84 L 943.44 1173.01 L 937.71 1173.82 L 931.56 1174.33 L 924.98 1174.52 L 918.40 1174.33 L 912.25 1173.82 L 906.52 1173.01 L 900.84 1171.84 L 895.84 1170.45 L 891.45 1168.88 L 887.22 1166.90 L 883.88 1164.86 L 881.29 1162.75 L 879.61 1160.87 L 878.47 1159.02 L 877.80 1157.15 L 877.56 1155.24 L 877.80 1153.34 L 878.47 1151.47 L 879.61 1149.62 L 881.29 1147.74 L 883.88 1145.63 L 887.22 1143.58 L 891.45 1141.61 L 895.84 1140.04 L 900.84 1138.65 L 906.52 1137.48 L 912.25 1136.67 L 918.40 1136.16 L 924.98 1135.97 L 931.56 1136.16 L 937.71 1136.67 L 943.44 1137.48 L 949.12 1138.65 L 954.12 1140.04 L 958.51 1141.61 L 962.74 1143.58 L 966.08 1145.63 L 968.67 1147.74 L 970.35 1149.62 L 971.49 1151.47 L 972.16 1153.34 L 972.40 1155.24 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,6,24" id="形状结合" node-id="42" stroke="none" target-height="38.55005" target-width="94.84003" target-x="877.56" target-y="1135.97"></path></g><g node-id="220"><path d="M 910.65 1116.14 L 942.26 1118.08 L 942.26 1159.76 L 941.41 1159.71 L 940.18 1160.73 L 938.35 1161.70 L 935.74 1162.60 L 933.05 1163.19 L 929.98 1163.58 L 926.46 1163.73 L 922.16 1163.51 L 918.48 1162.92 L 915.14 1161.93 L 912.81 1160.78 L 911.56 1159.77 L 910.88 1158.78 L 910.65 1157.78 L 910.65 1157.82 L 910.65 1116.14 Z" fill="url(#linearGradient-2)" fill-rule="nonzero" group-id="1,2,6,25" id="形状结合备份" node-id="44" stroke="none" target-height="47.589966" target-width="31.609985" target-x="910.65" target-y="1116.14"></path><path d="M 942.26 1114.25 L 942.03 1115.28 L 941.36 1116.28 L 940.10 1117.31 L 937.77 1118.48 L 934.43 1119.48 L 930.76 1120.07 L 926.46 1120.30 L 922.16 1120.07 L 918.48 1119.48 L 915.14 1118.48 L 912.81 1117.31 L 911.56 1116.28 L 910.88 1115.28 L 910.65 1114.25 L 910.88 1113.23 L 911.56 1112.23 L 912.81 1111.20 L 915.14 1110.03 L 918.48 1109.03 L 922.16 1108.43 L 926.46 1108.21 L 930.76 1108.43 L 934.43 1109.03 L 937.77 1110.03 L 940.10 1111.20 L 941.36 1112.23 L 942.03 1113.23 L 942.26 1114.25 Z" fill="#585858" fill-rule="nonzero" group-id="1,2,6,25" id="形状结合备份-2" node-id="45" stroke="none" target-height="12.090088" target-width="31.609985" target-x="910.65" target-y="1108.21"></path></g></g><g node-id="202"><g node-id="221"><path d="M 11.59 1219.25 L 106.42 1224.54 L 106.42 1328.67 L 106.72 1330.86 L 106.42 1333.04 L 106.42 1338.23 L 103.30 1338.06 L 100.76 1340.22 L 97.44 1342.31 L 93.20 1344.34 L 88.79 1345.95 L 83.75 1347.37 L 78.00 1348.57 L 72.20 1349.41 L 65.98 1349.94 L 59.30 1350.13 L 53.17 1349.97 L 47.41 1349.52 L 42.00 1348.81 L 36.63 1347.79 L 31.83 1346.57 L 27.55 1345.17 L 23.39 1343.44 L 19.97 1341.62 L 17.20 1339.73 L 14.75 1337.48 L 13.12 1335.24 L 12.17 1332.98 L 11.59 1332.95 L 11.59 1219.25 Z" fill="url(#linearGradient-1)" fill-rule="nonzero" group-id="1,2,7,26" id="形状结合" node-id="48" stroke="none" target-height="130.88" target-width="95.130005" target-x="11.59" target-y="1219.25"></path><path d="M 106.72 1222.67 L 106.48 1224.57 L 105.81 1226.44 L 104.67 1228.29 L 102.99 1230.17 L 100.41 1232.28 L 97.07 1234.33 L 92.83 1236.30 L 88.45 1237.87 L 83.44 1239.26 L 77.76 1240.43 L 72.03 1241.24 L 65.89 1241.76 L 59.30 1241.94 L 52.72 1241.76 L 46.58 1241.24 L 40.85 1240.43 L 35.16 1239.26 L 30.16 1237.87 L 25.77 1236.30 L 21.54 1234.33 L 18.20 1232.28 L 15.61 1230.17 L 13.93 1228.29 L 12.79 1226.44 L 12.13 1224.57 L 11.89 1222.67 L 12.13 1220.76 L 12.79 1218.90 L 13.93 1217.04 L 15.61 1215.16 L 18.20 1213.05 L 21.54 1211.01 L 25.77 1209.04 L 30.16 1207.46 L 35.16 1206.07 L 40.85 1204.90 L 46.58 1204.09 L 52.72 1203.58 L 59.30 1203.39 L 65.89 1203.58 L 72.03 1204.09 L 77.76 1204.90 L 83.44 1206.07 L 88.45 1207.46 L 92.83 1209.04 L 97.07 1211.01 L 100.41 1213.05 L 102.99 1215.16 L 104.67 1217.04 L 105.81 1218.90 L 106.48 1220.76 L 106.72 1222.67 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,7,26" id="形状结合" node-id="49" stroke="none" target-height="38.549927" target-width="94.83" target-x="11.89" target-y="1203.39"></path></g><g node-id="222"><path d="M 44.98 1183.56 L 76.59 1185.50 L 76.59 1227.19 L 75.73 1227.13 L 74.50 1228.15 L 72.67 1229.12 L 70.06 1230.02 L 67.38 1230.61 L 64.30 1231.00 L 60.78 1231.15 L 56.48 1230.93 L 52.80 1230.34 L 49.46 1229.36 L 47.13 1228.21 L 45.88 1227.19 L 45.21 1226.21 L 44.98 1225.20 L 44.98 1225.25 L 44.98 1183.56 Z" fill="url(#linearGradient-2)" fill-rule="nonzero" group-id="1,2,7,27" id="形状结合备份" node-id="51" stroke="none" target-height="47.589966" target-width="31.609997" target-x="44.98" target-y="1183.56"></path><path d="M 76.59 1181.68 L 76.35 1182.70 L 75.68 1183.70 L 74.43 1184.73 L 72.10 1185.90 L 68.76 1186.90 L 65.08 1187.50 L 60.78 1187.72 L 56.48 1187.50 L 52.80 1186.90 L 49.46 1185.90 L 47.13 1184.73 L 45.88 1183.70 L 45.21 1182.70 L 44.98 1181.68 L 45.21 1180.65 L 45.88 1179.65 L 47.13 1178.62 L 49.46 1177.45 L 52.80 1176.45 L 56.48 1175.85 L 60.78 1175.63 L 65.08 1175.85 L 68.76 1176.45 L 72.10 1177.45 L 74.43 1178.62 L 75.68 1179.65 L 76.35 1180.65 L 76.59 1181.68 Z" fill="#585858" fill-rule="nonzero" group-id="1,2,7,27" id="形状结合备份-2" node-id="52" stroke="none" target-height="12.089966" target-width="31.609997" target-x="44.98" target-y="1175.63"></path></g></g><g node-id="203"><g node-id="223"><path d="M 517.69 1009.67 L 612.52 1014.96 L 612.52 1119.09 L 612.83 1121.27 L 612.52 1123.46 L 612.52 1128.65 L 609.40 1128.48 L 606.86 1130.64 L 603.55 1132.73 L 599.30 1134.75 L 594.90 1136.37 L 589.86 1137.79 L 584.11 1138.99 L 578.31 1139.83 L 572.09 1140.36 L 565.41 1140.55 L 559.27 1140.39 L 553.52 1139.94 L 548.11 1139.23 L 542.74 1138.21 L 537.94 1136.99 L 533.66 1135.59 L 529.49 1133.86 L 526.08 1132.04 L 523.31 1130.15 L 520.86 1127.90 L 519.23 1125.66 L 518.28 1123.40 L 517.69 1123.37 L 517.69 1009.67 Z" fill="url(#linearGradient-1)" fill-rule="nonzero" group-id="1,2,8,28" id="形状结合" node-id="55" stroke="none" target-height="130.88007" target-width="95.140015" target-x="517.69" target-y="1009.67"></path><path d="M 612.83 1013.09 L 612.59 1014.99 L 611.92 1016.86 L 610.78 1018.71 L 609.10 1020.59 L 606.51 1022.70 L 603.17 1024.75 L 598.94 1026.72 L 594.55 1028.29 L 589.55 1029.68 L 583.87 1030.85 L 578.14 1031.66 L 571.99 1032.17 L 565.41 1032.36 L 558.83 1032.17 L 552.68 1031.66 L 546.95 1030.85 L 541.27 1029.68 L 536.27 1028.29 L 531.88 1026.72 L 527.65 1024.75 L 524.31 1022.70 L 521.72 1020.59 L 520.04 1018.71 L 518.90 1016.86 L 518.23 1014.99 L 517.99 1013.09 L 518.23 1011.18 L 518.90 1009.32 L 520.04 1007.46 L 521.72 1005.58 L 524.31 1003.47 L 527.65 1001.43 L 531.88 999.46 L 536.27 997.88 L 541.27 996.49 L 546.95 995.32 L 552.68 994.51 L 558.83 994.00 L 565.41 993.81 L 571.99 994.00 L 578.14 994.51 L 583.87 995.32 L 589.55 996.49 L 594.55 997.88 L 598.94 999.46 L 603.17 1001.43 L 606.51 1003.47 L 609.10 1005.58 L 610.78 1007.46 L 611.92 1009.32 L 612.59 1011.18 L 612.83 1013.09 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,8,28" id="形状结合" node-id="56" stroke="none" target-height="38.549988" target-width="94.84003" target-x="517.99" target-y="993.81"></path></g><g node-id="224"><path d="M 551.08 973.98 L 582.69 975.92 L 582.69 1017.61 L 581.84 1017.55 L 580.61 1018.57 L 578.78 1019.54 L 576.17 1020.44 L 573.48 1021.03 L 570.41 1021.42 L 566.89 1021.57 L 562.59 1021.35 L 558.91 1020.76 L 555.57 1019.77 L 553.24 1018.62 L 551.99 1017.61 L 551.31 1016.63 L 551.08 1015.62 L 551.08 1015.67 L 551.08 973.98 Z" fill="url(#linearGradient-2)" fill-rule="nonzero" group-id="1,2,8,29" id="形状结合备份" node-id="58" stroke="none" target-height="47.590027" target-width="31.609985" target-x="551.08" target-y="973.98"></path><path d="M 582.69 972.09 L 582.46 973.12 L 581.79 974.12 L 580.53 975.15 L 578.20 976.32 L 574.86 977.32 L 571.19 977.92 L 566.89 978.14 L 562.59 977.92 L 558.91 977.32 L 555.57 976.32 L 553.24 975.15 L 551.99 974.12 L 551.31 973.12 L 551.08 972.09 L 551.31 971.07 L 551.99 970.07 L 553.24 969.04 L 555.57 967.87 L 558.91 966.87 L 562.59 966.27 L 566.89 966.05 L 571.19 966.27 L 574.86 966.87 L 578.20 967.87 L 580.53 969.04 L 581.79 970.07 L 582.46 971.07 L 582.69 972.09 Z" fill="#585858" fill-rule="nonzero" group-id="1,2,8,29" id="形状结合备份-2" node-id="59" stroke="none" target-height="12.090027" target-width="31.609985" target-x="551.08" target-y="966.05"></path></g></g><g node-id="204"><path d="M 987.90 756.83 L 987.90 1146.50 L 482.13 1424.12 L 479.91 1041.06 Z" fill="#d8d8d8" fill-rule="nonzero" group-id="1,2,9" id="矩形备份-52" node-id="61" stroke="none" target-height="667.29" target-width="507.99002" target-x="479.91" target-y="756.83"></path><path d="M 2.04 1202.02 L 3.90 814.98 L 485.96 1041.06 L 484.11 1426.10 Z" fill="#e8e6e6" fill-rule="nonzero" group-id="1,2,9" id="路径-16" node-id="62" stroke="none" target-height="611.12" target-width="483.91998" target-x="2.04" target-y="814.98"></path><path d="M 3.08 814.26 L 489.91 526.81 L 987.33 758.12 L 481.70 1048.29 Z" fill="#f7f7f7" fill-rule="nonzero" group-id="1,2,9" id="路径-16备份-2" node-id="63" stroke="none" target-height="521.48004" target-width="984.25" target-x="3.08" target-y="526.81"></path><g node-id="225"><g node-id="247"><path d="M 86.48 753.43 L 575.29 980.66 L 576.70 981.57 L 577.75 982.70 L 578.47 984.10 L 578.84 985.62 L 578.80 987.17 L 578.33 988.78 L 574.41 997.58 L 573.51 999.01 L 572.38 1000.08 L 570.98 1000.83 L 569.44 1001.21 L 567.88 1001.17 L 566.25 1000.70 L 566.16 1000.66 L 77.34 773.44 L 75.94 772.53 L 74.89 771.39 L 74.16 770.00 L 73.80 768.47 L 73.84 766.93 L 74.30 765.32 L 78.22 756.52 L 79.12 755.08 L 80.26 754.01 L 81.66 753.27 L 83.20 752.89 L 84.76 752.93 L 86.39 753.39 L 86.48 753.43 Z" fill="#a99d95" fill-rule="evenodd" group-id="1,2,9,30,52" id="path-3" node-id="66" stroke="none" target-height="248.32" target-width="505.04004" target-x="73.8" target-y="752.89"></path></g><path d="M 86.48 753.43 L 575.29 980.66 L 576.70 981.57 L 577.75 982.70 L 578.47 984.10 L 578.84 985.62 L 578.80 987.17 L 578.33 988.78 L 574.41 997.58 L 573.51 999.01 L 572.38 1000.08 L 570.98 1000.83 L 569.44 1001.21 L 567.88 1001.17 L 566.25 1000.70 L 566.16 1000.66 L 77.34 773.44 L 75.94 772.53 L 74.89 771.39 L 74.16 770.00 L 73.80 768.47 L 73.84 766.93 L 74.30 765.32 L 78.22 756.52 L 79.12 755.08 L 80.26 754.01 L 81.66 753.27 L 83.20 752.89 L 84.76 752.93 L 86.39 753.39 L 86.48 753.43 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,9,30,53" id="path-3" node-id="68" stroke="none" target-height="248.32" target-width="505.04004" target-x="73.8" target-y="752.89"></path></g><g node-id="226"><g node-id="249"><path d="M 219.49 680.79 L 720.36 908.12 L 721.78 909.02 L 722.84 910.16 L 723.58 911.55 L 723.95 913.09 L 723.91 914.64 L 723.45 916.26 L 719.53 925.06 L 718.63 926.50 L 717.49 927.56 L 716.09 928.31 L 714.55 928.69 L 712.99 928.65 L 711.36 928.19 L 210.46 700.84 L 209.04 699.94 L 207.98 698.80 L 207.24 697.41 L 206.87 695.87 L 206.91 694.32 L 207.37 692.70 L 211.29 683.90 L 212.19 682.46 L 213.33 681.39 L 214.72 680.65 L 216.27 680.27 L 217.82 680.31 L 219.45 680.77 Z" fill="#a99d95" fill-rule="evenodd" group-id="1,2,9,31,54" id="path-5" node-id="71" stroke="none" target-height="248.41998" target-width="517.08" target-x="206.87" target-y="680.27"></path></g><path d="M 219.49 680.79 L 720.36 908.12 L 721.78 909.02 L 722.84 910.16 L 723.58 911.55 L 723.95 913.09 L 723.91 914.64 L 723.45 916.26 L 719.53 925.06 L 718.63 926.50 L 717.49 927.56 L 716.09 928.31 L 714.55 928.69 L 712.99 928.65 L 711.36 928.19 L 210.46 700.84 L 209.04 699.94 L 207.98 698.80 L 207.24 697.41 L 206.87 695.87 L 206.91 694.32 L 207.37 692.70 L 211.29 683.90 L 212.19 682.46 L 213.33 681.39 L 214.72 680.65 L 216.27 680.27 L 217.82 680.31 L 219.45 680.77 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,9,31,55" id="path-5" node-id="73" stroke="none" target-height="248.41998" target-width="517.08" target-x="206.87" target-y="680.27"></path></g></g><g node-id="205"><path d="M 425.49 994.51 L 425.49 1106.73 L 306.95 1168.28 L 305.53 1060.29 Z" fill="#cecac0" fill-rule="nonzero" group-id="1,2,10" id="矩形备份-52" node-id="75" stroke="none" target-height="173.77002" target-width="119.95999" target-x="305.53" target-y="994.51"></path><path d="M 0.94 1021.39 L 0.94 919.50 L 309.40 1064.16 L 309.40 1164.77 Z" fill="#d6d2cc" fill-rule="nonzero" group-id="1,2,10" id="路径-16" node-id="76" stroke="none" target-height="245.27002" target-width="308.46" target-x="0.94" target-y="919.5"></path><path d="M 0.50 919.33 L 110.71 847.32 L 425.49 994.51 L 306.67 1068.79 Z" fill="#f5f3ee" fill-rule="nonzero" group-id="1,2,10" id="路径-16备份-2" node-id="77" stroke="none" target-height="221.47003" target-width="424.99" target-x="0.5" target-y="847.32"></path><g node-id="227"><path d="M 111.86 864.50 L 127.29 865.36 L 127.29 882.30 L 127.34 882.66 L 127.29 883.01 L 127.29 883.86 L 126.79 883.83 L 125.73 884.58 L 123.99 885.24 L 122.02 885.64 L 119.63 885.79 L 116.71 885.56 L 114.46 884.99 L 113.13 884.35 L 112.35 883.69 L 111.96 883.00 L 111.86 883.00 L 111.86 864.50 Z" fill="url(#linearGradient-3)" fill-rule="nonzero" group-id="1,2,10,32" id="形状结合" node-id="79" stroke="none" target-height="21.289978" target-width="15.479996" target-x="111.86" target-y="864.5"></path><path d="M 127.34 867.96 L 127.07 869.57 L 126.29 871.02 L 125.10 872.22 L 123.52 873.19 L 121.71 873.79 L 119.63 874.01 L 117.55 873.79 L 115.73 873.19 L 114.15 872.22 L 112.97 871.02 L 112.19 869.57 L 111.91 867.96 L 112.19 866.36 L 112.97 864.91 L 114.15 863.70 L 115.73 862.74 L 117.55 862.14 L 119.63 861.92 L 121.71 862.14 L 123.52 862.74 L 125.10 863.70 L 126.29 864.91 L 127.07 866.36 L 127.34 867.96 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,32" id="形状结合" node-id="80" stroke="none" target-height="12.090027" target-width="15.429993" target-x="111.91" target-y="861.92"></path></g><g node-id="228"><path d="M 80.91 903.19 L 96.34 904.05 L 96.34 920.99 L 96.39 921.35 L 96.34 921.71 L 96.34 922.55 L 95.83 922.52 L 94.77 923.27 L 93.04 923.94 L 91.06 924.34 L 88.67 924.49 L 85.75 924.26 L 83.51 923.68 L 82.17 923.04 L 81.39 922.38 L 81.00 921.70 L 80.91 921.69 L 80.91 903.19 Z" fill="url(#linearGradient-3)" fill-rule="nonzero" group-id="1,2,10,33" id="形状结合" node-id="82" stroke="none" target-height="21.299988" target-width="15.479996" target-x="80.91" target-y="903.19"></path><path d="M 96.39 906.66 L 96.11 908.27 L 95.33 909.71 L 94.15 910.92 L 92.57 911.88 L 90.75 912.49 L 88.67 912.71 L 86.59 912.49 L 84.78 911.88 L 83.20 910.92 L 82.01 909.71 L 81.23 908.27 L 80.96 906.66 L 81.23 905.05 L 82.01 903.61 L 83.20 902.40 L 84.78 901.44 L 86.59 900.84 L 88.67 900.61 L 90.75 900.84 L 92.57 901.44 L 94.15 902.40 L 95.33 903.61 L 96.11 905.05 L 96.39 906.66 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,33" id="形状结合" node-id="83" stroke="none" target-height="12.100037" target-width="15.43" target-x="80.96" target-y="900.61"></path></g><g node-id="229"><path d="M 150.56 879.98 L 165.99 880.84 L 165.99 897.78 L 166.04 898.13 L 165.99 898.49 L 165.99 899.33 L 165.48 899.31 L 164.42 900.06 L 162.69 900.72 L 160.71 901.12 L 158.32 901.27 L 155.41 901.04 L 153.16 900.46 L 151.82 899.83 L 151.04 899.17 L 150.66 898.48 L 150.56 898.47 L 150.56 879.98 Z" fill="url(#linearGradient-3)" fill-rule="nonzero" group-id="1,2,10,34" id="形状结合" node-id="85" stroke="none" target-height="21.29004" target-width="15.479996" target-x="150.56" target-y="879.98"></path><path d="M 166.04 883.44 L 165.76 885.05 L 164.99 886.50 L 163.80 887.70 L 162.22 888.66 L 160.40 889.27 L 158.32 889.49 L 156.25 889.27 L 154.43 888.66 L 152.85 887.70 L 151.66 886.50 L 150.88 885.05 L 150.61 883.44 L 150.88 881.84 L 151.66 880.39 L 152.85 879.18 L 154.43 878.22 L 156.25 877.62 L 158.32 877.40 L 160.40 877.62 L 162.22 878.22 L 163.80 879.18 L 164.99 880.39 L 165.76 881.84 L 166.04 883.44 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,34" id="形状结合" node-id="86" stroke="none" target-height="12.089966" target-width="15.429993" target-x="150.61" target-y="877.4"></path></g><g node-id="230"><path d="M 119.60 918.67 L 135.03 919.53 L 135.03 936.47 L 135.08 936.83 L 135.03 937.19 L 135.03 938.03 L 134.53 938.00 L 133.46 938.75 L 131.73 939.42 L 129.76 939.81 L 127.37 939.97 L 124.45 939.73 L 122.20 939.16 L 120.87 938.52 L 120.09 937.86 L 119.70 937.18 L 119.60 937.17 L 119.60 918.67 Z" fill="url(#linearGradient-3)" fill-rule="nonzero" group-id="1,2,10,35" id="形状结合" node-id="88" stroke="none" target-height="21.299988" target-width="15.480003" target-x="119.6" target-y="918.67"></path><path d="M 135.08 922.14 L 134.81 923.74 L 134.03 925.19 L 132.84 926.40 L 131.26 927.36 L 129.45 927.96 L 127.37 928.19 L 125.29 927.96 L 123.47 927.36 L 121.89 926.40 L 120.71 925.19 L 119.93 923.74 L 119.65 922.14 L 119.93 920.53 L 120.71 919.09 L 121.89 917.88 L 123.47 916.92 L 125.29 916.31 L 127.37 916.09 L 129.45 916.31 L 131.26 916.92 L 132.84 917.88 L 134.03 919.09 L 134.81 920.53 L 135.08 922.14 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,35" id="形状结合" node-id="89" stroke="none" target-height="12.099976" target-width="15.43" target-x="119.65" target-y="916.09"></path></g><g node-id="231"><path d="M 189.26 903.19 L 204.69 904.05 L 204.69 920.99 L 204.73 921.35 L 204.69 921.71 L 204.69 922.55 L 204.18 922.52 L 203.12 923.27 L 201.39 923.94 L 199.41 924.34 L 197.02 924.49 L 194.10 924.26 L 191.85 923.68 L 190.52 923.04 L 189.74 922.38 L 189.35 921.70 L 189.26 921.69 L 189.26 903.19 Z" fill="url(#linearGradient-3)" fill-rule="nonzero" group-id="1,2,10,36" id="形状结合" node-id="91" stroke="none" target-height="21.299988" target-width="15.470001" target-x="189.26" target-y="903.19"></path><path d="M 204.73 906.66 L 204.46 908.27 L 203.68 909.71 L 202.50 910.92 L 200.91 911.88 L 199.10 912.49 L 197.02 912.71 L 194.94 912.49 L 193.13 911.88 L 191.55 910.92 L 190.36 909.71 L 189.58 908.27 L 189.31 906.66 L 189.58 905.05 L 190.36 903.61 L 191.55 902.40 L 193.13 901.44 L 194.94 900.84 L 197.02 900.61 L 199.10 900.84 L 200.91 901.44 L 202.50 902.40 L 203.68 903.61 L 204.46 905.05 L 204.73 906.66 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,36" id="形状结合" node-id="92" stroke="none" target-height="12.100037" target-width="15.419998" target-x="189.31" target-y="900.61"></path></g><g node-id="232"><path d="M 158.30 941.89 L 173.73 942.75 L 173.73 959.69 L 173.78 960.05 L 173.73 960.41 L 173.73 961.25 L 173.22 961.22 L 172.16 961.97 L 170.43 962.63 L 168.45 963.03 L 166.06 963.18 L 163.15 962.95 L 160.90 962.38 L 159.56 961.74 L 158.78 961.08 L 158.40 960.39 L 158.30 960.39 L 158.30 941.89 Z" fill="url(#linearGradient-3)" fill-rule="nonzero" group-id="1,2,10,37" id="形状结合" node-id="94" stroke="none" target-height="21.289978" target-width="15.479996" target-x="158.3" target-y="941.89"></path><path d="M 173.78 945.36 L 173.50 946.96 L 172.72 948.41 L 171.54 949.62 L 169.96 950.58 L 168.14 951.18 L 166.06 951.40 L 163.98 951.18 L 162.17 950.58 L 160.59 949.62 L 159.40 948.41 L 158.62 946.96 L 158.35 945.36 L 158.62 943.75 L 159.40 942.30 L 160.59 941.10 L 162.17 940.13 L 163.98 939.53 L 166.06 939.31 L 168.14 939.53 L 169.96 940.13 L 171.54 941.10 L 172.72 942.30 L 173.50 943.75 L 173.78 945.36 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,37" id="形状结合" node-id="95" stroke="none" target-height="12.090027" target-width="15.429993" target-x="158.35" target-y="939.31"></path></g><g node-id="233"><path d="M 227.95 918.67 L 243.38 919.53 L 243.38 936.47 L 243.43 936.83 L 243.38 937.19 L 243.38 938.03 L 242.87 938.00 L 241.81 938.75 L 240.08 939.42 L 238.10 939.81 L 235.72 939.97 L 232.80 939.73 L 230.55 939.16 L 229.22 938.52 L 228.44 937.86 L 228.05 937.18 L 227.95 937.17 L 227.95 918.67 Z" fill="url(#linearGradient-3)" fill-rule="nonzero" group-id="1,2,10,38" id="形状结合" node-id="97" stroke="none" target-height="21.299988" target-width="15.479996" target-x="227.95" target-y="918.67"></path><path d="M 243.43 922.14 L 243.16 923.74 L 242.38 925.19 L 241.19 926.40 L 239.61 927.36 L 237.80 927.96 L 235.72 928.19 L 233.64 927.96 L 231.82 927.36 L 230.24 926.40 L 229.05 925.19 L 228.28 923.74 L 228.00 922.14 L 228.28 920.53 L 229.05 919.09 L 230.24 917.88 L 231.82 916.92 L 233.64 916.31 L 235.72 916.09 L 237.80 916.31 L 239.61 916.92 L 241.19 917.88 L 242.38 919.09 L 243.16 920.53 L 243.43 922.14 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,38" id="形状结合" node-id="98" stroke="none" target-height="12.099976" target-width="15.429993" target-x="228" target-y="916.09"></path></g><g node-id="234"><path d="M 197.00 957.37 L 212.42 958.23 L 212.42 975.17 L 212.47 975.53 L 212.42 975.88 L 212.42 976.73 L 211.92 976.70 L 210.86 977.45 L 209.13 978.11 L 207.15 978.51 L 204.76 978.66 L 201.84 978.43 L 199.59 977.86 L 198.26 977.22 L 197.48 976.56 L 197.09 975.87 L 197.00 975.87 L 197.00 957.37 Z" fill="url(#linearGradient-3)" fill-rule="nonzero" group-id="1,2,10,39" id="形状结合" node-id="100" stroke="none" target-height="21.289978" target-width="15.470001" target-x="197" target-y="957.37"></path><path d="M 212.47 960.83 L 212.20 962.44 L 211.42 963.89 L 210.23 965.10 L 208.65 966.06 L 206.84 966.66 L 204.76 966.88 L 202.68 966.66 L 200.87 966.06 L 199.28 965.10 L 198.10 963.89 L 197.32 962.44 L 197.04 960.83 L 197.32 959.23 L 198.10 957.78 L 199.28 956.57 L 200.87 955.61 L 202.68 955.01 L 204.76 954.79 L 206.84 955.01 L 208.65 955.61 L 210.23 956.57 L 211.42 957.78 L 212.20 959.23 L 212.47 960.83 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,39" id="形状结合" node-id="101" stroke="none" target-height="12.090027" target-width="15.430008" target-x="197.04" target-y="954.79"></path></g><g node-id="235"><path d="M 266.65 941.89 L 282.08 942.75 L 282.08 959.69 L 282.13 960.05 L 282.08 960.41 L 282.08 961.25 L 281.57 961.22 L 280.51 961.97 L 278.78 962.63 L 276.80 963.03 L 274.41 963.18 L 271.50 962.95 L 269.25 962.38 L 267.91 961.74 L 267.13 961.08 L 266.74 960.39 L 266.65 960.39 L 266.65 941.89 Z" fill="url(#linearGradient-3)" fill-rule="nonzero" group-id="1,2,10,40" id="形状结合" node-id="103" stroke="none" target-height="21.289978" target-width="15.480011" target-x="266.65" target-y="941.89"></path><path d="M 282.13 945.36 L 281.85 946.96 L 281.07 948.41 L 279.89 949.62 L 278.31 950.58 L 276.49 951.18 L 274.41 951.40 L 272.33 951.18 L 270.52 950.58 L 268.94 949.62 L 267.75 948.41 L 266.97 946.96 L 266.70 945.36 L 266.97 943.75 L 267.75 942.30 L 268.94 941.10 L 270.52 940.13 L 272.33 939.53 L 274.41 939.31 L 276.49 939.53 L 278.31 940.13 L 279.89 941.10 L 281.07 942.30 L 281.85 943.75 L 282.13 945.36 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,40" id="形状结合" node-id="104" stroke="none" target-height="12.090027" target-width="15.429993" target-x="266.7" target-y="939.31"></path></g><g node-id="236"><path d="M 235.69 980.59 L 251.12 981.45 L 251.12 998.39 L 251.17 998.74 L 251.12 999.10 L 251.12 999.94 L 250.61 999.92 L 249.55 1000.67 L 247.82 1001.33 L 245.84 1001.73 L 243.46 1001.88 L 240.54 1001.65 L 238.29 1001.07 L 236.95 1000.44 L 236.17 999.77 L 235.79 999.09 L 235.69 999.08 L 235.69 980.59 Z" fill="url(#linearGradient-3)" fill-rule="nonzero" group-id="1,2,10,41" id="形状结合" node-id="106" stroke="none" target-height="21.289978" target-width="15.479996" target-x="235.69" target-y="980.59"></path><path d="M 251.17 984.05 L 250.90 985.66 L 250.12 987.10 L 248.93 988.31 L 247.35 989.27 L 245.53 989.88 L 243.46 990.10 L 241.38 989.88 L 239.56 989.27 L 237.98 988.31 L 236.79 987.10 L 236.02 985.66 L 235.74 984.05 L 236.02 982.45 L 236.79 981.00 L 237.98 979.79 L 239.56 978.83 L 241.38 978.23 L 243.46 978.00 L 245.53 978.23 L 247.35 978.83 L 248.93 979.79 L 250.12 981.00 L 250.90 982.45 L 251.17 984.05 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,41" id="形状结合" node-id="107" stroke="none" target-height="12.099976" target-width="15.429993" target-x="235.74" target-y="978"></path></g><g node-id="237"><path d="M 305.34 975.43 L 336.20 977.15 L 336.20 1011.03 L 336.30 1011.74 L 336.20 1012.45 L 336.20 1014.14 L 335.19 1014.09 L 333.90 1015.10 L 332.08 1016.05 L 329.60 1016.92 L 325.65 1017.71 L 320.87 1018.02 L 316.95 1017.81 L 313.55 1017.27 L 310.43 1016.36 L 308.12 1015.28 L 306.81 1014.33 L 305.98 1013.39 L 305.53 1012.43 L 305.34 1012.42 L 305.34 975.43 Z" fill="url(#linearGradient-4)" fill-rule="nonzero" group-id="1,2,10,42" id="形状结合" node-id="109" stroke="none" target-height="42.590027" target-width="30.959991" target-x="305.34" target-y="975.43"></path><path d="M 336.30 978.00 L 336.06 979.36 L 335.39 980.64 L 334.19 981.91 L 332.75 982.94 L 330.93 983.87 L 328.66 984.69 L 325.06 985.46 L 320.87 985.74 L 316.68 985.46 L 313.08 984.69 L 310.82 983.87 L 309.00 982.94 L 307.55 981.91 L 306.36 980.64 L 305.68 979.36 L 305.44 978.00 L 305.68 976.65 L 306.36 975.37 L 307.55 974.10 L 309.00 973.07 L 310.82 972.13 L 313.08 971.32 L 316.68 970.55 L 320.87 970.27 L 325.06 970.55 L 328.66 971.32 L 330.93 972.13 L 332.75 973.07 L 334.19 974.10 L 335.39 975.37 L 336.06 976.65 L 336.30 978.00 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,42" id="形状结合" node-id="110" stroke="none" target-height="15.469971" target-width="30.859985" target-x="305.44" target-y="970.27"></path></g><g node-id="238"><path d="M 364.03 1065.48 L 359.63 1096.07 L 348.09 1095.12 L 347.07 1094.80 L 346.18 1094.09 L 345.39 1092.86 L 344.62 1090.60 L 344.13 1087.36 L 344.01 1083.83 L 344.23 1079.64 L 344.83 1075.45 L 345.79 1071.79 L 347.14 1068.48 L 348.59 1066.15 L 349.78 1064.93 L 350.89 1064.32 L 351.96 1064.16 L 352.67 1064.30 L 353.31 1064.59 L 364.03 1065.48 Z" fill="url(#linearGradient-5)" fill-rule="nonzero" group-id="1,2,10,43" id="形状结合" node-id="112" stroke="none" target-height="31.909912" target-width="20.019989" target-x="344.01" target-y="1064.16"></path><path d="M 358.77 1096.10 L 357.44 1095.74 L 356.22 1094.96 L 355.06 1093.66 L 354.15 1092.13 L 353.39 1090.23 L 352.77 1087.90 L 352.32 1084.25 L 352.40 1080.05 L 353.05 1075.91 L 354.13 1072.39 L 355.14 1070.20 L 356.22 1068.47 L 357.38 1067.11 L 358.75 1066.04 L 360.09 1065.48 L 361.46 1065.36 L 362.78 1065.71 L 364.00 1066.50 L 365.16 1067.80 L 366.07 1069.33 L 366.83 1071.22 L 367.45 1073.55 L 367.90 1077.21 L 367.82 1081.40 L 367.17 1085.55 L 366.09 1089.07 L 365.08 1091.25 L 364.00 1092.99 L 362.84 1094.34 L 361.47 1095.42 L 360.13 1095.98 L 358.77 1096.10 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,43" id="形状结合" node-id="113" stroke="none" target-height="30.73999" target-width="15.579987" target-x="352.32" target-y="1065.36"></path></g><g node-id="239"><path d="M 418.21 1034.53 L 413.80 1065.12 L 402.27 1064.16 L 401.24 1063.85 L 400.35 1063.13 L 399.57 1061.90 L 398.80 1059.64 L 398.31 1056.40 L 398.19 1052.87 L 398.40 1048.68 L 399.01 1044.50 L 399.97 1040.83 L 401.32 1037.52 L 402.76 1035.20 L 403.95 1033.98 L 405.06 1033.36 L 406.14 1033.21 L 406.85 1033.35 L 407.48 1033.64 L 418.21 1034.53 Z" fill="url(#linearGradient-5)" fill-rule="nonzero" group-id="1,2,10,44" id="形状结合" node-id="115" stroke="none" target-height="31.910034" target-width="20.019989" target-x="398.19" target-y="1033.21"></path><path d="M 412.94 1065.14 L 411.62 1064.78 L 410.39 1064.00 L 409.23 1062.70 L 408.33 1061.17 L 407.56 1059.27 L 406.95 1056.95 L 406.50 1053.29 L 406.57 1049.10 L 407.23 1044.95 L 408.31 1041.43 L 409.31 1039.24 L 410.40 1037.51 L 411.55 1036.16 L 412.92 1035.08 L 414.26 1034.52 L 415.63 1034.40 L 416.95 1034.76 L 418.18 1035.54 L 419.34 1036.84 L 420.24 1038.37 L 421.01 1040.27 L 421.62 1042.60 L 422.07 1046.25 L 421.99 1050.44 L 421.34 1054.59 L 420.26 1058.11 L 419.26 1060.30 L 418.17 1062.03 L 417.01 1063.38 L 415.65 1064.46 L 414.31 1065.02 L 412.94 1065.14 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,10,44" id="形状结合" node-id="116" stroke="none" target-height="30.73999" target-width="15.570007" target-x="406.5" target-y="1034.4"></path></g></g></g><g node-id="198"><g node-id="206"><path d="M 564.58 418.18 L 576.67 424.22 L 407.34 520.98 L 395.25 514.94 Z" fill="url(#linearGradient-6)" fill-rule="nonzero" group-id="1,3,11" id="矩形备份-21" node-id="118" stroke="none" target-height="102.79999" target-width="181.41998" target-x="395.25" target-y="418.18"></path></g><g node-id="207"><path d="M 395.25 514.94 L 407.34 520.98 L 352.92 641.93 L 340.82 635.88 Z" fill="#ffffff" fill-rule="nonzero" group-id="1,3,12" id="矩形备份-48" node-id="119" stroke="none" target-height="126.98999" target-width="66.51999" target-x="340.82" target-y="514.94"></path></g><g node-id="208"><path d="M 340.82 635.88 L 352.92 641.93 L 352.92 684.26 L 340.82 678.22 Z" fill="#e8e6e6" fill-rule="nonzero" group-id="1,3,13" id="矩形备份-49" node-id="120" stroke="none" target-height="48.380005" target-width="12.100006" target-x="340.82" target-y="635.88"></path></g><path d="M 402.98 523.02 L 576.67 424.22 L 576.67 563.32 L 352.12 686.63 L 352.12 641.93 Z" fill="#d8d8d8" fill-rule="nonzero" group-id="1,3" id="矩形备份-50" node-id="121" stroke="none" target-height="262.41" target-width="224.54999" target-x="352.12" target-y="424.22"></path><path d="M 570.63 430.27 L 915.33 596.97 L 915.33 708.45 L 570.63 541.76 Z" fill="url(#linearGradient-7)" fill-rule="nonzero" group-id="1,3" id="矩形" node-id="122" stroke="none" target-height="278.18002" target-width="344.7" target-x="570.63" target-y="430.27"></path><path d="M 346.87 663.49 L 691.57 826.77 L 691.57 841.50 L 346.87 678.22 Z" fill="#ccc6c6" fill-rule="nonzero" group-id="1,3,14" id="矩形备份-22" node-id="124" stroke="none" target-height="178.01001" target-width="344.7" target-x="346.87" target-y="663.49"></path><path d="M 570.63 539.13 L 914.60 705.83 L 690.48 830.07 L 343.13 664.28 Z" fill="#e5e5e5" fill-rule="nonzero" group-id="1,3,14,45" id="矩形" node-id="125" stroke="none" target-height="290.94" target-width="571.47" target-x="343.13" target-y="539.13"></path><path d="M 564.58 418.18 L 927.42 593.55 L 920.28 600.27 L 558.53 424.22 Z" fill="url(#linearGradient-8)" fill-rule="nonzero" group-id="1,3,15" id="矩形备份-47" node-id="126" stroke="none" target-height="182.09003" target-width="368.88995" target-x="558.53" target-y="418.18"></path><path d="M 890.03 380.97 L 875.99 387.98 L 875.99 718.75 L 890.03 711.74 Z" fill="#dbdbdb" fill-rule="nonzero" group-id="1,3,16,46" id="矩形" node-id="128" stroke="none" target-height="337.78" target-width="14.040039" target-x="875.99" target-y="380.97"></path><path d="M 875.99 387.98 L 861.07 380.10 L 861.07 710.86 L 875.99 718.75 Z" fill="#bab9b9" fill-rule="nonzero" group-id="1,3,16,47" id="矩形备份-17" node-id="129" stroke="none" target-height="338.65" target-width="14.919983" target-x="861.07" target-y="380.1"></path><path d="M 915.33 587.51 L 927.42 593.55 L 758.10 690.31 L 746.00 684.26 Z" fill="#f7f7f7" fill-rule="nonzero" group-id="1,3,17" id="矩形" node-id="130" stroke="none" target-height="102.79999" target-width="181.41998" target-x="746" target-y="587.51"></path><path d="M 746.00 684.26 L 758.10 690.31 L 703.67 811.26 L 691.57 805.21 Z" fill="#ffffff" fill-rule="nonzero" group-id="1,3,18" id="矩形备份-23" node-id="131" stroke="none" target-height="127" target-width="66.52997" target-x="691.57" target-y="684.26"></path><path d="M 691.57 805.21 L 703.67 811.26 L 703.67 853.59 L 691.57 847.55 Z" fill="#e8e6e6" fill-rule="nonzero" group-id="1,3,19" id="矩形备份-46" node-id="132" stroke="none" target-height="48.380005" target-width="12.099976" target-x="691.57" target-y="805.21"></path><path d="M 753.74 692.35 L 927.42 593.55 L 927.42 732.64 L 702.87 855.96 L 702.87 811.26 Z" fill="#d8d8d8" fill-rule="nonzero" group-id="1,3" id="矩形" node-id="133" stroke="none" target-height="262.41003" target-width="224.54999" target-x="702.87" target-y="593.55"></path><path d="M 587.66 211.64 L 573.62 218.66 L 573.62 549.42 L 587.66 542.41 Z" fill="#dbdbdb" fill-rule="nonzero" group-id="1,3,20,48" id="矩形" node-id="135" stroke="none" target-height="337.77997" target-width="14.039978" target-x="573.62" target-y="211.64"></path><path d="M 573.62 218.66 L 558.70 210.77 L 558.70 541.54 L 573.62 549.42 Z" fill="#bab9b9" fill-rule="nonzero" group-id="1,3,20,49" id="矩形备份-17" node-id="136" stroke="none" target-height="338.64996" target-width="14.919983" target-x="558.7" target-y="210.77"></path><path d="M 371.06 300.65 L 806.48 506.26 L 806.48 520.98 L 371.06 315.37 Z" fill="#ccc6c6" fill-rule="nonzero" group-id="1,3,21" id="矩形备份-22" node-id="138" stroke="none" target-height="220.32999" target-width="435.41998" target-x="371.06" target-y="300.65"></path><path d="M 594.82 176.28 L 1030.23 381.89 L 806.11 506.14 L 367.32 301.43 Z" fill="#ffffff" fill-rule="nonzero" group-id="1,3,21,50" id="矩形" node-id="139" stroke="none" target-height="329.86002" target-width="662.91" target-x="367.32" target-y="176.28"></path><path d="M 1029.87 379.14 L 1030.23 393.99 L 806.48 520.98 L 806.48 502.84 Z" fill="#d8d8d8" fill-rule="nonzero" group-id="1,3,21,51" id="矩形备份-51" node-id="140" stroke="none" target-height="141.83997" target-width="223.75" target-x="806.48" target-y="379.14"></path></g><g node-id="199"><path d="M 540.39 232.98 L 805.33 365.59 L 805.33 398.74 L 540.39 266.13 Z" fill="#444644" fill-rule="nonzero" group-id="1,4" id="矩形备份-41" node-id="142" stroke="none" target-height="165.76" target-width="264.94" target-x="540.39" target-y="232.98"></path><path d="M 547.96 224.69 L 812.90 357.30 L 805.33 365.59 L 540.39 232.98 Z" fill="#696969" fill-rule="nonzero" group-id="1,4" id="矩形备份-42" node-id="143" stroke="none" target-height="140.9" target-width="272.51" target-x="540.39" target-y="224.69"></path><path d="M 805.33 365.59 L 813.61 357.30 L 813.61 390.45 L 805.33 398.74 Z" fill="#2b2a2a" fill-rule="nonzero" group-id="1,4" id="矩形" node-id="144" stroke="none" target-height="41.440002" target-width="8.279968" target-x="805.33" target-y="357.3"></path><path d="M 556.95 0.90 L 805.33 122.94 L 805.33 355.01 L 556.95 232.98 Z" fill="#494a49" fill-rule="nonzero" group-id="1,4" id="矩形" node-id="145" stroke="none" target-height="354.11002" target-width="248.38" target-x="556.95" target-y="0.9"></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="1261" node-id="1" sillyvg="true" template-height="1261" template-width="1029" version="1.1" viewBox="0 0 1029 1261" width="1029" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="91"><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-1" node-id="5" spreadMethod="pad" x1="0" x2="1" y1="0.5" y2="0.5"><stop offset="0" stop-color="#252424"></stop><stop offset="1" stop-color="#181818"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-2" node-id="8" spreadMethod="pad" x1="0.0161995" x2="1" y1="0.5" y2="0.5"><stop offset="0" stop-color="#a5a5a5"></stop><stop offset="1" stop-color="#7b7a7a"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-3" node-id="11" spreadMethod="pad" x1="0" x2="1" y1="0.5" y2="0.5"><stop offset="0" stop-color="#252424"></stop><stop offset="1" stop-color="#181818"></stop></linearGradient></defs><g node-id="110"><g node-id="111"><g node-id="112"><g node-id="121"><g node-id="129"><path d="M 371.40 1196.35 L 455.97 1198.74 L 455.97 1241.75 L 456.24 1243.70 L 455.97 1245.65 L 455.97 1250.28 L 453.11 1250.19 L 450.84 1252.11 L 447.87 1253.96 L 444.09 1255.75 L 440.17 1257.19 L 435.68 1258.44 L 430.57 1259.51 L 425.42 1260.25 L 419.89 1260.71 L 413.96 1260.89 L 407.32 1260.67 L 401.21 1260.09 L 395.57 1259.18 L 390.00 1257.86 L 385.26 1256.32 L 381.26 1254.59 L 378.32 1252.96 L 376.02 1251.30 L 374.26 1249.62 L 372.96 1247.92 L 371.40 1247.88 L 371.40 1196.35 Z" fill="url(#linearGradient-1)" fill-rule="evenodd" group-id="1,2,3,12,20" id="形状结合" node-id="20" stroke="none" target-height="64.54004" target-width="84.84" target-x="371.4" target-y="1196.35"></path><path d="M 456.24 1201.15 L 456.02 1202.85 L 455.43 1204.51 L 454.42 1206.16 L 452.92 1207.84 L 450.61 1209.72 L 447.63 1211.54 L 443.85 1213.30 L 439.94 1214.71 L 435.48 1215.94 L 430.41 1216.99 L 425.30 1217.71 L 419.83 1218.17 L 413.96 1218.34 L 408.08 1218.17 L 402.61 1217.71 L 397.50 1216.99 L 392.43 1215.94 L 387.97 1214.71 L 384.06 1213.30 L 380.28 1211.54 L 377.30 1209.72 L 375.00 1207.84 L 373.49 1206.16 L 372.48 1204.51 L 371.89 1202.85 L 371.67 1201.15 L 371.89 1199.44 L 372.48 1197.78 L 373.49 1196.13 L 375.00 1194.45 L 377.30 1192.57 L 380.28 1190.75 L 384.06 1188.99 L 387.97 1187.58 L 392.43 1186.35 L 397.50 1185.31 L 402.61 1184.58 L 408.08 1184.12 L 413.96 1183.96 L 419.83 1184.12 L 425.30 1184.58 L 430.41 1185.31 L 435.48 1186.35 L 439.94 1187.58 L 443.85 1188.99 L 447.63 1190.75 L 450.61 1192.57 L 452.92 1194.45 L 454.42 1196.13 L 455.43 1197.78 L 456.02 1199.44 L 456.24 1201.15 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,3,12,20" id="形状结合" node-id="21" stroke="none" target-height="34.380005" target-width="84.56998" target-x="371.67" target-y="1183.96"></path></g><g node-id="130"><path d="M 401.18 1166.27 L 429.37 1168.00 L 429.37 1205.18 L 428.61 1205.13 L 427.51 1206.04 L 425.87 1206.90 L 423.55 1207.70 L 419.83 1208.43 L 415.27 1208.71 L 411.44 1208.51 L 408.16 1207.99 L 405.18 1207.11 L 403.10 1206.09 L 401.98 1205.18 L 401.38 1204.30 L 401.18 1203.41 L 401.18 1203.45 L 401.18 1166.27 Z" fill="url(#linearGradient-2)" fill-rule="evenodd" group-id="1,2,3,12,21" id="形状结合备份" node-id="23" stroke="none" target-height="42.43994" target-width="28.190002" target-x="401.18" target-y="1166.27"></path><path d="M 429.37 1164.59 L 429.16 1165.50 L 428.56 1166.40 L 427.44 1167.31 L 425.36 1168.36 L 422.39 1169.25 L 419.11 1169.78 L 415.27 1169.98 L 411.44 1169.78 L 408.16 1169.25 L 405.18 1168.36 L 403.10 1167.31 L 401.99 1166.40 L 401.39 1165.50 L 401.18 1164.59 L 401.39 1163.68 L 401.99 1162.78 L 403.10 1161.87 L 405.18 1160.83 L 408.16 1159.94 L 411.44 1159.40 L 415.27 1159.20 L 419.11 1159.40 L 422.39 1159.94 L 425.36 1160.83 L 427.44 1161.87 L 428.56 1162.78 L 429.16 1163.68 L 429.37 1164.59 Z" fill="#585858" fill-rule="evenodd" group-id="1,2,3,12,21" id="形状结合备份-2" node-id="24" stroke="none" target-height="10.780029" target-width="28.190002" target-x="401.18" target-y="1159.2"></path></g></g><g node-id="122"><g node-id="131"><path d="M 26.26 1034.56 L 110.83 1036.96 L 110.83 1079.96 L 111.10 1081.91 L 110.83 1083.86 L 110.83 1088.49 L 107.97 1088.41 L 105.70 1090.32 L 102.73 1092.18 L 98.95 1093.97 L 95.03 1095.40 L 90.54 1096.66 L 85.43 1097.72 L 80.28 1098.46 L 74.75 1098.93 L 68.81 1099.10 L 62.18 1098.89 L 56.07 1098.31 L 50.43 1097.40 L 44.86 1096.08 L 40.12 1094.54 L 36.11 1092.81 L 33.18 1091.17 L 30.88 1089.51 L 29.12 1087.84 L 27.82 1086.14 L 26.26 1086.09 L 26.26 1034.56 Z" fill="url(#linearGradient-1)" fill-rule="evenodd" group-id="1,2,3,13,22" id="形状结合" node-id="27" stroke="none" target-height="64.53992" target-width="84.84" target-x="26.26" target-y="1034.56"></path><path d="M 111.10 1039.36 L 110.88 1041.06 L 110.29 1042.72 L 109.28 1044.38 L 107.77 1046.05 L 105.47 1047.93 L 102.49 1049.76 L 98.71 1051.52 L 94.80 1052.92 L 90.34 1054.16 L 85.27 1055.20 L 80.16 1055.93 L 74.69 1056.38 L 68.81 1056.55 L 62.94 1056.38 L 57.47 1055.93 L 52.36 1055.20 L 47.29 1054.16 L 42.83 1052.92 L 38.92 1051.52 L 35.14 1049.76 L 32.16 1047.93 L 29.85 1046.05 L 28.35 1044.38 L 27.34 1042.72 L 26.75 1041.06 L 26.53 1039.36 L 26.75 1037.66 L 27.34 1036.00 L 28.35 1034.34 L 29.85 1032.67 L 32.16 1030.79 L 35.14 1028.96 L 38.92 1027.21 L 42.83 1025.80 L 47.29 1024.56 L 52.36 1023.52 L 57.47 1022.79 L 62.94 1022.34 L 68.81 1022.17 L 74.69 1022.34 L 80.16 1022.79 L 85.27 1023.52 L 90.34 1024.56 L 94.80 1025.80 L 98.71 1027.21 L 102.49 1028.96 L 105.47 1030.79 L 107.77 1032.67 L 109.28 1034.34 L 110.29 1036.00 L 110.88 1037.66 L 111.10 1039.36 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,3,13,22" id="形状结合" node-id="28" stroke="none" target-height="34.380066" target-width="84.57" target-x="26.53" target-y="1022.17"></path></g><g node-id="132"><path d="M 56.04 1004.49 L 84.23 1006.22 L 84.23 1043.39 L 83.47 1043.34 L 82.37 1044.25 L 80.73 1045.12 L 78.41 1045.92 L 74.69 1046.64 L 70.13 1046.93 L 66.30 1046.73 L 63.02 1046.20 L 60.04 1045.33 L 57.96 1044.30 L 56.84 1043.40 L 56.24 1042.52 L 56.04 1041.62 L 56.04 1041.66 L 56.04 1004.49 Z" fill="url(#linearGradient-2)" fill-rule="evenodd" group-id="1,2,3,13,23" id="形状结合备份" node-id="30" stroke="none" target-height="42.440063" target-width="28.190002" target-x="56.04" target-y="1004.49"></path><path d="M 84.23 1002.81 L 84.02 1003.72 L 83.42 1004.61 L 82.30 1005.53 L 80.22 1006.57 L 77.25 1007.46 L 73.97 1008.00 L 70.13 1008.20 L 66.30 1008.00 L 63.02 1007.46 L 60.04 1006.57 L 57.96 1005.53 L 56.84 1004.61 L 56.24 1003.72 L 56.04 1002.81 L 56.24 1001.90 L 56.84 1001.00 L 57.96 1000.09 L 60.04 999.04 L 63.02 998.15 L 66.30 997.62 L 70.13 997.41 L 73.97 997.62 L 77.25 998.15 L 80.22 999.04 L 82.30 1000.09 L 83.42 1001.00 L 84.02 1001.90 L 84.23 1002.81 Z" fill="#585858" fill-rule="evenodd" group-id="1,2,3,13,23" id="形状结合备份-2" node-id="31" stroke="none" target-height="10.790039" target-width="28.190002" target-x="56.04" target-y="997.41"></path></g></g><g node-id="123"><path d="M 790.71 921.36 L 875.28 926.08 L 875.28 1018.93 L 875.55 1020.88 L 875.28 1022.83 L 875.28 1027.46 L 872.50 1027.31 L 870.23 1029.23 L 867.27 1031.10 L 863.49 1032.90 L 859.56 1034.35 L 855.07 1035.61 L 849.94 1036.69 L 844.77 1037.43 L 839.22 1037.90 L 833.26 1038.07 L 827.79 1037.93 L 822.66 1037.53 L 817.83 1036.89 L 813.05 1035.98 L 808.77 1034.90 L 804.95 1033.65 L 801.24 1032.11 L 798.19 1030.48 L 795.72 1028.80 L 793.54 1026.79 L 792.08 1024.79 L 791.23 1022.78 L 790.71 1022.75 L 790.71 921.36 Z" fill="url(#linearGradient-3)" fill-rule="evenodd" group-id="1,2,3,14" id="形状结合" node-id="33" stroke="none" target-height="116.70996" target-width="84.839966" target-x="790.71" target-y="921.36"></path><path d="M 875.55 924.41 L 875.33 926.11 L 874.74 927.77 L 873.72 929.42 L 872.22 931.10 L 869.92 932.98 L 866.94 934.80 L 863.16 936.56 L 859.25 937.97 L 854.79 939.20 L 849.72 940.25 L 844.61 940.97 L 839.13 941.43 L 833.26 941.60 L 827.39 941.43 L 821.92 940.97 L 816.81 940.25 L 811.74 939.20 L 807.27 937.97 L 803.36 936.56 L 799.59 934.80 L 796.61 932.98 L 794.30 931.10 L 792.80 929.42 L 791.79 927.77 L 791.19 926.11 L 790.98 924.41 L 791.19 922.71 L 791.79 921.04 L 792.80 919.39 L 794.30 917.72 L 796.61 915.83 L 799.59 914.01 L 803.36 912.25 L 807.27 910.84 L 811.74 909.61 L 816.81 908.57 L 821.92 907.84 L 827.39 907.38 L 833.26 907.22 L 839.13 907.38 L 844.61 907.84 L 849.72 908.57 L 854.79 909.61 L 859.25 910.84 L 863.16 912.25 L 866.94 914.01 L 869.92 915.83 L 872.22 917.72 L 873.72 919.39 L 874.74 921.04 L 875.33 922.71 L 875.55 924.41 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,3,14" id="形状结合" node-id="34" stroke="none" target-height="34.380005" target-width="84.57001" target-x="790.98" target-y="907.22"></path></g><g node-id="124"><g node-id="133"><path d="M 470.06 779.90 L 554.63 784.61 L 554.63 877.47 L 554.90 879.42 L 554.63 881.37 L 554.63 886.00 L 551.85 885.84 L 549.58 887.76 L 546.63 889.63 L 542.84 891.44 L 538.92 892.88 L 534.42 894.15 L 529.29 895.22 L 524.12 895.96 L 518.57 896.43 L 512.62 896.61 L 507.15 896.46 L 502.01 896.06 L 497.19 895.43 L 492.40 894.52 L 488.12 893.43 L 484.30 892.18 L 480.59 890.64 L 477.54 889.02 L 475.07 887.33 L 472.89 885.32 L 471.44 883.32 L 470.59 881.31 L 470.06 881.28 L 470.06 779.90 Z" fill="url(#linearGradient-3)" fill-rule="evenodd" group-id="1,2,3,15,24" id="形状结合" node-id="37" stroke="none" target-height="116.70996" target-width="84.84003" target-x="470.06" target-y="779.9"></path><path d="M 554.90 782.94 L 554.69 784.64 L 554.09 786.30 L 553.08 787.96 L 551.58 789.63 L 549.27 791.51 L 546.29 793.34 L 542.51 795.09 L 538.60 796.50 L 534.14 797.74 L 529.07 798.78 L 523.96 799.51 L 518.49 799.96 L 512.62 800.13 L 506.75 799.96 L 501.27 799.51 L 496.16 798.78 L 491.09 797.74 L 486.63 796.50 L 482.72 795.09 L 478.94 793.34 L 475.96 791.51 L 473.66 789.63 L 472.16 787.96 L 471.14 786.30 L 470.55 784.64 L 470.33 782.94 L 470.55 781.24 L 471.14 779.58 L 472.16 777.92 L 473.66 776.25 L 475.96 774.37 L 478.94 772.54 L 482.72 770.78 L 486.63 769.38 L 491.09 768.14 L 496.16 767.10 L 501.27 766.37 L 506.75 765.92 L 512.62 765.75 L 518.49 765.92 L 523.96 766.37 L 529.07 767.10 L 534.14 768.14 L 538.60 769.38 L 542.51 770.78 L 546.29 772.54 L 549.27 774.37 L 551.58 776.25 L 553.08 777.92 L 554.09 779.58 L 554.69 781.24 L 554.90 782.94 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,3,15,24" id="形状结合" node-id="38" stroke="none" target-height="34.380005" target-width="84.57004" target-x="470.33" target-y="765.75"></path></g><g node-id="134"><path d="M 499.84 748.07 L 528.03 749.79 L 528.03 786.97 L 527.27 786.92 L 526.17 787.83 L 524.54 788.70 L 522.21 789.50 L 518.49 790.22 L 513.93 790.51 L 510.10 790.31 L 506.82 789.78 L 503.84 788.90 L 501.76 787.88 L 500.64 786.98 L 500.05 786.10 L 499.84 785.20 L 499.84 785.24 L 499.84 748.07 Z" fill="url(#linearGradient-2)" fill-rule="evenodd" group-id="1,2,3,15,25" id="形状结合备份" node-id="40" stroke="none" target-height="42.440002" target-width="28.190033" target-x="499.84" target-y="748.07"></path><path d="M 528.03 746.38 L 527.82 747.30 L 527.22 748.19 L 526.10 749.11 L 524.02 750.15 L 521.05 751.04 L 517.77 751.58 L 513.93 751.78 L 510.10 751.58 L 506.82 751.04 L 503.84 750.15 L 501.76 749.11 L 500.65 748.19 L 500.05 747.30 L 499.84 746.38 L 500.05 745.47 L 500.65 744.58 L 501.76 743.66 L 503.84 742.62 L 506.82 741.73 L 510.10 741.19 L 513.93 740.99 L 517.77 741.19 L 521.05 741.73 L 524.02 742.62 L 526.10 743.66 L 527.22 744.58 L 527.82 745.47 L 528.03 746.38 Z" fill="#585858" fill-rule="evenodd" group-id="1,2,3,15,25" id="形状结合备份-2" node-id="41" stroke="none" target-height="10.790039" target-width="28.190033" target-x="499.84" target-y="740.99"></path></g></g><g node-id="125"><path d="M 457.95 764.75 L 889.37 966.63 L 438.35 1214.19 L 0.50 1013.50 Z" fill="#c0c0c0" fill-rule="evenodd" group-id="1,2,3,16" id="矩形备份-52" node-id="43" stroke="none" target-height="449.43994" target-width="888.87" target-x="0.5" target-y="764.75"></path><path d="M 889.37 554.43 L 889.37 966.63 L 438.35 1214.19 L 436.37 807.89 L 889.37 554.43 Z M 843.51 614.67 L 482.24 816.81 L 483.81 1089.24 L 843.51 891.80 L 843.51 614.67 Z" fill="#d8d8d8" fill-rule="evenodd" group-id="1,2,3,16" id="形状结合" node-id="44" stroke="none" target-height="659.75995" target-width="453" target-x="436.37" target-y="554.43"></path><path d="M 2.65 603.14 L 441.77 807.89 L 440.11 1215.96 L 1.00 1013.00 L 2.65 603.14 Z M 77.41 738.72 L 44.34 760.22 L 43.24 989.00 L 68.96 1027.86 L 375.06 1170.15 L 407.65 1149.79 L 408.72 929.24 L 377.59 879.51 L 77.41 738.72 Z" fill="#e8e6e6" fill-rule="evenodd" group-id="1,2,3,16" id="形状结合" node-id="45" stroke="none" target-height="612.81995" target-width="440.77" target-x="1" target-y="603.14"></path><path d="M 4.56 607.46 L 445.29 349.30 L 888.50 555.50 L 437.96 814.33 Z" fill="#f7f7f7" fill-rule="evenodd" group-id="1,2,3,16" id="路径-16备份-2" node-id="46" stroke="none" target-height="465.03003" target-width="883.94" target-x="4.56" target-y="349.3"></path><path d="M 3.56 595.67 L 68.66 553.43 L 510.87 763.75 L 436.96 802.55 Z" fill="#2a7b5a" fill-rule="evenodd" group-id="1,2,3,16" id="路径-16备份-2" node-id="47" stroke="none" target-height="249.12" target-width="507.31" target-x="3.56" target-y="553.43"></path><path d="M 3.56 595.67 L 3.95 607.35 L 435.37 812.28 L 436.96 802.55 Z" fill="#286f52" fill-rule="evenodd" group-id="1,2,3,16" id="路径-16备份-2" node-id="48" stroke="none" target-height="216.61005" target-width="433.4" target-x="3.56" target-y="595.67"></path><path d="M 435.37 812.28 L 510.87 774.53 L 510.87 763.75 L 435.37 801.50 Z" fill="#1d5940" fill-rule="evenodd" group-id="1,2,3,16" id="路径-16备份-2" node-id="49" stroke="none" target-height="48.53003" target-width="75.5" target-x="435.37" target-y="763.75"></path></g></g><g node-id="113"><g node-id="126"><g node-id="135"><path d="M 866.81 262.39 L 854.29 268.65 L 854.29 563.61 L 866.81 557.36 Z" fill="#dbdbdb" fill-rule="evenodd" group-id="1,2,4,17,26" id="矩形" node-id="52" stroke="none" target-height="301.21997" target-width="12.52002" target-x="854.29" target-y="262.39"></path></g><path d="M 854.29 268.65 L 840.99 261.61 L 840.99 556.57 L 854.29 563.61 Z" fill="#bab9b9" fill-rule="evenodd" group-id="1,2,4,17,27" id="矩形备份-17" node-id="53" stroke="none" target-height="302" target-width="13.299988" target-x="840.99" target-y="261.61"></path></g><g node-id="127"><g node-id="137"><path d="M 456.96 79.04 L 444.44 85.29 L 444.44 380.25 L 456.96 374.00 Z" fill="#dbdbdb" fill-rule="evenodd" group-id="1,2,4,18,28" id="矩形" node-id="55" stroke="none" target-height="301.21" target-width="12.519989" target-x="444.44" target-y="79.04"></path></g><path d="M 444.44 85.29 L 431.13 78.25 L 431.13 373.22 L 444.44 380.25 Z" fill="#bab9b9" fill-rule="evenodd" group-id="1,2,4,18,29" id="矩形备份-17" node-id="56" stroke="none" target-height="302" target-width="13.309998" target-x="431.13" target-y="78.25"></path></g><g node-id="128"><path d="M 242.23 158.40 L 803.09 422.65 L 803.09 435.78 L 242.23 171.53 Z" fill="#ccc6c6" fill-rule="evenodd" group-id="1,2,4,19" id="矩形备份-22" node-id="58" stroke="none" target-height="277.38" target-width="560.86005" target-x="242.23" target-y="158.4"></path><g node-id="139"><path d="M 441.77 47.50 L 1002.62 311.75 L 802.76 422.54 L 238.90 159.11 Z" fill="#ffffff" fill-rule="evenodd" group-id="1,2,4,19,30" id="矩形" node-id="59" stroke="none" target-height="375.04" target-width="763.72" target-x="238.9" target-y="47.5"></path></g><path d="M 1002.29 309.30 L 1002.62 322.53 L 803.09 435.78 L 803.09 419.60 Z" fill="#d8d8d8" fill-rule="evenodd" group-id="1,2,4,19,31" id="矩形备份-51" node-id="60" stroke="none" target-height="126.48001" target-width="199.52997" target-x="803.09" target-y="309.3"></path></g></g><g node-id="114"><path d="M 69.66 683.85 L 69.46 686.78 L 68.93 689.30 L 68.05 691.55 L 66.99 693.17 L 66.11 694.00 L 65.21 694.47 L 64.27 694.64 L 63.33 694.47 L 62.43 694.00 L 61.55 693.17 L 60.49 691.55 L 59.61 689.30 L 59.08 686.78 L 58.88 683.85 L 59.08 680.93 L 59.61 678.41 L 60.49 676.15 L 61.55 674.54 L 62.43 673.71 L 63.33 673.24 L 64.27 673.07 L 65.21 673.24 L 66.11 673.71 L 66.99 674.54 L 68.05 676.15 L 68.93 678.41 L 69.46 680.93 L 69.66 683.85 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,5" id="椭圆形" node-id="62" stroke="none" target-height="21.570007" target-width="10.780003" target-x="58.88" target-y="673.07"></path><path d="M 75.06 689.25 L 76.00 689.08 L 76.89 688.61 L 77.78 687.77 L 78.83 686.16 L 79.71 683.90 L 80.25 681.39 L 80.45 678.46 L 80.25 675.53 L 79.71 673.02 L 78.83 670.76 L 77.78 669.15 L 76.89 668.31 L 76.00 667.84 L 75.06 667.67 L 74.11 667.84 L 73.22 668.31 L 72.33 669.15 L 71.28 670.76 L 70.40 673.02 L 69.86 675.53 L 69.66 678.46 L 69.86 681.39 L 70.40 683.90 L 71.28 686.16 L 72.33 687.77 L 73.22 688.61 L 74.11 689.08 L 75.06 689.25 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,5" id="椭圆形备份-7" node-id="63" stroke="none" target-height="21.580017" target-width="10.789993" target-x="69.66" target-y="667.67"></path><path d="M 64.27 673.07 L 75.06 667.67 L 75.06 689.25 L 64.27 694.64 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,5" id="矩形" node-id="64" stroke="none" target-height="26.970032" target-width="10.790001" target-x="64.27" target-y="667.67"></path></g><g node-id="115"><path d="M 91.23 694.64 L 91.03 697.57 L 90.50 700.08 L 89.62 702.34 L 88.56 703.95 L 87.68 704.78 L 86.78 705.26 L 85.84 705.42 L 84.90 705.26 L 84.00 704.78 L 83.12 703.95 L 82.07 702.34 L 81.18 700.08 L 80.65 697.57 L 80.45 694.64 L 80.65 691.71 L 81.18 689.19 L 82.07 686.94 L 83.12 685.33 L 84.00 684.49 L 84.90 684.02 L 85.84 683.85 L 86.78 684.02 L 87.68 684.49 L 88.56 685.33 L 89.62 686.94 L 90.50 689.19 L 91.03 691.71 L 91.23 694.64 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,6" id="椭圆形" node-id="66" stroke="none" target-height="21.570007" target-width="10.780006" target-x="80.45" target-y="683.85"></path><path d="M 96.63 700.03 L 97.57 699.86 L 98.47 699.39 L 99.35 698.56 L 100.40 696.95 L 101.28 694.69 L 101.82 692.17 L 102.02 689.25 L 101.82 686.32 L 101.28 683.80 L 100.40 681.54 L 99.35 679.93 L 98.47 679.10 L 97.57 678.63 L 96.63 678.46 L 95.69 678.63 L 94.79 679.10 L 93.90 679.93 L 92.85 681.54 L 91.97 683.80 L 91.43 686.32 L 91.23 689.25 L 91.43 692.17 L 91.97 694.69 L 92.85 696.95 L 93.90 698.56 L 94.79 699.39 L 95.69 699.86 L 96.63 700.03 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,6" id="椭圆形备份-7" node-id="67" stroke="none" target-height="21.570007" target-width="10.789993" target-x="91.23" target-y="678.46"></path><path d="M 85.84 683.85 L 96.63 678.46 L 96.63 700.03 L 85.84 705.42 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,6" id="矩形" node-id="68" stroke="none" target-height="26.95996" target-width="10.790001" target-x="85.84" target-y="678.46"></path></g><g node-id="116"><path d="M 134.38 716.21 L 134.18 719.14 L 133.64 721.65 L 132.76 723.91 L 131.71 725.52 L 130.82 726.36 L 129.92 726.83 L 128.98 727.00 L 128.04 726.83 L 127.15 726.36 L 126.26 725.52 L 125.21 723.91 L 124.33 721.65 L 123.79 719.14 L 123.59 716.21 L 123.79 713.28 L 124.33 710.77 L 125.21 708.51 L 126.26 706.90 L 127.15 706.06 L 128.04 705.59 L 128.98 705.42 L 129.92 705.59 L 130.82 706.06 L 131.71 706.90 L 132.76 708.51 L 133.64 710.77 L 134.18 713.28 L 134.38 716.21 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,7" id="椭圆形" node-id="70" stroke="none" target-height="21.580017" target-width="10.790009" target-x="123.59" target-y="705.42"></path><path d="M 139.77 721.60 L 140.71 721.43 L 141.61 720.96 L 142.49 720.13 L 143.54 718.52 L 144.43 716.26 L 144.96 713.74 L 145.16 710.82 L 144.96 707.89 L 144.43 705.37 L 143.54 703.12 L 142.49 701.50 L 141.61 700.67 L 140.71 700.20 L 139.77 700.03 L 138.83 700.20 L 137.93 700.67 L 137.05 701.50 L 135.99 703.12 L 135.11 705.37 L 134.58 707.89 L 134.38 710.82 L 134.58 713.74 L 135.11 716.26 L 135.99 718.52 L 137.05 720.13 L 137.93 720.96 L 138.83 721.43 L 139.77 721.60 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,7" id="椭圆形备份-7" node-id="71" stroke="none" target-height="21.569946" target-width="10.779999" target-x="134.38" target-y="700.03"></path><path d="M 128.98 705.42 L 139.77 700.03 L 139.77 721.60 L 128.98 727.00 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,7" id="矩形" node-id="72" stroke="none" target-height="26.96997" target-width="10.790009" target-x="128.98" target-y="700.03"></path></g><g node-id="117"><path d="M 112.81 705.42 L 112.60 708.35 L 112.07 710.87 L 111.19 713.13 L 110.13 714.74 L 109.25 715.57 L 108.35 716.04 L 107.41 716.21 L 106.47 716.04 L 105.57 715.57 L 104.69 714.74 L 103.64 713.13 L 102.76 710.87 L 102.22 708.35 L 102.02 705.42 L 102.22 702.50 L 102.76 699.98 L 103.64 697.72 L 104.69 696.11 L 105.57 695.28 L 106.47 694.81 L 107.41 694.64 L 108.35 694.81 L 109.25 695.28 L 110.13 696.11 L 111.19 697.72 L 112.07 699.98 L 112.60 702.50 L 112.81 705.42 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,8" id="椭圆形" node-id="74" stroke="none" target-height="21.570007" target-width="10.790001" target-x="102.02" target-y="694.64"></path><path d="M 118.20 710.82 L 119.14 710.65 L 120.04 710.18 L 120.92 709.34 L 121.97 707.73 L 122.85 705.48 L 123.39 702.96 L 123.59 700.03 L 123.39 697.10 L 122.85 694.59 L 121.97 692.33 L 120.92 690.72 L 120.04 689.89 L 119.14 689.41 L 118.20 689.25 L 117.26 689.41 L 116.36 689.89 L 115.48 690.72 L 114.42 692.33 L 113.54 694.59 L 113.01 697.10 L 112.81 700.03 L 113.01 702.96 L 113.54 705.48 L 114.42 707.73 L 115.48 709.34 L 116.36 710.18 L 117.26 710.65 L 118.20 710.82 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,8" id="椭圆形备份-7" node-id="75" stroke="none" target-height="21.570007" target-width="10.779999" target-x="112.81" target-y="689.25"></path><path d="M 107.41 694.64 L 118.20 689.25 L 118.20 710.82 L 107.41 716.21 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,8" id="矩形" node-id="76" stroke="none" target-height="26.960022" target-width="10.789993" target-x="107.41" target-y="689.25"></path></g><g node-id="118"><path d="M 155.95 727.00 L 155.75 729.92 L 155.21 732.44 L 154.33 734.70 L 153.28 736.31 L 152.39 737.14 L 151.50 737.61 L 150.55 737.78 L 149.61 737.61 L 148.72 737.14 L 147.83 736.31 L 146.78 734.70 L 145.90 732.44 L 145.36 729.92 L 145.16 727.00 L 145.36 724.07 L 145.90 721.55 L 146.78 719.29 L 147.83 717.68 L 148.72 716.85 L 149.61 716.38 L 150.55 716.21 L 151.50 716.38 L 152.39 716.85 L 153.28 717.68 L 154.33 719.29 L 155.21 721.55 L 155.75 724.07 L 155.95 727.00 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,9" id="椭圆形" node-id="78" stroke="none" target-height="21.570007" target-width="10.789993" target-x="145.16" target-y="716.21"></path><path d="M 161.34 732.39 L 162.28 732.22 L 163.18 731.75 L 164.06 730.92 L 165.12 729.30 L 166.00 727.05 L 166.53 724.53 L 166.73 721.60 L 166.53 718.68 L 166.00 716.16 L 165.12 713.90 L 164.06 712.29 L 163.18 711.46 L 162.28 710.99 L 161.34 710.82 L 160.40 710.99 L 159.50 711.46 L 158.62 712.29 L 157.56 713.90 L 156.68 716.16 L 156.15 718.68 L 155.95 721.60 L 156.15 724.53 L 156.68 727.05 L 157.56 729.30 L 158.62 730.92 L 159.50 731.75 L 160.40 732.22 L 161.34 732.39 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,9" id="椭圆形备份-7" node-id="79" stroke="none" target-height="21.570007" target-width="10.779999" target-x="155.95" target-y="710.82"></path><path d="M 150.55 716.21 L 161.34 710.82 L 161.34 732.39 L 150.55 737.78 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,9" id="矩形" node-id="80" stroke="none" target-height="26.960022" target-width="10.789993" target-x="150.55" target-y="710.82"></path></g><g node-id="119"><path d="M 355.48 825.41 L 355.18 830.92 L 354.38 835.62 L 353.52 838.62 L 352.54 841.01 L 351.48 842.88 L 350.11 844.47 L 348.77 845.34 L 347.39 845.64 L 346.02 845.34 L 344.67 844.47 L 343.31 842.88 L 342.24 841.01 L 341.27 838.62 L 340.41 835.62 L 339.61 830.92 L 339.30 825.41 L 339.61 819.91 L 340.41 815.21 L 341.27 812.20 L 342.24 809.82 L 343.31 807.95 L 344.67 806.36 L 346.02 805.49 L 347.39 805.19 L 348.77 805.49 L 350.11 806.36 L 351.48 807.95 L 352.54 809.82 L 353.52 812.20 L 354.38 815.21 L 355.18 819.91 L 355.48 825.41 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,10" id="椭圆形" node-id="82" stroke="none" target-height="40.450012" target-width="16.180023" target-x="339.3" target-y="805.19"></path><path d="M 363.57 837.55 L 364.95 837.25 L 366.29 836.38 L 367.65 834.79 L 368.72 832.92 L 369.70 830.54 L 370.56 827.53 L 371.36 822.83 L 371.66 817.33 L 371.36 811.83 L 370.56 807.12 L 369.70 804.12 L 368.72 801.73 L 367.65 799.86 L 366.29 798.27 L 364.95 797.40 L 363.57 797.10 L 362.20 797.40 L 360.85 798.27 L 359.49 799.86 L 358.42 801.73 L 357.45 804.12 L 356.59 807.12 L 355.78 811.83 L 355.48 817.33 L 355.78 822.83 L 356.59 827.53 L 357.45 830.54 L 358.42 832.92 L 359.49 834.79 L 360.85 836.38 L 362.20 837.25 L 363.57 837.55 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,10" id="椭圆形备份-7" node-id="83" stroke="none" target-height="40.450012" target-width="16.179993" target-x="355.48" target-y="797.1"></path><path d="M 347.39 806.81 L 363.57 797.10 L 363.57 835.93 L 347.39 845.64 Z" fill="#000000" fill-rule="evenodd" group-id="1,2,10" id="矩形" node-id="84" stroke="none" target-height="48.54004" target-width="16.179993" target-x="347.39" target-y="797.1"></path></g><g node-id="120"><path d="M 199.09 508.13 L 497.17 657.33 L 497.17 694.63 L 199.09 545.43 Z" fill="#444644" fill-rule="evenodd" group-id="1,2,11" id="矩形备份-41" node-id="86" stroke="none" target-height="186.5" target-width="298.08002" target-x="199.09" target-y="508.13"></path><path d="M 207.61 498.81 L 505.68 648.01 L 497.17 657.33 L 199.09 508.13 Z" fill="#696969" fill-rule="evenodd" group-id="1,2,11" id="矩形备份-42" node-id="87" stroke="none" target-height="158.52002" target-width="306.59" target-x="199.09" target-y="498.81"></path><path d="M 497.17 657.33 L 506.48 648.01 L 506.48 685.31 L 497.17 694.63 Z" fill="#2b2a2a" fill-rule="evenodd" group-id="1,2,11" id="矩形" node-id="88" stroke="none" target-height="46.619995" target-width="9.309998" target-x="497.17" target-y="648.01"></path><path d="M 217.72 247.03 L 497.17 384.33 L 497.17 645.43 L 217.72 508.13 Z" fill="#494a49" fill-rule="evenodd" group-id="1,2,11" id="矩形" node-id="89" stroke="none" target-height="398.4" target-width="279.45" target-x="217.72" target-y="247.03"></path></g></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="1524" node-id="1" sillyvg="true" template-height="1524" template-width="1051" version="1.1" viewBox="0 0 1051 1524" width="1051" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="58"><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-1" node-id="5" spreadMethod="pad" x1="0" x2="1" y1="0.5" y2="0.5"><stop offset="0" stop-color="#252424"></stop><stop offset="1" stop-color="#181818"></stop></linearGradient><linearGradient gradientUnits="objectBoundingBox" id="linearGradient-2" node-id="8" spreadMethod="pad" x1="0.0161995" x2="1" y1="0.5" y2="0.5"><stop offset="0" stop-color="#a5a5a5"></stop><stop offset="1" stop-color="#7b7a7a"></stop></linearGradient></defs><g node-id="71"><path d="M 529.26 912.15 L 1044.67 1137.99 L 533.47 1488.98 L 3.61 1258.27 Z" fill="#6f6e6e" fill-rule="nonzero" group-id="1" id="矩形备份-88" node-id="13" stroke="none" target-height="576.82996" target-width="1041.06" target-x="3.61" target-y="912.15"></path><path d="M 536.59 164.61 L 525.59 919.48 L 8.91 1263.94 L 2.47 512.73 Z" fill="#bababa" fill-rule="nonzero" group-id="1" id="矩形" node-id="14" stroke="none" target-height="1099.33" target-width="534.12006" target-x="2.47" target-y="164.61"></path><path d="M 536.59 164.61 L 525.59 919.48 L 1045.71 1141.62 L 1050.50 402.80 Z" fill="#959494" fill-rule="nonzero" group-id="1" id="矩形" node-id="15" stroke="none" target-height="977.01" target-width="524.91" target-x="525.59" target-y="164.61"></path><g node-id="72"><g node-id="76"><path d="M 16.24 1281.85 L 73.70 1283.48 L 73.70 1312.70 L 73.88 1314.03 L 73.70 1315.35 L 73.70 1318.50 L 71.76 1318.44 L 70.21 1319.74 L 68.20 1321.00 L 65.63 1322.22 L 61.49 1323.64 L 56.44 1324.77 L 51.09 1325.46 L 45.15 1325.71 L 40.64 1325.56 L 36.49 1325.17 L 32.66 1324.55 L 28.87 1323.65 L 25.65 1322.61 L 22.93 1321.43 L 20.37 1319.94 L 18.54 1318.43 L 17.29 1316.90 L 16.24 1316.87 L 16.24 1281.85 Z" fill="url(#linearGradient-1)" fill-rule="nonzero" group-id="1,2,6" id="形状结合" node-id="18" stroke="none" target-height="43.859985" target-width="57.64" target-x="16.24" target-y="1281.85"></path><path d="M 73.88 1285.11 L 73.63 1286.62 L 72.95 1288.08 L 71.76 1289.53 L 69.96 1291.01 L 67.30 1292.55 L 63.92 1293.96 L 59.65 1295.20 L 55.31 1296.05 L 50.49 1296.59 L 45.15 1296.79 L 39.81 1296.59 L 34.99 1296.05 L 30.65 1295.20 L 26.39 1293.96 L 23.00 1292.55 L 20.34 1291.01 L 18.54 1289.53 L 17.35 1288.08 L 16.67 1286.62 L 16.42 1285.11 L 16.67 1283.61 L 17.35 1282.15 L 18.54 1280.69 L 20.34 1279.22 L 23.00 1277.68 L 26.39 1276.27 L 30.65 1275.03 L 34.99 1274.18 L 39.81 1273.64 L 45.15 1273.43 L 50.49 1273.64 L 55.31 1274.18 L 59.65 1275.03 L 63.92 1276.27 L 67.30 1277.68 L 69.96 1279.22 L 71.76 1280.69 L 72.95 1282.15 L 73.63 1283.61 L 73.88 1285.11 Z" fill="#000000" fill-rule="nonzero" group-id="1,2,6" id="形状结合" node-id="19" stroke="none" target-height="23.359985" target-width="57.46" target-x="16.42" target-y="1273.43"></path></g><g node-id="77"><path d="M 36.47 1261.42 L 55.62 1262.59 L 55.62 1287.85 L 55.11 1287.82 L 53.86 1288.74 L 51.67 1289.57 L 49.14 1290.06 L 46.05 1290.26 L 43.44 1290.12 L 41.21 1289.76 L 39.19 1289.17 L 37.78 1288.47 L 36.77 1287.56 L 36.47 1286.65 L 36.47 1286.68 L 36.47 1261.42 Z" fill="url(#linearGradient-2)" fill-rule="nonzero" group-id="1,2,7" id="形状结合备份" node-id="21" stroke="none" target-height="28.839966" target-width="19.149998" target-x="36.47" target-y="1261.42"></path><path d="M 55.62 1260.27 L 55.32 1261.20 L 54.31 1262.12 L 52.90 1262.83 L 50.88 1263.44 L 48.65 1263.80 L 46.05 1263.94 L 43.44 1263.80 L 41.21 1263.44 L 39.19 1262.83 L 37.78 1262.12 L 36.78 1261.20 L 36.47 1260.27 L 36.78 1259.35 L 37.78 1258.43 L 39.19 1257.72 L 41.21 1257.11 L 43.44 1256.75 L 46.05 1256.61 L 48.65 1256.75 L 50.88 1257.11 L 52.90 1257.72 L 54.31 1258.43 L 55.32 1259.35 L 55.62 1260.27 Z" fill="#585858" fill-rule="nonzero" group-id="1,2,7" id="形状结合备份-2" node-id="22" stroke="none" target-height="7.329956" target-width="19.149998" target-x="36.47" target-y="1256.61"></path></g></g><g node-id="73"><g node-id="78"><path d="M 470.63 1479.73 L 528.09 1481.36 L 528.09 1510.58 L 528.27 1511.91 L 528.09 1513.23 L 528.09 1516.38 L 526.15 1516.32 L 524.60 1517.62 L 522.59 1518.88 L 520.02 1520.10 L 515.88 1521.52 L 510.83 1522.65 L 505.48 1523.34 L 499.54 1523.59 L 495.03 1523.44 L 490.88 1523.05 L 487.05 1522.43 L 483.26 1521.53 L 480.04 1520.49 L 477.32 1519.31 L 474.76 1517.82 L 472.93 1516.31 L 471.68 1514.78 L 470.63 1514.75 L 470.63 1479.73 Z" fill="url(#linearGradient-1)" fill-rule="nonzero" group-id="1,3,8" id="形状结合" node-id="25" stroke="none" target-height="43.859985" target-width="57.640015" target-x="470.63" target-y="1479.73"></path><path d="M 528.27 1482.99 L 528.02 1484.50 L 527.34 1485.95 L 526.16 1487.41 L 524.35 1488.89 L 521.70 1490.43 L 518.31 1491.84 L 514.04 1493.08 L 509.70 1493.93 L 504.88 1494.47 L 499.54 1494.67 L 494.20 1494.47 L 489.38 1493.93 L 485.04 1493.08 L 480.78 1491.84 L 477.39 1490.43 L 474.73 1488.89 L 472.93 1487.41 L 471.74 1485.95 L 471.06 1484.50 L 470.81 1482.99 L 471.06 1481.49 L 471.74 1480.03 L 472.93 1478.57 L 474.73 1477.10 L 477.39 1475.56 L 480.78 1474.15 L 485.04 1472.91 L 489.38 1472.06 L 494.20 1471.52 L 499.54 1471.31 L 504.88 1471.52 L 509.70 1472.06 L 514.04 1472.91 L 518.31 1474.15 L 521.70 1475.56 L 524.35 1477.10 L 526.16 1478.57 L 527.34 1480.03 L 528.02 1481.49 L 528.27 1482.99 Z" fill="#000000" fill-rule="nonzero" group-id="1,3,8" id="形状结合" node-id="26" stroke="none" target-height="23.359985" target-width="57.460022" target-x="470.81" target-y="1471.31"></path></g><g node-id="79"><path d="M 490.86 1459.30 L 510.01 1460.47 L 510.01 1485.73 L 509.50 1485.70 L 508.25 1486.62 L 506.06 1487.45 L 503.53 1487.94 L 500.44 1488.13 L 497.83 1488.00 L 495.60 1487.64 L 493.58 1487.05 L 492.17 1486.35 L 491.17 1485.44 L 490.86 1484.53 L 490.86 1484.56 L 490.86 1459.30 Z" fill="url(#linearGradient-2)" fill-rule="nonzero" group-id="1,3,9" id="形状结合备份" node-id="28" stroke="none" target-height="28.829956" target-width="19.150024" target-x="490.86" target-y="1459.3"></path><path d="M 510.01 1458.15 L 509.71 1459.08 L 508.71 1460.00 L 507.29 1460.71 L 505.27 1461.32 L 503.04 1461.68 L 500.44 1461.82 L 497.83 1461.68 L 495.60 1461.32 L 493.58 1460.71 L 492.17 1460.00 L 491.17 1459.08 L 490.86 1458.15 L 491.17 1457.23 L 492.17 1456.31 L 493.58 1455.60 L 495.60 1454.99 L 497.83 1454.63 L 500.44 1454.49 L 503.04 1454.63 L 505.27 1454.99 L 507.29 1455.60 L 508.71 1456.31 L 509.71 1457.23 L 510.01 1458.15 Z" fill="#585858" fill-rule="nonzero" group-id="1,3,9" id="形状结合备份-2" node-id="29" stroke="none" target-height="7.329956" target-width="19.150024" target-x="490.86" target-y="1454.49"></path></g></g><path d="M 2.47 511.25 L 530.15 743.77 L 530.52 1490.43 L 2.47 1259.04 L 2.47 511.25 Z M 273.64 740.10 L 273.82 850.03 L 280.73 856.16 L 286.88 862.32 L 292.30 868.50 L 297.06 874.71 L 301.17 880.96 L 304.69 887.27 L 307.63 893.65 L 310.01 900.11 L 311.86 906.66 L 313.18 913.34 L 313.97 920.16 L 314.23 927.15 L 313.95 934.32 L 313.05 943.01 L 311.70 950.76 L 309.94 957.63 L 307.82 963.73 L 305.36 969.12 L 302.59 973.87 L 299.51 978.05 L 296.12 981.69 L 292.41 984.85 L 288.36 987.55 L 283.94 989.80 L 279.11 991.60 L 273.82 992.95 L 273.82 1079.51 L 439.05 1151.91 L 487.31 1130.48 L 487.07 895.42 L 451.65 818.90 L 273.64 740.10 Z M 67.44 651.82 L 32.03 698.03 L 31.79 932.88 L 80.04 995.62 L 245.27 1064.69 L 245.27 978.13 L 238.86 970.93 L 233.05 963.52 L 227.80 955.89 L 223.11 948.03 L 218.96 939.93 L 215.34 931.56 L 212.24 922.92 L 209.67 913.98 L 207.62 904.72 L 206.11 895.12 L 205.15 885.15 L 204.86 877.14 L 205.19 870.15 L 206.06 864.05 L 207.40 858.74 L 209.16 854.12 L 211.32 850.11 L 213.87 846.64 L 216.81 843.66 L 220.17 841.12 L 223.99 839.01 L 228.33 837.34 L 233.27 836.11 L 238.88 835.39 L 245.27 835.22 L 245.45 725.44 L 67.44 651.82 Z" fill="#e3e3e2" fill-rule="nonzero" group-id="1" id="形状结合" node-id="30" stroke="none" target-height="979.18005" target-width="528.05005" target-x="2.47" target-y="511.25"></path><path d="M 28.35 1004.50 L 504.31 1214.23 L 504.64 1444.23 L 28.35 1235.52 Z" fill="#e3e3e2" fill-rule="nonzero" group-id="1" id="矩形" node-id="31" stroke="#979797" stroke-linecap="butt" stroke-width="0.5" target-height="439.72998" target-width="476.29" target-x="28.35" target-y="1004.5"></path><path d="M 31.79 533.23 L 507.74 742.96 L 508.07 826.39 L 31.79 617.68 Z" fill="#e3e3e2" fill-rule="nonzero" group-id="1" id="矩形备份-87" node-id="32" stroke="#979797" stroke-linecap="butt" stroke-width="0.5" target-height="293.16003" target-width="476.28" target-x="31.79" target-y="533.23"></path><path d="M 54.18 581.31 L 54.05 575.39 L 54.27 573.48 L 54.94 571.78 L 56.03 570.31 L 57.44 569.17 L 59.11 568.42 L 61.01 568.12 L 62.98 568.35 L 64.81 569.12 L 67.29 570.83 L 69.47 572.77 L 71.36 574.94 L 72.98 577.37 L 74.29 579.97 L 75.25 582.69 L 75.87 585.54 L 76.14 588.54 L 76.25 593.83 L 76.03 595.77 L 75.35 597.49 L 74.26 598.97 L 72.82 600.13 L 71.13 600.89 L 69.21 601.20 L 67.29 600.98 L 65.49 600.26 L 63.02 598.62 L 60.85 596.75 L 58.96 594.64 L 57.33 592.28 L 56.02 589.73 L 55.06 587.07 L 54.45 584.27 L 54.18 581.31 Z" fill="#ffa200" fill-opacity="0.82" fill-rule="nonzero" group-id="1" id="路径-16备份-5" node-id="33" stroke="none" target-height="33.080017" target-width="22.2" target-x="54.05" target-y="568.12"></path><path d="M 46.85 581.31 L 46.72 575.39 L 46.94 573.48 L 47.62 571.78 L 48.70 570.31 L 50.11 569.17 L 51.78 568.42 L 53.69 568.12 L 55.65 568.35 L 57.48 569.12 L 59.96 570.83 L 62.14 572.77 L 64.03 574.94 L 65.65 577.37 L 66.96 579.97 L 67.92 582.69 L 68.54 585.54 L 68.81 588.54 L 68.92 593.83 L 68.71 595.77 L 68.02 597.49 L 66.93 598.97 L 65.49 600.13 L 63.80 600.89 L 61.88 601.20 L 59.96 600.98 L 58.17 600.26 L 55.69 598.62 L 53.52 596.75 L 51.63 594.64 L 50.01 592.28 L 48.69 589.73 L 47.73 587.07 L 47.12 584.27 L 46.85 581.31 Z" fill="#000000" fill-rule="nonzero" group-id="1,4,10" id="path-3" node-id="36" stroke="none" target-height="33.080017" target-width="22.199997" target-x="46.72" target-y="568.12"></path><path d="M 46.85 581.31 L 46.72 575.39 L 46.94 573.48 L 47.62 571.78 L 48.70 570.31 L 50.11 569.17 L 51.78 568.42 L 53.69 568.12 L 55.65 568.35 L 57.48 569.12 L 59.96 570.83 L 62.14 572.77 L 64.03 574.94 L 65.65 577.37 L 66.96 579.97 L 67.92 582.69 L 68.54 585.54 L 68.81 588.54 L 68.92 593.83 L 68.71 595.77 L 68.02 597.49 L 66.93 598.97 L 65.49 600.13 L 63.80 600.89 L 61.88 601.20 L 59.96 600.98 L 58.17 600.26 L 55.69 598.62 L 53.52 596.75 L 51.63 594.64 L 50.01 592.28 L 48.69 589.73 L 47.73 587.07 L 47.12 584.27 L 46.85 581.31 Z" fill="#ff0000" fill-opacity="0.82" fill-rule="evenodd" group-id="1,4,11" id="path-3" node-id="38" stroke="none" target-height="33.080017" target-width="22.199997" target-x="46.72" target-y="568.12"></path><path d="M 409.35 720.15 L 485.28 754.58 L 484.50 806.62 L 408.33 772.90 Z" fill="#b4b4b4" fill-rule="nonzero" group-id="1" id="矩形备份-87" node-id="39" stroke="#433e3e" stroke-linecap="butt" stroke-width="0.5" target-height="86.46997" target-width="76.95001" target-x="408.33" target-y="720.15"></path><path d="M 262.45 1104.30 L 262.78 1334.30" fill="#e3e3e2" fill-rule="nonzero" group-id="1" id="路径" node-id="40" stroke="#979797" stroke-linecap="butt" stroke-width="0.5" target-height="230" target-width="0.32998657" target-x="262.45" target-y="1104.3"></path><path d="M 1049.34 397.63 L 1049.61 1143.01 L 529.62 1490.25 L 529.84 743.44 L 1049.34 397.63 Z M 963.79 613.34 L 615.44 845.96 L 615.44 1141.02 L 963.79 908.40 L 963.79 613.34 Z" fill="#bababa" fill-rule="nonzero" group-id="1" id="形状结合" node-id="41" stroke="none" target-height="1092.62" target-width="519.99" target-x="529.62" target-y="397.63"></path><path d="M 529.26 157.28 L 1049.61 399.13 L 532.92 743.59 L 0.50 510.66 Z" fill="#ffffff" fill-rule="nonzero" group-id="1" id="矩形" node-id="42" stroke="none" target-height="586.31006" target-width="1049.11" target-x="0.5" target-y="157.28"></path><path d="M 502.55 204.80 L 573.87 204.80 L 575.05 205.04 L 575.99 205.68 L 576.63 206.62 L 576.87 207.80 L 576.87 247.60 L 576.63 248.77 L 575.99 249.72 L 575.05 250.36 L 573.87 250.60 L 502.55 250.60 L 501.37 250.36 L 500.43 249.72 L 499.79 248.77 L 499.55 247.60 L 499.55 207.80 L 499.79 206.62 L 500.43 205.68 L 501.37 205.04 L 502.55 204.80 Z" fill="#5b5b5a" fill-opacity="0.41043383" fill-rule="nonzero" group-id="1,5,12" id="矩形备份-33" node-id="44" stroke="none" target-height="45.800003" target-width="77.32001" target-x="499.55" target-y="204.8"></path><path d="M 518.88 46.38 L 557.54 46.38 L 557.54 229.60 L 518.88 229.60 Z" fill="#c4e4e3" fill-rule="nonzero" group-id="1,5" id="矩形" node-id="45" stroke="none" target-height="183.22" target-width="38.659973" target-x="518.88" target-y="46.38"></path><path d="M 538.21 0.58 L 541.74 0.91 L 544.97 1.79 L 547.97 3.22 L 550.68 5.14 L 552.98 7.44 L 554.90 10.15 L 556.33 13.15 L 557.21 16.38 L 557.54 19.91 L 557.54 69.27 L 557.54 69.27 L 518.88 69.27 L 518.88 19.91 L 519.21 16.38 L 520.09 13.15 L 521.52 10.15 L 523.44 7.44 L 525.74 5.14 L 528.45 3.22 L 531.45 1.79 L 534.68 0.91 L 538.21 0.58 Z" fill="#ffee54" fill-rule="nonzero" group-id="1,5" id="矩形备份-30" node-id="46" stroke="none" target-height="68.689995" target-width="38.659973" target-x="518.88" target-y="0.58"></path><path d="M 518.88 46.38 L 557.54 46.38 L 557.54 92.17 L 518.88 92.17 Z" fill="#73ff54" fill-rule="nonzero" group-id="1,5" id="矩形备份-31" node-id="47" stroke="none" target-height="45.789997" target-width="38.659973" target-x="518.88" target-y="46.38"></path><path d="M 518.88 92.17 L 557.54 92.17 L 557.54 137.97 L 518.88 137.97 Z" fill="#5b5b5a" fill-rule="nonzero" group-id="1,5" id="矩形备份-32" node-id="48" stroke="none" target-height="45.800003" target-width="38.659973" target-x="518.88" target-y="92.17"></path><path d="M 273.64 899.68 L 287.38 906.45 L 287.40 948.80 L 273.67 942.02 Z" fill="#000000" fill-rule="nonzero" group-id="1" id="矩形备份-77" node-id="49" stroke="none" target-height="49.119995" target-width="13.759979" target-x="273.64" target-y="899.68"></path><path d="M 280.97 1214.82 L 294.70 1221.59 L 294.73 1263.94 L 281.00 1257.16 Z" fill="#000000" fill-rule="nonzero" group-id="1" id="矩形备份-81" node-id="50" stroke="none" target-height="49.119995" target-width="13.76001" target-x="280.97" target-y="1214.82"></path><path d="M 229.67 877.69 L 243.40 884.46 L 243.43 926.81 L 229.69 920.04 Z" fill="#000000" fill-rule="nonzero" group-id="1" id="矩形备份-80" node-id="51" stroke="none" target-height="49.119995" target-width="13.7599945" target-x="229.67" target-y="877.69"></path><path d="M 229.67 1185.50 L 243.40 1192.28 L 243.43 1234.62 L 229.69 1227.85 Z" fill="#000000" fill-rule="nonzero" group-id="1" id="矩形备份-82" node-id="52" stroke="none" target-height="49.119995" target-width="13.7599945" target-x="229.67" target-y="1185.5"></path><path d="M 24.46 1031.60 L 38.19 1038.37 L 38.22 1066.06 L 24.49 1059.28 Z" fill="#000000" fill-rule="nonzero" group-id="1" id="矩形备份-83" node-id="53" stroke="none" target-height="34.460083" target-width="13.760002" target-x="24.46" target-y="1031.6"></path><path d="M 493.50 1236.80 L 507.24 1243.58 L 507.27 1271.27 L 493.53 1264.49 Z" fill="#000000" fill-rule="nonzero" group-id="1" id="矩形备份-85" node-id="54" stroke="none" target-height="34.46997" target-width="13.769989" target-x="493.5" target-y="1236.8"></path><path d="M 24.46 1178.17 L 38.19 1184.95 L 38.22 1212.64 L 24.49 1205.86 Z" fill="#000000" fill-rule="nonzero" group-id="1" id="矩形备份-84" node-id="55" stroke="none" target-height="34.46997" target-width="13.760002" target-x="24.46" target-y="1178.17"></path><path d="M 493.50 1383.38 L 507.24 1390.16 L 507.27 1417.85 L 493.53 1411.07 Z" fill="#000000" fill-rule="nonzero" group-id="1" id="矩形备份-86" node-id="56" stroke="none" target-height="34.46997" target-width="13.769989" target-x="493.5" target-y="1383.38"></path></g></svg>
|