western-world 3.0.619 → 3.0.621
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,40 +1,157 @@
|
|
|
1
1
|
.animated {
|
|
2
2
|
.labor_cost_index_down_19 {
|
|
3
|
-
#
|
|
4
|
-
animation-name:
|
|
5
|
-
animation-duration:
|
|
3
|
+
#leg {
|
|
4
|
+
animation-name: legAnimation;
|
|
5
|
+
animation-duration: 5s;
|
|
6
6
|
animation-timing-function: linear;
|
|
7
7
|
animation-iteration-count: infinite;
|
|
8
|
-
transform-origin:
|
|
8
|
+
transform-origin: 7160px 4233px;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
#
|
|
12
|
-
|
|
11
|
+
#person {
|
|
12
|
+
animation-name: personAnimation;
|
|
13
|
+
animation-duration: 5s;
|
|
14
|
+
animation-timing-function: linear;
|
|
15
|
+
animation-iteration-count: infinite;
|
|
16
|
+
transform-origin: 2705px 4547px;
|
|
13
17
|
}
|
|
14
18
|
|
|
15
|
-
#
|
|
16
|
-
animation-name:
|
|
17
|
-
animation-duration:
|
|
19
|
+
#person_shadow {
|
|
20
|
+
animation-name: personShadowAnimation;
|
|
21
|
+
animation-duration: 5s;
|
|
18
22
|
animation-timing-function: linear;
|
|
19
23
|
animation-iteration-count: infinite;
|
|
24
|
+
transform-origin: 2890px 6672px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
#right_arm {
|
|
28
|
+
animation-name: personArmAnimation;
|
|
29
|
+
transform-origin: 2430px 4551px;
|
|
30
|
+
}
|
|
31
|
+
#left_arm {
|
|
32
|
+
animation-name: personArmAnimation;
|
|
33
|
+
animation-delay: -1s;
|
|
34
|
+
transform-origin: 2785px 4329px;
|
|
35
|
+
}
|
|
36
|
+
#right_leg {
|
|
37
|
+
animation-name: personLegAnimation;
|
|
38
|
+
animation-delay: -0.5s;
|
|
39
|
+
transform-origin: 2721px 4841px;
|
|
40
|
+
}
|
|
41
|
+
#left_leg {
|
|
42
|
+
animation-name: personLegAnimation;
|
|
43
|
+
animation-delay: -1.5s;
|
|
44
|
+
transform-origin: 3028px 4739px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
#right_arm,
|
|
48
|
+
#left_arm,
|
|
49
|
+
#right_leg,
|
|
50
|
+
#left_leg {
|
|
51
|
+
animation-duration: 1s;
|
|
52
|
+
animation-timing-function: ease-in-out;
|
|
53
|
+
animation-iteration-count: infinite;
|
|
54
|
+
animation-direction: alternate;
|
|
20
55
|
}
|
|
56
|
+
|
|
57
|
+
#fire {
|
|
58
|
+
animation-name: fireAnimation;
|
|
59
|
+
animation-duration: 5s;
|
|
60
|
+
animation-timing-function: linear;
|
|
61
|
+
animation-iteration-count: infinite;
|
|
62
|
+
transform-origin: 5464px 4616px;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@keyframes legAnimation {
|
|
68
|
+
0% {
|
|
69
|
+
rotate: -60deg;
|
|
70
|
+
translate: 6000px 0px;
|
|
71
|
+
}
|
|
72
|
+
10% {
|
|
73
|
+
rotate: -20deg;
|
|
74
|
+
translate: 2000px 0px;
|
|
75
|
+
}
|
|
76
|
+
20% {
|
|
77
|
+
rotate: -10deg;
|
|
78
|
+
translate: 500px 0px;
|
|
79
|
+
}
|
|
80
|
+
50% {
|
|
81
|
+
rotate: 3deg;
|
|
82
|
+
translate: 0px 0px;
|
|
83
|
+
}
|
|
84
|
+
60% {
|
|
85
|
+
translate: 5000px 3000px;
|
|
86
|
+
}
|
|
87
|
+
100% {
|
|
88
|
+
translate: 5000px 3000px;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
@keyframes personAnimation {
|
|
93
|
+
0% {
|
|
94
|
+
rotate: 0deg;
|
|
95
|
+
translate: 5000px 2000px;
|
|
96
|
+
}
|
|
97
|
+
10% {
|
|
98
|
+
rotate: -50deg;
|
|
99
|
+
translate: 0px 0px;
|
|
100
|
+
}
|
|
101
|
+
100% {
|
|
102
|
+
rotate: -360deg;
|
|
103
|
+
translate: -5000px 0px;
|
|
21
104
|
}
|
|
22
105
|
}
|
|
23
106
|
|
|
24
|
-
@keyframes
|
|
107
|
+
@keyframes fireAnimation {
|
|
25
108
|
0% {
|
|
26
|
-
|
|
109
|
+
scale: 0;
|
|
110
|
+
}
|
|
111
|
+
10% {
|
|
112
|
+
scale: 0;
|
|
113
|
+
}
|
|
114
|
+
20% {
|
|
115
|
+
scale: 1;
|
|
116
|
+
}
|
|
117
|
+
60% {
|
|
118
|
+
scale: 1;
|
|
119
|
+
translate: -1000px 0px;
|
|
120
|
+
}
|
|
121
|
+
65% {
|
|
122
|
+
translate: -10000px 500px;
|
|
27
123
|
}
|
|
28
124
|
100% {
|
|
29
|
-
|
|
125
|
+
translate: -10000px 500px;
|
|
30
126
|
}
|
|
31
127
|
}
|
|
32
128
|
|
|
33
|
-
@keyframes
|
|
129
|
+
@keyframes personShadowAnimation {
|
|
34
130
|
0% {
|
|
35
|
-
|
|
131
|
+
scale: 1.2;
|
|
132
|
+
translate: 5000px 0px;
|
|
36
133
|
}
|
|
134
|
+
10% {
|
|
135
|
+
scale: 1;
|
|
136
|
+
translate: 0px 0px;
|
|
137
|
+
}
|
|
138
|
+
100% {
|
|
139
|
+
scale: 1;
|
|
140
|
+
translate: -5000px 0px;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
@keyframes personLegAnimation {
|
|
145
|
+
0% {
|
|
146
|
+
rotate: -10deg;
|
|
147
|
+
}
|
|
148
|
+
100% {
|
|
149
|
+
rotate: 15deg;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
@keyframes personArmAnimation {
|
|
37
154
|
100% {
|
|
38
|
-
|
|
155
|
+
rotate: 40deg;
|
|
39
156
|
}
|
|
40
157
|
}
|
|
@@ -1,162 +1,84 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<svg version="1.1" id="main" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
3
|
-
viewBox="0 0 8192 8192" style="enable-background:new 0 0 8192 8192;" xml:space="preserve">
|
|
2
|
+
<svg version="1.1" id="main" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 8192 8192" style="enable-background:new 0 0 8192 8192;" xml:space="preserve">
|
|
4
3
|
<style type="text/css">
|
|
5
|
-
.st0{fill:#
|
|
6
|
-
.
|
|
7
|
-
.
|
|
8
|
-
.
|
|
9
|
-
.
|
|
10
|
-
.
|
|
11
|
-
.
|
|
12
|
-
.st7{fill:#FFD030;}
|
|
13
|
-
.st8{fill:#FF5913;stroke:#000000;stroke-width:32.768;stroke-miterlimit:8.192;}
|
|
14
|
-
.st9{display:none;}
|
|
15
|
-
.st10{display:inline;fill:#4B2616;}
|
|
16
|
-
.st11{opacity:0.2;}
|
|
17
|
-
.st12{fill:#FFFFFF;}
|
|
4
|
+
.st0{fill:#F2E3CC;}
|
|
5
|
+
.st2{fill:#E2CEB3;stroke:#E2CEB3;stroke-width:40;stroke-miterlimit:10;}
|
|
6
|
+
.st3{fill:#E2CEB3;}
|
|
7
|
+
.st4{opacity:0.2;}
|
|
8
|
+
.st5{fill:#57758F;}
|
|
9
|
+
.st6{fill:#BB3C2D;}
|
|
10
|
+
.st7{fill:none;stroke:#000000;stroke-width:20;stroke-miterlimit:10;}
|
|
18
11
|
</style>
|
|
19
|
-
<
|
|
20
|
-
<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
<
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
<path class="
|
|
34
|
-
|
|
35
|
-
<path class="
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
c0,0,16.5-170.6-87.6-232.7c0,0,2.6-134.4-95-175.7L4910.3,5272.4z"/>
|
|
41
|
-
<path class="st4" d="M4792.3,5707.4c0,0,200.9-141.1,229.5-269.6"/>
|
|
42
|
-
<path class="st4" d="M4917.7,5847.4c0,0,169.6-81.1,191.7-191.7"/>
|
|
43
|
-
<path class="st4" d="M5087.2,5965.4c0,0,103.2-103.2,110.6-221.2"/>
|
|
44
|
-
<path class="st5" d="M4858.7,5648.4c0,0-22.1-14.7-51.6,7.4c-29.5,22.1-29.5,44.2-14.7,66.4c14.7,22.1,44.2,14.7,73.7-7.4
|
|
45
|
-
C4891,5696,4858.7,5648.4,4858.7,5648.4z"/>
|
|
46
|
-
<path class="st5" d="M4984,5803.2c0,0-22.1-29.5-66.4,0c-44.2,29.5-20.7,98.8,44.2,66.4C5020.9,5840.1,4984,5803.2,4984,5803.2z"
|
|
47
|
-
/>
|
|
48
|
-
<path d="M5116.7,5921.2c0,0-29.5-14.7-59,22.1c-29.5,36.9-0.5,103.7,59,44.2C5153.6,5950.7,5116.7,5921.2,5116.7,5921.2z"/>
|
|
49
|
-
<path class="st4" d="M5315.8,6135c0,0,125.3,118,176.9,280.2"/>
|
|
50
|
-
<path class="st4" d="M5514.9,6186.6c7.4,7.4,66.4,59,73.7,154.8"/>
|
|
51
|
-
<path class="st4" d="M5448.5,5773.7c0,0,154.8,243.3,243.3,486.6"/>
|
|
52
|
-
<path d="M6104.7,6068.6c0,0-29.5-118-132.7-36.9c-103.2,81.1-88.5,184.3-88.5,184.3s22.1,29.5,59,44.2
|
|
53
|
-
c36.9,14.7,22.1,51.6,103.2,103.2c81.1,51.6,154.8-176.9,154.8-176.9s0-59-51.6-29.5s-36.9,95.8-88.5,59
|
|
54
|
-
c-51.6-36.9-36.9-88.5,0-103.2C6097.3,6098.1,6104.7,6068.6,6104.7,6068.6z"/>
|
|
55
|
-
<path class="st4" d="M4600.6,6769c0,0,235.9-132.7,324.4-235.9"/>
|
|
56
|
-
<path class="st4" d="M4667,6916.5c0,0,294.9-132.7,346.5-265.4"/>
|
|
57
|
-
<path class="st4" d="M4150.9,5987.5c0,0,125.3-81.1,154.8-169.6"/>
|
|
58
|
-
<path class="st4" d="M3981.3,5921.2c0,0,191.7-103.2,228.6-206.4"/>
|
|
59
|
-
<path class="st4" d="M3811.7,5803.2c0,0,213.8-95.8,294.9-221.2"/>
|
|
60
|
-
<path class="st4" d="M3509.5,5250.3c7.4-7.4,169.6-118,272.8-191.7"/>
|
|
61
|
-
<path class="st4" d="M3553.7,5360.8c0,0,243.3-162.2,280.2-184.3"/>
|
|
62
|
-
<path d="M4003.4,4645.7c0,0,36.9-81.1,147.5-81.1c110.6,0,324.4,147.5,280.2,235.9s-140.1-66.4-140.1-66.4s-71.4-92.5-154.8-36.9
|
|
63
|
-
c-66.4,44.2-110.6,22.1-125.3,7.4C3988.7,4682.5,4003.4,4645.7,4003.4,4645.7z"/>
|
|
64
|
-
<path class="st6" d="M8192,6608.7l-1055.1-635.9c0,0-206.4-206.4-339.1-110.6c-132.7,95.8-346.5,184.3-346.5,184.3l59,95.8
|
|
65
|
-
c0,0,184.3-66.4,339.1-250.7c0,0,59,88.5,176.9,176.9s317,206.4,317,206.4l339.1,184.3l509.5,261.1V6608.7z"/>
|
|
66
|
-
<path class="st7" d="M6252.1,5744.2c0,0,88.5-199.1,250.7-206.4c162.2-7.4,427.6-44.2,670.9,88.5
|
|
67
|
-
C7417,5759,7793,6009.7,7793,6009.7l399,250.1v146.6l-789.7-440.9c0,0-339.1-250.7-567.7-280.2s-309.7-51.6-412.9,59l-88.5,118
|
|
68
|
-
L6252.1,5744.2z"/>
|
|
69
|
-
<path class="st7" d="M6340.6,5279.7c0,0,449.7-154.8,774.1-44.2c324.4,110.6,840.5,553,840.5,553L8192,5940v128.5l-885.6-611.9
|
|
70
|
-
c0,0-258-176.9-538.2-162.2c-280.2,14.7-412.9,22.1-412.9,22.1L6340.6,5279.7z"/>
|
|
71
|
-
<path class="st7" d="M6031,5132.3c0,0,88.5-125.3,346.5-176.9c258-51.6,553-73.7,803.6,44.2s611.9,427.6,611.9,427.6l399,313.5
|
|
72
|
-
v-182.5l-450.6-344.8c0,0-368.6-280.2-486.6-339.1s-317-176.9-516.1-184.3c0,0-110.6,0-132.7,29.5c-22.1,29.5-118,36.9-118,36.9
|
|
73
|
-
s-103.2,29.5-169.6,59c-66.4,29.5-73.7,44.2-73.7,44.2s-44.2,59-81.1,88.5s-118,66.4-118,66.4s-29.5,22.1-29.5,51.6
|
|
74
|
-
S6031,5132.3,6031,5132.3z"/>
|
|
75
|
-
<path class="st7" d="M6016.2,5139.7c0,0-59-22.1-81.1,7.4c-22.1,29.5-36.9,51.6-7.4,103.2
|
|
76
|
-
C5927.7,5250.3,5949.8,5154.4,6016.2,5139.7z"/>
|
|
77
|
-
<path class="st4" d="M6908.3,5058.6c0,0,81.1,486.6-59,847.9"/>
|
|
78
|
-
<path class="st4" d="M7100,5265c0,0,103.2,427.6-88.5,663.6"/>
|
|
79
|
-
<path class="st4" d="M7291.7,5692.6c0,0,36.9,184.3-118,317"/>
|
|
80
|
-
<path class="st4" d="M7512.9,5390.3c0,0,176.9,199.1,235.9,420.2"/>
|
|
81
|
-
<path class="st4" d="M7829.9,5626.3c0,0,132.7,103.2,206.4,339.1"/>
|
|
82
|
-
<path class="st4" d="M7586.6,5862.2c0,0,88.5,66.4,103.2,140.1"/>
|
|
83
|
-
<path class="st4" d="M6185.8,5294.5c0,0-51.6-88.5-169.6-162.2"/>
|
|
12
|
+
<defs>
|
|
13
|
+
<mask id="mask">
|
|
14
|
+
<rect x="-5" y="0" class="st8" width="5929.9" height="8192" fill="white" />
|
|
15
|
+
</mask>
|
|
16
|
+
</defs>
|
|
17
|
+
<g id="main-container">
|
|
18
|
+
<rect id="background" class="st0" width="8192" height="8192"/>
|
|
19
|
+
<g id="chart">
|
|
20
|
+
<line class="st2" x1="7490.4" y1="846.9" x2="1112.4" y2="846.9"/>
|
|
21
|
+
<line class="st2" x1="7489.5" y1="1836.1" x2="1111.6" y2="1836.1"/>
|
|
22
|
+
<line class="st2" x1="7503.5" y1="2853.2" x2="1125.6" y2="2853.2"/>
|
|
23
|
+
<line class="st2" x1="7494.2" y1="3860.3" x2="1116.2" y2="3860.3"/>
|
|
24
|
+
<line class="st2" x1="7498.8" y1="4859.6" x2="1120.9" y2="4859.6"/>
|
|
25
|
+
<line class="st2" x1="7498.8" y1="5876.7" x2="1120.9" y2="5876.7"/>
|
|
26
|
+
<path class="st3" d="M837.1,963.4c0,0-142.7-209.5-368.6-66.6c-229.3,145-34.3,354.7-34.3,354.7L1915,3191.7l1502.2-1489.5
|
|
27
|
+
l3715.9,4248.9l-270,219.5L7908.8,6496l-218.6-987.8l-171.4,133.3L3442.9,969.3L1977.1,2439.2L837.1,963.4z"/>
|
|
28
|
+
<path class="st3" d="M5596.8,1208.9V906.9c0,0,62-565.4,577-565.4s635.1,422.1,635.1,538.3s0,329.2,0,329.2h77.5
|
|
29
|
+
c0,0,99.2,8.2,99.2,99.2s0,1066.9,0,1123.5s-33.4,96.3-96.3,96.3s-1300.2,0-1369.9,0s-91-49.4-91-91s0-1045.1,0-1125
|
|
30
|
+
c0-79.9,59.5-100.7,100.7-100.7S5596.8,1208.9,5596.8,1208.9z M5799.6,1210.4h820.5c0,0,0-194.6,0-320.9s-151-355.8-413.2-355.8
|
|
31
|
+
c-262.1,0-407.3,200.4-407.3,351.4S5799.6,1210.4,5799.6,1210.4z M6138.9,2244.3H6273v-287.5c0,0,148.1-26.1,148.1-210.6
|
|
32
|
+
c0-275.9-432.8-265.8-432.8-10.2c0,175.7,151,220.7,151,220.7L6138.9,2244.3z"/>
|
|
84
33
|
</g>
|
|
85
|
-
<g id="
|
|
86
|
-
<polygon
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
c-120.8,8.3-292.5,59-289.6,482.1s198.1,872,375.4,997c177.3,125,354.2,122.1,427.8-77c49.8-134.8,42.8-212.9,27.1-237.4
|
|
124
|
-
S2929,3650.6,2929,3650.6z"/>
|
|
125
|
-
<path class="st10" d="M2794.2,2636c0,0-7.8-17.4,14.8-22.6c22.5-5.2,116.9-36.3,174.6-64.3c16.6-8.1,22.1-8.6,27.2,7.5
|
|
126
|
-
c5.1,16.1,123.2,463.7,128,477c4.8,13.2,19,85.3,56.8,78.5c37.8-6.8,78.8-81.8,79.9-194.9s-37.7-386.8-39.9-418.4
|
|
127
|
-
c-2.2-31.6,0.3-51.3,33.3-55.7c32.9-4.5,111.6-36.3,134.6-46.5s28.9-11.6,37.5,29.1c8.6,40.7,105.6,541.9,11.9,717.5
|
|
128
|
-
c-14.8,27.8,2.2,40.7,13.8,59.1c11.6,18.4,349,513.8,368,561.3s20.3,87.7-16.7,109.8s-145.4,66.2-178.5,41.6
|
|
129
|
-
s-292.2-470-321.5-490.6c0,0-38.5,43.3-40.7,69.4c-2.2,26,134.9,435.2,141.3,468c6.4,32.7,10.7,46.2-17.4,62.6
|
|
130
|
-
s-149.7,69.6-176.7,57.3c-27-12.2-26.8-56.6-67.6-203.4S2794.2,2636,2794.2,2636z"/>
|
|
131
|
-
<path class="st10" d="M4294.6,3699c-521,190.5-911.7-1354.2-462.2-1531.2C4309.3,1980,4815.6,3508.5,4294.6,3699z
|
|
132
|
-
M3944.4,2558.6c-209.2,62.7,5.9,829.7,228,754C4394.4,3236.9,4214.3,2477.7,3944.4,2558.6z"/>
|
|
133
|
-
<path class="st10" d="M4305.1,2077c-2.5-7.8-2.1-20.8,11.3-25.2c13.4-4.4,167.8-49.7,182-56.3c14.2-6.6,21.5-5.9,31.3,23.6
|
|
134
|
-
c9.8,29.6,264.6,957.7,297.7,1014.5s77.3,90.8,145,58.6c67.7-32.3,62.1-135,40.9-221c-21.1-86-272.5-911.3-280-932
|
|
135
|
-
s-4.8-30,17.9-37.2s146.5-62.8,162.9-73.2s28.2,4,34.2,26.6s315.7,1076.8,326.8,1203.2s-2.8,277.1-197.6,364.8
|
|
136
|
-
c-194.8,87.7-323.2,51.5-412-148.8S4305.1,2077,4305.1,2077z"/>
|
|
137
|
-
<path class="st10" d="M5117.7,2143.4c-15.9,8.8-27.8,14.2-32.4-19.6c-4.6-33.8-46.8-218.6-58.3-279
|
|
138
|
-
c-11.5-60.4-9.6-62.9,2.3-63.5c11.9-0.7,235.6-31.4,453.6-171.7c57.9-37.3,55.6-17.7,59.2-1.7c3.6,16,64.5,235.2,91.7,291.4
|
|
139
|
-
c15.4,31.6,2.9,39.5-18.9,45.8c-21.8,6.4-140.9,56.1-140.9,56.1s281,997.2,316.8,1072.8c13.9,29.4,13.1,48.4-12.4,64.1
|
|
140
|
-
c-25.5,15.7-138.7,64.7-175.1,61.5c-21.9-2-22.2-6.7-32.8-43.6c-10.7-36.9-275.5-1006.7-309.1-1088.4L5117.7,2143.4z"/>
|
|
141
|
-
</g>
|
|
34
|
+
<g id="back">
|
|
35
|
+
<polygon points="4182,6562 4290,6588 4454,6575 4426.7,2752 5792,2549.3 5792,2261.3 4136,2530.7"/>
|
|
36
|
+
<polygon class="st0" points="5636,2438 4266,2626.7 4280,4612 4280,2646"/>
|
|
37
|
+
<polygon class="st4" points="5732,6785.3 4454,6575 4290,6588 5749.3,6858.7"/>
|
|
38
|
+
</g>
|
|
39
|
+
<g mask="url(#mask)">
|
|
40
|
+
<g id="leg">
|
|
41
|
+
<path class="st5" d="M2034.7,2858.7c0,0-34-181,128-472C2300,2140,2504,2101.3,2504,2101.3l4019.5,1775.9l-145.4,456.7
|
|
42
|
+
L2034.7,2858.7z"/>
|
|
43
|
+
<path d="M1810.7,2554.7l82.7-196l105.3-5.3c0,0-2-121.3,26-248c28-126.7,127.3-390.7,276.7-577.3c149.3-186.7,470.7-228,546.7-136
|
|
44
|
+
s-61.3,277.3-245.3,461.3S2380,2094.7,2453.3,2172c0,0,6.7,204-98.7,372c-105.3,168-132,216-198.7,230.7
|
|
45
|
+
C2089.3,2789.3,1884,2694.7,1810.7,2554.7z"/>
|
|
46
|
+
<path class="st0" d="M2617.3,1359c0,0,37.3,0,37,21.7c-0.3,21.7-24.3,60-101,130.7c-76.7,70.7-264,356.7-334.7,528.7
|
|
47
|
+
c-70.7,172-130.7,388-130.7,388l-120,28l-82,177l19,18l74-177l129-31c0,0,65-295,183-504s166-288,267-395s117.6-144.8,105.7-181
|
|
48
|
+
C2657.7,1344.9,2617.3,1359,2617.3,1359z"/>
|
|
49
|
+
</g>
|
|
50
|
+
<g id="person">
|
|
51
|
+
<path class="st5" d="M2416,3574c0,0-260,184-522,260l102.7,87.3l94.7,340.7l118.7-20.7l180,244l-46,44l330.7,458.7l502.7-254.7
|
|
52
|
+
L2826.7,4208l-64,40l-128-222.7c0,0,70.3-38.3,24.3-131.3s-104-16-104-16L2416,3574z"/>
|
|
53
|
+
<path id="right_arm" class="st5" d="M2395.6,4506.7l-298.7,293.7l-133.3-2.7c0,0-29.3-1.3-31.1,19.3c-1.8,20.7,24.9,24.7,24.9,24.7l85.3,8.7
|
|
54
|
+
l-126.2,11.6c0,0-39.1,2.7-37.3,32.9c1.8,30.2,42,30,42,30l137.9-31.2l-155.7,62c0,0-31.7,20-14,50.7c17.7,30.7,62.3,5.7,62.3,5.7
|
|
55
|
+
l141.7-74.3l-123.2,82.8c0,0-26.5,23-4.2,47.3c22.3,24.3,62.2-5.2,62.2-5.2l166.5-125.7l-13.3,109.7c0,0-8.3,34.3,31,34.3
|
|
56
|
+
c39.3,0,33.7-42.3,33.7-42.3l28-155.7l205-316L2395.6,4506.7z"/>
|
|
57
|
+
<path id="left_arm" class="st5" d="M2692.7,4294.7l533.3-234l52.3-40.7l26.7-116.3c0,0,8-21.3,30.8-18.5c22.8,2.8,15.2,33.2,15.2,33.2
|
|
58
|
+
l-33.7,92.3l73.3-130c0,0,22.3-27,47.3-11s1.3,45.7,1.3,45.7l-82.7,119l122.3-124c0,0,27.9-25,51-5.4c23.1,19.6-5.8,49.8-5.8,49.8
|
|
59
|
+
l-134,123.3l129.6-91.1c0,0,22.2-17.1,37.8,4.9c15.6,22-9.8,40-9.8,40l-185.3,133.3c0,0-8.6,17.2,1.9,18.7l100.1,10.8
|
|
60
|
+
c0,0,32.2,4.3,24,37.7c-8.2,33.4-56,20.3-56,20.3l-155.8-25.3L2749.3,4408L2692.7,4294.7z"/>
|
|
61
|
+
<path id="right_leg" class="st5" d="M2731.3,4732.9L2438,5187l26.3,32c0,0-3.3,10-22.3,10.3c-19,0.3-69.3-82-112.7-90.3
|
|
62
|
+
c-43.3-8.3-68.3-3-73.7,48.7c-5.3,51.7,92,113,149,123s100.3-13,100.3-13l-18,41.3l58,22.3l18.3-76l42.7,2.3l248.7-497
|
|
63
|
+
L2731.3,4732.9z"/>
|
|
64
|
+
<path id="left_leg" class="st5" d="M2983.9,4682.2L2854.7,5182l20.4,7.6c0,0,3.8,25.1-7.1,29.3c-10.9,4.2-49.1-15.6-71.8-36.4
|
|
65
|
+
c-22.7-20.9-86.9-50.9-109.8-20.4c-22.9,30.4-10,84.7,36.9,111.6c46.9,26.9,135.8,39,173.8,25.3c17.3-6.2,45.1-24.9,45.1-24.9
|
|
66
|
+
l0.7,46.9h51.8v-80l43.1-6.7L3134,4712L2983.9,4682.2z"/>
|
|
67
|
+
<path class="st0" d="M2151,3974c-61.6,33.7,61,207,115,167S2215,3939,2151,3974z"/>
|
|
68
|
+
<path class="st0" d="M2262,3920c-61.6,33.7,61,207,115,167S2326,3885,2262,3920z"/>
|
|
69
|
+
<path d="M2232.7,4090c-19.9,19.3-71.9-58-53.6-77.3C2197.3,3993.3,2252.7,4070.7,2232.7,4090z"/>
|
|
70
|
+
<path d="M2340.7,4043.3c-19.9,19.3-71.9-58-53.6-77.3S2360.7,4024,2340.7,4043.3z"/>
|
|
71
|
+
<path class="st7" d="M2620,4042c0,0-152-25-261,137s-78.1,290-78.1,290"/>
|
|
142
72
|
</g>
|
|
73
|
+
<polygon id="fire" class="st6" points="5479,4599 3960,4658 3996,4388 3843,4584 3603,4360 3718,4664 3416,4640 3681,4808 3462,5018 3757,4901 3828,5165 3886,4896 4090,5008 3959,4804 "/>
|
|
74
|
+
<path id="person_shadow" class="st4" d="M2394.7,6672c0-125.3,970.7-130.7,970.7,0S2394.7,6797.3,2394.7,6672z"/>
|
|
143
75
|
</g>
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
<
|
|
148
|
-
|
|
149
|
-
<path class="st12" d="M5478,3982.1c0,0,302.3-309.7,796.3-457.1c494-147.5,906.9-176.9,906.9-176.9S6038.3,3812.6,5736,4055.9
|
|
150
|
-
C5433.8,4299.2,5478,3982.1,5478,3982.1z"/>
|
|
151
|
-
<path class="st12" d="M5411.6,3871.5c0,0,140.1-118,317-191.7l-302.3,243.3L5411.6,3871.5z"/>
|
|
152
|
-
<path d="M5632.8,3384.9c0,0,398.1-575.1,1563-855.2c0,0-1061.7,412.9-1504.1,958.5L5632.8,3384.9z"/>
|
|
153
|
-
<path d="M6547,3104.8l81.1,118c0,0,501.4-309.7,1076.4-486.6C7704.6,2736.1,7018.9,2832,6547,3104.8z"/>
|
|
154
|
-
<path d="M1246,2655l103.2,51.6c0,0,501.4-626.7,1246-1179.6C2595.2,1527,1504.1,2234.8,1246,2655z"/>
|
|
155
|
-
<path d="M604.6,4173.8l44.2,95.8c0,0,501.4-788.9,1297.6-1636.8C1946.4,2632.9,884.7,3598.7,604.6,4173.8z"/>
|
|
156
|
-
<path d="M2138.1,5346.1l125.3,81.1c0,0,162.2-575.1,1784.2-2300.3C4047.7,3126.9,2786.9,4218.1,2138.1,5346.1z"/>
|
|
157
|
-
<path d="M2786.9,5117.5l103.2,73.7c0,0,530.8-899.5,1142.8-1393.5C4032.9,3797.8,3310.4,4262.3,2786.9,5117.5z"/>
|
|
158
|
-
<path d="M3937.1,4358.1l66.4,22.1c0,0,103.2-169.6,368.6-346.5C4372.1,4033.7,4173,4092.7,3937.1,4358.1z"/>
|
|
159
|
-
<polygon class="st12" points="3885.5,5309.2 3627.4,5500.9 3715.9,5655.8 3988.7,5464.1 "/>
|
|
76
|
+
|
|
77
|
+
<g id="top">
|
|
78
|
+
<polygon class="st4" points="7765.3,6898.7 6738.7,6704 6616,7076 "/>
|
|
79
|
+
<polygon points="5686,6874 6616,7076 6808,7042 6824,2100 6632,2060 5980,2312 5792,2261.3 5680.8,2279.4 "/>
|
|
80
|
+
<polygon class="st0" points="6624,2120 6645.3,2120 6645.3,7024 6610.7,7024 "/>
|
|
160
81
|
</g>
|
|
161
82
|
</g>
|
|
83
|
+
|
|
162
84
|
</svg>
|