@next-bricks/basic-bricks 1.205.0 → 1.205.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/deploy/contract.yaml +51 -51
  2. package/dist/bricks.json +1 -1
  3. package/dist/{index.e46d43f3.js → index.642fd920.js} +1 -1
  4. package/dist/index.642fd920.js.map +1 -0
  5. package/dist/stories.json +93 -0
  6. package/package.json +3 -3
  7. package/dist/assets/browser-too-old-dark.ba44a34a.svg +0 -57
  8. package/dist/assets/browser-too-old.f0f7cb7b.svg +0 -66
  9. package/dist/assets/no-data-dark.d942cecd.svg +0 -144
  10. package/dist/assets/no-data.c35c9d1a.svg +0 -153
  11. package/dist/assets/no-history-version-dark.9a11cadd.svg +0 -65
  12. package/dist/assets/no-history-version.9ddb7812.svg +0 -74
  13. package/dist/assets/no-visit-record-dark.a8668ced.svg +0 -63
  14. package/dist/assets/no-visit-record.063d8cc2.svg +0 -72
  15. package/dist/assets/search-empty-dark.e2b07409.svg +0 -87
  16. package/dist/assets/search-empty.f6d9443a.svg +0 -96
  17. package/dist/assets/welcome-to-create-dark.236d4807.svg +0 -96
  18. package/dist/assets/welcome-to-create.986dc87a.svg +0 -105
  19. package/dist/editors/assets/browser-too-old-dark.ba44a34a.svg +0 -57
  20. package/dist/editors/assets/browser-too-old.f0f7cb7b.svg +0 -66
  21. package/dist/editors/assets/no-data-dark.d942cecd.svg +0 -144
  22. package/dist/editors/assets/no-data.c35c9d1a.svg +0 -153
  23. package/dist/editors/assets/no-history-version-dark.9a11cadd.svg +0 -65
  24. package/dist/editors/assets/no-history-version.9ddb7812.svg +0 -74
  25. package/dist/editors/assets/no-visit-record-dark.a8668ced.svg +0 -63
  26. package/dist/editors/assets/no-visit-record.063d8cc2.svg +0 -72
  27. package/dist/editors/assets/search-empty-dark.e2b07409.svg +0 -87
  28. package/dist/editors/assets/search-empty.f6d9443a.svg +0 -96
  29. package/dist/editors/assets/welcome-to-create-dark.236d4807.svg +0 -96
  30. package/dist/editors/assets/welcome-to-create.986dc87a.svg +0 -105
  31. package/dist/index.e46d43f3.js.map +0 -1
package/dist/stories.json CHANGED
@@ -5625,5 +5625,98 @@
5625
5625
  "dockind": "brick",
5626
5626
  "interface": []
5627
5627
  }
5628
+ },
5629
+ {
5630
+ "storyId": "basic-bricks.event-agent",
5631
+ "category": "other",
5632
+ "type": "brick",
5633
+ "author": "steve",
5634
+ "text": {
5635
+ "en": "Event Agent",
5636
+ "zh": "事件代理"
5637
+ },
5638
+ "description": {
5639
+ "en": "Use the event agent to handle callbacks by events.",
5640
+ "zh": "使用事件代理来处理回调。"
5641
+ },
5642
+ "icon": {
5643
+ "lib": "antd",
5644
+ "theme": "outlined",
5645
+ "icon": "interaction"
5646
+ },
5647
+ "conf": [
5648
+ {
5649
+ "brick": "basic-bricks.event-agent",
5650
+ "properties": {
5651
+ "id": "my-event-agent"
5652
+ },
5653
+ "events": {
5654
+ "event.trigger": [
5655
+ {
5656
+ "if": "<% EVENT.detail.type === \"success\" %>",
5657
+ "action": "message.success",
5658
+ "args": [
5659
+ "<% EVENT.detail.message %>"
5660
+ ]
5661
+ },
5662
+ {
5663
+ "if": "<% EVENT.detail.type === \"error\" %>",
5664
+ "action": "message.error",
5665
+ "args": [
5666
+ "<% EVENT.detail.message %>"
5667
+ ]
5668
+ }
5669
+ ]
5670
+ }
5671
+ },
5672
+ {
5673
+ "brick": "basic-bricks.general-button",
5674
+ "properties": {
5675
+ "buttonName": "Good"
5676
+ },
5677
+ "events": {
5678
+ "general.button.click": {
5679
+ "target": "#my-event-agent",
5680
+ "method": "trigger",
5681
+ "args": [
5682
+ {
5683
+ "type": "success",
5684
+ "message": "Good"
5685
+ }
5686
+ ]
5687
+ }
5688
+ }
5689
+ },
5690
+ {
5691
+ "brick": "basic-bricks.general-button",
5692
+ "properties": {
5693
+ "buttonName": "Bad"
5694
+ },
5695
+ "events": {
5696
+ "general.button.click": {
5697
+ "target": "#my-event-agent",
5698
+ "method": "trigger",
5699
+ "args": [
5700
+ {
5701
+ "type": "error",
5702
+ "message": "Bad"
5703
+ }
5704
+ ]
5705
+ }
5706
+ }
5707
+ }
5708
+ ],
5709
+ "doc": {
5710
+ "id": "basic-bricks.event-agent",
5711
+ "author": "steve",
5712
+ "history": [
5713
+ {
5714
+ "version": "1.171.0",
5715
+ "change": " 新增构件 `basic-bricks.event-agent`"
5716
+ }
5717
+ ],
5718
+ "dockind": "brick",
5719
+ "interface": []
5720
+ }
5628
5721
  }
5629
5722
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-bricks/basic-bricks",
3
- "version": "1.205.0",
3
+ "version": "1.205.1",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "https://github.com/easyops-cn/next-basics/tree/master/bricks/basic-bricks",
6
6
  "license": "GPL-3.0",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "devDependencies": {
33
33
  "@next-core/custom-antd-styles": "^1.24.12",
34
- "@next-libs/basic-components": "^3.6.0",
34
+ "@next-libs/basic-components": "^4.0.0",
35
35
  "@next-libs/storage": "^2.0.2",
36
36
  "@next-sdk/air-admin-service-sdk": "^2.1.12",
37
37
  "@next-sdk/micro-app-standalone-sdk": "^1.1.1",
@@ -40,5 +40,5 @@
40
40
  "immutability-helper": "^3.1.1"
41
41
  },
42
42
  "sideEffects": true,
43
- "gitHead": "999ad8d7601e634c2e54f36a31e48c10459f4318"
43
+ "gitHead": "ca9c3caf832595865ea9dc06c1f9aa1a9879f287"
44
44
  }
