nextia 3.0.2 → 4.0.0

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 (139) hide show
  1. package/README.md +2 -7
  2. package/create-nextia/LICENSE +21 -0
  3. package/create-nextia/README.md +17 -0
  4. package/create-nextia/package.json +38 -0
  5. package/{src → create-nextia/src}/bin.js +76 -22
  6. package/create-nextia/templates/nextjs/README.md +34 -0
  7. package/create-nextia/templates/nextjs/_env.development +4 -0
  8. package/create-nextia/templates/nextjs/_env.production +3 -0
  9. package/create-nextia/templates/nextjs/_env.test +3 -0
  10. package/create-nextia/templates/nextjs/_gitignore +9 -0
  11. package/create-nextia/templates/nextjs/jsconfig.json +5 -0
  12. package/create-nextia/templates/nextjs/next.config.js +18 -0
  13. package/create-nextia/templates/nextjs/package.json +39 -0
  14. package/create-nextia/templates/nextjs/public/logo.svg +865 -0
  15. package/create-nextia/templates/nextjs/src/app/counter/functions.js +6 -0
  16. package/create-nextia/templates/nextjs/src/app/counter/page.js +42 -0
  17. package/create-nextia/templates/nextjs/src/app/counter/style.css +2 -0
  18. package/create-nextia/templates/nextjs/src/app/env/functions.js +4 -0
  19. package/create-nextia/templates/nextjs/src/app/env/page.js +24 -0
  20. package/create-nextia/templates/nextjs/src/app/env/style.css +1 -0
  21. package/create-nextia/templates/nextjs/src/app/functions.js +33 -0
  22. package/create-nextia/templates/nextjs/src/app/home/functions.js +43 -0
  23. package/create-nextia/templates/nextjs/src/app/home/page.js +184 -0
  24. package/create-nextia/templates/nextjs/src/app/home/style.css +51 -0
  25. package/create-nextia/templates/nextjs/src/app/images/functions.js +4 -0
  26. package/create-nextia/templates/nextjs/src/app/images/page.jsx +26 -0
  27. package/create-nextia/templates/nextjs/src/app/images/style.css +10 -0
  28. package/create-nextia/templates/nextjs/src/app/layout.js +109 -0
  29. package/create-nextia/templates/nextjs/src/app/media-query/functions.js +4 -0
  30. package/create-nextia/templates/nextjs/src/app/media-query/page.js +33 -0
  31. package/create-nextia/templates/nextjs/src/app/media-query/style.css +38 -0
  32. package/create-nextia/templates/nextjs/src/app/mockapi/functions.js +71 -0
  33. package/create-nextia/templates/nextjs/src/app/mockapi/page.js +95 -0
  34. package/create-nextia/templates/nextjs/src/app/mockapi/style.css +57 -0
  35. package/create-nextia/templates/nextjs/src/app/my-context/functions.js +11 -0
  36. package/create-nextia/templates/nextjs/src/app/my-context/page.js +27 -0
  37. package/create-nextia/templates/nextjs/src/app/my-context/style.css +1 -0
  38. package/create-nextia/templates/nextjs/src/app/not-found.js +7 -0
  39. package/create-nextia/templates/nextjs/src/app/page.js +3 -0
  40. package/create-nextia/templates/nextjs/src/app/search-params/functions.js +4 -0
  41. package/create-nextia/templates/nextjs/src/app/search-params/page.js +49 -0
  42. package/create-nextia/templates/nextjs/src/app/search-params/style.css +1 -0
  43. package/create-nextia/templates/nextjs/src/app/subpage/hello/functions.js +4 -0
  44. package/create-nextia/templates/nextjs/src/app/subpage/hello/page.js +16 -0
  45. package/create-nextia/templates/nextjs/src/app/subpage/hello/style.css +1 -0
  46. package/create-nextia/templates/nextjs/src/app/translate/functions.js +4 -0
  47. package/create-nextia/templates/nextjs/src/app/translate/page.js +35 -0
  48. package/create-nextia/templates/nextjs/src/app/translate/style.css +1 -0
  49. package/create-nextia/templates/nextjs/src/assets/fonts/Roboto-Regular.ttf +0 -0
  50. package/create-nextia/templates/nextjs/src/assets/i18n/index.js +26 -0
  51. package/create-nextia/templates/nextjs/src/assets/icon/icons.svg +498 -0
  52. package/create-nextia/templates/nextjs/src/assets/img/image.jpg +0 -0
  53. package/create-nextia/templates/nextjs/src/assets/theme/animations.css +89 -0
  54. package/create-nextia/templates/nextjs/src/assets/theme/index.css +38 -0
  55. package/create-nextia/templates/nextjs/src/assets/theme/util.css +71 -0
  56. package/create-nextia/templates/nextjs/src/components/Counter/index.js +37 -0
  57. package/create-nextia/templates/nextjs/src/components/Counter/style.css +5 -0
  58. package/create-nextia/templates/nextjs/src/components/Icon/index.jsx +55 -0
  59. package/create-nextia/templates/nextjs/src/components/Link/index.jsx +10 -0
  60. package/create-nextia/templates/nextjs/src/components/Translation/index.jsx +12 -0
  61. package/create-nextia/templates/nextjs/src/components/Translation/style.css +1 -0
  62. package/create-nextia/templates/nextjs/src/components/index.js +6 -0
  63. package/create-nextia/templates/nextjs/src/containers/I18n/index.jsx +23 -0
  64. package/create-nextia/templates/nextjs/src/containers/Translate/index.jsx +30 -0
  65. package/create-nextia/templates/nextjs/src/containers/Translate/style.css +2 -0
  66. package/create-nextia/templates/nextjs/src/containers/index.js +7 -0
  67. package/create-nextia/templates/nextjs/src/services/api.js +10 -0
  68. package/create-nextia/templates/nextjs/src/services/http.js +135 -0
  69. package/create-nextia/templates/nextjs/src/utils/hooks.js +26 -0
  70. package/create-nextia/templates/nextjs/src/utils/index.js +21 -0
  71. package/create-nextia/templates/nextjs/vitest.config.js +38 -0
  72. package/create-nextia/templates/vitejs/README.md +33 -0
  73. package/create-nextia/templates/vitejs/_env.development +4 -0
  74. package/create-nextia/templates/vitejs/_env.production +2 -0
  75. package/create-nextia/templates/vitejs/_env.test +2 -0
  76. package/create-nextia/templates/vitejs/_gitignore +6 -0
  77. package/create-nextia/templates/vitejs/package.json +39 -0
  78. package/create-nextia/templates/vitejs/public/error.html +14 -0
  79. package/create-nextia/templates/vitejs/public/logo.svg +865 -0
  80. package/create-nextia/templates/vitejs/src/assets/fonts/Roboto-Regular.ttf +0 -0
  81. package/create-nextia/templates/vitejs/src/assets/i18n/index.js +26 -0
  82. package/create-nextia/templates/vitejs/src/assets/icon/icons.svg +498 -0
  83. package/create-nextia/templates/vitejs/src/assets/img/image.jpg +0 -0
  84. package/create-nextia/templates/vitejs/src/assets/theme/animations.css +89 -0
  85. package/create-nextia/templates/vitejs/src/assets/theme/index.css +38 -0
  86. package/create-nextia/templates/vitejs/src/assets/theme/util.css +71 -0
  87. package/create-nextia/templates/vitejs/src/components/Counter/index.jsx +38 -0
  88. package/create-nextia/templates/vitejs/src/components/Counter/style.css +5 -0
  89. package/create-nextia/templates/vitejs/src/components/Icon/index.jsx +51 -0
  90. package/create-nextia/templates/vitejs/src/components/Link/index.jsx +12 -0
  91. package/create-nextia/templates/vitejs/src/components/Translation/index.jsx +12 -0
  92. package/create-nextia/templates/vitejs/src/components/Translation/style.css +1 -0
  93. package/create-nextia/templates/vitejs/src/components/index.js +6 -0
  94. package/create-nextia/templates/vitejs/src/containers/I18n/index.jsx +23 -0
  95. package/create-nextia/templates/vitejs/src/containers/Translate/index.jsx +30 -0
  96. package/create-nextia/templates/vitejs/src/containers/Translate/style.css +2 -0
  97. package/create-nextia/templates/vitejs/src/containers/index.js +7 -0
  98. package/create-nextia/templates/vitejs/src/index.html +18 -0
  99. package/create-nextia/templates/vitejs/src/index.jsx +9 -0
  100. package/create-nextia/templates/vitejs/src/pages/counter/functions.js +6 -0
  101. package/create-nextia/templates/vitejs/src/pages/counter/index.jsx +39 -0
  102. package/create-nextia/templates/vitejs/src/pages/counter/style.css +1 -0
  103. package/create-nextia/templates/vitejs/src/pages/env/functions.js +4 -0
  104. package/create-nextia/templates/vitejs/src/pages/env/index.jsx +28 -0
  105. package/create-nextia/templates/vitejs/src/pages/env/style.css +1 -0
  106. package/create-nextia/templates/vitejs/src/pages/functions.js +27 -0
  107. package/create-nextia/templates/vitejs/src/pages/home/functions.js +43 -0
  108. package/create-nextia/templates/vitejs/src/pages/home/index.jsx +182 -0
  109. package/create-nextia/templates/vitejs/src/pages/home/style.css +51 -0
  110. package/create-nextia/templates/vitejs/src/pages/http/not-found/index.jsx +17 -0
  111. package/create-nextia/templates/vitejs/src/pages/http/not-found/style.css +1 -0
  112. package/create-nextia/templates/vitejs/src/pages/images/functions.js +4 -0
  113. package/create-nextia/templates/vitejs/src/pages/images/index.jsx +23 -0
  114. package/create-nextia/templates/vitejs/src/pages/images/style.css +9 -0
  115. package/create-nextia/templates/vitejs/src/pages/index.jsx +104 -0
  116. package/create-nextia/templates/vitejs/src/pages/media-query/functions.js +4 -0
  117. package/create-nextia/templates/vitejs/src/pages/media-query/index.jsx +30 -0
  118. package/create-nextia/templates/vitejs/src/pages/media-query/style.css +38 -0
  119. package/create-nextia/templates/vitejs/src/pages/mockapi/functions.js +71 -0
  120. package/create-nextia/templates/vitejs/src/pages/mockapi/index.jsx +98 -0
  121. package/create-nextia/templates/vitejs/src/pages/mockapi/style.css +57 -0
  122. package/create-nextia/templates/vitejs/src/pages/my-context/functions.js +8 -0
  123. package/create-nextia/templates/vitejs/src/pages/my-context/index.jsx +27 -0
  124. package/create-nextia/templates/vitejs/src/pages/my-context/style.css +1 -0
  125. package/create-nextia/templates/vitejs/src/pages/search-params/functions.js +4 -0
  126. package/create-nextia/templates/vitejs/src/pages/search-params/index.jsx +42 -0
  127. package/create-nextia/templates/vitejs/src/pages/search-params/style.css +1 -0
  128. package/create-nextia/templates/vitejs/src/pages/subpage/hello/functions.js +3 -0
  129. package/create-nextia/templates/vitejs/src/pages/subpage/hello/index.jsx +14 -0
  130. package/create-nextia/templates/vitejs/src/pages/subpage/hello/style.css +1 -0
  131. package/create-nextia/templates/vitejs/src/pages/translate/functions.js +5 -0
  132. package/create-nextia/templates/vitejs/src/pages/translate/index.jsx +32 -0
  133. package/create-nextia/templates/vitejs/src/pages/translate/style.css +12 -0
  134. package/create-nextia/templates/vitejs/src/services/api.js +9 -0
  135. package/create-nextia/templates/vitejs/src/services/http.js +135 -0
  136. package/create-nextia/templates/vitejs/src/utils/hooks.js +44 -0
  137. package/create-nextia/templates/vitejs/src/utils/index.js +25 -0
  138. package/create-nextia/templates/vitejs/vite.config.js +100 -0
  139. package/package.json +3 -8
