@lukekaalim/act-insight 1.0.0 → 2.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.
- package/CHANGELOG.md +30 -0
- package/InsightApp.module.css +36 -0
- package/InsightApp2.ts +82 -0
- package/TreeViewer.module.css +3 -8
- package/TreeViewer.ts +16 -12
- package/Virtual.ts +29 -11
- package/assets/icons/ancestor_column.png +0 -0
- package/assets/icons/ancestor_column.svg +26 -0
- package/assets/icons/ancestor_skip_row_column.png +0 -0
- package/assets/icons/ancestor_skip_row_column.svg +52 -0
- package/assets/icons/breakpoint.png +0 -0
- package/assets/icons/breakpoint.svg +33 -0
- package/assets/icons/breakpoint_arrow.png +0 -0
- package/assets/icons/breakpoint_arrow.svg +22 -0
- package/assets/icons/breakpoint_arrow_paused.png +0 -0
- package/assets/icons/breakpoint_arrow_paused.svg +38 -0
- package/assets/icons/breakpoint_panel.png +0 -0
- package/assets/icons/breakpoint_panel.svg +121 -0
- package/assets/icons/breakpoint_unset.png +0 -0
- package/assets/icons/breakpoint_unset.svg +26 -0
- package/assets/icons/bug.png +0 -0
- package/assets/icons/bug.svg +65 -0
- package/assets/icons/children.png +0 -0
- package/assets/icons/children.svg +38 -0
- package/assets/icons/collapse.png +0 -0
- package/assets/icons/collapse.svg +38 -0
- package/assets/icons/commit.png +0 -0
- package/assets/icons/commit.svg +30 -0
- package/assets/icons/commit_tree.png +0 -0
- package/assets/icons/commit_tree.svg +44 -0
- package/assets/icons/effect.png +0 -0
- package/assets/icons/effect.svg +28 -0
- package/assets/icons/expand.png +0 -0
- package/assets/icons/expand.svg +47 -0
- package/assets/icons/eye.png +0 -0
- package/assets/icons/eye.svg +36 -0
- package/assets/icons/eye_closed.png +0 -0
- package/assets/icons/eye_closed.svg +32 -0
- package/assets/icons/filter.png +0 -0
- package/assets/icons/filter.svg +22 -0
- package/assets/icons/graph.png +0 -0
- package/assets/icons/graph.svg +129 -0
- package/assets/icons/history_list.png +0 -0
- package/assets/icons/history_list.svg +60 -0
- package/assets/icons/hook.png +0 -0
- package/assets/icons/hook.svg +22 -0
- package/assets/icons/index.ts +76 -0
- package/assets/icons/inspector_panel.png +0 -0
- package/assets/icons/inspector_panel.svg +135 -0
- package/assets/icons/magnifying_glass.png +0 -0
- package/assets/icons/magnifying_glass.svg +39 -0
- package/assets/icons/pause.png +0 -0
- package/assets/icons/pause.svg +34 -0
- package/assets/icons/play.png +0 -0
- package/assets/icons/play.svg +23 -0
- package/assets/icons/reload.png +0 -0
- package/assets/icons/reload.svg +39 -0
- package/assets/icons/selection.png +0 -0
- package/assets/icons/selection.svg +22 -0
- package/assets/icons/side_effects.png +0 -0
- package/assets/icons/side_effects.svg +48 -0
- package/assets/icons/skip.png +0 -0
- package/assets/icons/skip.svg +22 -0
- package/assets/icons/source.svg +1366 -0
- package/assets/icons/step.png +0 -0
- package/assets/icons/step.svg +51 -0
- package/assets/icons/step_over_children.png +0 -0
- package/assets/icons/step_over_children.svg +57 -0
- package/assets/icons/thread.png +0 -0
- package/assets/icons/thread.svg +32 -0
- package/assets/icons/tree_column.png +0 -0
- package/assets/icons/tree_column.svg +26 -0
- package/assets/icons/tree_end.png +0 -0
- package/assets/icons/tree_end.svg +35 -0
- package/assets/icons/tree_junction.png +0 -0
- package/assets/icons/tree_junction.svg +35 -0
- package/assets/icons/vertical_grab_handle.png +0 -0
- package/assets/icons/vertical_grab_handle.svg +36 -0
- package/components/BreakpointPanel.ts +110 -0
- package/components/BreakpointToggle.ts +14 -0
- package/components/Button.ts +53 -0
- package/components/Checkbox.ts +17 -0
- package/components/CommitInspector.ts +161 -0
- package/components/CommitTree.ts +295 -0
- package/components/ControlBar.ts +60 -0
- package/components/EffectTable.ts +125 -0
- package/components/FiltersPanel.ts +45 -0
- package/components/HistoryList.ts +0 -0
- package/components/InspectorPanel.ts +54 -0
- package/components/PlaybackBar.ts +42 -0
- package/components/ThreadInspector.ts +26 -0
- package/components/index.module.css +414 -0
- package/lib/controller.ts +222 -0
- package/lib/list.ts +82 -0
- package/lib/selection.ts +32 -0
- package/package.json +4 -4
- package/public/icons/icons.svg +520 -0
- package/public/icons/icons__breakpoint.png +0 -0
- package/public/icons/icons__breakpoint.svg +30 -0
- package/public/icons/icons__breakpoint_panel.png +0 -0
- package/public/icons/icons__breakpoint_panel.svg +121 -0
- package/public/icons/icons__children.png +0 -0
- package/public/icons/icons__children.svg +38 -0
- package/public/icons/icons__eye.png +0 -0
- package/public/icons/icons__eye.svg +36 -0
- package/public/icons/icons__inspector_panel.png +0 -0
- package/public/icons/icons__inspector_panel.svg +131 -0
- package/public/icons/icons__magnifying_glass.png +0 -0
- package/public/icons/icons__magnifying_glass.svg +39 -0
- package/public/icons/icons__pause.png +0 -0
- package/public/icons/icons__pause.svg +34 -0
- package/public/icons/icons__play.png +0 -0
- package/public/icons/icons__play.svg +23 -0
- package/public/icons/icons__skip.png +0 -0
- package/public/icons/icons__skip.svg +22 -0
- package/public/icons/icons__step.png +0 -0
- package/public/icons/icons__step.svg +51 -0
- package/utils.ts +78 -11
- package/InsightApp.ts +0 -365
- package/MenuBar.module.css +0 -18
- package/MenuBar.ts +0 -39
- package/ScheduleControls.ts +0 -61
- package/lookup.ts +0 -185
|
@@ -0,0 +1,1366 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="11.941043mm"
|
|
6
|
+
height="11.941043mm"
|
|
7
|
+
viewBox="0 0 11.941043 11.941043"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
|
|
11
|
+
sodipodi:docname="source.svg"
|
|
12
|
+
inkscape:export-batch-name=""
|
|
13
|
+
inkscape:export-batch-path="/home/lukekaalim/Projects/act/tooling/insight/assets/icons"
|
|
14
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
15
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
18
|
+
<sodipodi:namedview
|
|
19
|
+
id="namedview1"
|
|
20
|
+
pagecolor="#ffffff"
|
|
21
|
+
bordercolor="#000000"
|
|
22
|
+
borderopacity="0.25"
|
|
23
|
+
inkscape:showpageshadow="2"
|
|
24
|
+
inkscape:pageopacity="0.0"
|
|
25
|
+
inkscape:pagecheckerboard="true"
|
|
26
|
+
inkscape:deskcolor="#d1d1d1"
|
|
27
|
+
inkscape:document-units="mm"
|
|
28
|
+
inkscape:zoom="8"
|
|
29
|
+
inkscape:cx="-53.4375"
|
|
30
|
+
inkscape:cy="97.4375"
|
|
31
|
+
inkscape:window-width="1920"
|
|
32
|
+
inkscape:window-height="1018"
|
|
33
|
+
inkscape:window-x="1920"
|
|
34
|
+
inkscape:window-y="30"
|
|
35
|
+
inkscape:window-maximized="1"
|
|
36
|
+
inkscape:current-layer="layer1">
|
|
37
|
+
<inkscape:page
|
|
38
|
+
x="0"
|
|
39
|
+
y="0"
|
|
40
|
+
width="11.941043"
|
|
41
|
+
height="11.941043"
|
|
42
|
+
id="page1"
|
|
43
|
+
margin="0"
|
|
44
|
+
bleed="0"
|
|
45
|
+
inkscape:label="breakpoint" />
|
|
46
|
+
<inkscape:page
|
|
47
|
+
x="28.111971"
|
|
48
|
+
y="-13.458042"
|
|
49
|
+
width="18.858223"
|
|
50
|
+
height="11.940001"
|
|
51
|
+
id="page2"
|
|
52
|
+
margin="0"
|
|
53
|
+
bleed="0"
|
|
54
|
+
inkscape:label="eye" />
|
|
55
|
+
<inkscape:page
|
|
56
|
+
x="1.3267825"
|
|
57
|
+
y="14.594607"
|
|
58
|
+
width="5.5203619"
|
|
59
|
+
height="5.970521"
|
|
60
|
+
id="page4"
|
|
61
|
+
margin="0"
|
|
62
|
+
bleed="0"
|
|
63
|
+
inkscape:label="play" />
|
|
64
|
+
<inkscape:page
|
|
65
|
+
x="8.8373184"
|
|
66
|
+
y="14.570916"
|
|
67
|
+
width="5.8520589"
|
|
68
|
+
height="5.9942141"
|
|
69
|
+
id="page5"
|
|
70
|
+
margin="0"
|
|
71
|
+
bleed="0"
|
|
72
|
+
inkscape:label="pause" />
|
|
73
|
+
<inkscape:page
|
|
74
|
+
x="15.542309"
|
|
75
|
+
y="14.570915"
|
|
76
|
+
width="5.8499999"
|
|
77
|
+
height="5.9900002"
|
|
78
|
+
id="page6"
|
|
79
|
+
margin="0"
|
|
80
|
+
bleed="0"
|
|
81
|
+
inkscape:label="skip" />
|
|
82
|
+
<inkscape:page
|
|
83
|
+
x="23.45562"
|
|
84
|
+
y="14.547223"
|
|
85
|
+
width="5.8499999"
|
|
86
|
+
height="5.9900002"
|
|
87
|
+
id="page7"
|
|
88
|
+
margin="0"
|
|
89
|
+
bleed="0"
|
|
90
|
+
inkscape:label="step" />
|
|
91
|
+
<inkscape:page
|
|
92
|
+
x="30.892826"
|
|
93
|
+
y="14.675767"
|
|
94
|
+
width="5.8499999"
|
|
95
|
+
height="5.9900002"
|
|
96
|
+
id="page8"
|
|
97
|
+
margin="0"
|
|
98
|
+
bleed="0"
|
|
99
|
+
inkscape:label="children" />
|
|
100
|
+
<inkscape:page
|
|
101
|
+
x="-22.744843"
|
|
102
|
+
y="-0.18954036"
|
|
103
|
+
width="11.940001"
|
|
104
|
+
height="11.940001"
|
|
105
|
+
id="page11"
|
|
106
|
+
margin="0"
|
|
107
|
+
bleed="0"
|
|
108
|
+
inkscape:label="breakpoint_panel" />
|
|
109
|
+
<inkscape:page
|
|
110
|
+
x="33.785568"
|
|
111
|
+
y="0"
|
|
112
|
+
width="11.940001"
|
|
113
|
+
height="11.940001"
|
|
114
|
+
id="page13"
|
|
115
|
+
margin="0"
|
|
116
|
+
bleed="0"
|
|
117
|
+
inkscape:label="magnifying_glass" />
|
|
118
|
+
<inkscape:page
|
|
119
|
+
x="-22.918322"
|
|
120
|
+
y="14.74278"
|
|
121
|
+
width="11.940001"
|
|
122
|
+
height="11.940001"
|
|
123
|
+
id="page14"
|
|
124
|
+
margin="0"
|
|
125
|
+
bleed="0"
|
|
126
|
+
inkscape:label="inspector_panel" />
|
|
127
|
+
<inkscape:page
|
|
128
|
+
x="49.706959"
|
|
129
|
+
y="2.8667979"
|
|
130
|
+
width="12.011079"
|
|
131
|
+
height="5.5193214"
|
|
132
|
+
id="page15"
|
|
133
|
+
margin="0"
|
|
134
|
+
bleed="0"
|
|
135
|
+
inkscape:label="breakpoint_arrow" />
|
|
136
|
+
<inkscape:page
|
|
137
|
+
x="49.656364"
|
|
138
|
+
y="9.28125"
|
|
139
|
+
width="12.01"
|
|
140
|
+
height="5.52"
|
|
141
|
+
id="page16"
|
|
142
|
+
margin="0"
|
|
143
|
+
bleed="0"
|
|
144
|
+
inkscape:label="breakpoint_arrow_paused" />
|
|
145
|
+
<inkscape:page
|
|
146
|
+
x="0.87116426"
|
|
147
|
+
y="23.253386"
|
|
148
|
+
width="11.411776"
|
|
149
|
+
height="11.081475"
|
|
150
|
+
id="page17"
|
|
151
|
+
margin="0"
|
|
152
|
+
bleed="0"
|
|
153
|
+
inkscape:label="commit_tree" />
|
|
154
|
+
<inkscape:page
|
|
155
|
+
x="13.433673"
|
|
156
|
+
y="23.431927"
|
|
157
|
+
width="11.41"
|
|
158
|
+
height="11.08"
|
|
159
|
+
id="page18"
|
|
160
|
+
margin="0"
|
|
161
|
+
bleed="0"
|
|
162
|
+
inkscape:label="side_effects" />
|
|
163
|
+
<inkscape:page
|
|
164
|
+
x="26.704536"
|
|
165
|
+
y="23.588448"
|
|
166
|
+
width="11.41"
|
|
167
|
+
height="11.08"
|
|
168
|
+
id="page22"
|
|
169
|
+
margin="0"
|
|
170
|
+
bleed="0"
|
|
171
|
+
inkscape:label="history_list" />
|
|
172
|
+
<inkscape:page
|
|
173
|
+
x="37.728115"
|
|
174
|
+
y="14.74278"
|
|
175
|
+
width="5.8499999"
|
|
176
|
+
height="5.9900002"
|
|
177
|
+
id="page23"
|
|
178
|
+
margin="0"
|
|
179
|
+
bleed="0"
|
|
180
|
+
inkscape:label="reload" />
|
|
181
|
+
<inkscape:page
|
|
182
|
+
x="41.41457"
|
|
183
|
+
y="23.739929"
|
|
184
|
+
width="7"
|
|
185
|
+
height="7"
|
|
186
|
+
id="page3"
|
|
187
|
+
margin="0"
|
|
188
|
+
bleed="0"
|
|
189
|
+
inkscape:label="tree_column" />
|
|
190
|
+
<inkscape:page
|
|
191
|
+
x="49.375263"
|
|
192
|
+
y="23.668852"
|
|
193
|
+
width="7"
|
|
194
|
+
height="7"
|
|
195
|
+
id="page9"
|
|
196
|
+
margin="0"
|
|
197
|
+
bleed="0"
|
|
198
|
+
inkscape:label="tree_end" />
|
|
199
|
+
<inkscape:page
|
|
200
|
+
x="57.525497"
|
|
201
|
+
y="23.787315"
|
|
202
|
+
width="7"
|
|
203
|
+
height="7"
|
|
204
|
+
id="page10"
|
|
205
|
+
margin="0"
|
|
206
|
+
bleed="0"
|
|
207
|
+
inkscape:label="tree_junction"
|
|
208
|
+
inkscape:export-filename="tree_junction.png"
|
|
209
|
+
inkscape:export-xdpi="96"
|
|
210
|
+
inkscape:export-ydpi="96" />
|
|
211
|
+
<inkscape:page
|
|
212
|
+
x="-0.23692545"
|
|
213
|
+
y="-12.746589"
|
|
214
|
+
width="11.940001"
|
|
215
|
+
height="11.940001"
|
|
216
|
+
id="page12"
|
|
217
|
+
margin="0"
|
|
218
|
+
bleed="0"
|
|
219
|
+
inkscape:label="filter" />
|
|
220
|
+
<inkscape:page
|
|
221
|
+
x="14.405067"
|
|
222
|
+
y="-13.504751"
|
|
223
|
+
width="11.940001"
|
|
224
|
+
height="11.940001"
|
|
225
|
+
id="page19"
|
|
226
|
+
margin="0"
|
|
227
|
+
bleed="0"
|
|
228
|
+
inkscape:label="breakpoint_unset" />
|
|
229
|
+
<inkscape:page
|
|
230
|
+
x="48.048058"
|
|
231
|
+
y="-13.335514"
|
|
232
|
+
width="18.860001"
|
|
233
|
+
height="11.940001"
|
|
234
|
+
id="page20"
|
|
235
|
+
margin="0"
|
|
236
|
+
bleed="0"
|
|
237
|
+
inkscape:label="eye_closed" />
|
|
238
|
+
<inkscape:page
|
|
239
|
+
x="65.484376"
|
|
240
|
+
y="0.99218752"
|
|
241
|
+
width="13.427604"
|
|
242
|
+
height="12.964584"
|
|
243
|
+
id="page25"
|
|
244
|
+
inkscape:label="bug" />
|
|
245
|
+
<inkscape:page
|
|
246
|
+
x="0.77174079"
|
|
247
|
+
y="36.43552"
|
|
248
|
+
width="11.41"
|
|
249
|
+
height="11.08"
|
|
250
|
+
id="page30"
|
|
251
|
+
margin="0"
|
|
252
|
+
bleed="0"
|
|
253
|
+
inkscape:label="graph" />
|
|
254
|
+
<inkscape:page
|
|
255
|
+
x="69.503441"
|
|
256
|
+
y="19.457222"
|
|
257
|
+
width="11.940001"
|
|
258
|
+
height="11.940001"
|
|
259
|
+
id="page39"
|
|
260
|
+
margin="0"
|
|
261
|
+
bleed="0"
|
|
262
|
+
inkscape:label="collapse" />
|
|
263
|
+
<inkscape:page
|
|
264
|
+
x="82.833504"
|
|
265
|
+
y="19.503996"
|
|
266
|
+
width="11.940001"
|
|
267
|
+
height="11.940001"
|
|
268
|
+
id="page40"
|
|
269
|
+
margin="0"
|
|
270
|
+
bleed="0"
|
|
271
|
+
inkscape:label="expand" />
|
|
272
|
+
<inkscape:page
|
|
273
|
+
x="82.020836"
|
|
274
|
+
y="0.79374999"
|
|
275
|
+
width="11.940001"
|
|
276
|
+
height="11.940001"
|
|
277
|
+
id="page21"
|
|
278
|
+
margin="0"
|
|
279
|
+
bleed="0"
|
|
280
|
+
inkscape:label="selection" />
|
|
281
|
+
<inkscape:page
|
|
282
|
+
x="45.376041"
|
|
283
|
+
y="15.974219"
|
|
284
|
+
width="5.8499999"
|
|
285
|
+
height="5.9900002"
|
|
286
|
+
id="page29"
|
|
287
|
+
margin="0"
|
|
288
|
+
bleed="0"
|
|
289
|
+
inkscape:label="step_over_children" />
|
|
290
|
+
<inkscape:page
|
|
291
|
+
x="41.533685"
|
|
292
|
+
y="35.874253"
|
|
293
|
+
width="12.488169"
|
|
294
|
+
height="3.8353178"
|
|
295
|
+
id="page31"
|
|
296
|
+
inkscape:label="ancestor_column" />
|
|
297
|
+
<inkscape:page
|
|
298
|
+
x="55.378246"
|
|
299
|
+
y="35.850868"
|
|
300
|
+
width="12.49"
|
|
301
|
+
height="3.8400002"
|
|
302
|
+
id="page34"
|
|
303
|
+
margin="0"
|
|
304
|
+
bleed="0"
|
|
305
|
+
inkscape:label="ancestor_skip_row_column" />
|
|
306
|
+
<inkscape:page
|
|
307
|
+
x="22.497413"
|
|
308
|
+
y="35.546848"
|
|
309
|
+
width="6.8287365"
|
|
310
|
+
height="13.142979"
|
|
311
|
+
id="page41"
|
|
312
|
+
inkscape:label="vertical_grab_handle" />
|
|
313
|
+
<inkscape:page
|
|
314
|
+
x="-22.684502"
|
|
315
|
+
y="30.682543"
|
|
316
|
+
width="8"
|
|
317
|
+
height="8"
|
|
318
|
+
id="page42"
|
|
319
|
+
margin="0"
|
|
320
|
+
bleed="0"
|
|
321
|
+
inkscape:label="commit" />
|
|
322
|
+
<inkscape:page
|
|
323
|
+
x="-35.59362"
|
|
324
|
+
y="30.635771"
|
|
325
|
+
width="8"
|
|
326
|
+
height="8"
|
|
327
|
+
id="page43"
|
|
328
|
+
margin="0"
|
|
329
|
+
bleed="0"
|
|
330
|
+
inkscape:label="effect" />
|
|
331
|
+
<inkscape:page
|
|
332
|
+
x="-30.214821"
|
|
333
|
+
y="40.457924"
|
|
334
|
+
width="8"
|
|
335
|
+
height="8"
|
|
336
|
+
id="page44"
|
|
337
|
+
margin="0"
|
|
338
|
+
bleed="0"
|
|
339
|
+
inkscape:label="thread" />
|
|
340
|
+
<inkscape:page
|
|
341
|
+
x="-41.159508"
|
|
342
|
+
y="40.177292"
|
|
343
|
+
width="8"
|
|
344
|
+
height="8"
|
|
345
|
+
id="page45"
|
|
346
|
+
margin="0"
|
|
347
|
+
bleed="0"
|
|
348
|
+
inkscape:label="hook" />
|
|
349
|
+
</sodipodi:namedview>
|
|
350
|
+
<defs
|
|
351
|
+
id="defs1">
|
|
352
|
+
<marker
|
|
353
|
+
style="overflow:visible"
|
|
354
|
+
id="marker20"
|
|
355
|
+
refX="0"
|
|
356
|
+
refY="0"
|
|
357
|
+
orient="auto-start-reverse"
|
|
358
|
+
inkscape:stockid="Triangle arrow"
|
|
359
|
+
markerWidth="0.40000001"
|
|
360
|
+
markerHeight="0.40000001"
|
|
361
|
+
viewBox="0 0 1 1"
|
|
362
|
+
inkscape:isstock="true"
|
|
363
|
+
inkscape:collect="always"
|
|
364
|
+
preserveAspectRatio="xMidYMid">
|
|
365
|
+
<path
|
|
366
|
+
transform="scale(0.5)"
|
|
367
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
368
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
369
|
+
id="path20" />
|
|
370
|
+
</marker>
|
|
371
|
+
<marker
|
|
372
|
+
style="overflow:visible"
|
|
373
|
+
id="Triangle"
|
|
374
|
+
refX="0"
|
|
375
|
+
refY="0"
|
|
376
|
+
orient="auto-start-reverse"
|
|
377
|
+
inkscape:stockid="Triangle arrow"
|
|
378
|
+
markerWidth="0.5"
|
|
379
|
+
markerHeight="0.5"
|
|
380
|
+
viewBox="0 0 1 1"
|
|
381
|
+
inkscape:isstock="true"
|
|
382
|
+
inkscape:collect="always"
|
|
383
|
+
preserveAspectRatio="xMidYMid">
|
|
384
|
+
<path
|
|
385
|
+
transform="scale(0.5)"
|
|
386
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
387
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
388
|
+
id="path135" />
|
|
389
|
+
</marker>
|
|
390
|
+
<inkscape:path-effect
|
|
391
|
+
effect="mirror_symmetry"
|
|
392
|
+
start_point="31.938135,7.2113692"
|
|
393
|
+
end_point="22.778005,7.2050598"
|
|
394
|
+
center_point="27.35807,7.2082145"
|
|
395
|
+
id="path-effect3"
|
|
396
|
+
is_visible="true"
|
|
397
|
+
lpeversion="1.2"
|
|
398
|
+
lpesatellites=""
|
|
399
|
+
mode="free"
|
|
400
|
+
discard_orig_path="false"
|
|
401
|
+
fuse_paths="true"
|
|
402
|
+
oposite_fuse="true"
|
|
403
|
+
split_items="false"
|
|
404
|
+
split_open="false"
|
|
405
|
+
link_styles="false" />
|
|
406
|
+
<inkscape:path-effect
|
|
407
|
+
effect="mirror_symmetry"
|
|
408
|
+
start_point="31.938135,7.2113692"
|
|
409
|
+
end_point="22.778005,7.2050598"
|
|
410
|
+
center_point="27.35807,7.2082145"
|
|
411
|
+
id="path-effect3-0"
|
|
412
|
+
is_visible="true"
|
|
413
|
+
lpeversion="1.2"
|
|
414
|
+
lpesatellites=""
|
|
415
|
+
mode="free"
|
|
416
|
+
discard_orig_path="false"
|
|
417
|
+
fuse_paths="true"
|
|
418
|
+
oposite_fuse="true"
|
|
419
|
+
split_items="false"
|
|
420
|
+
split_open="false"
|
|
421
|
+
link_styles="false" />
|
|
422
|
+
<inkscape:path-effect
|
|
423
|
+
effect="mirror_symmetry"
|
|
424
|
+
start_point="31.938135,7.2113692"
|
|
425
|
+
end_point="22.778005,7.2050598"
|
|
426
|
+
center_point="27.35807,7.2082145"
|
|
427
|
+
id="path-effect3-5"
|
|
428
|
+
is_visible="true"
|
|
429
|
+
lpeversion="1.2"
|
|
430
|
+
lpesatellites=""
|
|
431
|
+
mode="free"
|
|
432
|
+
discard_orig_path="false"
|
|
433
|
+
fuse_paths="true"
|
|
434
|
+
oposite_fuse="true"
|
|
435
|
+
split_items="false"
|
|
436
|
+
split_open="false"
|
|
437
|
+
link_styles="false" />
|
|
438
|
+
</defs>
|
|
439
|
+
<g
|
|
440
|
+
inkscape:label="Layer 1"
|
|
441
|
+
inkscape:groupmode="layer"
|
|
442
|
+
id="layer1"
|
|
443
|
+
transform="translate(-5.4966703,-2.2270989)">
|
|
444
|
+
<path
|
|
445
|
+
sodipodi:type="star"
|
|
446
|
+
style="fill:#ffa504;fill-opacity:1;stroke:none;stroke-width:0.265316;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
447
|
+
id="path22-8-8"
|
|
448
|
+
inkscape:flatsided="false"
|
|
449
|
+
sodipodi:sides="4"
|
|
450
|
+
sodipodi:cx="24.806093"
|
|
451
|
+
sodipodi:cy="32.743095"
|
|
452
|
+
sodipodi:r1="2.4320371"
|
|
453
|
+
sodipodi:r2="1.2160186"
|
|
454
|
+
sodipodi:arg1="0.52359878"
|
|
455
|
+
sodipodi:arg2="1.3089969"
|
|
456
|
+
inkscape:rounded="0"
|
|
457
|
+
inkscape:randomized="0"
|
|
458
|
+
d="m 26.912299,33.959114 -1.791477,-0.04143 -1.530747,0.931622 0.04143,-1.791477 -0.931622,-1.530747 1.791477,0.04143 1.530748,-0.931623 -0.04143,1.791478 z"
|
|
459
|
+
inkscape:transform-center-y="0.43978327"
|
|
460
|
+
transform="matrix(0.35679495,-0.9351962,0.9351962,0.35679495,-65.682752,48.509315)"
|
|
461
|
+
inkscape:transform-center-x="-0.18408537" />
|
|
462
|
+
<path
|
|
463
|
+
id="path46"
|
|
464
|
+
style="fill:#5c3a78;fill-opacity:1;stroke:none;stroke-width:0.157052;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
465
|
+
d="m -29.684932,43.048057 c 0,0 -0.276655,0.281736 -0.676323,0.68985 l -0.306191,-0.30619 -1.121467,1.121468 0.318487,0.318487 c -0.253532,0.259347 -0.507356,0.519273 -0.741497,0.759327 a 0.61213829,0.61213829 0 0 0 -0.211505,-0.03751 0.61213829,0.61213829 0 0 0 -0.61238,0.611765 0.61213829,0.61213829 0 0 0 0.04365,0.228106 c -0.05605,0.05796 -0.105033,0.108845 -0.146332,0.151866 -0.340809,0.35501 -0.720885,0.783584 -0.929638,1.26411 -0.10438,0.240263 -0.165391,0.49917 -0.137108,0.764245 0.02828,0.265077 0.151286,0.52757 0.374437,0.750721 0.209688,0.209688 0.419871,0.344038 0.636974,0.399644 0.217103,0.05561 0.430995,0.02352 0.612995,-0.05103 0.363999,-0.149108 0.638208,-0.436428 0.927179,-0.659723 l -0.0018,-0.0025 1.334817,-1.109171 -1.157743,0.438381 0.102064,0.230564 -0.210891,-0.156783 -0.380586,0.194904 -0.0018,-0.0025 c -0.32317,0.249721 -0.592696,0.502846 -0.806055,0.590247 -0.106676,0.0437 -0.18881,0.05441 -0.290819,0.02828 -0.102012,-0.02613 -0.233705,-0.09721 -0.399646,-0.263151 -0.15248,-0.152481 -0.211427,-0.292747 -0.227491,-0.443299 -0.01606,-0.150551 0.01781,-0.320724 0.09776,-0.504784 0.159922,-0.368121 0.502442,-0.772257 0.82942,-1.11286 0.04167,-0.0434 0.09155,-0.09515 0.14879,-0.154325 a 0.61213829,0.61213829 0 0 0 0.19429,0.03136 0.61213829,0.61213829 0 0 0 0.611765,-0.612381 0.61213829,0.61213829 0 0 0 -0.03689,-0.20966 c 0.233956,-0.239873 0.488101,-0.500089 0.742111,-0.759942 l 0.320946,0.320947 1.121467,-1.121468 -0.333242,-0.333243 c 0.401352,-0.409872 0.679398,-0.693539 0.679398,-0.693539 z" />
|
|
466
|
+
<path
|
|
467
|
+
style="fill:#5d7388;fill-opacity:1;stroke:#349034;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
468
|
+
d="M 12.130583,28.051973 8.7921825,33.83425"
|
|
469
|
+
id="path18" />
|
|
470
|
+
<path
|
|
471
|
+
style="fill:#5d7388;fill-opacity:1;stroke:#349034;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
472
|
+
d="m 12.038061,28.051973 3.338401,5.782277"
|
|
473
|
+
id="path18-3" />
|
|
474
|
+
<g
|
|
475
|
+
id="g20">
|
|
476
|
+
<circle
|
|
477
|
+
style="fill:#d76a51;fill-opacity:1;stroke-width:0.20519"
|
|
478
|
+
id="path1"
|
|
479
|
+
cx="11.467192"
|
|
480
|
+
cy="8.1976204"
|
|
481
|
+
r="4.6302686" />
|
|
482
|
+
<circle
|
|
483
|
+
style="fill:#c83d1d;fill-opacity:1;stroke-width:0.162849"
|
|
484
|
+
id="path1-3"
|
|
485
|
+
cx="11.467192"
|
|
486
|
+
cy="8.1976204"
|
|
487
|
+
r="3.6748166" />
|
|
488
|
+
</g>
|
|
489
|
+
<g
|
|
490
|
+
id="g19"
|
|
491
|
+
transform="translate(0.42282735,0.21148449)">
|
|
492
|
+
<path
|
|
493
|
+
id="path1-0"
|
|
494
|
+
style="fill:#ba4c4c;fill-opacity:1;stroke-width:0.20519"
|
|
495
|
+
d="m 25.449343,-10.149018 c -2.55718,3.3e-5 -4.630175,2.073029 -4.630208,4.6302086 3.3e-5,2.5571795 2.073028,4.63017485 4.630208,4.63020832 2.55718,-3.292e-5 4.630176,-2.07302842 4.630209,-4.63020832 -3.3e-5,-2.55718 -2.073029,-4.6301756 -4.630209,-4.6302086 z m -2.3e-5,1.2973424 c 1.840668,5.25e-5 3.332813,1.4921966 3.332866,3.3328662 -5.3e-5,1.8406696 -1.492198,3.3328137 -3.332866,3.3328662 -1.840853,2.055e-4 -3.333282,-1.4920142 -3.333335,-3.3328662 5.3e-5,-1.840852 1.492482,-3.3330717 3.333335,-3.3328662 z"
|
|
496
|
+
sodipodi:nodetypes="cccccccccc" />
|
|
497
|
+
</g>
|
|
498
|
+
<path
|
|
499
|
+
style="fill:#d8dee3;fill-opacity:1;stroke-width:0.264583"
|
|
500
|
+
d="m 22.981969,7.2052003 c 0.719459,-0.8803573 2.613334,-2.0669287 4.447971,-2.0669287 1.834461,0 3.573513,1.2636232 4.342199,2.0729833 -0.7698,0.8083004 -2.510591,2.0695267 -4.345051,2.0669995 -1.834635,-0.00253 -3.726873,-1.1917065 -4.445119,-2.0730541 z"
|
|
501
|
+
id="path2-3"
|
|
502
|
+
sodipodi:nodetypes="csc"
|
|
503
|
+
inkscape:path-effect="#path-effect3-5"
|
|
504
|
+
inkscape:original-d="m 22.946229,7.2499183 c 0.690656,-0.8843033 2.61782,-2.1116467 4.483711,-2.1116467 1.86589,0 3.633073,1.3072917 4.380848,2.1141733"
|
|
505
|
+
transform="matrix(1.9056361,0,0,1.9056361,10.674422,-18.64767)" />
|
|
506
|
+
<path
|
|
507
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.264583"
|
|
508
|
+
d="m 22.981969,7.2052003 c 0.719459,-0.8803573 2.613334,-2.0669287 4.447971,-2.0669287 1.834461,0 3.573513,1.2636232 4.342199,2.0729833 -0.7698,0.8083004 -2.510591,2.0695267 -4.345051,2.0669995 -1.834635,-0.00253 -3.726873,-1.1917065 -4.445119,-2.0730541 z"
|
|
509
|
+
id="path2"
|
|
510
|
+
sodipodi:nodetypes="csc"
|
|
511
|
+
inkscape:path-effect="#path-effect3"
|
|
512
|
+
inkscape:original-d="m 22.946229,7.2499183 c 0.690656,-0.8843033 2.61782,-2.1116467 4.483711,-2.1116467 1.86589,0 3.633073,1.3072917 4.380848,2.1141733"
|
|
513
|
+
transform="matrix(1.9056361,0,0,1.9056361,-9.2663453,-18.765244)" />
|
|
514
|
+
<ellipse
|
|
515
|
+
style="fill:#d8dee3;fill-opacity:1;stroke-width:0.523901"
|
|
516
|
+
id="path3"
|
|
517
|
+
cx="42.858597"
|
|
518
|
+
cy="-5.1301341"
|
|
519
|
+
rx="4.3542557"
|
|
520
|
+
ry="2.8054268" />
|
|
521
|
+
<circle
|
|
522
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.778009"
|
|
523
|
+
id="path4"
|
|
524
|
+
cx="42.754101"
|
|
525
|
+
cy="-5.1649709"
|
|
526
|
+
r="1.6023663" />
|
|
527
|
+
<g
|
|
528
|
+
id="g21"
|
|
529
|
+
transform="translate(-0.43087207,0.05307317)">
|
|
530
|
+
<path
|
|
531
|
+
id="path2-5"
|
|
532
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.264583"
|
|
533
|
+
d="m 31.014776,6.5362512 a 3.7407294,1.9297065 0 0 1 -3.737359,1.8486123 3.7407294,1.9297065 0 0 1 -3.722986,-1.740684 c -0.232333,0.1913445 -0.426494,0.3824622 -0.572454,0.5610649 0.718245,0.8813476 2.610495,2.0703482 4.44513,2.0728755 1.83446,0.00253 3.575266,-1.2586092 4.345066,-2.0669096 -0.194863,-0.2051742 -0.45207,-0.439386 -0.757397,-0.6749591 z"
|
|
534
|
+
transform="matrix(1.9056361,0,0,1.9056361,11.105496,-18.698231)" />
|
|
535
|
+
</g>
|
|
536
|
+
<path
|
|
537
|
+
sodipodi:type="star"
|
|
538
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.264583"
|
|
539
|
+
id="path5"
|
|
540
|
+
inkscape:flatsided="false"
|
|
541
|
+
sodipodi:sides="3"
|
|
542
|
+
sodipodi:cx="7.9091253"
|
|
543
|
+
sodipodi:cy="18.477663"
|
|
544
|
+
sodipodi:r1="2.9789548"
|
|
545
|
+
sodipodi:r2="1.4894774"
|
|
546
|
+
sodipodi:arg1="0"
|
|
547
|
+
sodipodi:arg2="1.0471976"
|
|
548
|
+
inkscape:rounded="0"
|
|
549
|
+
inkscape:randomized="0"
|
|
550
|
+
d="m 10.88808,18.477663 -2.234216,1.289925 -2.2342161,1.289926 0,-2.579851 0,-2.57985 2.2342162,1.289925 z"
|
|
551
|
+
inkscape:transform-center-x="-0.74473869"
|
|
552
|
+
transform="translate(0.9381769,1.3402527)" />
|
|
553
|
+
<path
|
|
554
|
+
id="path5-2"
|
|
555
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.264583"
|
|
556
|
+
inkscape:transform-center-x="-0.74473869"
|
|
557
|
+
d="m 21.597294,17.238069 v 2.579688 2.580204 l 2.233972,-1.29036 1.112077,-0.642339 v 1.727027 c 0,0.04737 0.03841,0.08527 0.08578,0.08527 h 1.335836 c 0.04737,0 0.08578,-0.03789 0.08578,-0.08527 v -4.68912 c 0,-0.04737 -0.03841,-0.08527 -0.08578,-0.08527 h -1.335836 c -0.04737,0 -0.08578,0.03789 -0.08578,0.08527 v 1.667082 l -1.112077,-0.642338 z" />
|
|
558
|
+
<rect
|
|
559
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.22508"
|
|
560
|
+
id="rect5"
|
|
561
|
+
width="1.5069969"
|
|
562
|
+
height="4.8598962"
|
|
563
|
+
x="15.211948"
|
|
564
|
+
y="17.417656"
|
|
565
|
+
ry="0.085511364" />
|
|
566
|
+
<rect
|
|
567
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.22508"
|
|
568
|
+
id="rect5-5"
|
|
569
|
+
width="1.5069969"
|
|
570
|
+
height="4.8598962"
|
|
571
|
+
x="17.77166"
|
|
572
|
+
y="17.417656"
|
|
573
|
+
ry="0.085511364" />
|
|
574
|
+
<circle
|
|
575
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.293366"
|
|
576
|
+
id="path7"
|
|
577
|
+
cx="30.252504"
|
|
578
|
+
cy="20.765179"
|
|
579
|
+
r="1.0245281" />
|
|
580
|
+
<circle
|
|
581
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.293366"
|
|
582
|
+
id="path7-2"
|
|
583
|
+
cx="52.589622"
|
|
584
|
+
cy="19.577124"
|
|
585
|
+
r="1.0245281" />
|
|
586
|
+
<circle
|
|
587
|
+
style="fill:none;fill-opacity:1;stroke:#5d7388;stroke-width:0.178757;stroke-linejoin:miter;stroke-dasharray:0.178757, 0.357514;stroke-dashoffset:0;stroke-opacity:1"
|
|
588
|
+
id="path7-0"
|
|
589
|
+
cx="33.435463"
|
|
590
|
+
cy="20.764971"
|
|
591
|
+
r="1.0010481" />
|
|
592
|
+
<circle
|
|
593
|
+
style="fill:none;fill-opacity:1;stroke:#5d7388;stroke-width:0.178757;stroke-linejoin:miter;stroke-dasharray:0.178757, 0.357514;stroke-dashoffset:0;stroke-opacity:1"
|
|
594
|
+
id="path7-0-2"
|
|
595
|
+
cx="52.596684"
|
|
596
|
+
cy="22.512857"
|
|
597
|
+
r="1.0010481" />
|
|
598
|
+
<path
|
|
599
|
+
style="fill:none;fill-opacity:1;stroke:#5d7388;stroke-width:0.265;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Triangle)"
|
|
600
|
+
d="m 30.291345,18.72896 c 0,-1.675316 3.032323,-1.625056 3.049075,-0.134029"
|
|
601
|
+
id="path8"
|
|
602
|
+
sodipodi:nodetypes="cc" />
|
|
603
|
+
<rect
|
|
604
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.264999;stroke-linejoin:miter;stroke-dasharray:0.165, 0.329999;stroke-dashoffset:0;stroke-opacity:1"
|
|
605
|
+
id="rect8"
|
|
606
|
+
width="2.9141829"
|
|
607
|
+
height="2.1678677"
|
|
608
|
+
x="37.26936"
|
|
609
|
+
y="17.228544"
|
|
610
|
+
ry="0.30155686" />
|
|
611
|
+
<path
|
|
612
|
+
style="fill:none;fill-opacity:1;stroke:#5d7388;stroke-width:0.365;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:0.365, 0.365;stroke-dashoffset:0;stroke-opacity:1"
|
|
613
|
+
d="m 38.619832,18.228639 v 4.039579"
|
|
614
|
+
id="path10"
|
|
615
|
+
sodipodi:nodetypes="cc" />
|
|
616
|
+
<path
|
|
617
|
+
style="fill:none;fill-opacity:1;stroke:#5d7388;stroke-width:0.365;stroke-linejoin:miter;stroke-dasharray:0.365, 0.365;stroke-dashoffset:0;stroke-opacity:1"
|
|
618
|
+
d="m 39.173631,20.604732 h 2.037661"
|
|
619
|
+
id="path11"
|
|
620
|
+
sodipodi:nodetypes="cc" />
|
|
621
|
+
<path
|
|
622
|
+
style="fill:none;fill-opacity:1;stroke:#5d7388;stroke-width:0.365;stroke-linejoin:miter;stroke-dasharray:0.365, 0.365;stroke-dashoffset:0;stroke-opacity:1"
|
|
623
|
+
d="m 39.161785,22.061823 h 2.037661"
|
|
624
|
+
id="path11-6"
|
|
625
|
+
sodipodi:nodetypes="cc" />
|
|
626
|
+
<g
|
|
627
|
+
id="g12">
|
|
628
|
+
<rect
|
|
629
|
+
style="fill:#c7d1d9;fill-opacity:1;stroke:#5d7388;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
630
|
+
id="rect11"
|
|
631
|
+
width="7.3140426"
|
|
632
|
+
height="9.9508686"
|
|
633
|
+
x="-16.158314"
|
|
634
|
+
y="2.9852602"
|
|
635
|
+
ry="0" />
|
|
636
|
+
<rect
|
|
637
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
638
|
+
id="rect12"
|
|
639
|
+
width="3.3841388"
|
|
640
|
+
height="0.63661981"
|
|
641
|
+
x="-15.746336"
|
|
642
|
+
y="3.7683892"
|
|
643
|
+
ry="0.23643248" />
|
|
644
|
+
<rect
|
|
645
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
646
|
+
id="rect12-1"
|
|
647
|
+
width="3.3841388"
|
|
648
|
+
height="0.63661981"
|
|
649
|
+
x="-15.059457"
|
|
650
|
+
y="4.6060472"
|
|
651
|
+
ry="0.23643248" />
|
|
652
|
+
<rect
|
|
653
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
654
|
+
id="rect12-6"
|
|
655
|
+
width="1.1057094"
|
|
656
|
+
height="0.63662004"
|
|
657
|
+
x="-15.746336"
|
|
658
|
+
y="5.4437051"
|
|
659
|
+
ry="0.23643248" />
|
|
660
|
+
<rect
|
|
661
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
662
|
+
id="rect12-1-5"
|
|
663
|
+
width="1.1392158"
|
|
664
|
+
height="0.63662004"
|
|
665
|
+
x="-15.746336"
|
|
666
|
+
y="6.281363"
|
|
667
|
+
ry="0.23643248" />
|
|
668
|
+
<rect
|
|
669
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
670
|
+
id="rect12-4"
|
|
671
|
+
width="1.3402537"
|
|
672
|
+
height="0.63662004"
|
|
673
|
+
x="-15.176728"
|
|
674
|
+
y="7.1860337"
|
|
675
|
+
ry="0.23643248" />
|
|
676
|
+
<rect
|
|
677
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
678
|
+
id="rect12-1-52"
|
|
679
|
+
width="3.0658281"
|
|
680
|
+
height="0.63661957"
|
|
681
|
+
x="-15.428026"
|
|
682
|
+
y="8.0236921"
|
|
683
|
+
ry="0.23643248" />
|
|
684
|
+
<rect
|
|
685
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
686
|
+
id="rect12-6-5"
|
|
687
|
+
width="3.4176464"
|
|
688
|
+
height="0.63661957"
|
|
689
|
+
x="-15.39452"
|
|
690
|
+
y="8.8613501"
|
|
691
|
+
ry="0.23643248" />
|
|
692
|
+
<rect
|
|
693
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
694
|
+
id="rect12-1-5-4"
|
|
695
|
+
width="3.3841388"
|
|
696
|
+
height="0.63661981"
|
|
697
|
+
x="-15.746336"
|
|
698
|
+
y="9.699008"
|
|
699
|
+
ry="0.23643248" />
|
|
700
|
+
<rect
|
|
701
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
702
|
+
id="rect12-1-5-0"
|
|
703
|
+
width="2.9150507"
|
|
704
|
+
height="0.63661957"
|
|
705
|
+
x="-15.210235"
|
|
706
|
+
y="10.620432"
|
|
707
|
+
ry="0.23643248" />
|
|
708
|
+
<rect
|
|
709
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
710
|
+
id="rect12-4-7"
|
|
711
|
+
width="3.3841388"
|
|
712
|
+
height="0.63661981"
|
|
713
|
+
x="-15.260494"
|
|
714
|
+
y="11.525103"
|
|
715
|
+
ry="0.23643248" />
|
|
716
|
+
</g>
|
|
717
|
+
<circle
|
|
718
|
+
style="fill:#d76a51;fill-opacity:1;stroke-width:0.144294"
|
|
719
|
+
id="path1-4"
|
|
720
|
+
cx="-10.329949"
|
|
721
|
+
cy="7.6289997"
|
|
722
|
+
r="3.2561009" />
|
|
723
|
+
<circle
|
|
724
|
+
style="fill:#c83d1d;fill-opacity:1;stroke-width:0.114519"
|
|
725
|
+
id="path1-3-9"
|
|
726
|
+
cx="-10.329949"
|
|
727
|
+
cy="7.6289997"
|
|
728
|
+
r="2.5842073" />
|
|
729
|
+
<g
|
|
730
|
+
id="g12-9"
|
|
731
|
+
transform="translate(0,14.943818)">
|
|
732
|
+
<rect
|
|
733
|
+
style="fill:#c7d1d9;fill-opacity:1;stroke:#5d7388;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
734
|
+
id="rect11-5"
|
|
735
|
+
width="7.3140426"
|
|
736
|
+
height="9.9508686"
|
|
737
|
+
x="-16.158314"
|
|
738
|
+
y="2.9852602"
|
|
739
|
+
ry="0" />
|
|
740
|
+
<rect
|
|
741
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
742
|
+
id="rect12-0"
|
|
743
|
+
width="3.3841388"
|
|
744
|
+
height="0.63661981"
|
|
745
|
+
x="-15.746336"
|
|
746
|
+
y="3.7683892"
|
|
747
|
+
ry="0.23643248" />
|
|
748
|
+
<rect
|
|
749
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
750
|
+
id="rect12-1-4"
|
|
751
|
+
width="3.3841388"
|
|
752
|
+
height="0.63661981"
|
|
753
|
+
x="-15.059457"
|
|
754
|
+
y="4.6060472"
|
|
755
|
+
ry="0.23643248" />
|
|
756
|
+
<rect
|
|
757
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
758
|
+
id="rect12-6-8"
|
|
759
|
+
width="1.1057094"
|
|
760
|
+
height="0.63662004"
|
|
761
|
+
x="-15.746336"
|
|
762
|
+
y="5.4437051"
|
|
763
|
+
ry="0.23643248" />
|
|
764
|
+
<rect
|
|
765
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
766
|
+
id="rect12-1-5-7"
|
|
767
|
+
width="1.1392158"
|
|
768
|
+
height="0.63662004"
|
|
769
|
+
x="-15.746336"
|
|
770
|
+
y="6.281363"
|
|
771
|
+
ry="0.23643248" />
|
|
772
|
+
<rect
|
|
773
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
774
|
+
id="rect12-4-1"
|
|
775
|
+
width="1.3402537"
|
|
776
|
+
height="0.63662004"
|
|
777
|
+
x="-15.176728"
|
|
778
|
+
y="7.1860337"
|
|
779
|
+
ry="0.23643248" />
|
|
780
|
+
<rect
|
|
781
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
782
|
+
id="rect12-1-52-7"
|
|
783
|
+
width="3.0658281"
|
|
784
|
+
height="0.63661957"
|
|
785
|
+
x="-15.428026"
|
|
786
|
+
y="8.0236921"
|
|
787
|
+
ry="0.23643248" />
|
|
788
|
+
<rect
|
|
789
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
790
|
+
id="rect12-6-5-2"
|
|
791
|
+
width="3.4176464"
|
|
792
|
+
height="0.63661957"
|
|
793
|
+
x="-15.39452"
|
|
794
|
+
y="8.8613501"
|
|
795
|
+
ry="0.23643248" />
|
|
796
|
+
<rect
|
|
797
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
798
|
+
id="rect12-1-5-4-7"
|
|
799
|
+
width="3.3841388"
|
|
800
|
+
height="0.63661981"
|
|
801
|
+
x="-15.746336"
|
|
802
|
+
y="9.699008"
|
|
803
|
+
ry="0.23643248" />
|
|
804
|
+
<rect
|
|
805
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
806
|
+
id="rect12-1-5-0-2"
|
|
807
|
+
width="2.9150507"
|
|
808
|
+
height="0.63661957"
|
|
809
|
+
x="-15.210235"
|
|
810
|
+
y="10.620432"
|
|
811
|
+
ry="0.23643248" />
|
|
812
|
+
<rect
|
|
813
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
814
|
+
id="rect12-4-7-2"
|
|
815
|
+
width="3.3841388"
|
|
816
|
+
height="0.63661981"
|
|
817
|
+
x="-15.260494"
|
|
818
|
+
y="11.525103"
|
|
819
|
+
ry="0.23643248" />
|
|
820
|
+
</g>
|
|
821
|
+
<circle
|
|
822
|
+
style="fill:#5d8862;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
823
|
+
id="path13"
|
|
824
|
+
cx="43.689053"
|
|
825
|
+
cy="6.4206791"
|
|
826
|
+
r="3.1274157" />
|
|
827
|
+
<rect
|
|
828
|
+
style="fill:#5d8862;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
829
|
+
id="rect13"
|
|
830
|
+
width="10.377335"
|
|
831
|
+
height="2.2960846"
|
|
832
|
+
x="33.192822"
|
|
833
|
+
y="-27.333229"
|
|
834
|
+
ry="0.54492855"
|
|
835
|
+
transform="rotate(45)" />
|
|
836
|
+
<circle
|
|
837
|
+
style="fill:#e0ede1;fill-opacity:1;stroke:none;stroke-width:0.1225;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
838
|
+
id="path13-9"
|
|
839
|
+
cx="43.689053"
|
|
840
|
+
cy="6.4206791"
|
|
841
|
+
r="2.3218691" />
|
|
842
|
+
<g
|
|
843
|
+
id="g14"
|
|
844
|
+
transform="matrix(1.4293703,0,0,1.4293703,5.3740179,-9.179078)">
|
|
845
|
+
<circle
|
|
846
|
+
style="fill:#5d8862;fill-opacity:1;stroke:none;stroke-width:0.112963;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
847
|
+
id="path13-1"
|
|
848
|
+
cx="-12.251043"
|
|
849
|
+
cy="21.341175"
|
|
850
|
+
r="2.1411114" />
|
|
851
|
+
<rect
|
|
852
|
+
style="fill:#5d8862;fill-opacity:1;stroke:none;stroke-width:0.112963;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
853
|
+
id="rect13-1"
|
|
854
|
+
width="7.1045971"
|
|
855
|
+
height="1.5719602"
|
|
856
|
+
x="4.8940549"
|
|
857
|
+
y="23.082003"
|
|
858
|
+
ry="0.37307248"
|
|
859
|
+
transform="rotate(45)" />
|
|
860
|
+
<circle
|
|
861
|
+
style="fill:#e0ede1;fill-opacity:1;stroke:none;stroke-width:0.0838667;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
862
|
+
id="path13-9-5"
|
|
863
|
+
cx="-12.251043"
|
|
864
|
+
cy="21.341175"
|
|
865
|
+
r="1.589613" />
|
|
866
|
+
</g>
|
|
867
|
+
<path
|
|
868
|
+
id="rect15"
|
|
869
|
+
style="fill:#d76a51;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
870
|
+
d="m 55.961807,5.8284295 v 4.0752034 l 7.009391,-0.00155 3.516065,-2.0293335 -3.512447,-2.0360517 z"
|
|
871
|
+
sodipodi:nodetypes="cccccc" />
|
|
872
|
+
<path
|
|
873
|
+
id="rect15-7"
|
|
874
|
+
style="fill:#9babba;fill-opacity:1;stroke:none;stroke-width:0.139224;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
875
|
+
d="m 56.78394,12.51294 v 3.438583 l 5.914398,-0.0013 2.966792,-1.712314 -2.963739,-1.717984 z"
|
|
876
|
+
sodipodi:nodetypes="cccccc" />
|
|
877
|
+
<rect
|
|
878
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.22508"
|
|
879
|
+
id="rect5-3"
|
|
880
|
+
width="1.5069969"
|
|
881
|
+
height="4.8598962"
|
|
882
|
+
x="59.121918"
|
|
883
|
+
y="11.787687"
|
|
884
|
+
ry="0.085511364" />
|
|
885
|
+
<rect
|
|
886
|
+
style="fill:#5d7388;fill-opacity:1;stroke-width:0.22508"
|
|
887
|
+
id="rect5-5-9"
|
|
888
|
+
width="1.5069969"
|
|
889
|
+
height="4.8598962"
|
|
890
|
+
x="61.681629"
|
|
891
|
+
y="11.787687"
|
|
892
|
+
ry="0.085511364" />
|
|
893
|
+
<circle
|
|
894
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
895
|
+
id="path17"
|
|
896
|
+
cx="12.154276"
|
|
897
|
+
cy="28.099358"
|
|
898
|
+
r="1.7295556" />
|
|
899
|
+
<circle
|
|
900
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
901
|
+
id="path17-9"
|
|
902
|
+
cx="8.9320898"
|
|
903
|
+
cy="33.690796"
|
|
904
|
+
r="1.7295556" />
|
|
905
|
+
<circle
|
|
906
|
+
style="fill:#349034;fill-opacity:1;stroke:#2d532d;stroke-width:0.466;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
907
|
+
id="path17-9-4"
|
|
908
|
+
cx="-13.161364"
|
|
909
|
+
cy="36.966751"
|
|
910
|
+
r="2.7882752" />
|
|
911
|
+
<circle
|
|
912
|
+
style="fill:#3fa83f;fill-opacity:1;stroke:none;stroke-width:0.266081;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
913
|
+
id="path17-9-4-4"
|
|
914
|
+
cx="-13.161364"
|
|
915
|
+
cy="36.966751"
|
|
916
|
+
r="2.332309" />
|
|
917
|
+
<circle
|
|
918
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.165;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
919
|
+
id="path17-9-8"
|
|
920
|
+
cx="15.234306"
|
|
921
|
+
cy="33.690796"
|
|
922
|
+
r="1.7295556" />
|
|
923
|
+
<path
|
|
924
|
+
style="fill:#495a6a;fill-opacity:1;stroke:#d66741;stroke-width:1.127;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker20)"
|
|
925
|
+
d="m 22.169364,26.468844 v 8.46111"
|
|
926
|
+
id="path19" />
|
|
927
|
+
<path
|
|
928
|
+
style="fill:none;fill-opacity:1;stroke:#d66741;stroke-width:1.127;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
929
|
+
d="m 22.167968,27.540435 c 0,4.242901 3.906846,0.434477 3.906846,4.911462"
|
|
930
|
+
id="path21"
|
|
931
|
+
sodipodi:nodetypes="cc" />
|
|
932
|
+
<path
|
|
933
|
+
sodipodi:type="star"
|
|
934
|
+
style="fill:#ffa504;fill-opacity:1;stroke:#c83d1d;stroke-width:0.26531606;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
935
|
+
id="path22"
|
|
936
|
+
inkscape:flatsided="false"
|
|
937
|
+
sodipodi:sides="4"
|
|
938
|
+
sodipodi:cx="24.806093"
|
|
939
|
+
sodipodi:cy="32.743095"
|
|
940
|
+
sodipodi:r1="2.4320371"
|
|
941
|
+
sodipodi:r2="1.2160186"
|
|
942
|
+
sodipodi:arg1="0.52359878"
|
|
943
|
+
sodipodi:arg2="1.3089969"
|
|
944
|
+
inkscape:rounded="0"
|
|
945
|
+
inkscape:randomized="0"
|
|
946
|
+
d="m 26.912299,33.959114 -1.791477,-0.04143 -1.530747,0.931622 0.04143,-1.791477 -0.931622,-1.530747 1.791477,0.04143 1.530748,-0.931623 -0.04143,1.791478 z"
|
|
947
|
+
inkscape:transform-center-y="0.13263295"
|
|
948
|
+
transform="matrix(-0.45991503,-0.82240832,0.82240832,-0.45991503,10.833952,67.545152)"
|
|
949
|
+
inkscape:transform-center-x="-0.42876428" />
|
|
950
|
+
<path
|
|
951
|
+
sodipodi:type="star"
|
|
952
|
+
style="fill:#ffa504;fill-opacity:1;stroke:#f08d18;stroke-width:0.33991954;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
953
|
+
id="path22-8"
|
|
954
|
+
inkscape:flatsided="false"
|
|
955
|
+
sodipodi:sides="4"
|
|
956
|
+
sodipodi:cx="24.806093"
|
|
957
|
+
sodipodi:cy="32.743095"
|
|
958
|
+
sodipodi:r1="2.4320371"
|
|
959
|
+
sodipodi:r2="1.2160186"
|
|
960
|
+
sodipodi:arg1="0.52359878"
|
|
961
|
+
sodipodi:arg2="1.3089969"
|
|
962
|
+
inkscape:rounded="0"
|
|
963
|
+
inkscape:randomized="0"
|
|
964
|
+
d="m 26.912299,33.959114 -1.791477,-0.04143 -1.530747,0.931622 0.04143,-1.791477 -0.931622,-1.530747 1.791477,0.04143 1.530748,-0.931623 -0.04143,1.791478 z"
|
|
965
|
+
inkscape:transform-center-y="0.18882662"
|
|
966
|
+
transform="matrix(-0.65477163,-1.1708459,1.1708459,-0.65477163,-48.212244,87.458787)"
|
|
967
|
+
inkscape:transform-center-x="-0.61042222" />
|
|
968
|
+
<rect
|
|
969
|
+
style="fill:#3c89a9;fill-opacity:1;stroke:none;stroke-width:0.665001;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
970
|
+
id="rect22-8"
|
|
971
|
+
width="9.1807308"
|
|
972
|
+
height="2.3454421"
|
|
973
|
+
x="33.448086"
|
|
974
|
+
y="30.126856"
|
|
975
|
+
ry="0.20103791" />
|
|
976
|
+
<circle
|
|
977
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:0.3825, 0.3825;stroke-dashoffset:0;stroke-opacity:1"
|
|
978
|
+
id="path23-1"
|
|
979
|
+
cx="34.523655"
|
|
980
|
+
cy="31.308695"
|
|
981
|
+
r="0.50259477" />
|
|
982
|
+
<rect
|
|
983
|
+
style="fill:#426471;fill-opacity:1;stroke:none;stroke-width:0.665001;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
984
|
+
id="rect22-8-4"
|
|
985
|
+
width="9.1807308"
|
|
986
|
+
height="2.3454421"
|
|
987
|
+
x="33.448086"
|
|
988
|
+
y="33.108917"
|
|
989
|
+
ry="0.20103791" />
|
|
990
|
+
<circle
|
|
991
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:0.3825, 0.3825;stroke-dashoffset:0;stroke-opacity:1"
|
|
992
|
+
id="path23-1-4"
|
|
993
|
+
cx="34.523655"
|
|
994
|
+
cy="34.290756"
|
|
995
|
+
r="0.50259477" />
|
|
996
|
+
<rect
|
|
997
|
+
style="fill:#76c9ed;fill-opacity:1;stroke:none;stroke-width:0.665001;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
998
|
+
id="rect22"
|
|
999
|
+
width="9.1807308"
|
|
1000
|
+
height="2.3454421"
|
|
1001
|
+
x="33.498344"
|
|
1002
|
+
y="27.178297"
|
|
1003
|
+
ry="0.20103791" />
|
|
1004
|
+
<circle
|
|
1005
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:0.3825, 0.3825;stroke-dashoffset:0;stroke-opacity:1"
|
|
1006
|
+
id="path23"
|
|
1007
|
+
cx="34.573914"
|
|
1008
|
+
cy="28.360136"
|
|
1009
|
+
r="0.50259477" />
|
|
1010
|
+
<rect
|
|
1011
|
+
style="fill:#76c9ed;fill-opacity:1;stroke:#328ab0;stroke-width:0.432;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
1012
|
+
id="rect22-3"
|
|
1013
|
+
width="6.8986015"
|
|
1014
|
+
height="2.1699133"
|
|
1015
|
+
x="-24.247269"
|
|
1016
|
+
y="45.683922"
|
|
1017
|
+
ry="0.16047928" />
|
|
1018
|
+
<circle
|
|
1019
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.98822;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:0.494108, 0.494108;stroke-dashoffset:0;stroke-opacity:1"
|
|
1020
|
+
id="path23-14"
|
|
1021
|
+
cx="-23.132378"
|
|
1022
|
+
cy="46.792686"
|
|
1023
|
+
r="0.64924502" />
|
|
1024
|
+
<path
|
|
1025
|
+
id="path24"
|
|
1026
|
+
style="fill:none;stroke:#5d7388;stroke-width:0.909;stroke-dasharray:none;marker-start:url(#marker20)"
|
|
1027
|
+
d="m 47.474521,18.509594 c 0.3553,0.3553 0.575058,0.846143 0.575058,1.388313 0,1.084339 -0.879032,1.96337 -1.963371,1.96337 -1.084339,0 -1.963371,-0.879031 -1.963371,-1.96337 0,-0.54217 0.219758,-1.033013 0.575058,-1.388313"
|
|
1028
|
+
sodipodi:nodetypes="csssc" />
|
|
1029
|
+
<rect
|
|
1030
|
+
style="fill:#303b47;stroke:none;stroke-width:0.658013"
|
|
1031
|
+
id="rect9"
|
|
1032
|
+
width="0.5"
|
|
1033
|
+
height="7.2143836"
|
|
1034
|
+
x="50.11124"
|
|
1035
|
+
y="25.872257"
|
|
1036
|
+
ry="0" />
|
|
1037
|
+
<rect
|
|
1038
|
+
style="fill:#303b47;stroke:none;stroke-width:0.648216"
|
|
1039
|
+
id="rect9-3"
|
|
1040
|
+
width="0.5"
|
|
1041
|
+
height="4.1817374"
|
|
1042
|
+
x="58.071934"
|
|
1043
|
+
y="25.718256"
|
|
1044
|
+
ry="0" />
|
|
1045
|
+
<rect
|
|
1046
|
+
style="fill:#303b47;stroke:none;stroke-width:0.633772"
|
|
1047
|
+
id="rect9-3-1"
|
|
1048
|
+
width="0.5"
|
|
1049
|
+
height="3.9974527"
|
|
1050
|
+
x="29.39595"
|
|
1051
|
+
y="-62.069386"
|
|
1052
|
+
ry="0"
|
|
1053
|
+
transform="rotate(90)" />
|
|
1054
|
+
<rect
|
|
1055
|
+
style="fill:#303b47;stroke:none;stroke-width:0.854903"
|
|
1056
|
+
id="rect9-3-3"
|
|
1057
|
+
width="0.5"
|
|
1058
|
+
height="7.2736144"
|
|
1059
|
+
x="66.222168"
|
|
1060
|
+
y="25.810398"
|
|
1061
|
+
ry="0" />
|
|
1062
|
+
<rect
|
|
1063
|
+
style="fill:#303b47;stroke:none;stroke-width:0.633772"
|
|
1064
|
+
id="rect9-3-1-6"
|
|
1065
|
+
width="0.5"
|
|
1066
|
+
height="3.9974527"
|
|
1067
|
+
x="29.514414"
|
|
1068
|
+
y="-70.21962"
|
|
1069
|
+
ry="0"
|
|
1070
|
+
transform="rotate(90)" />
|
|
1071
|
+
<path
|
|
1072
|
+
id="rect14"
|
|
1073
|
+
style="fill:#f3b70e;stroke:none;stroke-width:0.909;fill-opacity:1"
|
|
1074
|
+
d="m 6.9539457,-9.1313809 0.00155,0.8040853 h 8.326624 l 0.01499,-0.8040853 z m 0.1121378,1.2397176 0.2955892,0.5358846 h 7.5209883 l 0.293522,-0.5358846 z m 0.5725749,1.0386963 2.3745316,4.3051636 0.0052,1.508435 2.227771,1.17272112 0.001,-2.68115612 2.360062,-4.3051636 z"
|
|
1075
|
+
sodipodi:nodetypes="ccccccccccccccccc" />
|
|
1076
|
+
<path
|
|
1077
|
+
id="path25"
|
|
1078
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:1.127;stroke-dasharray:none"
|
|
1079
|
+
d="M 79.693692,8.0913404 A 2.2216778,2.0696683 0 0 1 77.68968,9.7020948 v 5.0756592 a 2.8998742,3.9990203 0 0 0 2.759521,-3.994589 2.8998742,3.9990203 0 0 0 -0.755509,-2.6918246 z m -4.322217,0.051676 a 2.8998742,3.9990203 0 0 0 -0.72192,2.6401481 2.8998742,3.9990203 0 0 0 2.759522,3.994589 V 9.7046786 A 2.2216778,2.0696683 0 0 1 75.371475,8.1430169 Z m 4.095357,1.5880167 a 0.37417734,0.37417734 0 0 1 0.374138,0.3741374 0.37417734,0.37417734 0 0 1 -0.374138,0.374137 0.37417734,0.37417734 0 0 1 -0.374137,-0.374137 0.37417734,0.37417734 0 0 1 0.374137,-0.3741374 z m -3.835425,0.1870687 a 0.51449382,0.51449382 0 0 1 0.514698,0.5146977 0.51449382,0.51449382 0 0 1 -0.514698,0.51418 0.51449382,0.51449382 0 0 1 -0.51418,-0.51418 0.51449382,0.51449382 0 0 1 0.51418,-0.5146977 z m 2.970362,1.1926917 A 0.56126595,0.56126595 0 0 1 79.162975,11.672 0.56126595,0.56126595 0 0 1 78.601769,12.233206 0.56126595,0.56126595 0 0 1 78.040046,11.672 0.56126595,0.56126595 0 0 1 78.601769,11.110794 Z m -2.081527,1.099158 a 0.49110773,0.49110773 0 0 1 0.490926,0.490926 0.49110773,0.49110773 0 0 1 -0.490926,0.491443 0.49110773,0.49110773 0 0 1 -0.490926,-0.491443 0.49110773,0.49110773 0 0 1 0.490926,-0.490926 z" />
|
|
1080
|
+
<ellipse
|
|
1081
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:1.127;stroke-dasharray:none"
|
|
1082
|
+
id="path26"
|
|
1083
|
+
cx="77.492638"
|
|
1084
|
+
cy="7.771513"
|
|
1085
|
+
rx="1.6784505"
|
|
1086
|
+
ry="1.2567708" />
|
|
1087
|
+
<path
|
|
1088
|
+
id="rect27"
|
|
1089
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:1.127;stroke-dasharray:none"
|
|
1090
|
+
d="m 73.787288,5.086735 c -0.03663,0.031549 -0.0523,0.082746 -0.03648,0.1317904 l 0.0092,0.029416 c 0.02109,0.065391 0.09086,0.1011374 0.156217,0.08007 l 0.828951,-0.2678226 1.20071,1.4311202 c 0.04416,0.052637 0.122087,0.059462 0.174727,0.015297 0.05264,-0.044163 0.05946,-0.1220906 0.0153,-0.1747277 L 74.860427,4.8116844 c -0.03597,-0.042869 -0.09411,-0.055225 -0.142964,-0.034527 -0.0042,9.026e-4 -0.0086,0.00192 -0.01275,0.00328 l -0.874231,0.2821968 c -0.01635,0.00527 -0.03098,0.013578 -0.04319,0.0241 z" />
|
|
1091
|
+
<path
|
|
1092
|
+
id="rect27-3"
|
|
1093
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:1.127;stroke-dasharray:none"
|
|
1094
|
+
d="m 81.325596,5.0233778 c 0.03663,0.031549 0.0523,0.082746 0.03648,0.1317904 l -0.0092,0.029416 c -0.02109,0.065391 -0.09086,0.1011374 -0.156217,0.08007 l -0.828951,-0.2678226 -1.20071,1.4311202 c -0.04416,0.052637 -0.122087,0.059462 -0.174727,0.015297 -0.05264,-0.044163 -0.05946,-0.1220906 -0.0153,-0.1747277 l 1.275486,-1.5201939 c 0.03597,-0.042869 0.09411,-0.055225 0.142964,-0.034527 0.0042,9.026e-4 0.0086,0.00192 0.01275,0.00328 l 0.874231,0.2821968 c 0.01635,0.00527 0.03098,0.013578 0.04319,0.0241 z" />
|
|
1095
|
+
<g
|
|
1096
|
+
id="g38"
|
|
1097
|
+
style="fill:#44406c;fill-opacity:1"
|
|
1098
|
+
transform="translate(0.51449384)">
|
|
1099
|
+
<rect
|
|
1100
|
+
style="fill:#44406c;fill-opacity:1;stroke:none;stroke-width:1.24269;stroke-dasharray:none"
|
|
1101
|
+
id="rect31"
|
|
1102
|
+
width="0.5415228"
|
|
1103
|
+
height="7.555532"
|
|
1104
|
+
x="7.6424794"
|
|
1105
|
+
y="39.915035"
|
|
1106
|
+
ry="0" />
|
|
1107
|
+
<rect
|
|
1108
|
+
style="opacity:0.52293;fill:#44406c;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1109
|
+
id="rect32"
|
|
1110
|
+
width="7.9036541"
|
|
1111
|
+
height="0.34812221"
|
|
1112
|
+
x="7.9906015"
|
|
1113
|
+
y="45.626808"
|
|
1114
|
+
ry="0" />
|
|
1115
|
+
<rect
|
|
1116
|
+
style="opacity:0.52293;fill:#44406c;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1117
|
+
id="rect32-8"
|
|
1118
|
+
width="7.9036541"
|
|
1119
|
+
height="0.34812221"
|
|
1120
|
+
x="7.9906015"
|
|
1121
|
+
y="43.525185"
|
|
1122
|
+
ry="0" />
|
|
1123
|
+
<rect
|
|
1124
|
+
style="opacity:0.52293;fill:#44406c;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1125
|
+
id="rect32-8-6"
|
|
1126
|
+
width="7.9036541"
|
|
1127
|
+
height="0.34812221"
|
|
1128
|
+
x="7.9906015"
|
|
1129
|
+
y="41.616962"
|
|
1130
|
+
ry="0" />
|
|
1131
|
+
</g>
|
|
1132
|
+
<g
|
|
1133
|
+
id="g37"
|
|
1134
|
+
style="fill:#833e58;fill-opacity:1"
|
|
1135
|
+
transform="translate(0.51449384)">
|
|
1136
|
+
<rect
|
|
1137
|
+
style="fill:#833e58;fill-opacity:1;stroke:none;stroke-width:1.24269;stroke-dasharray:none"
|
|
1138
|
+
id="rect31-2"
|
|
1139
|
+
width="0.5415228"
|
|
1140
|
+
height="7.555532"
|
|
1141
|
+
x="47.688801"
|
|
1142
|
+
y="-15.957767"
|
|
1143
|
+
ry="0"
|
|
1144
|
+
transform="rotate(90)" />
|
|
1145
|
+
<rect
|
|
1146
|
+
style="opacity:0.495691;fill:#833e58;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1147
|
+
id="rect32-4"
|
|
1148
|
+
width="7.9036541"
|
|
1149
|
+
height="0.34812221"
|
|
1150
|
+
x="39.963547"
|
|
1151
|
+
y="-10.111564"
|
|
1152
|
+
ry="0"
|
|
1153
|
+
transform="rotate(90)" />
|
|
1154
|
+
<rect
|
|
1155
|
+
style="opacity:0.495691;fill:#833e58;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1156
|
+
id="rect32-8-8"
|
|
1157
|
+
width="7.9036541"
|
|
1158
|
+
height="0.34812221"
|
|
1159
|
+
x="39.963547"
|
|
1160
|
+
y="-12.21319"
|
|
1161
|
+
ry="0"
|
|
1162
|
+
transform="rotate(90)" />
|
|
1163
|
+
<rect
|
|
1164
|
+
style="opacity:0.495691;fill:#833e58;fill-opacity:1;stroke:none;stroke-width:0.581099;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1165
|
+
id="rect32-8-6-1"
|
|
1166
|
+
width="7.9036541"
|
|
1167
|
+
height="0.34812221"
|
|
1168
|
+
x="39.963547"
|
|
1169
|
+
y="-14.121414"
|
|
1170
|
+
ry="0"
|
|
1171
|
+
transform="rotate(90)" />
|
|
1172
|
+
</g>
|
|
1173
|
+
<g
|
|
1174
|
+
id="path31"
|
|
1175
|
+
style="opacity:1;fill:#e55b5b;fill-opacity:1"
|
|
1176
|
+
transform="translate(0.51449384)">
|
|
1177
|
+
<path
|
|
1178
|
+
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#e55b5b;fill-opacity:1;stroke-linecap:round;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
1179
|
+
d="m 14.75,41.009766 a 0.4261145,0.4261145 0 0 0 -0.548828,0.246093 l -1.539063,4.035157 -2.7988277,-1.828125 -2.2187501,4.003906 a 0.4261145,0.4261145 0 0 0 0.1660157,0.580078 0.4261145,0.4261145 0 0 0 0.578125,-0.166016 l 1.7753911,-3.203125 2.919921,1.90625 1.914063,-5.023437 A 0.4261145,0.4261145 0 0 0 14.75,41.009766 Z"
|
|
1180
|
+
id="path37" />
|
|
1181
|
+
<g
|
|
1182
|
+
id="g34"
|
|
1183
|
+
style="fill:#e55b5b;fill-opacity:1">
|
|
1184
|
+
<g
|
|
1185
|
+
id="path34"
|
|
1186
|
+
style="opacity:1;fill:#e55b5b;fill-opacity:1">
|
|
1187
|
+
<path
|
|
1188
|
+
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#e55b5b;fill-opacity:1;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
1189
|
+
d="m 14.94942,40.489174 0.271427,1.681175 -1.592757,-0.60688 z"
|
|
1190
|
+
id="path35" />
|
|
1191
|
+
<path
|
|
1192
|
+
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#e55b5b;fill-opacity:1;fill-rule:evenodd;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
1193
|
+
d="m 15.029297,40.277344 -1.625,1.322265 1.960937,0.746094 z m -0.160156,0.423828 0.208984,1.292969 -1.224609,-0.466797 z"
|
|
1194
|
+
id="path36" />
|
|
1195
|
+
</g>
|
|
1196
|
+
</g>
|
|
1197
|
+
</g>
|
|
1198
|
+
<rect
|
|
1199
|
+
style="fill:#e55b5b;fill-opacity:1;stroke:none;stroke-width:0.475768;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1200
|
+
id="rect33"
|
|
1201
|
+
width="1.3883848"
|
|
1202
|
+
height="1.3883848"
|
|
1203
|
+
x="7.7852659"
|
|
1204
|
+
y="47.124367"
|
|
1205
|
+
ry="0" />
|
|
1206
|
+
<path
|
|
1207
|
+
id="path38"
|
|
1208
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1209
|
+
d="m 71.828507,8.3339195 0.924718,0.509172 0.947077,0.5191021 c 0.02203,0.00924 0.06686,0.032349 0.114669,0.047176 0.226796,0.070341 0.467673,-0.056491 0.538014,-0.2832873 0.07034,-0.2267963 -0.05649,-0.467673 -0.283287,-0.5380138 -0.03739,-0.011548 -0.07617,-0.017972 -0.09544,-0.019445 L 72.891755,8.4505132 Z"
|
|
1210
|
+
sodipodi:nodetypes="ccccscccc" />
|
|
1211
|
+
<path
|
|
1212
|
+
id="path38-3"
|
|
1213
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1214
|
+
d="m 71.64945,10.868231 1.026975,0.244299 1.051172,0.247909 c 0.02369,0.003 0.07306,0.01336 0.123096,0.01491 0.237339,0.0074 0.435701,-0.179091 0.443051,-0.416432 0.0073,-0.237339 -0.179091,-0.435701 -0.416431,-0.443051 -0.03912,-0.0012 -0.0782,0.003 -0.09717,0.0067 l -1.074827,0.174671 z"
|
|
1215
|
+
sodipodi:nodetypes="ccccscccc" />
|
|
1216
|
+
<path
|
|
1217
|
+
id="path38-3-6"
|
|
1218
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1219
|
+
d="m 72.272733,13.898394 1.03648,-0.200176 1.060016,-0.206848 c 0.02282,-0.007 0.07208,-0.0179 0.118318,-0.03709 0.219338,-0.09097 0.32333,-0.342589 0.232314,-0.561908 -0.09106,-0.219297 -0.342589,-0.323329 -0.561907,-0.232314 -0.03614,0.01501 -0.07003,0.03493 -0.08579,0.04611 l -0.907596,0.601692 z"
|
|
1220
|
+
sodipodi:nodetypes="ccccscccc" />
|
|
1221
|
+
<g
|
|
1222
|
+
id="g27"
|
|
1223
|
+
transform="matrix(1.2414025,0,0,1.2414025,-19.423008,-6.5137227)">
|
|
1224
|
+
<rect
|
|
1225
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#5d7388;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1226
|
+
id="rect40"
|
|
1227
|
+
width="8.3722181"
|
|
1228
|
+
height="8.3254452"
|
|
1229
|
+
x="76.683907"
|
|
1230
|
+
y="23.368118"
|
|
1231
|
+
ry="1.5376352" />
|
|
1232
|
+
<rect
|
|
1233
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1234
|
+
id="rect41"
|
|
1235
|
+
width="5.2150936"
|
|
1236
|
+
height="1.122533"
|
|
1237
|
+
x="78.180618"
|
|
1238
|
+
y="27.086504"
|
|
1239
|
+
ry="0.40925646" />
|
|
1240
|
+
</g>
|
|
1241
|
+
<g
|
|
1242
|
+
id="g28"
|
|
1243
|
+
transform="matrix(1.2414849,0,0,1.240423,-22.652533,-6.4985647)">
|
|
1244
|
+
<rect
|
|
1245
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#5d7388;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1246
|
+
id="rect40-5"
|
|
1247
|
+
width="8.3722181"
|
|
1248
|
+
height="8.3254452"
|
|
1249
|
+
x="90.014175"
|
|
1250
|
+
y="23.415094"
|
|
1251
|
+
ry="1.5376352" />
|
|
1252
|
+
<rect
|
|
1253
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1254
|
+
id="rect41-3"
|
|
1255
|
+
width="5.2150936"
|
|
1256
|
+
height="1.122533"
|
|
1257
|
+
x="91.674385"
|
|
1258
|
+
y="27.086504"
|
|
1259
|
+
ry="0.40925646" />
|
|
1260
|
+
<rect
|
|
1261
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1262
|
+
id="rect41-3-8"
|
|
1263
|
+
width="5.2150936"
|
|
1264
|
+
height="1.122533"
|
|
1265
|
+
x="-30.255318"
|
|
1266
|
+
y="93.720665"
|
|
1267
|
+
ry="0.40925646"
|
|
1268
|
+
transform="rotate(-90)" />
|
|
1269
|
+
</g>
|
|
1270
|
+
<g
|
|
1271
|
+
id="g39-5"
|
|
1272
|
+
transform="matrix(-1,0,0,1,155.17204,0)">
|
|
1273
|
+
<path
|
|
1274
|
+
id="path38-7"
|
|
1275
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1276
|
+
d="m 71.828507,8.3339195 0.924718,0.509172 0.947077,0.5191021 c 0.02203,0.00924 0.06686,0.032349 0.114669,0.047176 0.226796,0.070341 0.467673,-0.056491 0.538014,-0.2832873 0.07034,-0.2267963 -0.05649,-0.467673 -0.283287,-0.5380138 -0.03739,-0.011548 -0.07617,-0.017972 -0.09544,-0.019445 L 72.891755,8.4505132 Z"
|
|
1277
|
+
sodipodi:nodetypes="ccccscccc" />
|
|
1278
|
+
<path
|
|
1279
|
+
id="path38-3-4"
|
|
1280
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1281
|
+
d="m 71.64945,10.868231 1.026975,0.244299 1.051172,0.247909 c 0.02369,0.003 0.07306,0.01336 0.123096,0.01491 0.237339,0.0074 0.435701,-0.179091 0.443051,-0.416432 0.0073,-0.237339 -0.179091,-0.435701 -0.416431,-0.443051 -0.03912,-0.0012 -0.0782,0.003 -0.09717,0.0067 l -1.074827,0.174671 z"
|
|
1282
|
+
sodipodi:nodetypes="ccccscccc" />
|
|
1283
|
+
<path
|
|
1284
|
+
id="path38-3-6-1"
|
|
1285
|
+
style="fill:#349034;fill-opacity:1;stroke:none;stroke-width:0.943999;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
|
|
1286
|
+
d="m 72.272733,13.898394 1.03648,-0.200176 1.060016,-0.206848 c 0.02282,-0.007 0.07208,-0.0179 0.118318,-0.03709 0.219338,-0.09097 0.32333,-0.342589 0.232314,-0.561908 -0.09106,-0.219297 -0.342589,-0.323329 -0.561907,-0.232314 -0.03614,0.01501 -0.07003,0.03493 -0.08579,0.04611 l -0.907596,0.601692 z"
|
|
1287
|
+
sodipodi:nodetypes="ccccscccc" />
|
|
1288
|
+
</g>
|
|
1289
|
+
<path
|
|
1290
|
+
id="rect21"
|
|
1291
|
+
style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;vector-effect:none;fill:#5d7388;stroke-width:0.955795;stroke-dasharray:1.35533, 0.677658;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
1292
|
+
d="m 93.869497,5.8532304 v 0.6781701 h 1.355157 V 5.8532304 Z m 2.033327,0 V 6.5314005 H 97.25798 V 5.8532304 Z m 2.032144,0 v 0.6781701 h 0.349145 V 6.94209 h 0.67817 V 6.366888 l -0.01008,-0.089357 -0.03196,-0.1011933 -0.04852,-0.091133 -0.06569,-0.078706 -0.07811,-0.065095 -0.09113,-0.048526 -0.100601,-0.031955 -0.08995,-0.0077 z m -9.416269,0.00887 -0.08995,0.0077 -0.100601,0.031363 -0.09173,0.048526 -0.07811,0.065687 -0.06509,0.078114 -0.04912,0.091725 -0.03137,0.1006012 -0.0095,0.089949 v 0.5746102 h 0.677578 V 6.5396853 h 0.349145 V 5.862107 Z m 1.18887,0 v 0.6775783 h 1.355156 V 5.862107 Z m 2.032734,0 v 0.67758 H 93.09546 V 5.862107 Z m 6.544402,1.7575614 v 1.3551567 h 0.677578 v -1.355155 z m -10.281439,0.00828 v 1.3557486 h 0.677578 V 7.6279532 Z m 10.259543,1.846919 V 10.82943 h 0.677578 V 9.4748721 Z m -10.237056,0.00828 v 1.3551572 h 0.677579 V 9.483157 Z m 10.235873,2.0244502 v 0.41069 H 97.91248 v 0.677578 h 0.511883 l 0.08936,-0.0077 0.100005,-0.03196 0.09232,-0.04852 0.07811,-0.06509 0.06569,-0.07871 0.04852,-0.09113 0.03137,-0.100601 0.01065,-0.08936 v -0.575202 z m -10.235873,0.0089 v 0.57461 l 0.0095,0.08995 0.03137,0.100601 0.04852,0.09173 0.06569,0.07811 0.07811,0.06509 0.09173,0.04852 0.100601,0.03196 0.08936,0.0077 h 0.511882 v -0.677578 h -0.349144 v -0.410708 z m 5.821849,0.401813 v 0.677578 h 1.355156 V 11.91834 Z m 2.032143,0 v 0.677578 h 1.355748 V 11.91834 Z m -6.149689,0.0089 v 0.677578 h 1.355156 v -0.677578 z m 2.032735,0 v 0.677578 h 1.355156 v -0.677578 z"
|
|
1293
|
+
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
|
|
1294
|
+
<path
|
|
1295
|
+
style="fill:none;stroke:#5d7388;stroke-width:0.309;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker20)"
|
|
1296
|
+
d="m 52.495635,19.592386 h 2.800478 v 3.439583 h -0.898786"
|
|
1297
|
+
id="path29"
|
|
1298
|
+
sodipodi:nodetypes="cccc" />
|
|
1299
|
+
<circle
|
|
1300
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#5d7388;stroke-width:0.303;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
1301
|
+
id="path7-0-2-3-3"
|
|
1302
|
+
cx="55.275337"
|
|
1303
|
+
cy="20.537638"
|
|
1304
|
+
r="0.57445872" />
|
|
1305
|
+
<rect
|
|
1306
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.303001;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
1307
|
+
id="rect34"
|
|
1308
|
+
width="1.1926903"
|
|
1309
|
+
height="4.396584"
|
|
1310
|
+
x="53.017189"
|
|
1311
|
+
y="37.867489"
|
|
1312
|
+
ry="0.20103791" />
|
|
1313
|
+
<rect
|
|
1314
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.303001;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
1315
|
+
id="rect34-6"
|
|
1316
|
+
width="1.1926903"
|
|
1317
|
+
height="4.396584"
|
|
1318
|
+
x="66.861916"
|
|
1319
|
+
y="37.843967"
|
|
1320
|
+
ry="0.20103791" />
|
|
1321
|
+
<rect
|
|
1322
|
+
style="fill:#5d7388;fill-opacity:1;stroke:none;stroke-width:0.295564;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
1323
|
+
id="rect35"
|
|
1324
|
+
width="7.7882543"
|
|
1325
|
+
height="1.2862346"
|
|
1326
|
+
x="63.341316"
|
|
1327
|
+
y="39.387585"
|
|
1328
|
+
ry="0.20103791" />
|
|
1329
|
+
<circle
|
|
1330
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#5d7388;stroke-width:0.603;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
1331
|
+
id="path39"
|
|
1332
|
+
cx="64.382828"
|
|
1333
|
+
cy="39.961376"
|
|
1334
|
+
r="0.98221552" />
|
|
1335
|
+
<circle
|
|
1336
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#5d7388;stroke-width:0.603;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
1337
|
+
id="path39-2"
|
|
1338
|
+
cx="67.392464"
|
|
1339
|
+
cy="39.961376"
|
|
1340
|
+
r="0.98221552" />
|
|
1341
|
+
<circle
|
|
1342
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#5d7388;stroke-width:0.603;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
1343
|
+
id="path39-2-5"
|
|
1344
|
+
cx="70.369026"
|
|
1345
|
+
cy="39.961376"
|
|
1346
|
+
r="0.98221552" />
|
|
1347
|
+
<circle
|
|
1348
|
+
style="fill:none;fill-opacity:1;stroke:#767676;stroke-width:0.437;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
1349
|
+
id="path42"
|
|
1350
|
+
cx="31.501995"
|
|
1351
|
+
cy="40.259155"
|
|
1352
|
+
r="1.7168031" />
|
|
1353
|
+
<circle
|
|
1354
|
+
style="fill:none;fill-opacity:1;stroke:#767676;stroke-width:0.437;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
1355
|
+
id="path42-6"
|
|
1356
|
+
cx="31.501995"
|
|
1357
|
+
cy="48.665573"
|
|
1358
|
+
r="1.7168031" />
|
|
1359
|
+
<circle
|
|
1360
|
+
style="fill:none;fill-opacity:1;stroke:#767676;stroke-width:0.437;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
1361
|
+
id="path42-6-5"
|
|
1362
|
+
cx="31.501995"
|
|
1363
|
+
cy="44.462364"
|
|
1364
|
+
r="1.7168031" />
|
|
1365
|
+
</g>
|
|
1366
|
+
</svg>
|