@@ -1,57 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="241px" height="262px" viewBox="0 0 241 262" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>browser-too-old</title>
4
- <defs>
5
- <path d="M0,17.4417259 C7.77675359,20.8055796 16.2578397,25.1498531 24.7931051,30.2717007 L24.7931051,30.2717007 C33.2491081,35.3448257 40.908473,40.6615641 47.3829138,45.813242 L47.3829138,45.813242 C52.2931747,40.9489285 55.3141791,34.35844 55.3141791,27.0967717 L55.3141791,27.0967717 C55.3141791,12.1319479 42.5117825,0 26.7194846,0 L26.7194846,0 C14.5170749,0 4.10559614,7.24675322 0,17.4417259" id="path-1"></path>
6
- <radialGradient cx="41.6543783%" cy="28.9394309%" fx="41.6543783%" fy="28.9394309%" r="128.190507%" gradientTransform="translate(0.416544,0.289394),scale(0.828237,1.000000),rotate(74.813766),translate(-0.416544,-0.289394)" id="radialGradient-3">
7
- <stop stop-color="#8D949D" offset="0%"></stop>
8
- <stop stop-color="#424445" offset="100%"></stop>
9
- </radialGradient>
10
- <polygon id="path-4" points="1.66531504e-16 -4.44091149e-16 19.1045763 -4.44091149e-16 19.1045763 25.0751095 1.66531504e-16 25.0751095"></polygon>
11
- </defs>
12
- <g id="空状态插画-暗色" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
13
- <g id="旧版缺省状态-browser-too-old" transform="translate(-279.000000, -226.000000)">
14
- <g id="browser-too-old" transform="translate(280.000000, 227.000000)">
15
- <g id="Fill-2" transform="translate(83.863433, 40.458447)" fill="#373B3F" fill-rule="nonzero">
16
- <path d="M79.9095925,37.5138169 C74.7168435,42.6944114 67.4065656,45.9277894 59.2987119,45.9277894 C43.5473397,45.9277894 30.7781206,33.7452039 30.7781206,18.7166866 C30.7781206,15.3005698 31.4446018,12.0332403 32.6484709,9.02154543 C14.7235295,1.21470501 2.45867452,-2.99927128 0.256084291,2.48988219 C-1.86644813,7.78031972 9.09446542,30.3949929 37.2828168,47.4256483 C65.4711683,64.4553051 99.3276119,68.1270564 99.3276119,60.4070918 C99.3276119,55.4142289 95.0355131,49.6334923 79.9095925,37.5138169" id="路径"></path>
17
- </g>
18
- <g id="Fill-3-Clipped" transform="translate(115.386567, 33.913699)">
19
- <mask id="mask-2" fill="white">
20
- <use xlink:href="#path-1"></use>
21
- </mask>
22
- <g id="path-1"></g>
23
- <path d="M0,17.4417259 C7.77675359,20.8055796 16.2578397,25.1498531 24.7931051,30.2717007 L24.7931051,30.2717007 C33.2491081,35.3448257 40.908473,40.6615641 47.3829138,45.813242 L47.3829138,45.813242 C52.2931747,40.9489285 55.3141791,34.35844 55.3141791,27.0967717 L55.3141791,27.0967717 C55.3141791,12.1319479 42.5117825,0 26.7194846,0 L26.7194846,0 C14.5170749,0 4.10559614,7.24675322 0,17.4417259" id="Fill-3" fill="url(#radialGradient-3)" fill-rule="nonzero" mask="url(#mask-2)"></path>
24
- </g>
25
- <g id="编组">
26
- <path d="M141.998337,87.5003821 C150.100242,87.5003821 157.404157,84.2633679 162.594096,79.0743453 C156.141171,73.8933226 148.506261,68.5462993 140.07836,63.443277 C131.571459,58.2932545 123.117558,53.9242355 115.367649,50.5412207 C114.164663,53.5582339 113.498671,56.8292481 113.498671,60.2502631 C113.498671,75.3003288 126.258521,87.5003821 141.998337,87.5003821" id="Fill-5" fill="#373B3F" fill-rule="nonzero"></path>
27
- <g transform="translate(219.995424, 66.013488)" id="Fill-7-Clipped">
28
- <mask id="mask-5" fill="white">
29
- <use xlink:href="#path-4"></use>
30
- </mask>
31
- <g id="path-4"></g>
32
- <path d="M1.66531504e-16,12.0210525 C1.66531504e-16,12.0210525 8.00190629,8.98703924 10.2718797,-4.44091149e-16 C13.5418414,7.37003218 15.2278217,10.5570461 19.1047763,11.9580522 C13.8258381,14.435063 11.5328649,17.2170752 9.72688609,25.0751095 C7.65391037,15.8170691 5.76693247,14.6190638 1.66531504e-16,12.0210525" id="Fill-7" fill="#FFFFFF" fill-rule="nonzero" opacity="0.199999988" mask="url(#mask-5)"></path>
33
- </g>
34
- <path d="M29.4527551,77.5716387 C29.4527551,77.5716387 34.6926937,75.58463 36.1806763,69.6996043 C38.3206512,74.5256254 39.4256383,76.6126345 41.9646086,77.5306385 C38.508649,79.1526456 37.0056666,80.9746536 35.8226805,86.120676 C34.4656964,80.0566496 33.2287109,79.2726461 29.4527551,77.5716387" id="Fill-9" fill="#FFFFFF" fill-rule="nonzero" opacity="0.199999988"></path>
35
- <path d="M75.4991159,198.500867 C75.4991159,198.500867 79.499069,226.500989 78.4990807,233.50102 C77.4990924,240.50105 77.4990924,254.501111 78.4990807,255.501116 C79.499069,256.50112 82.999028,259.001131 83.9990163,257.001122 C84.9990046,255.001113 87.4989753,242.501059 89.4989519,236.501033 C91.4989285,230.501006 93.4989051,219.500958 94.4988934,218.500954 C95.4988817,217.50095 98.4988465,232.501015 99.4988348,235.501028 C100.498823,238.501041 102.4988,253.501107 104.498776,255.501116 C106.498753,257.501124 111.498694,255.501116 111.498694,254.501111 C111.498694,253.501107 108.998724,243.001061 108.998724,238.001039 C108.998724,233.001017 111.348696,206.417901 112.498683,204.500893 C113.998665,202.000882 111.498694,194.500849 111.498694,194.500849 L75.4991159,198.500867 Z" id="Fill-11" fill="#144199" fill-rule="nonzero"></path>
36
- <path d="M117.615823,155.500679 C117.615823,155.500679 125.744727,167.884733 125.744727,179.441784 C125.744727,185.221809 126.760716,191.000834 124.727739,191.000834 C122.695763,191.000834 121.679775,191.000834 120.664787,189.349827 C119.647799,187.69782 119.647799,180.268787 118.632811,176.140769 C117.615823,172.012751 108.47093,159.628697 110.503906,157.97769 C112.535882,156.325683 117.615823,155.500679 117.615823,155.500679" id="Fill-13" fill="#D9B791" fill-rule="nonzero"></path>
37
- <path d="M69.4551866,153.50067 C69.4551866,153.50067 66.1292256,157.503688 63.6352548,164.707719 C61.140284,171.912751 57.813323,182.319796 61.9722743,185.52181 C62.8032645,186.321814 63.6352548,186.321814 64.4662451,183.920803 C65.2982353,181.519793 64.4662451,179.117782 66.1292256,178.316779 L66.1292256,181.519793 C66.1292256,183.1208 66.9602159,183.920803 67.7922061,182.319796 C68.6231964,180.718789 68.6231964,179.117782 68.6231964,177.516775 C68.6231964,175.915768 71.1181672,156.702684 73.612138,155.101677 C76.1071087,153.50067 69.4551866,153.50067 69.4551866,153.50067" id="Fill-15" fill="#D9B791" fill-rule="nonzero"></path>
38
- <path d="M86.498987,123.500539 C86.498987,123.500539 88.4989636,132.500579 87.4989753,132.500579 C86.498987,132.500579 95.4988817,133.500583 95.4988817,133.500583 C95.4988817,133.500583 98.4988465,125.500539 98.4988465,124.500539 C98.4988465,123.500539 86.498987,123.500539 86.498987,123.500539" id="Fill-17" fill="#D9B791" fill-rule="nonzero"></path>
39
- <path d="M78.4990807,105.500461 C78.4990807,105.500461 78.6080795,106.022463 78.9990749,108.000472 C79.0980737,108.502474 77.9990866,106.000463 75.99911,107.000467 C75.1021205,107.448469 75.1731197,109.174477 77.9990866,112.000489 C78.9990749,113.000493 79.8720647,112.496491 79.9990632,113.000493 C80.6460556,115.571505 81.7430427,119.366521 82.4990339,120.500526 C84.4990105,123.500539 87.4989753,127.500557 91.4989285,127.500557 C95.4988817,127.500557 100.498823,127.500557 102.4988,123.500539 C104.498776,119.500522 106.998747,117.000511 106.498753,110.500482 C106.443753,109.784479 109.998712,110.00048 107.998735,104.000454 C107.551741,102.658448 104.99877,104.000454 104.99877,105.000458 C104.99877,108.064472 104.498776,99.5004345 104.498776,99.5004345 L78.4990807,105.500461 Z" id="Fill-19" fill="#D9B791" fill-rule="nonzero"></path>
40
- <path d="M78.4990807,94.5004126 C78.4990807,94.5004126 74.4991276,116.500509 90.4989402,118.500517 C101.498811,119.500522 105.998759,114.000498 106.998747,100.000437 C107.57274,91.9584015 107.498741,88.5003864 107.498741,84.500369 C107.498741,80.2583504 108.023735,86.7473788 98.9988407,84.0003668 C87.4989753,80.5003515 80.4990573,85.5003733 78.4990807,94.5004126" id="Fill-21" fill="#191F35" fill-rule="nonzero"></path>
41
- <path d="M78.4990807,94.5004126 C78.4990807,94.5004126 74.4991276,116.500509 90.4989402,118.500517 C101.498811,119.500522 105.998759,114.000498 106.998747,100.000437 C107.57274,91.9584015 107.498741,88.5003864 107.498741,84.500369 C107.498741,80.2583504 108.023735,86.7473788 98.9988407,84.0003668 C87.4989753,80.5003515 80.4990573,85.5003733 78.4990807,94.5004126" id="Fill-21备份" fill="#FFFFFF" fill-rule="nonzero" opacity="0.119999997"></path>
42
- <path d="M65.499233,152.500666 C65.499233,152.500666 72.499151,135.500592 87.4989753,133.500583 C102.4988,131.500574 109.498718,137.5006 114.498659,143.500627 C119.498601,149.500653 121.665575,152.031664 121.498577,155.500679 C121.344579,158.698693 117.498624,164.500718 111.498694,163.500714 C111.498694,163.500714 118.498612,181.500792 118.498612,193.500845 C118.498612,205.500897 106.498753,202.500884 102.4988,202.500884 L84.4990105,202.500884 C82.4990339,202.500884 71.4991627,200.500875 70.4991744,198.500867 C69.4991861,196.500858 69.4991861,180.500788 72.499151,170.500744 C75.4991159,160.500701 77.4990924,158.500692 77.4990924,158.500692 C77.4990924,158.500692 65.499233,156.500683 65.499233,152.500666" id="Fill-23" fill="#FFBA2A" fill-rule="nonzero"></path>
43
- <path d="M78.1914843,253.697408 C78.1914843,253.697408 78.309483,256.702421 78.3854821,258.652429 C78.4614812,260.562438 79.6154677,260.472437 81.4994456,260.501437 C83.4114232,260.529438 83.4514227,259.038431 86.499387,258.501429 C98.7862432,256.338419 97.5422577,249.309389 93.4993051,248.501385 C90.9993343,248.001383 89.4423526,250.280393 86.2413901,250.368393 C82.9494286,250.459394 82.1294382,252.596403 82.1294382,252.596403 L78.1914843,253.697408 Z" id="Fill-25" fill="#603624" fill-rule="nonzero"></path>
44
- <path d="M103.206791,253.448407 C103.206791,253.448407 102.049805,256.60142 102.4988,258.501429 C102.937795,260.361437 105.644763,260.834439 107.498741,260.501437 C109.380719,260.163436 109.393719,257.680425 112.281685,256.57042 C123.926549,252.091401 121.615576,247.716382 117.498624,247.501381 C116.362637,247.44138 113.59467,247.937383 110.469706,248.637386 C107.256744,249.357389 106.861749,251.612399 106.861749,251.612399 L103.206791,253.448407 Z" id="Fill-27" fill="#603624" fill-rule="nonzero"></path>
45
- <line x1="157.99815" y1="4.50001965" x2="166.998044" y2="4.50001965" id="Stroke-29" stroke="#67624E" stroke-width="0.75" stroke-linecap="round" stroke-linejoin="round"></line>
46
- <line x1="162.498097" y1="0" x2="162.498097" y2="9.0000393" id="Stroke-31" stroke="#67624E" stroke-width="0.75" stroke-linecap="round" stroke-linejoin="round"></line>
47
- <line x1="184.497839" y1="118.750519" x2="192.99774" y2="118.750519" id="Stroke-33" stroke="#67624E" stroke-width="0.708" stroke-linecap="round" stroke-linejoin="round"></line>
48
- <line x1="188.74779" y1="114.5005" x2="188.74779" y2="123.000537" id="Stroke-35" stroke="#67624E" stroke-width="0.708" stroke-linecap="round" stroke-linejoin="round"></line>
49
- <line x1="0" y1="136.750597" x2="8.49990046" y2="136.750597" id="Stroke-37" stroke="#67624E" stroke-width="0.708" stroke-linecap="round" stroke-linejoin="round"></line>
50
- <line x1="4.24995023" y1="132.500579" x2="4.24995023" y2="141.000616" id="Stroke-39" stroke="#67624E" stroke-width="0.708" stroke-linecap="round" stroke-linejoin="round"></line>
51
- <path d="M98.9988407,98.0004279 C98.9988407,98.0004279 98.9988407,100.000428 98.4988465,100.885441 C98.2458495,101.331442 98.9988407,103.00045 99.998829,102.000445 C100.998817,101.000441 98.9988407,98.0004279 98.9988407,98.0004279" id="Fill-41" fill="#E8E8E8" fill-rule="nonzero"></path>
52
- <path d="M101.931406,103.743653 C101.931406,103.743653 101.661409,104.861658 101.263414,105.28966 C101.062417,105.505661 101.258414,106.540665 101.952406,106.115663 C102.646398,105.690661 101.931406,103.743653 101.931406,103.743653" id="Fill-43" fill="#E8E8E8" fill-rule="nonzero"></path>
53
- </g>
54
- </g>
55
- </g>
56
- </g>
57
- </svg>
@@ -1,66 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="240px" height="262px" viewBox="0 0 240 262" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
4
- <title>浏览器版本低</title>
5
- <desc>Created with Sketch.</desc>
6
- <defs>
7
- <path d="M0.723,18.157 C8.474,21.54 16.927,25.909 25.434,31.06 L25.434,31.06 C33.862,36.162 41.496,41.509 47.949,46.69 L47.949,46.69 C52.843,41.798 55.854,35.17 55.854,27.867 L55.854,27.867 C55.854,12.817 43.094,0.616 27.354,0.616 L27.354,0.616 C15.192,0.616 4.815,7.904 0.723,18.157" id="path-1"></path>
8
- <radialGradient cx="41.6544231%" cy="28.9394331%" fx="41.6544231%" fy="28.9394331%" r="128.11208%" gradientTransform="translate(0.416544,0.289394),scale(0.835719,1.000000),rotate(74.943528),translate(-0.416544,-0.289394)" id="radialGradient-3">
9
- <stop stop-color="#FFFFFF" offset="0%"></stop>
10
- <stop stop-color="#231714" offset="100%"></stop>
11
- </radialGradient>
12
- <polygon id="path-4" points="0.3522 0.6294 19.457 0.6294 19.457 25.7044 0.3522 25.7044"></polygon>
13
- </defs>
14
- <g id="Data-Display数据展示" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
15
- <g id="空状态" transform="translate(-2371.000000, -1442.000000)">
16
- <g id="编组-13" transform="translate(166.000000, 580.000000)">
17
- <g id="空页面" transform="translate(4.000000, 757.000000)">
18
- <g id="插图" transform="translate(0.000000, 105.000000)">
19
- <g id="浏览器版本低" transform="translate(2201.000000, 0.000000)">
20
- <g id="编组">
21
- <g transform="translate(84.000000, 40.759000)" fill="#DBDBDB" id="Fill-2">
22
- <path d="M79.9499,37.6904 C74.7609,42.8784 67.4559,46.1164 59.3539,46.1164 C43.6139,46.1164 30.8539,33.9164 30.8539,18.8664 C30.8539,15.4454 31.5199,12.1734 32.7229,9.1574 C14.8109,1.3394 2.5549,-2.8806 0.3539,2.6164 C-1.7671,7.9144 9.1859,30.5614 37.3539,47.6164 C65.5219,64.6704 99.3539,68.3474 99.3539,60.6164 C99.3539,55.6164 95.0649,49.8274 79.9499,37.6904"></path>
23
- </g>
24
- <g transform="translate(115.000000, 33.759000)">
25
- <mask id="mask-2" fill="white">
26
- <use xlink:href="#path-1"></use>
27
- </mask>
28
- <g id="Clip-4"></g>
29
- <path d="M0.723,18.157 C8.474,21.54 16.927,25.909 25.434,31.06 L25.434,31.06 C33.862,36.162 41.496,41.509 47.949,46.69 L47.949,46.69 C52.843,41.798 55.854,35.17 55.854,27.867 L55.854,27.867 C55.854,12.817 43.094,0.616 27.354,0.616 L27.354,0.616 C15.192,0.616 4.815,7.904 0.723,18.157" id="Fill-3" fill="url(#radialGradient-3)" mask="url(#mask-2)"></path>
30
- </g>
31
- <g>
32
- <path d="M142.3542,88.1162 C150.4562,88.1162 157.7602,84.8792 162.9502,79.6902 C156.4972,74.5092 148.8622,69.1622 140.4342,64.0592 C131.9272,58.9092 123.4732,54.5402 115.7232,51.1572 C114.5202,54.1742 113.8542,57.4452 113.8542,60.8662 C113.8542,75.9162 126.6142,88.1162 142.3542,88.1162" id="Fill-5" fill="#DBDBDB"></path>
33
- <g transform="translate(220.000000, 66.000000)">
34
- <mask id="mask-5" fill="white">
35
- <use xlink:href="#path-4"></use>
36
- </mask>
37
- <g id="Clip-8"></g>
38
- <path d="M0.3522,12.6504 C0.3522,12.6504 8.3542,9.6164 10.6242,0.6294 C13.8942,7.9994 15.5802,11.1864 19.4572,12.5874 C14.1782,15.0644 11.8852,17.8464 10.0792,25.7044 C8.0062,16.4464 6.1192,15.2484 0.3522,12.6504" id="Fill-7" fill="#DBDBDB" mask="url(#mask-5)"></path>
39
- </g>
40
- <path d="M29.8073,78.1875 C29.8073,78.1875 35.0473,76.2005 36.5353,70.3155 C38.6753,75.1415 39.7803,77.2285 42.3193,78.1465 C38.8633,79.7685 37.3603,81.5905 36.1773,86.7365 C34.8203,80.6725 33.5833,79.8885 29.8073,78.1875" id="Fill-9" fill="#DBDBDB"></path>
41
- <path d="M75.8542,199.1162 C75.8542,199.1162 79.8542,227.1162 78.8542,234.1162 C77.8542,241.1162 77.8542,255.1162 78.8542,256.1162 C79.8542,257.1162 83.3542,259.6162 84.3542,257.6162 C85.3542,255.6162 87.8542,243.1162 89.8542,237.1162 C91.8542,231.1162 93.8542,220.1162 94.8542,219.1162 C95.8542,218.1162 98.8542,233.1162 99.8542,236.1162 C100.8542,239.1162 102.8542,254.1162 104.8542,256.1162 C106.8542,258.1162 111.8542,256.1162 111.8542,255.1162 C111.8542,254.1162 109.3542,243.6162 109.3542,238.6162 C109.3542,233.6162 111.7042,207.0332 112.8542,205.1162 C114.3542,202.6162 111.8542,195.1162 111.8542,195.1162 L75.8542,199.1162 Z" id="Fill-11" fill="#1452CC"></path>
42
- <path d="M117.9714,156.1162 C117.9714,156.1162 126.1004,168.5002 126.1004,180.0572 C126.1004,185.8372 127.1164,191.6162 125.0834,191.6162 C123.0514,191.6162 122.0354,191.6162 121.0204,189.9652 C120.0034,188.3132 120.0034,180.8842 118.9884,176.7562 C117.9714,172.6282 108.8264,160.2442 110.8594,158.5932 C112.8914,156.9412 117.9714,156.1162 117.9714,156.1162" id="Fill-13" fill="#FFDCB6"></path>
43
- <path d="M69.8102,154.1162 C69.8102,154.1162 66.4842,158.1192 63.9902,165.3232 C61.4952,172.5282 58.1682,182.9352 62.3272,186.1372 C63.1582,186.9372 63.9902,186.9372 64.8212,184.5362 C65.6532,182.1352 64.8212,179.7332 66.4842,178.9322 L66.4842,182.1352 C66.4842,183.7362 67.3152,184.5362 68.1472,182.9352 C68.9782,181.3342 68.9782,179.7332 68.9782,178.1322 C68.9782,176.5312 71.4732,157.3182 73.9672,155.7172 C76.4622,154.1162 69.8102,154.1162 69.8102,154.1162" id="Fill-15" fill="#FFDCB6"></path>
44
- <path d="M86.8542,124.1162 C86.8542,124.1162 88.8542,133.1162 87.8542,133.1162 C86.8542,133.1162 95.8542,134.1162 95.8542,134.1162 C95.8542,134.1162 98.8542,126.1162 98.8542,125.1162 C98.8542,124.1162 86.8542,124.1162 86.8542,124.1162" id="Fill-17" fill="#FFDCB6"></path>
45
- <path d="M78.8542,106.1162 C78.8542,106.1162 78.9632,106.6382 79.3542,108.6162 C79.4532,109.1182 78.3542,106.6162 76.3542,107.6162 C75.4572,108.0642 75.5282,109.7902 78.3542,112.6162 C79.3542,113.6162 80.2272,113.1122 80.3542,113.6162 C81.0012,116.1872 82.0982,119.9822 82.8542,121.1162 C84.8542,124.1162 87.8542,128.1162 91.8542,128.1162 C95.8542,128.1162 100.8542,128.1162 102.8542,124.1162 C104.8542,120.1162 107.3542,117.6162 106.8542,111.1162 C106.7992,110.4002 110.3542,110.6162 108.3542,104.6162 C107.9072,103.2742 105.3542,104.6162 105.3542,105.6162 C105.3542,108.6802 104.8542,100.1162 104.8542,100.1162 L78.8542,106.1162 Z" id="Fill-19" fill="#FFDCB6"></path>
46
- <path d="M78.8542,95.1162 C78.8542,95.1162 74.8542,117.1162 90.8542,119.1162 C101.8542,120.1162 106.3542,114.6162 107.3542,100.6162 C107.9282,92.5742 107.8542,89.1162 107.8542,85.1162 C107.8542,80.8742 108.3792,87.3632 99.3542,84.6162 C87.8542,81.1162 80.8542,86.1162 78.8542,95.1162" id="Fill-21" fill="#191F35"></path>
47
- <path d="M65.8542,153.1162 C65.8542,153.1162 72.8542,136.1162 87.8542,134.1162 C102.8542,132.1162 109.8542,138.1162 114.8542,144.1162 C119.8542,150.1162 122.0212,152.6472 121.8542,156.1162 C121.7002,159.3142 117.8542,165.1162 111.8542,164.1162 C111.8542,164.1162 118.8542,182.1162 118.8542,194.1162 C118.8542,206.1162 106.8542,203.1162 102.8542,203.1162 L84.8542,203.1162 C82.8542,203.1162 71.8542,201.1162 70.8542,199.1162 C69.8542,197.1162 69.8542,181.1162 72.8542,171.1162 C75.8542,161.1162 77.8542,159.1162 77.8542,159.1162 C77.8542,159.1162 65.8542,157.1162 65.8542,153.1162" id="Fill-23" fill="#FFBA2A"></path>
48
- <path d="M78.5466,254.3125 C78.5466,254.3125 78.6646,257.3175 78.7406,259.2675 C78.8166,261.1775 79.9706,261.0875 81.8546,261.1165 C83.7666,261.1445 83.8066,259.6535 86.8546,259.1165 C99.1416,256.9535 97.8976,249.9245 93.8546,249.1165 C91.3546,248.6165 89.7976,250.8955 86.5966,250.9835 C83.3046,251.0745 82.4846,253.2115 82.4846,253.2115 L78.5466,254.3125 Z" id="Fill-25" fill="#7F5916"></path>
49
- <path d="M103.5622,254.0635 C103.5622,254.0635 102.4052,257.2165 102.8542,259.1165 C103.2932,260.9765 106.0002,261.4495 107.8542,261.1165 C109.7362,260.7785 109.7492,258.2955 112.6372,257.1855 C124.2822,252.7065 121.9712,248.3315 117.8542,248.1165 C116.7182,248.0565 113.9502,248.5525 110.8252,249.2525 C107.6122,249.9725 107.2172,252.2275 107.2172,252.2275 L103.5622,254.0635 Z" id="Fill-27" fill="#7F5916"></path>
50
- <line x1="158.3542" y1="5.1162" x2="167.3542" y2="5.1162" id="Stroke-29" stroke="#7A7561" stroke-width="0.75" stroke-linecap="round" stroke-linejoin="round"></line>
51
- <line x1="162.8542" y1="0.6162" x2="162.8542" y2="9.6162" id="Stroke-31" stroke="#7A7561" stroke-width="0.75" stroke-linecap="round" stroke-linejoin="round"></line>
52
- <line x1="184.8542" y1="119.3662" x2="193.3542" y2="119.3662" id="Stroke-33" stroke="#7A7561" stroke-width="0.708" stroke-linecap="round" stroke-linejoin="round"></line>
53
- <line x1="189.1042" y1="115.1162" x2="189.1042" y2="123.6162" id="Stroke-35" stroke="#7A7561" stroke-width="0.708" stroke-linecap="round" stroke-linejoin="round"></line>
54
- <line x1="0.3542" y1="137.3662" x2="8.8542" y2="137.3662" id="Stroke-37" stroke="#7A7561" stroke-width="0.708" stroke-linecap="round" stroke-linejoin="round"></line>
55
- <line x1="4.6042" y1="133.1162" x2="4.6042" y2="141.6162" id="Stroke-39" stroke="#7A7561" stroke-width="0.708" stroke-linecap="round" stroke-linejoin="round"></line>
56
- <path d="M99.3542,98.6162 C99.3542,98.6162 99.3542,100.6162 98.8542,101.5012 C98.6012,101.9472 99.3542,103.6162 100.3542,102.6162 C101.3542,101.6162 99.3542,98.6162 99.3542,98.6162" id="Fill-41" fill="#E8E8E8"></path>
57
- <path d="M102.2868,104.3594 C102.2868,104.3594 102.0168,105.4774 101.6188,105.9054 C101.4178,106.1214 101.6138,107.1564 102.3078,106.7314 C103.0018,106.3064 102.2868,104.3594 102.2868,104.3594" id="Fill-43" fill="#E8E8E8"></path>
58
- </g>
59
- </g>
60
- </g>
61
- </g>
62
- </g>
63
- </g>
64
- </g>
65
- </g>
66
- </svg>
@@ -1,144 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="232px" height="260px" viewBox="0 0 232 260" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>no-data</title>
4
- <defs>
5
- <path d="M11.41078,0.222493897 C11.41078,0.222493897 9.9394078,5.95944414 7.24009259,6.707742 L7.24009259,6.707742 C4.54077738,7.45603986 0.859892996,7.20660724 0.123716119,9.70093343 L0.123716119,9.70093343 C-0.72632278,12.5763927 2.82303133,13.941288 10.1848001,13.4424227 L10.1848001,13.4424227 C17.5465689,12.9425598 19.2633333,13.6918553 19.2633333,11.4469618 L19.2633333,11.4469618 C19.2633333,9.08034508 16.810392,1.96852223 16.810392,0.721359135 L16.810392,0.721359135 C16.810392,0.154648224 15.6953294,0 14.4791652,0 L14.4791652,0 C13.0185903,0 11.41078,0.222493897 11.41078,0.222493897 L11.41078,0.222493897 Z" id="path-1"></path>
6
- <path d="M11.0307353,1.75953435 C11.0307353,1.75953435 9.8064632,8.79767173 6.37948078,8.79767173 L6.37948078,8.79767173 C2.95151894,8.79767173 -0.231588482,10.305844 0.013265935,13.0708266 L0.013265935,13.0708266 C0.258120352,15.8358091 4.17579103,15.5844471 10.5420059,15.333085 L10.5420059,15.333085 C16.9082207,15.081723 18.6212222,15.5844471 18.6212222,13.0708266 L18.6212222,13.0708266 C18.6212222,10.7934864 17.1530751,7.79121808 16.9082207,6.03268918 L16.9082207,6.03268918 C16.6633663,4.27315484 16.4175325,0 16.4175325,0 L16.4175325,0 L11.0307353,1.75953435 Z" id="path-3"></path>
7
- <path d="M0.493821124,4.3340834 C0.493821124,4.3340834 0,44.068848 0,46.0848868 L0,46.0848868 C0,54.8350552 3.71108059,73.585416 4.70070209,75.0854449 L4.70070209,75.0854449 C5.69032358,76.5854737 13.1124848,76.3344689 13.6072955,74.3354304 L13.6072955,74.3354304 C14.1021063,72.3353919 13.3598901,61.8351899 11.8754579,55.08506 L11.8754579,55.08506 C10.3910257,48.3349301 15.3391331,29.5845693 21.0294567,22.084425 L21.0294567,22.084425 C21.0294567,22.084425 24.2338511,39.5837617 23.9973316,49.834959 L23.9973316,49.834959 C23.7509158,60.5841658 30.1834555,75.5854545 31.6668981,76.8354785 L31.6668981,76.8354785 C33.15232,78.0855026 37.6056167,76.8354785 37.6056167,76.8354785 L37.6056167,76.8354785 C37.6056167,76.8354785 37.8530221,66.3352765 36.3685898,61.0851754 L36.3685898,61.0851754 C34.8841576,55.8350744 34.6367522,52.0850023 35.1305733,48.3349301 L35.1305733,48.3349301 C35.6263737,44.5848579 41.8105184,14.084271 37.8530221,4.3340834 L37.8530221,4.3340834 C36.532867,1.08402086 31.9420129,0 26.4080495,0 L26.4080495,0 C15.3381435,0 0.493821124,4.3340834 0.493821124,4.3340834 L0.493821124,4.3340834 Z" id="path-5"></path>
8
- <path d="M1.59157389,3.57964068 L6.42111111,6.44925373 C5.4411632,5.86707041 4.8343456,4.62894744 4.82953722,2.86961305 L4.82953722,2.86961305 L0,0 C0.00480838034,1.75835097 0.612587656,2.99647394 1.59157389,3.57964068" id="path-7"></path>
9
- <polygon id="path-9" points="0 0 114.00813 0 114.00813 133.949522 0 133.949522"></polygon>
10
- <path d="M0.526531111,0.583012537 L0.923355778,0.813895821 C0.86685,0.773910448 0.810344222,0.740374328 0.757691111,0.70812806 L0.757691111,0.70812806 L0.360866444,0.475954925 C0.416088,0.508201194 0.471309556,0.544317015 0.526531111,0.583012537" id="path-11"></path>
11
- <path d="M0.667153444,0.662983284 C0.764754333,0.719736716 0.861071,0.773910448 0.957387667,0.825504478 L0.957387667,0.825504478 L0.560563,0.594621194 C0.484793889,0.55334597 0.406456333,0.510780896 0.326834556,0.464346269 L0.326834556,0.464346269" id="path-13"></path>
12
- <path d="M0.667153444,0.662983284 C0.764754333,0.719736716 0.861071,0.773910448 0.957387667,0.825504478 L0.957387667,0.825504478 L0.560563,0.594621194 C0.484793889,0.55334597 0.406456333,0.510780896 0.326834556,0.464346269 L0.326834556,0.464346269" id="path-15"></path>
13
- <polygon id="path-17" points="0 0 16.9890192 0 16.9890192 30.1955965 0 30.1955965"></polygon>
14
- <path d="M0,3.55978947 C0,3.55978947 3.47391392,8.02316439 2.48165059,11.7426435 L2.48165059,11.7426435 C1.48938726,15.4621226 10.9158889,9.01502549 10.9158889,9.01502549 L10.9158889,9.01502549 C10.9158889,9.01502549 7.9390989,0.832171458 4.21811141,0.0882756374 L4.21811141,0.0882756374 C3.91646336,0.0277721106 3.6366451,0 3.37567985,0 L3.37567985,0 C0.419727388,0 0,3.55978947 0,3.55978947 L0,3.55978947 Z" id="path-19"></path>
15
- <path d="M26.5114634,0.328454386 L20.5456436,1.58018604 C20.5456436,1.58018604 7.10689139,5.52764698 4.64043599,17.3520049 L4.64043599,17.3520049 C-1.57292407,47.1432182 0.157869507,71.0532955 0.41435701,74.9316609 L0.41435701,74.9316609 C0.554530413,77.0445839 1.40153566,77.0175465 3.311274,76.9915105 L3.311274,76.9915105 C4.79651559,76.9704814 6.92297594,76.9504537 9.85965843,77.9358168 L9.85965843,77.9358168 C16.5700873,80.1889338 49.3766284,81.4406654 50.1222316,76.9344315 L50.1222316,76.9344315 C50.8668407,72.4281975 55.8385228,32.1224383 47.6368876,23.8610094 L47.6368876,23.8610094 C47.6368876,23.8610094 50.1212375,22.5131448 52.4127246,22.5131448 L52.4127246,22.5131448 C54.2737503,22.5131448 45.1972739,0.00200277064 29.7583168,0 L29.7583168,0 C28.7045309,0 27.6229092,0.104144073 26.5114634,0.328454386 L26.5114634,0.328454386 Z" id="path-21"></path>
16
- </defs>
17
- <g id="空状态插画-暗色" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
18
- <g id="旧版缺省状态-browser-too-old备份-4" transform="translate(-284.000000, -270.000000)">
19
- <g id="no-data" transform="translate(284.000000, 270.000000)">
20
- <g id="Fill-2" transform="translate(143.832889, 245.071642)" fill="#603624" fill-rule="nonzero">
21
- <path d="M11.411085,0.222630987 C11.411085,0.222630987 9.93878844,5.9595017 7.23957808,6.70778919 C4.54036771,7.45607667 0.85962631,7.20664751 0.123478029,9.70093913 C-0.725546321,12.5773562 2.82268839,13.9412349 10.1841712,13.4423766 C17.545654,12.9435182 19.2633333,13.6918057 19.2633333,11.4469433 C19.2633333,9.08035937 16.8095057,1.96863512 16.8095057,0.72148931 C16.8095057,-0.525656498 11.411085,0.222630987 11.411085,0.222630987" id="路径"></path>
22
- </g>
23
- <g id="Fill-3-Clipped" transform="translate(143.832889, 245.071642)">
24
- <mask id="mask-2" fill="white">
25
- <use xlink:href="#path-1"></use>
26
- </mask>
27
- <g id="path-1"></g>
28
- <path d="M9.50123533,-0.871816891 C9.50123533,-0.871816891 12.4459428,6.11229645 18.3353578,5.11456597 C24.2247729,4.1168355 21.2800653,-0.871816891 21.2800653,-0.871816891 L14.4090812,-2.86727785 L9.50123533,-0.871816891 Z" id="Fill-3" fill="#604211" fill-rule="nonzero" mask="url(#mask-2)"></path>
29
- </g>
30
- <path d="M129.82169,245.541325 C129.82169,245.541325 128.597482,252.579463 125.169701,252.579463 C121.741919,252.579463 118.558979,254.087635 118.803821,256.852618 C119.048662,259.6176 122.966127,259.366238 129.332007,259.114876 C135.697887,258.863514 137.411778,259.366238 137.411778,256.852618 C137.411778,254.575277 135.942729,251.574015 135.697887,249.81448 C135.453045,248.054946 135.208204,243.781791 135.208204,243.781791 L129.82169,245.541325 Z" id="Fill-5" fill="#603624" fill-rule="nonzero"></path>
31
- <g id="Fill-7-Clipped" transform="translate(118.790556, 243.781791)">
32
- <mask id="mask-4" fill="white">
33
- <use xlink:href="#path-3"></use>
34
- </mask>
35
- <g id="path-3"></g>
36
- <path d="M7.90110407,-0.348689435 C7.90110407,-0.348689435 10.8393571,6.68944795 16.7158631,5.68399975 C22.5923691,4.67855155 19.6541161,-0.348689435 19.6541161,-0.348689435 L12.7981924,-2.35958583 L7.90110407,-0.348689435 Z" id="Fill-7" fill="#604211" fill-rule="nonzero" mask="url(#mask-4)"></path>
37
- </g>
38
- <path d="M123.780139,174.595747 C123.780139,174.595747 123.285333,214.34914 123.285333,216.366124 C123.285333,225.120395 126.996374,243.879546 127.985984,245.380279 C128.975595,246.881011 136.397676,246.630889 136.892481,244.629912 C137.387286,242.628936 136.645078,232.123811 135.160662,225.370517 C133.676246,218.617222 138.6243,199.858071 144.314562,192.35441 C144.314562,192.35441 147.518921,209.861951 147.283394,220.117954 C147.035991,230.873201 153.486274,245.859512 154.952877,247.131133 C155.995927,248.034573 160.060258,247.578351 160.890542,247.131133 C162.923202,246.033597 161.137944,236.626008 159.653528,231.373445 C158.169112,226.120883 157.921709,222.369053 158.416515,218.617222 C158.91132,214.865392 165.096387,184.350506 161.137944,174.595747 C157.179501,164.840988 123.780139,174.595747 123.780139,174.595747" id="Fill-9" fill="#1452CC" fill-rule="nonzero"></path>
39
- <g id="Fill-11-Clipped" transform="translate(123.285333, 170.260299)">
40
- <mask id="mask-6" fill="white">
41
- <use xlink:href="#path-5"></use>
42
- </mask>
43
- <use id="path-5" fill="#144199" xlink:href="#path-5"></use>
44
- <path d="M32.7105529,3.73727192 C32.7105529,3.73727192 27.7624455,12.7374451 21.8247165,20.737599 C19.3051402,24.1326644 16.8766091,55.7382726 16.8766091,55.7382726 C16.8766091,55.7382726 17.8662306,81.7387729 16.8766091,82.7387921 C15.8869876,83.7388114 2.0322867,98.7391 1.0426652,97.7390808 C0.053043712,96.7390615 -15.7809002,81.7387729 -15.7809002,81.7387729 L-18.7497646,23.7376568 L-12.8120357,-1.2628243 L11.9285016,-10.2629975 L39.6379034,-6.26292052 L32.7105529,3.73727192 Z" id="Fill-11" fill="#0065BA" fill-rule="nonzero" mask="url(#mask-6)"></path>
45
- </g>
46
- <g id="编组" transform="translate(12.200111, 113.506866)">
47
- <path d="M156.634355,6.87273457 C156.634355,6.87273457 157.994346,10.5572708 156.997285,11.5587756 C156.000224,12.5602804 150.01786,13.5617853 150.01786,13.5617853 L152.011981,6.55125152 L153.009042,5.5497467 L156.634355,6.87273457 Z" id="Fill-13" fill="#FFDCB6" fill-rule="nonzero"></path>
48
- <path d="M203.749361,58.6419208 C203.749361,58.6419208 186.703612,59.4190886 185.155176,39.9638559 C183.604747,20.5066203 189.803473,2.60672463 197.550635,0.272216897 C205.299791,-2.06329234 203.195993,11.2627308 209.342872,16.0649464 C218.316418,23.0754802 227.768554,58.6419208 203.749361,58.6419208" id="Fill-15" fill="#373B3F" fill-rule="nonzero"></path>
49
- <path d="M6.08795966,103.180543 C6.08795966,103.180543 0.584184577,103.43192 0.0846571649,97.1504822 C-0.415867308,90.869044 1.36189193,84.5715817 3.86351723,83.8184501 C6.36414548,83.0643169 7.33428554,85.6001271 8.36125807,87.0463001 C11.5757818,91.5640883 12.860993,103.184549 6.08795966,103.180543" id="Fill-17" fill="#373B3F" fill-rule="nonzero"></path>
50
- <line x1="5.489125" y1="100.667967" x2="5.489125" y2="107.702537" id="Stroke-19" stroke="#757070" stroke-linecap="round" stroke-linejoin="round"></line>
51
- </g>
52
- <g id="Fill-21-Clipped" transform="translate(13.484333, 130.919851)">
53
- <mask id="mask-8" fill="white">
54
- <use xlink:href="#path-7"></use>
55
- </mask>
56
- <g id="path-7"></g>
57
- <path d="M6.42111111,6.44925373 L1.59253557,3.57964068 C0.612587656,2.99647394 0.00480838034,1.75835097 0,-0.000983417769 L4.82953722,2.86862963 C4.8343456,4.62796402 5.4411632,5.86707041 6.42111111,6.44925373" id="Fill-21" fill="#858585" fill-rule="nonzero" mask="url(#mask-8)"></path>
58
- </g>
59
- <g id="编组" transform="translate(5.136889, 0.000000)">
60
- <path d="M118.093135,3.69324905 C121.207974,1.88405779 123.741576,3.33740812 123.750518,6.93679913 L123.927444,69.672755 C123.938303,73.2731456 121.421592,77.6581854 118.306752,79.4673767 L18.9220029,137.193572 C15.8071632,139.001764 13.2735615,137.550412 13.2636258,133.949022 L13.086712,71.214066 C13.0768348,67.6126759 15.5935458,63.2286357 18.7083855,61.4194444 L118.093135,3.69324905 Z" id="Fill-23" fill="#4F5256" fill-rule="nonzero"></path>
61
- <g transform="translate(8.098131, 0.000000)" id="Fill-25-Clipped">
62
- <mask id="mask-10" fill="white">
63
- <use xlink:href="#path-9"></use>
64
- </mask>
65
- <g id="path-9"></g>
66
- <path d="M114.00813,3.29792577 L109.019418,0.381229584 C109.008489,0.375232264 108.998553,0.369234945 108.987624,0.363237626 C108.896216,0.312260414 108.801826,0.265281414 108.704457,0.224299734 C108.686572,0.216303309 108.666701,0.211305543 108.648817,0.20430867 C108.617023,0.192314032 108.585228,0.1823185 108.554428,0.170323862 C108.504749,0.153331458 108.457058,0.133340394 108.406386,0.118347097 C108.35472,0.103353799 108.29908,0.0933582672 108.244434,0.0803640758 C108.210653,0.0723676504 108.177865,0.0643712249 108.144084,0.0573743526 C108.125206,0.0543756931 108.109309,0.048378374 108.090431,0.0453797145 C107.980145,0.026388204 107.864891,0.0123944595 107.749637,0.00539758718 C107.741688,0.004398034 107.735727,0.00539758718 107.727778,0.004398034 C107.699958,0.00339848082 107.672138,0.00539758718 107.644318,0.004398034 C107.555891,0.00139937445 107.467463,-0.00259883827 107.376055,0.00139937445 C107.346247,0.00339848082 107.314453,0.00939579991 107.282659,0.0113949063 C107.227019,0.015393119 107.170386,0.0223899913 107.113752,0.0283873104 C107.061093,0.0343846295 107.009427,0.0353841826 106.955775,0.0443801613 C106.909077,0.0513770335 106.862379,0.0663703313 106.815681,0.0743667567 C106.739177,0.0893600544 106.661678,0.105352905 106.583186,0.124344416 C106.541456,0.134339948 106.501714,0.139337714 106.45899,0.151332352 C106.418254,0.162327437 106.374537,0.1823185 106.3338,0.195312692 C106.202649,0.234295266 106.069511,0.280274712 105.935379,0.333251031 C105.887688,0.351242988 105.842977,0.36123852 105.795286,0.381229584 C105.769453,0.392224669 105.741633,0.410216626 105.714807,0.421211711 C105.482311,0.523166135 105.246836,0.637115198 105.005398,0.777052643 L5.62064917,58.5022484 C5.32059124,58.6761707 5.02848187,58.8800795 4.74134034,59.0999812 C4.69364902,59.1369647 4.64397055,59.1719491 4.59627923,59.2109316 C4.32304767,59.4258356 4.05975181,59.6617301 3.80241736,59.912618 C3.78155241,59.932609 3.75770675,59.9496014 3.73684179,59.9705921 C3.69610545,60.0105742 3.65834982,60.0565536 3.61761348,60.0985349 C3.48844947,60.2294763 3.36325974,60.364416 3.24005715,60.5033539 C3.20031437,60.5463347 3.15957803,60.5863168 3.12082883,60.6302972 C3.08804104,60.6682802 3.05823397,60.7092619 3.02643975,60.7462453 C2.95192205,60.8352056 2.87839792,60.9251654 2.8048738,61.0171242 C2.75817604,61.0760979 2.70849757,61.1310733 2.66279339,61.1910465 C2.62404419,61.2410242 2.58926926,61.2930009 2.5525072,61.3409795 C2.49984802,61.4129473 2.44718885,61.4849151 2.39452968,61.556883 C2.35975475,61.6058611 2.32199912,61.6538396 2.28821776,61.7038173 C2.22860361,61.7877798 2.17296373,61.8747409 2.11633028,61.9597029 C2.07956821,62.0156779 2.04280615,62.0696537 2.00604409,62.1256287 C1.99213412,62.1486184 1.97524344,62.1706086 1.96133347,62.1935983 C1.86098297,62.3515277 1.76361318,62.5114563 1.67021767,62.6733839 L1.65233342,62.7063691 C1.63246203,62.7393544 1.61557135,62.7723396 1.59569997,62.8063244 C1.53111797,62.9202735 1.46554239,63.0352221 1.40493467,63.1511703 C1.37612116,63.2061457 1.34929478,63.2611211 1.32246841,63.3160966 C1.2936549,63.3730711 1.2648414,63.4280465 1.23702146,63.4850211 C1.21218222,63.5349987 1.18535585,63.5839768 1.16250376,63.6339545 C1.09792175,63.7658955 1.03930117,63.9008352 0.979687009,64.0347753 C0.968757746,64.0587646 0.957828484,64.0827539 0.946899222,64.1067431 C0.943918514,64.11374 0.940937806,64.1197373 0.937957098,64.1257346 C0.86542654,64.2946591 0.796870259,64.4645832 0.730301117,64.6345072 C0.719371854,64.6664929 0.709436162,64.6984786 0.69751333,64.7294648 C0.674661236,64.7914371 0.652802712,64.8534094 0.631937757,64.9163812 C0.60014354,65.0003437 0.568349322,65.0853057 0.540529382,65.1702677 C0.517677288,65.2372378 0.50078661,65.3032083 0.478928086,65.3711779 C0.455082423,65.4491431 0.430243191,65.5261086 0.408384666,65.6040738 C0.394474696,65.6530519 0.378577588,65.7010305 0.364667618,65.749009 C0.340821955,65.8349706 0.322937707,65.9219317 0.302072752,66.0088928 C0.27723352,66.1058495 0.252394288,66.2028062 0.230535763,66.2987633 C0.223580778,66.3327481 0.213645085,66.3667329 0.205696531,66.3997181 C0.190792992,66.4696869 0.182844437,66.5396556 0.170921606,66.6086247 C0.141114527,66.7595573 0.114288156,66.9114894 0.0934232011,67.0614223 C0.0874617854,67.102404 0.0765325232,67.1453848 0.0715646767,67.1863665 C0.0665968303,67.2253491 0.0685839689,67.2633321 0.0636161224,67.3023147 C0.0248669201,67.6381645 0,67.9710157 0,68.2968701 L0.176883022,131.032826 L5.16559443,133.949522 L4.9887391,71.2135663 C4.98774553,70.8877119 5.0145719,70.5538612 5.0533211,70.2180113 C5.06325679,70.138047 5.07021178,70.0590823 5.08213461,69.9791181 C5.10399314,69.8291851 5.13081951,69.6762535 5.15963302,69.5243214 C5.1795044,69.4213674 5.19639508,69.319413 5.22024074,69.2154594 C5.2411057,69.1195023 5.2669385,69.0225457 5.29078416,68.925589 C5.32357195,68.7906493 5.35834687,68.6567092 5.39808965,68.5217695 C5.42094174,68.4438044 5.44379383,68.3658392 5.46962663,68.2868745 C5.51632439,68.135942 5.56600286,67.9850095 5.6196556,67.8340769 C5.64250769,67.7711051 5.66337265,67.7081332 5.68721831,67.6451614 C5.76471671,67.4372543 5.84718297,67.2293473 5.9366042,67.0234393 C5.94653989,66.99945 5.95846273,66.9764603 5.96839842,66.9534706 C6.0498711,66.7675537 6.13631163,66.5836359 6.22573286,66.4017172 C6.25454637,66.3447427 6.28236631,66.2897673 6.31117982,66.2337923 C6.39861392,66.0618692 6.4900223,65.8909456 6.58540495,65.7230206 C6.60428276,65.6900354 6.62216701,65.6560506 6.64104483,65.6230653 C6.75431173,65.4261533 6.87354004,65.23224 6.99574907,65.0413254 C7.03151756,64.9873495 7.06827962,64.9333736 7.10504169,64.8773986 C7.19645006,64.7414594 7.28984558,64.6055202 7.38522823,64.4725796 C7.43590026,64.4016113 7.48855943,64.330643 7.54121861,64.2596748 C7.62467843,64.1487244 7.71012539,64.0397731 7.79656591,63.9318213 C7.8681029,63.8418615 7.94063346,63.7519018 8.01415759,63.6649406 C8.08569458,63.5809782 8.15822514,63.5000144 8.22976212,63.418051 C8.35296472,63.2811122 8.47815445,63.1471721 8.60533132,63.0162306 C8.66792618,62.9532588 8.72952748,62.8902869 8.79212234,62.8293142 C9.04846322,62.5784263 9.31374622,62.3425318 9.58499064,62.1266283 C9.63367553,62.0886453 9.68236043,62.0536609 9.73104532,62.0166774 C10.0181868,61.7977753 10.3102962,61.5928669 10.6103541,61.4189446 L109.995103,3.69374883 C110.235547,3.55381138 110.471023,3.43986232 110.704512,3.33890745 C110.778036,3.30692175 110.85156,3.2779347 110.92409,3.24994722 C111.058222,3.1969709 111.192354,3.151991 111.323505,3.11100932 C111.406965,3.08602049 111.491419,3.06203122 111.573885,3.0410406 C111.651383,3.02304864 111.727888,3.00605624 111.804393,2.99106294 C111.905737,2.97307098 112.0041,2.95607858 112.102464,2.94508349 C112.160091,2.93908618 112.216724,2.9320893 112.272364,2.92809109 C112.395567,2.92009467 112.515788,2.91709601 112.634023,2.92109422 C112.661843,2.92209377 112.689663,2.92009467 112.716489,2.92209377 C112.860557,2.9300902 112.99767,2.94808215 113.132795,2.97507009 C113.166576,2.98106741 113.200358,2.99006339 113.233146,2.99706026 C113.338464,3.02204909 113.442789,3.05203569 113.542146,3.08702005 C113.57394,3.09901468 113.607721,3.11000977 113.638522,3.12100485 C113.766692,3.17198207 113.890888,3.22995615 114.00813,3.29792577 L114.004155,3.29592666 C114.006142,3.29692621 114.00813,3.29792577 114.00813,3.29792577" id="Fill-25" fill="#373B3F" fill-rule="nonzero" mask="url(#mask-10)"></path>
67
- </g>
68
- <path d="M50.9233794,101.037434 C53.2582673,99.6820403 55.1609525,100.772553 55.1679074,103.471346 L55.2444504,130.214392 C55.2513673,132.914185 53.3606049,136.200716 51.0267106,137.55611 L5.72094455,163.871347 C3.38605671,165.22774 1.48337152,164.144225 1.47542297,161.445431 L1.39986194,134.701386 C1.39196314,132.002592 3.28371907,128.709065 5.61761334,127.352671 L50.9233794,101.037434 Z" id="Fill-27" fill="#4F5256" fill-rule="nonzero"></path>
69
- <path d="M52.533061,99.9237323 C52.5251125,99.9187345 52.5171639,99.9147363 52.510209,99.9097385 C52.4406591,99.870756 52.3701157,99.8357716 52.2975851,99.805785 C52.2836752,99.7997877 52.2687716,99.796789 52.2558552,99.7907917 C52.231016,99.7807962 52.2081639,99.7737993 52.1833247,99.7658029 C52.1465626,99.7518091 52.1107941,99.7368158 52.0730385,99.7268203 C52.0332957,99.7148257 51.9915658,99.7068293 51.951823,99.6978333 C51.9269838,99.6928355 51.901151,99.6858386 51.8763117,99.6808409 C51.8624018,99.6778422 51.8494854,99.673844 51.8355754,99.6708453 C51.7521156,99.655852 51.6666686,99.6468561 51.5792345,99.6408587 L51.5623438,99.6408587 C51.5444596,99.6398592 51.5235946,99.6408587 51.5047168,99.6408587 C51.4361605,99.637256 51.3685978,99.635861 51.299048,99.6388596 C51.2761959,99.6398592 51.2523502,99.644857 51.2294981,99.6458565 C51.1877682,99.6488552 51.1460383,99.6528534 51.1043084,99.6578511 C51.0635721,99.6628489 51.0238293,99.6638485 50.983093,99.6698458 C50.9493116,99.6758431 50.9135431,99.6868382 50.8787682,99.6938351 C50.8211412,99.7038306 50.7645077,99.7158252 50.7058871,99.7308185 C50.6740929,99.7378154 50.6442858,99.7418136 50.611498,99.74981 C50.5806974,99.758806 50.5479096,99.7737993 50.517109,99.7827953 C50.4187456,99.8127819 50.3203822,99.8477663 50.2200317,99.8867488 C50.1842632,99.9007426 50.1504819,99.9077394 50.1137198,99.9227327 C50.0938484,99.9317287 50.0729835,99.9447229 50.0531121,99.9527193 C49.8792375,100.028685 49.7023821,100.113647 49.5235397,100.2186 L4.21678,126.533837 C3.94454201,126.691766 3.68025258,126.881682 3.42192456,127.088589 C3.33747117,127.155559 3.2589792,127.232525 3.17651295,127.305492 C3.05231679,127.414443 2.92513992,127.515398 2.8059116,127.634345 C2.75027172,127.688321 2.69959969,127.749294 2.64495338,127.806268 C2.59726205,127.855246 2.5505643,127.906224 2.50287297,127.957201 C2.45120737,128.015175 2.39556749,128.069151 2.34290831,128.129124 C2.22566714,128.265063 2.11140667,128.405001 2.00012691,128.549936 C1.96137771,128.599914 1.92362207,128.65289 1.88586644,128.705866 C1.86599505,128.731855 1.84612367,128.758842 1.82724585,128.78583 C1.79147736,128.835808 1.75372172,128.883787 1.71795323,128.933764 C1.63349984,129.05571 1.55103359,129.178655 1.47254161,129.303599 C1.39703035,129.422546 1.32449979,129.542492 1.25395637,129.663438 C1.24799495,129.674433 1.24302711,129.683429 1.23706569,129.694424 C1.23110428,129.70442 1.22514286,129.714415 1.22017501,129.723411 C1.16453513,129.822367 1.10790168,129.922322 1.05424894,130.022278 C0.991654078,130.142224 0.930052782,130.26417 0.872425763,130.386115 C0.81976659,130.495066 0.770088126,130.605017 0.7223968,130.715968 C0.719416092,130.721965 0.715441815,130.728962 0.712461107,130.735959 C0.709480399,130.742956 0.706499691,130.748953 0.703518983,130.75595 C0.648872672,130.882893 0.597207069,131.009836 0.548522174,131.138779 C0.496856571,131.27072 0.449165245,131.405659 0.404454627,131.540599 C0.383589672,131.60557 0.364711855,131.67354 0.344840469,131.73951 C0.335898346,131.768497 0.325962653,131.798484 0.317020529,131.827471 C0.304104128,131.876449 0.286219881,131.925427 0.27330348,131.973406 C0.227599293,132.137332 0.187856521,132.300259 0.154075165,132.462187 C0.13420378,132.559144 0.121287379,132.6571 0.104396701,132.754057 C0.0954545772,132.805034 0.0855188843,132.857011 0.07757033,132.908987 C0.0706153449,132.955966 0.0596860827,133.004944 0.053724667,133.051923 C0.0179561725,133.332798 -0.000921644025,133.610674 0,133.882552 L0.0745896221,160.626597 C0.0785638993,161.964999 0.549515743,162.906578 1.30661554,163.34938 L2.70754824,164.168014 C1.94945487,163.725212 1.4794966,162.784632 1.47552232,161.445231 L1.40001106,134.701186 C1.39901749,134.384328 1.42882457,134.057474 1.47850303,133.727621 C1.48645158,133.676644 1.49638728,133.624667 1.5053294,133.572691 C1.556995,133.264828 1.62753842,132.955966 1.71795323,132.646105 C1.72689535,132.617118 1.73583748,132.587131 1.7447796,132.557145 C1.84711724,132.222294 1.96932626,131.886444 2.11339381,131.555592 L2.12233593,131.534602 C2.26938419,131.196753 2.4372974,130.863901 2.62210128,130.541046 C2.62607556,130.53205 2.63104341,130.523054 2.63700482,130.514058 C2.81783443,130.199199 3.01654829,129.895334 3.22817855,129.603465 C3.24705637,129.577477 3.26692775,129.551488 3.28679914,129.523501 C3.48153872,129.261618 3.6891947,129.012729 3.90479924,128.775835 C3.951497,128.724858 3.99720118,128.67488 4.04489251,128.624902 C4.21578643,128.445982 4.39661604,128.283055 4.57744565,128.124126 C4.6599119,128.052158 4.73840387,127.973194 4.82285726,127.907223 C5.08019171,127.700316 5.34547471,127.5114 5.6177127,127.352471 L50.9234788,101.037235 C51.1043084,100.933281 51.2801702,100.848319 51.4540448,100.772353 C51.5096847,100.747364 51.564331,100.726373 51.6199709,100.705383 C51.7203214,100.6664 51.8196783,100.631416 51.9180417,100.602429 C51.9806365,100.582438 52.044225,100.564446 52.1058263,100.548453 C52.1644468,100.534459 52.2230674,100.523464 52.2797009,100.51147 C52.3552121,100.497476 52.4297298,100.485481 52.503254,100.477485 C52.5459774,100.472487 52.5887009,100.467489 52.6314244,100.464491 C52.7228328,100.457494 52.8142412,100.456494 52.9036624,100.458493 C52.9235338,100.459493 52.9443987,100.458493 52.9642701,100.459493 C53.0715756,100.46549 53.1749068,100.480483 53.2762509,100.499475 C53.3020837,100.504473 53.3269229,100.51147 53.3517621,100.517467 C53.4312477,100.534459 53.5087461,100.557449 53.5842574,100.584437 C53.608103,100.592433 53.6319487,100.60043 53.6557943,100.610425 C53.7521706,100.648408 53.8445725,100.691389 53.9330002,100.742366 L52.533061,99.9237323 Z" id="Fill-29" fill="#373B3F" fill-rule="nonzero"></path>
70
- <path d="M99.9973564,31.9560151 C108.060171,27.3830593 114.59587,31.1303842 114.718079,40.3952426 L100.045048,48.917433 L99.9973564,31.9560151 Z" id="Fill-31" fill="#797F87" fill-rule="nonzero"></path>
71
- <path d="M96.5897118,37.8947604 L96.6374032,54.8561783 L111.309441,46.3329883 L111.310597,46.5388963 C111.337261,56.0286542 104.711147,67.574493 96.5082392,72.339363 C88.2993697,77.1062321 81.629539,73.2829412 81.6035444,63.7931833 C81.5768798,54.3124214 88.203987,42.765583 96.4118629,37.9977143 L96.5897118,37.8947604 Z" id="Fill-33" fill="#797F87" fill-rule="nonzero"></path>
72
- <polygon id="Fill-35" fill="#5C6067" fill-rule="nonzero" points="30.0429246 76.7338986 30.0618025 83.2529844 24.4213096 86.5295197 24.4024318 80.0094343"></polygon>
73
- <polygon id="Fill-37" fill="#5C6067" fill-rule="nonzero" points="66.740009 70.9249953 66.7509382 75.0021727 33.6253381 94.2435714 33.6134153 90.166394"></polygon>
74
- <polygon id="Fill-39" fill="#5C6067" fill-rule="nonzero" points="69.5188236 56.2508549 69.5307464 60.3280323 33.5883773 81.2047 33.5764545 77.1275226"></polygon>
75
- <polygon id="Fill-41" fill="#5C6067" fill-rule="nonzero" points="30.0817732 90.5871059 30.0976703 96.2915559 24.458171 99.5670917 24.4422739 93.8616422"></polygon>
76
- </g>
77
- <g id="Fill-43-Clipped" transform="translate(46.232000, 121.245970)">
78
- <mask id="mask-12" fill="white">
79
- <use xlink:href="#path-11"></use>
80
- </mask>
81
- <g id="path-11"></g>
82
- <path d="M0.922970511,0.813766836 L0.526145844,0.582883552 C0.470924289,0.54418803 0.414418511,0.50936206 0.3617654,0.47582594 L0.757305844,0.707999075 C0.811243178,0.738955493 0.866464733,0.775071313 0.922970511,0.813766836" id="Fill-43" fill="#6E1212" fill-rule="nonzero" mask="url(#mask-12)"></path>
83
- </g>
84
- <g id="编组" transform="translate(32.747667, 138.014030)">
85
- <g id="Fill-45-Clipped">
86
- <mask id="mask-14" fill="white">
87
- <use xlink:href="#path-13"></use>
88
- </mask>
89
- <g id="path-13"></g>
90
- <path d="M0.667410289,0.663241254 L0.270585622,0.431068119 C0.310396511,0.454285433 0.347638956,0.474923045 0.383597178,0.496850507 L0.780421844,0.727733791 C0.7431794,0.707096179 0.704652733,0.685168716 0.667410289,0.663241254" id="Fill-45" fill="#831515" fill-rule="nonzero" mask="url(#mask-14)"></path>
91
- </g>
92
- <g id="Fill-47-Clipped">
93
- <mask id="mask-16" fill="white">
94
- <use xlink:href="#path-15"></use>
95
- </mask>
96
- <g id="path-15"></g>
97
- <path d="M0.780293422,0.727475821 L0.383468756,0.496592537 C0.4438272,0.531418507 0.502901422,0.562374925 0.560691422,0.593331343 L0.957516089,0.825504478 C0.898441867,0.79454806 0.839367644,0.76101194 0.780293422,0.727475821" id="Fill-47" fill="#871616" fill-rule="nonzero" mask="url(#mask-16)"></path>
98
- </g>
99
- </g>
100
- <g id="编组" transform="translate(0.000000, 93.514179)">
101
- <path d="M45.7229519,25.5924433 C46.1127825,25.36554 46.4548787,25.2705805 46.767141,25.243592 C47.0714475,25.2285984 47.3518869,25.2785771 47.6074646,25.3805336 C48.1156366,25.5844467 48.556185,25.9602866 48.976844,26.4370833 C49.8191565,27.3946752 50.5799229,28.7680899 51.3019051,30.1335079 C51.8777008,31.2240431 52.5837715,31.4829328 53.1625506,31.5139196 C53.7482909,31.5419076 54.2316013,31.2980116 54.2942527,31.2610274 C54.8541369,30.9511594 55.2797683,31.2180457 55.2748815,31.8457781 C55.2718125,32.4635149 54.8342476,33.2101966 54.3051918,33.5180654 C54.1013263,33.6330164 53.3554769,34.025849 52.4256514,34.0418422 C51.4600251,34.0678311 50.313406,33.6300177 49.5267836,32.1176623 C49.0603791,31.229041 48.5880079,30.3574125 48.1076809,29.6367196 C47.6293429,28.9150272 47.145038,28.3372735 46.7044897,28.033403 C46.4180835,27.8334882 46.1505722,27.7605193 45.9795241,27.7725142 C45.8770941,27.7795112 45.8134483,27.8094984 45.7567637,27.8344878 C45.5280366,27.9824247 45.413673,28.0773842 45.1789791,28.3982475 C44.9572132,28.7171116 44.6409731,29.2828705 44.2680484,30.1524998 C43.5042987,31.9037534 42.507844,34.7815269 40.9803445,39.2076405 C40.4254326,40.8149554 39.8894155,42.1553842 39.3255534,43.2978972 C38.7636802,44.4384111 38.1679952,45.3950034 37.4897695,46.1626762 C37.0452433,46.6694602 36.5569606,47.078286 36.081606,47.3541684 C35.528683,47.6750317 34.9886881,47.8189703 34.4924496,47.8429601 C33.9902444,47.8629516 33.5138953,47.7659929 33.041524,47.5910674 C32.1067262,47.2292217 31.1629781,46.5655045 30.1297282,45.7178658 C29.3341555,45.0631449 28.6390239,44.7252888 28.0791397,44.6233323 C27.5122942,44.5193766 27.1065521,44.6303293 26.820146,44.795259 C26.630203,44.9062117 26.4770553,45.0381555 26.3070016,45.2330724 C26.1419203,45.4249906 25.9579441,45.6858794 25.7689956,46.0167384 C25.3950765,46.6734585 25.0102182,47.6170564 24.6760777,48.6476171 C24.3658044,49.5762214 24.0953097,50.3948725 23.8178537,51.1435534 C23.5394033,51.8852373 23.2490193,52.5679463 22.8820614,53.2226672 C22.6354339,53.6584815 22.3440554,54.0852996 22.0138928,54.4601398 C21.5773223,54.9639251 21.0820783,55.367753 20.5739063,55.6626273 C19.6281693,56.2043964 18.617792,56.4602874 17.2702909,56.6701979 C16.6785837,56.7631583 16.2082014,56.9400829 15.8472103,57.1499934 C15.3072154,57.4718562 15.0088757,57.8057139 14.7304252,58.2315324 C14.4589361,58.6533527 14.2312034,59.2051175 14.0611497,59.8098598 C13.7210424,61.0063498 13.6673413,62.3227887 13.6693302,62.8065825 C13.6693302,62.9145365 13.6733081,62.9795088 13.675297,63.0014995 C13.7031421,63.6092404 13.2914332,64.3849099 12.7524328,64.7267642 C12.1855872,65.0566236 11.7470278,64.8447139 11.7211717,64.2539657 C11.7201772,64.2309755 11.7142105,64.1250206 11.7131686,63.941099 C11.7122215,63.4653018 11.741061,62.4937159 11.9469155,61.3082211 C12.1666924,60.1157294 12.5624898,58.6663471 13.4565145,57.2529495 C14.0452383,56.31335 14.8726338,55.4537164 15.8133985,54.9069494 C16.4816795,54.5191147 17.180789,54.2752186 17.9435442,54.1562693 C19.1826486,53.9723477 20.0398781,53.7034623 20.5440723,53.4105871 C20.8473844,53.2346621 21.0055044,53.091723 21.1516909,52.9337904 C21.2919106,52.7648624 21.4301413,52.5589501 21.6071562,52.2140971 C21.9562137,51.5343868 22.3659336,50.3488921 22.9019507,48.7085912 C23.1983015,47.8089746 23.532442,46.9243516 23.9371896,46.0797116 C24.3419372,45.2350716 24.8222642,44.4124222 25.4438053,43.6997259 C25.8555141,43.2259279 26.324902,42.8201008 26.8141792,42.5372214 C27.588868,42.0874131 28.3774794,41.9604672 29.160124,42.1084042 C29.9487354,42.2603394 30.7572361,42.6801605 31.6373383,43.4028525 C32.3831877,44.0215888 33.071358,44.518377 33.6889213,44.8502356 C34.307479,45.1820942 34.8673632,45.3340294 35.3118894,45.3110392 C35.6181849,45.295046 35.8588456,45.2210775 36.0746447,45.0961308 C36.2586209,44.9891764 36.4366303,44.842239 36.6454681,44.6033408 C36.8553004,44.3714397 37.1019279,44.0295854 37.3684447,43.5667826 C37.9124175,42.6341801 38.5508646,41.1907953 39.2261068,39.2126384 C40.3737204,35.8880553 41.2259776,33.4171084 41.9509431,31.5339111 C42.6769032,29.6587103 43.2586657,28.3442705 44.0253988,27.2377421 C44.5246206,26.5230467 45.1342282,25.9332981 45.7229519,25.5924433" id="Fill-49" fill="#797F87" fill-rule="nonzero"></path>
102
- <g transform="translate(0.000000, 98.238048)" id="Fill-51-Clipped">
103
- <mask id="mask-18" fill="white">
104
- <use xlink:href="#path-17"></use>
105
- </mask>
106
- <g id="path-17"></g>
107
- <path d="M9.4200773,30.1934654 C9.4200773,30.1934654 0.904466646,30.5822997 0.130772253,20.8554453 C-0.64292214,11.1295905 2.1067758,1.37974594 5.97823116,0.212243533 C9.84968652,-0.955258874 11.3483465,2.97206729 12.9394918,5.21011342 C17.9118208,12.2071313 19.9007524,30.1994629 9.4200773,30.1934654" id="Fill-51" fill="#4F5256" fill-rule="nonzero" mask="url(#mask-18)"></path>
108
- </g>
109
- <line x1="9.95619381" y1="120.440719" x2="10.1948656" y2="135.434328" id="Stroke-53" stroke="#757070" stroke-linecap="round" stroke-linejoin="round"></line>
110
- <path d="M6.51723163,123.011923 C6.51723163,123.011923 8.21379028,126.535421 9.95609437,126.438462" id="Stroke-55" stroke="#757070" stroke-linecap="round" stroke-linejoin="round"></path>
111
- <path d="M10.0299832,124.312169 C10.2209206,124.010297 10.8006942,123.238626 11.9652136,122.785819" id="Stroke-57" stroke="#757070" stroke-linecap="round" stroke-linejoin="round"></path>
112
- <line x1="215.222985" y1="63.5655591" x2="215.666516" y2="91.4526735" id="Stroke-59" stroke="#757070" stroke-linecap="round" stroke-linejoin="round"></line>
113
- <path d="M208.827973,68.3477209 C208.827973,68.3477209 211.983413,74.9019275 215.223383,74.7210046" id="Stroke-61" stroke="#757070" stroke-linecap="round" stroke-linejoin="round"></path>
114
- <path d="M215.360917,70.76659 C215.715941,70.2048294 216.793942,68.7694412 218.959889,67.9268003" id="Stroke-63" stroke="#757070" stroke-linecap="round" stroke-linejoin="round"></path>
115
- <path d="M133.9623,3.58722203 C133.9623,3.58722203 137.442931,8.08530493 136.448465,11.8337073 C135.453999,15.5821098 144.901424,9.08487891 144.901424,9.08487891 C144.901424,9.08487891 141.918027,0.838393587 138.18878,0.0887131033 C134.459533,-0.66096738 133.9623,3.58722203 133.9623,3.58722203" id="Fill-65" fill="#FFDCB6" fill-rule="nonzero"></path>
116
- </g>
117
- <g id="Fill-67-Clipped" transform="translate(134.201222, 94.159104)">
118
- <mask id="mask-20" fill="white">
119
- <use xlink:href="#path-19"></use>
120
- </mask>
121
- <g id="path-19"></g>
122
- <path d="M6.25582339,-0.503667064 C6.25582339,-0.503667064 5.26356006,5.4474995 0.30224341,6.4393606 C-4.65907324,7.43122169 1.29450674,1.48005512 1.29450674,1.48005512 L6.25582339,-0.503667064 Z" id="Fill-67" fill="#CCAF93" fill-rule="nonzero" mask="url(#mask-20)"></path>
123
- </g>
124
- <g id="编组" transform="translate(116.864222, 65.137463)" fill-rule="nonzero">
125
- <path d="M11.1021311,10.574242 C11.1021311,10.574242 7.87117424,16.0710965 9.11384994,21.8178081 C9.11384994,21.8178081 6.62849854,22.8172361 7.12556882,24.5662353 C7.6226391,26.3152345 9.36238508,26.0653774 9.85945536,26.0653774 C9.85945536,26.0653774 13.0904122,33.5610881 17.0669744,33.3112311 C21.0435367,33.0613741 23.2803529,30.5628038 23.5288881,28.3140906 C23.7774232,26.0653774 24.5230286,15.3215255 24.5230286,15.3215255 L18.061115,10.574242 L11.1021311,10.574242 Z" id="Fill-69" fill="#FFDCB6"></path>
126
- <path d="M1.65789516,4.32781647 C1.65789516,4.32781647 4.88885197,2.57881731 8.36834393,1.57938922 C12.3091171,0.447037192 28.2511551,-3.66760826 31.2335768,8.57538585 C34.2159985,20.81838 27.0084794,28.0642336 23.0319172,29.5633758 C23.0319172,29.5633758 22.0377766,27.8143766 21.7892415,21.567951 C21.5407064,19.3192378 23.5478761,21.0652387 22.7833821,16.0710965 C22.2863118,12.8229552 18.5582847,14.5719544 18.0612144,16.8206676 C18.0612144,16.8206676 13.5140155,14.4760093 9.61101963,10.074528 C5.63246911,5.58709586 2.89460601,5.50614219 1.65789516,4.32781647" id="Fill-71" fill="#191F35"></path>
127
- <path d="M1.65789516,4.32781647 C1.65789516,4.32781647 4.88885197,2.57881731 8.36834393,1.57938922 C12.3091171,0.447037192 28.2511551,-3.66760826 31.2335768,8.57538585 C34.2159985,20.81838 27.0084794,28.0642336 23.0319172,29.5633758 C23.0319172,29.5633758 22.0377766,27.8143766 21.7892415,21.567951 C21.5407064,19.3192378 23.5478761,21.0652387 22.7833821,16.0710965 C22.2863118,12.8229552 18.5582847,14.5719544 18.0612144,16.8206676 C18.0612144,16.8206676 13.5140155,14.4760093 9.61101963,10.074528 C5.63246911,5.58709586 2.89460601,5.50614219 1.65789516,4.32781647" id="Fill-71备份" fill="#FFFFFF" opacity="0.119999997"></path>
128
- <path d="M20.5464664,36.5593724 C20.5464664,36.5593724 7.10568601,40.4991179 4.64021742,52.3003648 C-1.57316108,82.0333505 0.157637636,105.896695 0.415120041,109.76748 C0.663655181,113.515335 3.14900658,110.517051 9.85945536,112.765764 C16.5699041,115.014477 49.3765426,116.263763 50.122148,111.766336 C50.8677535,107.26891 55.8384563,67.0419291 47.6367966,58.7966474 C47.6367966,58.7966474 50.1211539,57.4504178 52.4126479,57.4504178 C54.400929,57.4504178 43.9087695,31.812089 26.5113097,35.3100873 L20.5464664,36.5593724 Z" id="Fill-73" fill="#FFBA2A"></path>
129
- </g>
130
- <g id="Fill-75-Clipped" transform="translate(116.864222, 99.963433)">
131
- <mask id="mask-22" fill="white">
132
- <use xlink:href="#path-21"></use>
133
- </mask>
134
- <g id="path-21"></g>
135
- <path d="M11.2866436,26.1560845 C11.2866436,26.1560845 6.04256767,38.5091738 1.07983273,38.8065852 C-3.88190808,39.1049981 4.51756058,29.5718098 4.51756058,29.5718098 L11.2866436,26.1560845 Z" id="Fill-75" fill="#E57529" fill-rule="nonzero" mask="url(#mask-22)"></path>
136
- </g>
137
- <g id="编组" transform="translate(82.832333, 98.673582)" fill="#FFDCB6" fill-rule="nonzero">
138
- <path d="M44.9477778,27.4542928 C44.9477778,27.4542928 28.4380692,42.6707569 19.6829207,34.189449 C10.9277722,25.7081412 5.1743889,10.7411274 5.1743889,10.7411274 L8.42630119,8.24662506 C8.42630119,8.24662506 16.6811555,23.9619896 24.1855685,23.7125394 C31.6899815,23.4630891 40.44513,15.4806818 40.44513,15.4806818 L44.9477778,27.4542928 Z" id="Fill-77"></path>
139
- <path d="M5.17448895,2.75871999 C5.17448895,2.75871999 4.42404765,-0.234682777 6.42522445,0.0147674537 C7.99414706,0.209338634 10.0853768,7.98520122 8.32834359,9.42702355 C6.57131036,10.8668503 4.00680229,12.2398244 1.67242956,7.99717483 C-0.376775487,4.27338179 -0.328747244,3.00817022 0.671841156,1.76091907 C2.17572552,-0.114946666 5.17448895,2.75871999 5.17448895,2.75871999" id="Fill-79"></path>
140
- </g>
141
- </g>
142
- </g>
143
- </g>
144
- </svg>