@@ -0,0 +1,865 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="64mm"
4
+ height="64mm"
5
+ viewBox="0 0 63.999981 64"
6
+ version="1.1"
7
+ id="svg"
8
+ inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
9
+ sodipodi:docname="logo.svg"
10
+ inkscape:export-xdpi="96"
11
+ inkscape:export-ydpi="96"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg"
16
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
+ xmlns:cc="http://creativecommons.org/ns#"
18
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
19
+ <style
20
+ id="style" />
21
+ <defs
22
+ id="defs">
23
+ <inkscape:path-effect
24
+ effect="skeletal"
25
+ id="path-effect984"
26
+ is_visible="true"
27
+ pattern="M 16.598965,52.978254 49.523122,63.297765 47.721305,66.5192 Z"
28
+ copytype="single_stretched"
29
+ prop_scale="0.26458332"
30
+ scale_y_rel="false"
31
+ spacing="0"
32
+ normal_offset="0"
33
+ tang_offset="0"
34
+ prop_units="false"
35
+ vertical_pattern="false"
36
+ fuse_tolerance="0"
37
+ lpeversion="0"
38
+ hide_knot="false" />
39
+ <inkscape:path-effect
40
+ effect="skeletal"
41
+ id="path-effect974"
42
+ is_visible="true"
43
+ pattern="M 16.598965,52.978254 49.523122,63.297765 47.721305,66.5192 Z"
44
+ copytype="single_stretched"
45
+ prop_scale="0.27328785"
46
+ scale_y_rel="false"
47
+ spacing="0"
48
+ normal_offset="0"
49
+ tang_offset="0"
50
+ prop_units="false"
51
+ vertical_pattern="false"
52
+ fuse_tolerance="0"
53
+ lpeversion="0"
54
+ hide_knot="false" />
55
+ <inkscape:path-effect
56
+ effect="skeletal"
57
+ id="path-effect964"
58
+ is_visible="true"
59
+ pattern="M 16.598965,52.978254 49.523122,63.297765 47.721305,66.5192 Z"
60
+ copytype="single_stretched"
61
+ prop_scale="0.26458332"
62
+ scale_y_rel="false"
63
+ spacing="0"
64
+ normal_offset="0"
65
+ tang_offset="0"
66
+ prop_units="false"
67
+ vertical_pattern="false"
68
+ fuse_tolerance="0"
69
+ lpeversion="0"
70
+ hide_knot="false" />
71
+ <inkscape:path-effect
72
+ effect="skeletal"
73
+ id="path-effect954"
74
+ is_visible="true"
75
+ pattern="M 16.598965,52.978254 49.523122,63.297765 47.721305,66.5192 Z"
76
+ copytype="single_stretched"
77
+ prop_scale="0.26458332"
78
+ scale_y_rel="false"
79
+ spacing="0"
80
+ normal_offset="0"
81
+ tang_offset="0"
82
+ prop_units="false"
83
+ vertical_pattern="false"
84
+ fuse_tolerance="0"
85
+ lpeversion="0"
86
+ hide_knot="false" />
87
+ <inkscape:path-effect
88
+ effect="skeletal"
89
+ id="path-effect935"
90
+ is_visible="true"
91
+ pattern="M 72.891793,45.430289 105.81595,55.7498 104.01413,58.971235 Z"
92
+ copytype="single_stretched"
93
+ prop_scale="0.26458332"
94
+ scale_y_rel="false"
95
+ spacing="0"
96
+ normal_offset="0"
97
+ tang_offset="0"
98
+ prop_units="false"
99
+ vertical_pattern="false"
100
+ fuse_tolerance="0"
101
+ lpeversion="0"
102
+ hide_knot="false" />
103
+ <inkscape:perspective
104
+ sodipodi:type="inkscape:persp3d"
105
+ inkscape:vp_x="40.627756 : 41.398052 : 1"
106
+ inkscape:vp_y="0 : 954.01088 : 0"
107
+ inkscape:vp_z="147.42126 : 41.398052 : 1"
108
+ inkscape:persp3d-origin="94.024466 : 19.858604 : 1"
109
+ id="perspective4684" />
110
+ <inkscape:path-effect
111
+ effect="skeletal"
112
+ id="path-effect4669"
113
+ is_visible="true"
114
+ pattern="m 165.01134,11.17024 a 16.81994,13.134672 0 0 0 -11.7631,3.75015 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.81994,13.134672 0 0 0 -9.72913,-2.43137 z"
115
+ copytype="single_stretched"
116
+ prop_scale="0.26458332"
117
+ scale_y_rel="false"
118
+ spacing="0"
119
+ normal_offset="0"
120
+ tang_offset="0"
121
+ prop_units="false"
122
+ vertical_pattern="false"
123
+ fuse_tolerance="0"
124
+ lpeversion="0"
125
+ hide_knot="false" />
126
+ <inkscape:path-effect
127
+ effect="skeletal"
128
+ id="path-effect4659"
129
+ is_visible="true"
130
+ pattern="m 165.01134,11.17024 a 16.81994,13.134672 0 0 0 -11.7631,3.75015 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.81994,13.134672 0 0 0 -9.72913,-2.43137 z"
131
+ copytype="single_stretched"
132
+ prop_scale="0.38418705"
133
+ scale_y_rel="false"
134
+ spacing="0"
135
+ normal_offset="0"
136
+ tang_offset="0"
137
+ prop_units="false"
138
+ vertical_pattern="false"
139
+ fuse_tolerance="0"
140
+ lpeversion="0"
141
+ hide_knot="false" />
142
+ <inkscape:path-effect
143
+ effect="skeletal"
144
+ id="path-effect4633"
145
+ is_visible="true"
146
+ pattern="m 165.01134,172.70356 a 16.81994,13.134672 0 0 0 -11.7631,3.75015 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.81994,13.134672 0 0 0 -9.72913,-2.43137 z"
147
+ copytype="single_stretched"
148
+ prop_scale="0.26458332"
149
+ scale_y_rel="false"
150
+ spacing="0"
151
+ normal_offset="0"
152
+ tang_offset="0"
153
+ prop_units="false"
154
+ vertical_pattern="false"
155
+ fuse_tolerance="0"
156
+ lpeversion="0"
157
+ hide_knot="false" />
158
+ <inkscape:path-effect
159
+ effect="skeletal"
160
+ id="path-effect372"
161
+ is_visible="true"
162
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
163
+ copytype="single_stretched"
164
+ prop_scale="0.26458333"
165
+ scale_y_rel="false"
166
+ spacing="0"
167
+ normal_offset="0"
168
+ tang_offset="0"
169
+ prop_units="false"
170
+ vertical_pattern="false"
171
+ fuse_tolerance="0"
172
+ lpeversion="0"
173
+ hide_knot="false" />
174
+ <inkscape:path-effect
175
+ effect="skeletal"
176
+ id="path-effect362"
177
+ is_visible="true"
178
+ pattern="m 235.04754,109.76374 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
179
+ copytype="single_stretched"
180
+ prop_scale="0.26458333"
181
+ scale_y_rel="false"
182
+ spacing="0"
183
+ normal_offset="0"
184
+ tang_offset="0"
185
+ prop_units="false"
186
+ vertical_pattern="false"
187
+ fuse_tolerance="0"
188
+ lpeversion="0"
189
+ hide_knot="false" />
190
+ <inkscape:path-effect
191
+ effect="skeletal"
192
+ id="path-effect352"
193
+ is_visible="true"
194
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
195
+ copytype="single_stretched"
196
+ prop_scale="0.26458333"
197
+ scale_y_rel="false"
198
+ spacing="0"
199
+ normal_offset="0"
200
+ tang_offset="0"
201
+ prop_units="false"
202
+ vertical_pattern="false"
203
+ fuse_tolerance="0"
204
+ lpeversion="0"
205
+ hide_knot="false" />
206
+ <inkscape:path-effect
207
+ effect="skeletal"
208
+ id="path-effect342"
209
+ is_visible="true"
210
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
211
+ copytype="single_stretched"
212
+ prop_scale="0.26458333"
213
+ scale_y_rel="false"
214
+ spacing="0"
215
+ normal_offset="0"
216
+ tang_offset="0"
217
+ prop_units="false"
218
+ vertical_pattern="false"
219
+ fuse_tolerance="0"
220
+ lpeversion="0"
221
+ hide_knot="false" />
222
+ <inkscape:path-effect
223
+ effect="skeletal"
224
+ id="path-effect332"
225
+ is_visible="true"
226
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
227
+ copytype="single_stretched"
228
+ prop_scale="0.26458333"
229
+ scale_y_rel="false"
230
+ spacing="0"
231
+ normal_offset="0"
232
+ tang_offset="0"
233
+ prop_units="false"
234
+ vertical_pattern="false"
235
+ fuse_tolerance="0"
236
+ lpeversion="0"
237
+ hide_knot="false" />
238
+ <inkscape:path-effect
239
+ effect="skeletal"
240
+ id="path-effect322"
241
+ is_visible="true"
242
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
243
+ copytype="single_stretched"
244
+ prop_scale="0.26458333"
245
+ scale_y_rel="false"
246
+ spacing="0"
247
+ normal_offset="0"
248
+ tang_offset="0"
249
+ prop_units="false"
250
+ vertical_pattern="false"
251
+ fuse_tolerance="0"
252
+ lpeversion="0"
253
+ hide_knot="false" />
254
+ <inkscape:path-effect
255
+ effect="skeletal"
256
+ id="path-effect312"
257
+ is_visible="true"
258
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
259
+ copytype="single_stretched"
260
+ prop_scale="0.26458333"
261
+ scale_y_rel="false"
262
+ spacing="0"
263
+ normal_offset="0"
264
+ tang_offset="0"
265
+ prop_units="false"
266
+ vertical_pattern="false"
267
+ fuse_tolerance="0"
268
+ lpeversion="0"
269
+ hide_knot="false" />
270
+ <inkscape:path-effect
271
+ effect="skeletal"
272
+ id="path-effect302"
273
+ is_visible="true"
274
+ pattern="m 234.88468,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
275
+ copytype="single_stretched"
276
+ prop_scale="0.26458333"
277
+ scale_y_rel="false"
278
+ spacing="0"
279
+ normal_offset="0"
280
+ tang_offset="0"
281
+ prop_units="false"
282
+ vertical_pattern="false"
283
+ fuse_tolerance="0"
284
+ lpeversion="0"
285
+ hide_knot="false" />
286
+ <inkscape:path-effect
287
+ effect="skeletal"
288
+ id="path-effect292"
289
+ is_visible="true"
290
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
291
+ copytype="single_stretched"
292
+ prop_scale="0.13876558"
293
+ scale_y_rel="false"
294
+ spacing="0"
295
+ normal_offset="0"
296
+ tang_offset="0"
297
+ prop_units="false"
298
+ vertical_pattern="false"
299
+ fuse_tolerance="0"
300
+ lpeversion="0"
301
+ hide_knot="false" />
302
+ <inkscape:path-effect
303
+ effect="skeletal"
304
+ id="path-effect282"
305
+ is_visible="true"
306
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
307
+ copytype="single_stretched"
308
+ prop_scale="0.052339175"
309
+ scale_y_rel="false"
310
+ spacing="0"
311
+ normal_offset="0"
312
+ tang_offset="0"
313
+ prop_units="false"
314
+ vertical_pattern="false"
315
+ fuse_tolerance="0"
316
+ lpeversion="0"
317
+ hide_knot="false" />
318
+ <inkscape:path-effect
319
+ effect="skeletal"
320
+ id="path-effect272"
321
+ is_visible="true"
322
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
323
+ copytype="single_stretched"
324
+ prop_scale="0.092733028"
325
+ scale_y_rel="false"
326
+ spacing="0"
327
+ normal_offset="0"
328
+ tang_offset="0"
329
+ prop_units="false"
330
+ vertical_pattern="false"
331
+ fuse_tolerance="0"
332
+ lpeversion="0"
333
+ hide_knot="false" />
334
+ <inkscape:path-effect
335
+ effect="skeletal"
336
+ id="path-effect262"
337
+ is_visible="true"
338
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
339
+ copytype="single_stretched"
340
+ prop_scale="0.21433252"
341
+ scale_y_rel="false"
342
+ spacing="0"
343
+ normal_offset="0"
344
+ tang_offset="0"
345
+ prop_units="false"
346
+ vertical_pattern="false"
347
+ fuse_tolerance="0"
348
+ lpeversion="0"
349
+ hide_knot="false" />
350
+ <inkscape:path-effect
351
+ effect="skeletal"
352
+ id="path-effect252"
353
+ is_visible="true"
354
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
355
+ copytype="single_stretched"
356
+ prop_scale="0.26458333"
357
+ scale_y_rel="false"
358
+ spacing="0"
359
+ normal_offset="0"
360
+ tang_offset="0"
361
+ prop_units="false"
362
+ vertical_pattern="false"
363
+ fuse_tolerance="0"
364
+ lpeversion="0"
365
+ hide_knot="false" />
366
+ <inkscape:path-effect
367
+ effect="skeletal"
368
+ id="path-effect242"
369
+ is_visible="true"
370
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
371
+ copytype="single_stretched"
372
+ prop_scale="0.26458333"
373
+ scale_y_rel="false"
374
+ spacing="0"
375
+ normal_offset="0"
376
+ tang_offset="0"
377
+ prop_units="false"
378
+ vertical_pattern="false"
379
+ fuse_tolerance="0"
380
+ lpeversion="0"
381
+ hide_knot="false" />
382
+ <inkscape:path-effect
383
+ effect="skeletal"
384
+ id="path-effect232"
385
+ is_visible="true"
386
+ pattern="m 253.05483,106.1222 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
387
+ copytype="single_stretched"
388
+ prop_scale="0.26458333"
389
+ scale_y_rel="false"
390
+ spacing="0"
391
+ normal_offset="0"
392
+ tang_offset="0"
393
+ prop_units="false"
394
+ vertical_pattern="false"
395
+ fuse_tolerance="0"
396
+ lpeversion="0"
397
+ hide_knot="false" />
398
+ <inkscape:path-effect
399
+ effect="skeletal"
400
+ id="path-effect222"
401
+ is_visible="true"
402
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
403
+ copytype="single_stretched"
404
+ prop_scale="0.26458333"
405
+ scale_y_rel="false"
406
+ spacing="0"
407
+ normal_offset="0"
408
+ tang_offset="0"
409
+ prop_units="false"
410
+ vertical_pattern="false"
411
+ fuse_tolerance="0"
412
+ lpeversion="0"
413
+ hide_knot="false" />
414
+ <inkscape:path-effect
415
+ effect="skeletal"
416
+ id="path-effect212"
417
+ is_visible="true"
418
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
419
+ copytype="single_stretched"
420
+ prop_scale="0.26458333"
421
+ scale_y_rel="false"
422
+ spacing="0"
423
+ normal_offset="0"
424
+ tang_offset="0"
425
+ prop_units="false"
426
+ vertical_pattern="false"
427
+ fuse_tolerance="0"
428
+ lpeversion="0"
429
+ hide_knot="false" />
430
+ <inkscape:path-effect
431
+ effect="skeletal"
432
+ id="path-effect202"
433
+ is_visible="true"
434
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
435
+ copytype="single_stretched"
436
+ prop_scale="0.26458333"
437
+ scale_y_rel="false"
438
+ spacing="0"
439
+ normal_offset="0"
440
+ tang_offset="0"
441
+ prop_units="false"
442
+ vertical_pattern="false"
443
+ fuse_tolerance="0"
444
+ lpeversion="0"
445
+ hide_knot="false" />
446
+ <inkscape:path-effect
447
+ effect="skeletal"
448
+ id="path-effect192"
449
+ is_visible="true"
450
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
451
+ copytype="single_stretched"
452
+ prop_scale="0.26458333"
453
+ scale_y_rel="false"
454
+ spacing="0"
455
+ normal_offset="0"
456
+ tang_offset="0"
457
+ prop_units="false"
458
+ vertical_pattern="false"
459
+ fuse_tolerance="0"
460
+ lpeversion="0"
461
+ hide_knot="false" />
462
+ <inkscape:path-effect
463
+ effect="skeletal"
464
+ id="path-effect182"
465
+ is_visible="true"
466
+ pattern="m 239.6052,108.31964 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
467
+ copytype="single_stretched"
468
+ prop_scale="0.26458333"
469
+ scale_y_rel="false"
470
+ spacing="0"
471
+ normal_offset="0"
472
+ tang_offset="0"
473
+ prop_units="false"
474
+ vertical_pattern="false"
475
+ fuse_tolerance="0"
476
+ lpeversion="0"
477
+ hide_knot="false" />
478
+ <inkscape:path-effect
479
+ effect="skeletal"
480
+ id="path-effect172"
481
+ is_visible="true"
482
+ pattern="m 232.40826,111.53441 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
483
+ copytype="single_stretched"
484
+ prop_scale="0.26458333"
485
+ scale_y_rel="false"
486
+ spacing="0"
487
+ normal_offset="0"
488
+ tang_offset="0"
489
+ prop_units="false"
490
+ vertical_pattern="false"
491
+ fuse_tolerance="0"
492
+ lpeversion="0"
493
+ hide_knot="false" />
494
+ <inkscape:path-effect
495
+ effect="skeletal"
496
+ id="path-effect162"
497
+ is_visible="true"
498
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
499
+ copytype="single_stretched"
500
+ prop_scale="0.26458333"
501
+ scale_y_rel="false"
502
+ spacing="0"
503
+ normal_offset="0"
504
+ tang_offset="0"
505
+ prop_units="false"
506
+ vertical_pattern="false"
507
+ fuse_tolerance="0"
508
+ lpeversion="0"
509
+ hide_knot="false" />
510
+ <inkscape:path-effect
511
+ effect="skeletal"
512
+ id="path-effect152"
513
+ is_visible="true"
514
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
515
+ copytype="single_stretched"
516
+ prop_scale="0.26458333"
517
+ scale_y_rel="false"
518
+ spacing="0"
519
+ normal_offset="0"
520
+ tang_offset="0"
521
+ prop_units="false"
522
+ vertical_pattern="false"
523
+ fuse_tolerance="0"
524
+ lpeversion="0"
525
+ hide_knot="false" />
526
+ <inkscape:path-effect
527
+ effect="skeletal"
528
+ id="path-effect142"
529
+ is_visible="true"
530
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
531
+ copytype="single_stretched"
532
+ prop_scale="0.26458333"
533
+ scale_y_rel="false"
534
+ spacing="0"
535
+ normal_offset="0"
536
+ tang_offset="0"
537
+ prop_units="false"
538
+ vertical_pattern="false"
539
+ fuse_tolerance="0"
540
+ lpeversion="0"
541
+ hide_knot="false" />
542
+ <inkscape:path-effect
543
+ effect="skeletal"
544
+ id="path-effect132"
545
+ is_visible="true"
546
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
547
+ copytype="single_stretched"
548
+ prop_scale="0.26458333"
549
+ scale_y_rel="false"
550
+ spacing="0"
551
+ normal_offset="0"
552
+ tang_offset="0"
553
+ prop_units="false"
554
+ vertical_pattern="false"
555
+ fuse_tolerance="0"
556
+ lpeversion="0"
557
+ hide_knot="false" />
558
+ <inkscape:path-effect
559
+ effect="skeletal"
560
+ id="path-effect122"
561
+ is_visible="true"
562
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
563
+ copytype="single_stretched"
564
+ prop_scale="0.26458333"
565
+ scale_y_rel="false"
566
+ spacing="0"
567
+ normal_offset="0"
568
+ tang_offset="0"
569
+ prop_units="false"
570
+ vertical_pattern="false"
571
+ fuse_tolerance="0"
572
+ lpeversion="0"
573
+ hide_knot="false" />
574
+ <inkscape:path-effect
575
+ effect="skeletal"
576
+ id="path-effect112"
577
+ is_visible="true"
578
+ pattern="m 230.40043,192.56231 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
579
+ copytype="single_stretched"
580
+ prop_scale="0.26458333"
581
+ scale_y_rel="false"
582
+ spacing="0"
583
+ normal_offset="0"
584
+ tang_offset="0"
585
+ prop_units="false"
586
+ vertical_pattern="false"
587
+ fuse_tolerance="0"
588
+ lpeversion="0"
589
+ hide_knot="false" />
590
+ <inkscape:path-effect
591
+ effect="skeletal"
592
+ id="path-effect102"
593
+ is_visible="true"
594
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
595
+ copytype="single_stretched"
596
+ prop_scale="0.26458333"
597
+ scale_y_rel="false"
598
+ spacing="0"
599
+ normal_offset="0"
600
+ tang_offset="0"
601
+ prop_units="false"
602
+ vertical_pattern="false"
603
+ fuse_tolerance="0"
604
+ lpeversion="0"
605
+ hide_knot="false" />
606
+ <inkscape:path-effect
607
+ effect="skeletal"
608
+ id="path-effect92"
609
+ is_visible="true"
610
+ pattern="m 234.8805,110.39851 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
611
+ copytype="single_stretched"
612
+ prop_scale="0.24520505"
613
+ scale_y_rel="false"
614
+ spacing="0"
615
+ normal_offset="0"
616
+ tang_offset="0"
617
+ prop_units="false"
618
+ vertical_pattern="false"
619
+ fuse_tolerance="0"
620
+ lpeversion="0"
621
+ hide_knot="false" />
622
+ <inkscape:path-effect
623
+ effect="skeletal"
624
+ id="path-effect82"
625
+ is_visible="true"
626
+ pattern="m 230.40043,192.56231 a 16.819941,13.134672 0 0 0 -11.7631,3.75016 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.819941,13.134672 0 0 0 -9.72913,-2.43138 z"
627
+ copytype="single_stretched"
628
+ prop_scale="0.1599762"
629
+ scale_y_rel="false"
630
+ spacing="0"
631
+ normal_offset="0"
632
+ tang_offset="0"
633
+ prop_units="false"
634
+ vertical_pattern="false"
635
+ fuse_tolerance="0"
636
+ lpeversion="0"
637
+ hide_knot="false" />
638
+ <inkscape:perspective
639
+ sodipodi:type="inkscape:persp3d"
640
+ inkscape:vp_x="4.62914 : 4.7917148 : 1"
641
+ inkscape:vp_y="0 : 930.02045 : 0"
642
+ inkscape:vp_z="106.55762 : 4.7917148 : 1"
643
+ inkscape:persp3d-origin="55.593377 : -16.206083 : 1"
644
+ id="perspective4684-3" />
645
+ <inkscape:path-effect
646
+ effect="skeletal"
647
+ id="path-effect954-2"
648
+ is_visible="true"
649
+ pattern="M 16.598965,52.978254 49.523122,63.297765 47.721305,66.5192 Z"
650
+ copytype="single_stretched"
651
+ prop_scale="0.26458332"
652
+ scale_y_rel="false"
653
+ spacing="0"
654
+ normal_offset="0"
655
+ tang_offset="0"
656
+ prop_units="false"
657
+ vertical_pattern="false"
658
+ fuse_tolerance="0"
659
+ lpeversion="0"
660
+ hide_knot="false" />
661
+ <inkscape:path-effect
662
+ effect="skeletal"
663
+ id="path-effect974-1"
664
+ is_visible="true"
665
+ pattern="M 16.598965,52.978254 49.523122,63.297765 47.721305,66.5192 Z"
666
+ copytype="single_stretched"
667
+ prop_scale="0.26458332"
668
+ scale_y_rel="false"
669
+ spacing="0"
670
+ normal_offset="0"
671
+ tang_offset="0"
672
+ prop_units="false"
673
+ vertical_pattern="false"
674
+ fuse_tolerance="0"
675
+ lpeversion="0"
676
+ hide_knot="false" />
677
+ <inkscape:path-effect
678
+ effect="skeletal"
679
+ id="path-effect4659-7"
680
+ is_visible="true"
681
+ pattern="m 165.01134,11.17024 a 16.81994,13.134672 0 0 0 -11.7631,3.75015 15.969494,14.741072 0 0 0 9.96787,3.24218 15.969494,14.741072 0 0 0 11.52436,-4.56096 16.81994,13.134672 0 0 0 -9.72913,-2.43137 z"
682
+ copytype="single_stretched"
683
+ prop_scale="0.38418705"
684
+ scale_y_rel="false"
685
+ spacing="0"
686
+ normal_offset="0"
687
+ tang_offset="0"
688
+ prop_units="false"
689
+ vertical_pattern="false"
690
+ fuse_tolerance="0"
691
+ lpeversion="0"
692
+ hide_knot="false" />
693
+ </defs>
694
+ <sodipodi:namedview
695
+ id="base"
696
+ pagecolor="#505050"
697
+ bordercolor="#666666"
698
+ borderopacity="1.0"
699
+ inkscape:pageopacity="0"
700
+ inkscape:pageshadow="2"
701
+ inkscape:zoom="1.8108298"
702
+ inkscape:cx="35.342913"
703
+ inkscape:cy="126.18524"
704
+ inkscape:document-units="mm"
705
+ inkscape:current-layer="layer1"
706
+ showgrid="false"
707
+ inkscape:window-width="2560"
708
+ inkscape:window-height="1055"
709
+ inkscape:window-x="2560"
710
+ inkscape:window-y="0"
711
+ inkscape:window-maximized="1"
712
+ units="mm"
713
+ inkscape:document-rotation="0"
714
+ inkscape:pagecheckerboard="1"
715
+ width="209mm" />
716
+ <metadata
717
+ id="metadata5">
718
+ <rdf:RDF>
719
+ <cc:Work
720
+ rdf:about="">
721
+ <dc:format>image/svg+xml</dc:format>
722
+ <dc:type
723
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
724
+ </cc:Work>
725
+ </rdf:RDF>
726
+ </metadata>
727
+ <g
728
+ inkscape:groupmode="layer"
729
+ id="layer1"
730
+ inkscape:label="bg-all"
731
+ style="display:none">
732
+ <rect
733
+ style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.183199;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
734
+ id="rect4575"
735
+ width="68.329857"
736
+ height="67.899437"
737
+ x="-0.10760616"
738
+ y="0.15671897"
739
+ inkscape:export-xdpi="228.48"
740
+ inkscape:export-ydpi="228.48" />
741
+ </g>
742
+ <g
743
+ inkscape:groupmode="layer"
744
+ id="layer6"
745
+ inkscape:label="bg"
746
+ style="display:inline"
747
+ transform="translate(0,-67.73333)"
748
+ sodipodi:insensitive="true">
749
+ <ellipse
750
+ style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.733511;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
751
+ id="path1043"
752
+ cx="32.12582"
753
+ cy="99.992744"
754
+ rx="31.071707"
755
+ ry="31.177364" />
756
+ </g>
757
+ <g
758
+ inkscape:groupmode="layer"
759
+ id="layer5"
760
+ inkscape:label="icon"
761
+ style="display:inline"
762
+ transform="translate(0,-67.73333)">
763
+ <g
764
+ sodipodi:type="inkscape:box3d"
765
+ id="g4700"
766
+ style="display:inline;opacity:1;fill:#b21cbe;fill-opacity:1;stroke:#000000;stroke-width:1.04693;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:1;stroke-dasharray:none;stroke-opacity:1"
767
+ inkscape:perspectiveID="#perspective4684-3"
768
+ inkscape:corner0="0.9449729 : 0.080371466 : 0 : 1"
769
+ inkscape:corner7="0.74737605 : 0.070452187 : 0.13648779 : 1">
770
+ <path
771
+ sodipodi:type="inkscape:box3dside"
772
+ id="path4702"
773
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:3.31004;stroke-linejoin:round"
774
+ inkscape:box3dsidetype="6"
775
+ d="m 30.832208,99.306623 v 4.743067 l 4.96555,1.50109 v -4.43205 z"
776
+ points="30.832208,104.04969 35.797758,105.55078 35.797758,101.11873 30.832208,99.306623 " />
777
+ <path
778
+ sodipodi:type="inkscape:box3dside"
779
+ id="path4712"
780
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:3.31004;stroke-linejoin:round"
781
+ inkscape:box3dsidetype="11"
782
+ d="m 35.797758,101.11873 3.26925,-2.708535 v 4.896925 l -3.26925,2.24366 z"
783
+ points="39.067008,98.410195 39.067008,103.30712 35.797758,105.55078 35.797758,101.11873 " />
784
+ <path
785
+ sodipodi:type="inkscape:box3dside"
786
+ id="path4704"
787
+ style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:3.31004;stroke-linejoin:round"
788
+ inkscape:box3dsidetype="5"
789
+ d="m 30.832208,99.306623 2.963096,-3.125021 5.271704,2.228593 -3.26925,2.708535 z"
790
+ points="33.795304,96.181602 39.067008,98.410195 35.797758,101.11873 30.832208,99.306623 " />
791
+ <path
792
+ sodipodi:type="inkscape:box3dside"
793
+ id="path4710"
794
+ style="fill:#1c6fbe;fill-opacity:0.850847;fill-rule:evenodd;stroke:none;stroke-width:3.31004;stroke-linejoin:round"
795
+ inkscape:box3dsidetype="13"
796
+ d="m 30.832208,104.04969 2.963096,-2.58867 5.271704,1.8461 -3.26925,2.24366 z"
797
+ points="33.795304,101.46102 39.067008,103.30712 35.797758,105.55078 30.832208,104.04969 " />
798
+ <path
799
+ sodipodi:type="inkscape:box3dside"
800
+ id="path4708"
801
+ style="fill:#1c6fbe;fill-opacity:0.657627;fill-rule:evenodd;stroke:none;stroke-width:3.31004;stroke-linejoin:round"
802
+ inkscape:box3dsidetype="14"
803
+ d="m 33.795304,96.181602 v 5.279418 l 5.271704,1.8461 v -4.896925 z"
804
+ points="33.795304,101.46102 39.067008,103.30712 39.067008,98.410195 33.795304,96.181602 " />
805
+ <path
806
+ sodipodi:type="inkscape:box3dside"
807
+ id="path4706"
808
+ style="fill:#1c6fbe;fill-opacity:0.535593;fill-rule:evenodd;stroke:none;stroke-width:3.31004;stroke-linejoin:round"
809
+ inkscape:box3dsidetype="3"
810
+ d="m 30.832208,99.306623 2.963096,-3.125021 v 5.279418 l -2.963096,2.58867 z"
811
+ points="33.795304,96.181602 33.795304,101.46102 30.832208,104.04969 30.832208,99.306623 " />
812
+ </g>
813
+ <path
814
+ style="fill:#1c6fbe;fill-opacity:1;stroke:none;stroke-width:0.253318;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
815
+ d="M 11.165395,82.054897 59.251229,98.843812 57.99619,102.15687 Z"
816
+ id="path896"
817
+ inkscape:connector-curvature="0"
818
+ sodipodi:nodetypes="cccc" />
819
+ <path
820
+ style="fill:#1c6fbe;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
821
+ d="M 32.028836,45.114235 50.135258,67.79819 48.423691,67.252597 Z"
822
+ id="path927"
823
+ inkscape:connector-curvature="0"
824
+ inkscape:path-effect="#path-effect935"
825
+ inkscape:original-d="M 30.740133,46.3585 50.81078,67.145946"
826
+ sodipodi:nodetypes="cc"
827
+ transform="matrix(0.95591558,0,0,0.95591558,-19.451471,38.9295)" />
828
+ <path
829
+ style="fill:#1c6fbe;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
830
+ d="M 31.523833,70.837808 14.43535,89.63051 14.561228,88.011681 Z"
831
+ id="path946"
832
+ inkscape:connector-curvature="0"
833
+ inkscape:path-effect="#path-effect954"
834
+ inkscape:original-d="M 30.076619,69.782099 15.193981,90.18389"
835
+ sodipodi:nodetypes="cc"
836
+ transform="matrix(-0.9346334,0,0,-0.9854517,39.218821,189.98433)" />
837
+ <path
838
+ style="fill:#1c6fbe;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
839
+ d="M -0.57636767,103.02518 46.018639,83.41358 43.922646,85.416659 Z"
840
+ id="path966"
841
+ inkscape:connector-curvature="0"
842
+ inkscape:path-effect="#path-effect974"
843
+ inkscape:original-d="M 0.23543968,104.68787 45.593075,82.542019"
844
+ sodipodi:nodetypes="cc"
845
+ transform="matrix(0.95591558,0,0,0.95591558,10.293548,21.654226)" />
846
+ <path
847
+ style="display:inline;fill:#1c6fbe;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
848
+ d="M 31.526079,70.834722 14.754777,89.282221 14.862041,87.68401 Z"
849
+ id="path946-9"
850
+ inkscape:connector-curvature="0"
851
+ inkscape:path-effect="#path-effect954-2"
852
+ inkscape:original-d="M 30.076619,69.782099 15.514586,89.833984"
853
+ sodipodi:nodetypes="cc"
854
+ transform="matrix(-0.9346334,0,0,-0.9854517,41.337946,191.74435)" />
855
+ <path
856
+ style="display:inline;fill:#1c6fbe;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
857
+ d="M -0.52687485,103.06681 48.085322,83.223761 45.851258,85.216225 Z"
858
+ id="path966-2"
859
+ inkscape:connector-curvature="0"
860
+ inkscape:path-effect="#path-effect974-1"
861
+ inkscape:original-d="M 0.23543968,104.68787 47.685721,82.374013"
862
+ sodipodi:nodetypes="cc"
863
+ transform="matrix(0.95591558,0,0,0.95591558,12.41267,23.41428)" />
864
+ </g>
865
+ </svg>