umap-project 1.14.0a1__py3-none-any.whl → 1.14.0a2__py3-none-any.whl

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.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (182) hide show
  1. umap/__init__.py +1 -1
  2. umap/static/.gitignore +0 -0
  3. umap/static/umap/base.css +994 -0
  4. umap/static/umap/bitbucket.png +0 -0
  5. umap/static/umap/content.css +395 -0
  6. umap/static/umap/favicons/apple-touch-icon.png +0 -0
  7. umap/static/umap/favicons/favicon.ico +0 -0
  8. umap/static/umap/favicons/icon-192.png +0 -0
  9. umap/static/umap/favicons/icon-512.png +0 -0
  10. umap/static/umap/favicons/icon.svg +5 -0
  11. umap/static/umap/font/FiraSans-Light.woff +0 -0
  12. umap/static/umap/font/FiraSans-Light.woff2 +0 -0
  13. umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
  14. umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
  15. umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
  16. umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
  17. umap/static/umap/font.css +33 -0
  18. umap/static/umap/github.png +0 -0
  19. umap/static/umap/img/16-white.svg +190 -0
  20. umap/static/umap/img/16.svg +182 -0
  21. umap/static/umap/img/24-white.svg +62 -0
  22. umap/static/umap/img/24.svg +90 -0
  23. umap/static/umap/img/edit.svg +7 -0
  24. umap/static/umap/img/icon-bg.png +0 -0
  25. umap/static/umap/img/logo.svg +4 -0
  26. umap/static/umap/img/logo_filigree.png +0 -0
  27. umap/static/umap/img/logo_small.svg +14 -0
  28. umap/static/umap/img/marker.png +0 -0
  29. umap/static/umap/img/opensource.svg +7 -0
  30. umap/static/umap/img/osm.svg +7 -0
  31. umap/static/umap/img/search.gif +0 -0
  32. umap/static/umap/img/source/16-white.svg +980 -0
  33. umap/static/umap/img/source/16.svg +201 -0
  34. umap/static/umap/img/source/24-white.svg +83 -0
  35. umap/static/umap/img/source/24.svg +110 -0
  36. umap/static/umap/js/components/fragment.js +13 -0
  37. umap/static/umap/js/modules/global.js +8 -0
  38. umap/static/umap/js/modules/urls.js +29 -0
  39. umap/static/umap/js/umap.autocomplete.js +336 -0
  40. umap/static/umap/js/umap.browser.js +148 -0
  41. umap/static/umap/js/umap.controls.js +1542 -0
  42. umap/static/umap/js/umap.core.js +851 -0
  43. umap/static/umap/js/umap.datalayer.permissions.js +72 -0
  44. umap/static/umap/js/umap.features.js +1216 -0
  45. umap/static/umap/js/umap.forms.js +1267 -0
  46. umap/static/umap/js/umap.icon.js +234 -0
  47. umap/static/umap/js/umap.importer.js +166 -0
  48. umap/static/umap/js/umap.js +2010 -0
  49. umap/static/umap/js/umap.layer.js +1636 -0
  50. umap/static/umap/js/umap.permissions.js +212 -0
  51. umap/static/umap/js/umap.popup.js +340 -0
  52. umap/static/umap/js/umap.share.js +254 -0
  53. umap/static/umap/js/umap.slideshow.js +165 -0
  54. umap/static/umap/js/umap.tableeditor.js +120 -0
  55. umap/static/umap/js/umap.ui.js +240 -0
  56. umap/static/umap/js/umap.xhr.js +304 -0
  57. umap/static/umap/locale/am_ET.js +447 -0
  58. umap/static/umap/locale/am_ET.json +445 -0
  59. umap/static/umap/locale/ar.js +447 -0
  60. umap/static/umap/locale/ar.json +445 -0
  61. umap/static/umap/locale/ast.js +447 -0
  62. umap/static/umap/locale/ast.json +445 -0
  63. umap/static/umap/locale/bg.js +447 -0
  64. umap/static/umap/locale/bg.json +445 -0
  65. umap/static/umap/locale/br.js +447 -0
  66. umap/static/umap/locale/br.json +445 -0
  67. umap/static/umap/locale/ca.js +447 -0
  68. umap/static/umap/locale/ca.json +445 -0
  69. umap/static/umap/locale/cs_CZ.js +447 -0
  70. umap/static/umap/locale/cs_CZ.json +445 -0
  71. umap/static/umap/locale/da.js +447 -0
  72. umap/static/umap/locale/da.json +445 -0
  73. umap/static/umap/locale/de.js +447 -0
  74. umap/static/umap/locale/de.json +445 -0
  75. umap/static/umap/locale/el.js +447 -0
  76. umap/static/umap/locale/el.json +445 -0
  77. umap/static/umap/locale/en.js +447 -0
  78. umap/static/umap/locale/en.json +445 -0
  79. umap/static/umap/locale/en_US.json +445 -0
  80. umap/static/umap/locale/es.js +447 -0
  81. umap/static/umap/locale/es.json +445 -0
  82. umap/static/umap/locale/et.js +447 -0
  83. umap/static/umap/locale/et.json +445 -0
  84. umap/static/umap/locale/eu.js +413 -0
  85. umap/static/umap/locale/eu.json +411 -0
  86. umap/static/umap/locale/fa_IR.js +447 -0
  87. umap/static/umap/locale/fa_IR.json +445 -0
  88. umap/static/umap/locale/fi.js +447 -0
  89. umap/static/umap/locale/fi.json +445 -0
  90. umap/static/umap/locale/fr.js +447 -0
  91. umap/static/umap/locale/fr.json +445 -0
  92. umap/static/umap/locale/gl.js +447 -0
  93. umap/static/umap/locale/gl.json +445 -0
  94. umap/static/umap/locale/he.js +447 -0
  95. umap/static/umap/locale/he.json +445 -0
  96. umap/static/umap/locale/hr.js +447 -0
  97. umap/static/umap/locale/hr.json +445 -0
  98. umap/static/umap/locale/hu.js +447 -0
  99. umap/static/umap/locale/hu.json +445 -0
  100. umap/static/umap/locale/id.js +447 -0
  101. umap/static/umap/locale/id.json +445 -0
  102. umap/static/umap/locale/is.js +447 -0
  103. umap/static/umap/locale/is.json +445 -0
  104. umap/static/umap/locale/it.js +447 -0
  105. umap/static/umap/locale/it.json +445 -0
  106. umap/static/umap/locale/ja.js +447 -0
  107. umap/static/umap/locale/ja.json +445 -0
  108. umap/static/umap/locale/ko.js +447 -0
  109. umap/static/umap/locale/ko.json +445 -0
  110. umap/static/umap/locale/lt.js +447 -0
  111. umap/static/umap/locale/lt.json +445 -0
  112. umap/static/umap/locale/ms.js +447 -0
  113. umap/static/umap/locale/ms.json +445 -0
  114. umap/static/umap/locale/nl.js +447 -0
  115. umap/static/umap/locale/nl.json +445 -0
  116. umap/static/umap/locale/no.js +447 -0
  117. umap/static/umap/locale/no.json +445 -0
  118. umap/static/umap/locale/pl.js +447 -0
  119. umap/static/umap/locale/pl.json +445 -0
  120. umap/static/umap/locale/pl_PL.json +445 -0
  121. umap/static/umap/locale/pt.js +447 -0
  122. umap/static/umap/locale/pt.json +445 -0
  123. umap/static/umap/locale/pt_BR.js +447 -0
  124. umap/static/umap/locale/pt_BR.json +445 -0
  125. umap/static/umap/locale/pt_PT.js +447 -0
  126. umap/static/umap/locale/pt_PT.json +445 -0
  127. umap/static/umap/locale/ro.js +447 -0
  128. umap/static/umap/locale/ro.json +445 -0
  129. umap/static/umap/locale/ru.js +447 -0
  130. umap/static/umap/locale/ru.json +445 -0
  131. umap/static/umap/locale/si.js +439 -0
  132. umap/static/umap/locale/si.json +437 -0
  133. umap/static/umap/locale/sk_SK.js +447 -0
  134. umap/static/umap/locale/sk_SK.json +445 -0
  135. umap/static/umap/locale/sl.js +447 -0
  136. umap/static/umap/locale/sl.json +445 -0
  137. umap/static/umap/locale/sr.js +447 -0
  138. umap/static/umap/locale/sr.json +445 -0
  139. umap/static/umap/locale/sv.js +447 -0
  140. umap/static/umap/locale/sv.json +445 -0
  141. umap/static/umap/locale/th_TH.js +447 -0
  142. umap/static/umap/locale/th_TH.json +445 -0
  143. umap/static/umap/locale/tr.js +447 -0
  144. umap/static/umap/locale/tr.json +445 -0
  145. umap/static/umap/locale/uk_UA.js +447 -0
  146. umap/static/umap/locale/uk_UA.json +445 -0
  147. umap/static/umap/locale/vi.js +447 -0
  148. umap/static/umap/locale/vi.json +445 -0
  149. umap/static/umap/locale/vi_VN.json +445 -0
  150. umap/static/umap/locale/zh.js +447 -0
  151. umap/static/umap/locale/zh.json +445 -0
  152. umap/static/umap/locale/zh_CN.json +445 -0
  153. umap/static/umap/locale/zh_TW.Big5.json +445 -0
  154. umap/static/umap/locale/zh_TW.js +447 -0
  155. umap/static/umap/locale/zh_TW.json +445 -0
  156. umap/static/umap/map.css +1843 -0
  157. umap/static/umap/nav.css +81 -0
  158. umap/static/umap/openstreetmap.png +0 -0
  159. umap/static/umap/test/.eslintrc +22 -0
  160. umap/static/umap/test/Choropleth.js +243 -0
  161. umap/static/umap/test/Controls.js +100 -0
  162. umap/static/umap/test/DataLayer.js +495 -0
  163. umap/static/umap/test/Feature.js +382 -0
  164. umap/static/umap/test/Map.Export.js +106 -0
  165. umap/static/umap/test/Map.Init.js +46 -0
  166. umap/static/umap/test/Map.js +342 -0
  167. umap/static/umap/test/Marker.js +122 -0
  168. umap/static/umap/test/Permissions.js +74 -0
  169. umap/static/umap/test/Polygon.js +367 -0
  170. umap/static/umap/test/Polyline.js +402 -0
  171. umap/static/umap/test/TableEditor.js +100 -0
  172. umap/static/umap/test/URLs.js +54 -0
  173. umap/static/umap/test/Util.js +549 -0
  174. umap/static/umap/test/_pre.js +460 -0
  175. umap/static/umap/test/index.html +135 -0
  176. umap/static/umap/theme.css +1 -0
  177. umap/static/umap/twitter.png +0 -0
  178. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
  179. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
  180. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
  181. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
  182. {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,980 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="168"
6
+ height="168"
7
+ id="svg2"
8
+ version="1.1"
9
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
10
+ sodipodi:docname="16-white.svg"
11
+ inkscape:export-filename="16-white.png"
12
+ inkscape:export-xdpi="96"
13
+ inkscape:export-ydpi="96"
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
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
19
+ xmlns:cc="http://creativecommons.org/ns#"
20
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
21
+ <defs
22
+ id="defs4">
23
+ <clipPath
24
+ id="clip0_241_10857">
25
+ <rect
26
+ width="18.049999"
27
+ height="19.01"
28
+ fill="#ffffff"
29
+ id="rect586"
30
+ x="0"
31
+ y="0" />
32
+ </clipPath>
33
+ <clipPath
34
+ id="clip0_576_2753">
35
+ <rect
36
+ width="18"
37
+ height="10.07"
38
+ fill="#ffffff"
39
+ id="rect2"
40
+ x="0"
41
+ y="0" />
42
+ </clipPath>
43
+ <clipPath
44
+ id="clip0_588_799">
45
+ <rect
46
+ width="18"
47
+ height="12.79"
48
+ fill="#ffffff"
49
+ id="rect4"
50
+ x="0"
51
+ y="0" />
52
+ </clipPath>
53
+ <mask
54
+ id="mask0_181_11916"
55
+ maskUnits="userSpaceOnUse"
56
+ x="2"
57
+ y="2"
58
+ width="15"
59
+ height="15">
60
+ <path
61
+ d="M 16.0401,2.3158 H 2.005 v 14.0351 h 14.0351 z"
62
+ fill="#ffffff"
63
+ id="path1259" />
64
+ </mask>
65
+ </defs>
66
+ <sodipodi:namedview
67
+ id="base"
68
+ pagecolor="#ffffff"
69
+ bordercolor="#666666"
70
+ borderopacity="1.0"
71
+ inkscape:pageopacity="0.0"
72
+ inkscape:pageshadow="2"
73
+ inkscape:zoom="3.2300314"
74
+ inkscape:cx="115.16916"
75
+ inkscape:cy="110.83484"
76
+ inkscape:document-units="px"
77
+ inkscape:current-layer="layer1"
78
+ showgrid="true"
79
+ inkscape:window-width="1920"
80
+ inkscape:window-height="1011"
81
+ inkscape:window-x="0"
82
+ inkscape:window-y="32"
83
+ inkscape:window-maximized="1"
84
+ showguides="true"
85
+ inkscape:guide-bbox="true"
86
+ inkscape:snap-grids="true"
87
+ inkscape:snap-to-guides="true"
88
+ inkscape:showpageshadow="2"
89
+ inkscape:pagecheckerboard="0"
90
+ inkscape:deskcolor="#d1d1d1">
91
+ <inkscape:grid
92
+ type="xygrid"
93
+ id="grid3004"
94
+ empspacing="4"
95
+ visible="true"
96
+ enabled="true"
97
+ snapvisiblegridlinesonly="true"
98
+ originx="0"
99
+ originy="0"
100
+ spacingy="1"
101
+ spacingx="1"
102
+ units="px" />
103
+ <sodipodi:guide
104
+ orientation="-1,0"
105
+ position="24,168"
106
+ id="guide3084"
107
+ inkscape:locked="false"
108
+ inkscape:label=""
109
+ inkscape:color="rgb(0,134,229)" />
110
+ <sodipodi:guide
111
+ orientation="0,1"
112
+ position="0,96"
113
+ id="guide3086"
114
+ inkscape:locked="false"
115
+ inkscape:label=""
116
+ inkscape:color="rgb(0,134,229)" />
117
+ <sodipodi:guide
118
+ orientation="-1,0"
119
+ position="48,168"
120
+ id="guide3088"
121
+ inkscape:locked="false"
122
+ inkscape:label=""
123
+ inkscape:color="rgb(0,134,229)" />
124
+ <sodipodi:guide
125
+ orientation="0,1"
126
+ position="0,72"
127
+ id="guide3090"
128
+ inkscape:locked="false"
129
+ inkscape:label=""
130
+ inkscape:color="rgb(0,134,229)" />
131
+ <sodipodi:guide
132
+ orientation="-1,0"
133
+ position="72,168"
134
+ id="guide14621"
135
+ inkscape:locked="false"
136
+ inkscape:label=""
137
+ inkscape:color="rgb(0,134,229)" />
138
+ <sodipodi:guide
139
+ orientation="0,1"
140
+ position="0,48"
141
+ id="guide17864"
142
+ inkscape:locked="false" />
143
+ <sodipodi:guide
144
+ orientation="0,1"
145
+ position="0,120"
146
+ id="guide3026"
147
+ inkscape:locked="false"
148
+ inkscape:label=""
149
+ inkscape:color="rgb(0,134,229)" />
150
+ <sodipodi:guide
151
+ orientation="-1,0"
152
+ position="96,168"
153
+ id="guide3028"
154
+ inkscape:locked="false"
155
+ inkscape:label=""
156
+ inkscape:color="rgb(0,134,229)" />
157
+ <sodipodi:guide
158
+ position="120,168"
159
+ orientation="-1,0"
160
+ id="guide4869"
161
+ inkscape:label=""
162
+ inkscape:color="rgb(0,0,255)"
163
+ inkscape:locked="false" />
164
+ <sodipodi:guide
165
+ position="0,144"
166
+ orientation="0,1"
167
+ id="guide5766"
168
+ inkscape:locked="false"
169
+ inkscape:label=""
170
+ inkscape:color="rgb(0,134,229)" />
171
+ <sodipodi:guide
172
+ position="144,104"
173
+ orientation="1,0"
174
+ id="guide1"
175
+ inkscape:locked="false" />
176
+ <sodipodi:guide
177
+ position="0,24"
178
+ orientation="0,1"
179
+ id="guide5005"
180
+ inkscape:label=""
181
+ inkscape:locked="false"
182
+ inkscape:color="rgb(0,134,229)" />
183
+ </sodipodi:namedview>
184
+ <metadata
185
+ id="metadata7">
186
+ <rdf:RDF>
187
+ <cc:Work
188
+ rdf:about="">
189
+ <dc:format>image/svg+xml</dc:format>
190
+ <dc:type
191
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
192
+ </cc:Work>
193
+ </rdf:RDF>
194
+ </metadata>
195
+ <g
196
+ inkscape:label="Layer 1"
197
+ inkscape:groupmode="layer"
198
+ id="layer1"
199
+ transform="translate(0,-812.36218)">
200
+ <text
201
+ xml:space="preserve"
202
+ style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
203
+ x="5.7867966"
204
+ y="897.80786"
205
+ id="text4457"><tspan
206
+ y="897.80786"
207
+ x="5.7867966"
208
+ sodipodi:role="line"
209
+ id="tspan4459"
210
+ style="font-size:40px;line-height:1.25;font-family:sans-serif"> </tspan></text>
211
+ <g
212
+ id="g3001"
213
+ transform="translate(-23.255701,-119.38651)">
214
+ <path
215
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
216
+ d="m 35.255701,935.74851 c -4.412356,0 -8.00014,3.58778 -8.00014,8.00014 0,4.41235 3.587784,8.00014 8.00014,8.00014 4.412356,0 8.00014,-3.58779 8.00014,-8.00014 0,-4.41236 -3.587784,-8.00014 -8.00014,-8.00014 z m 0,1.00028 c 3.871916,0 6.99986,3.12794 6.99986,6.99986 0,3.87191 -3.127944,6.99986 -6.99986,6.99986 -3.871916,0 -6.999861,-3.12795 -6.999861,-6.99986 0,-3.87192 3.127945,-6.99986 6.999861,-6.99986 z"
217
+ id="path3014"
218
+ inkscape:connector-curvature="0" />
219
+ <g
220
+ id="text3784"
221
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none"
222
+ transform="translate(27.255701,-100.61365)">
223
+ <path
224
+ inkscape:connector-curvature="0"
225
+ id="path3789"
226
+ style="font-weight:bold;font-size:12px;-inkscape-font-specification:'Sans Bold';fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
227
+ d="M 9,1046.0464 H 6.6301966 v -0.3223 c 0,-0.3596 0.072207,-0.6775 0.2166302,-0.9539 0.1444174,-0.2807 0.4485749,-0.636 0.9124728,-1.0658 l 0.4201314,-0.3816 c 0.249449,-0.228 0.4310681,-0.4429 0.5448577,-0.6446 0.1181576,-0.2019 0.1772384,-0.4036 0.177243,-0.6053 -4.6e-6,-0.3071 -0.1050376,-0.5462 -0.3150985,-0.7171 -0.2100697,-0.1756 -0.5032861,-0.2632 -0.87965,-0.2632 -0.3544889,0 -0.7374207,0.075 -1.1487968,0.2237 -0.4113804,0.1446 -0.840264,0.3618 -1.2866522,0.6513 v -2.0659 c 0.5295391,-0.184 1.0131273,-0.32 1.4507661,-0.4077 0.437634,-0.088 0.8599531,-0.1317 1.2669587,-0.1317 1.0678292,0 1.8818328,0.2194 2.442012,0.6579 0.560169,0.4341 0.840256,1.0702 0.840263,1.9078 -7e-6,0.4298 -0.08535,0.8159 -0.256017,1.158 -0.170685,0.3377 -0.461713,0.7017 -0.873085,1.092 l -0.4201313,0.375 c -0.297598,0.272 -0.4923463,0.4913 -0.5842451,0.658 -0.091909,0.1622 -0.1378603,0.342 -0.1378556,0.5394 v 0.296 m -2.3698034,0.9739 H 9 v 2.342 H 6.6301966 v -2.342"
228
+ sodipodi:nodetypes="ccsccccccsccccsccccccccccccc" />
229
+ </g>
230
+ </g>
231
+ <path
232
+ style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none"
233
+ d="m 78,819.36214 v 2 h 12 v -2 z m 0,3 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z"
234
+ id="table"
235
+ inkscape:connector-curvature="0"
236
+ inkscape:label="table"
237
+ inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/browse-data.png"
238
+ inkscape:export-xdpi="89.996864"
239
+ inkscape:export-ydpi="89.996864" />
240
+ <path
241
+ style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
242
+ d="m 35,843.36202 v 4 h -4 v 2 h 4 v 4 h 2 v -4 h 4 v -2 h -4 v -4 z"
243
+ id="rect5280"
244
+ inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/add-layer-grey-18.png"
245
+ inkscape:export-xdpi="89.996864"
246
+ inkscape:export-ydpi="89.996864"
247
+ inkscape:connector-curvature="0"
248
+ sodipodi:nodetypes="ccccccccccccc" />
249
+ <path
250
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
251
+ d="m 13.517525,866.362 c -2.466762,0 -4.48249,2.0158 -4.48249,4.4826 0,0.8297 0.233748,1.5964 0.63035,2.26462 l -3.66537,3.66532 1.587549,1.5876 3.66537,-3.66542 c 0.668139,0.3966 1.434831,0.6303 2.264591,0.6303 2.466762,0 4.48249,-2.0157 4.48249,-4.48242 0,-2.4668 -2.015728,-4.4826 -4.48249,-4.4826 z m 0,1.4943 c 1.659256,0 2.988326,1.329 2.988326,2.9883 0,1.6592 -1.32907,2.98832 -2.988326,2.98832 -1.659256,0 -2.988326,-1.32912 -2.988326,-2.98832 0,-1.6593 1.32907,-2.9883 2.988326,-2.9883 z m 0,1.4941 c -0.816354,0 -1.494163,0.6779 -1.494163,1.4942 0,0.8163 0.677809,1.4942 1.494163,1.4942 0.816354,0 1.494163,-0.6779 1.494163,-1.4942 0,-0.8163 -0.677809,-1.4942 -1.494163,-1.4942 z"
252
+ id="path4354"
253
+ inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/zoom_to.png"
254
+ inkscape:export-xdpi="89.996864"
255
+ inkscape:export-ydpi="89.996864"
256
+ inkscape:connector-curvature="0" />
257
+ <path
258
+ id="path4392"
259
+ d="m 37.51751,866.36205 c -2.466762,0 -4.482491,2.0157 -4.482491,4.4825 0,0.8298 0.233749,1.5964 0.630351,2.2645 L 30,876.77459 l 1.587549,1.5875 3.665369,-3.66544 c 0.668139,0.39662 1.434831,0.63042 2.264592,0.63042 2.466762,0 4.48249,-2.01572 4.48249,-4.48252 0,-2.4668 -2.015728,-4.4825 -4.48249,-4.4825 z m 0,1.4942 c 1.659256,0 2.988327,1.329 2.988327,2.9883 0,1.6593 -1.329071,2.9883 -2.988327,2.9883 -1.659256,0 -2.988327,-1.329 -2.988327,-2.9883 0,-1.6593 1.329071,-2.9883 2.988327,-2.9883 z m 0,1.4941 c -0.816355,0 -1.494164,0.6779 -1.494164,1.4942 0,0.8163 0.677809,1.4942 1.494164,1.4942 0.816355,0 1.494163,-0.6779 1.494163,-1.4942 0,-0.8163 -0.677808,-1.4942 -1.494163,-1.4942 z"
260
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
261
+ inkscape:connector-curvature="0"
262
+ inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/zoom_to-off.png"
263
+ inkscape:export-xdpi="89.996864"
264
+ inkscape:export-ydpi="89.996864" />
265
+ <path
266
+ inkscape:connector-curvature="0"
267
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none"
268
+ d="m 36,889.36215 c -3.865993,0 -7,3.134 -7,7 0,3.86602 3.134007,7.00005 7,7.00005 3.865993,0 7,-3.13404 7,-7.00005 0,-3.866 -3.134007,-7 -7,-7 z m -0.15625,2.9687 a 1.0001,1.0001 0 0 1 0.09375,0 1.0001,1.0001 0 0 1 0.65625,1.8125 l -1.625,1.2188 H 40 a 1.0001,1.0001 0 1 1 0,2 h -5 l 1.59375,1.1875 a 1.0001,1.0001 0 1 1 -1.1875,1.59372 l -3.71875,-2.78122 a 1.0043849,1.0043849 0 0 1 -0.15625,-1.9063 l 3.875,-2.9062 a 1.0001,1.0001 0 0 1 0.4375,-0.2188 z"
269
+ id="path5321"
270
+ inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/arrow-left-16.png"
271
+ inkscape:export-xdpi="89.996864"
272
+ inkscape:export-ydpi="89.996864" />
273
+ <path
274
+ inkscape:export-ydpi="89.996864"
275
+ inkscape:export-xdpi="89.996864"
276
+ inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/arrow-right-16.png"
277
+ id="path5338"
278
+ d="m 12.000015,903.36218 c 3.865993,0 7,-3.134 7,-7.00002 0,-3.866 -3.134007,-7 -7,-7 -3.865993,0 -7,3.134 -7,7 0,3.86602 3.134007,7.00002 7,7.00002 z m 0.15625,-2.9687 a 1.0001,1.0001 0 0 1 -0.09375,0 1.0001,1.0001 0 0 1 -0.65625,-1.81252 l 1.625,-1.2188 h -5.03125 a 1.0001,1.0001 0 1 1 0,-2 h 5 l -1.59375,-1.1875 a 1.0001,1.0001 0 1 1 1.1875,-1.5937 l 3.71875,2.7812 a 1.0043849,1.0043849 0 0 1 0.15625,1.9063 l -3.875,2.90622 a 1.0001,1.0001 0 0 1 -0.4375,0.2188 z"
279
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none"
280
+ inkscape:connector-curvature="0" />
281
+ <path
282
+ inkscape:connector-curvature="0"
283
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none"
284
+ d="m 12.000015,913.3621 c -3.865993,0 -7,3.134 -7,7 0,3.8661 3.134007,7.0001 7,7.0001 3.865993,0 7,-3.134 7,-7.0001 0,-3.866 -3.134007,-7 -7,-7 z m -0.15625,1.7187 a 1.250125,1.250125 0 0 1 0.125,0 1.250125,1.250125 0 0 1 1.28125,1.2813 v 2.75 h 2.75 a 1.250125,1.250125 0 1 1 0,2.5 h -2.75 v 2.7501 a 1.250125,1.250125 0 1 1 -2.5,0 v -2.7501 h -2.75 a 1.2515615,1.2515615 0 0 1 -0.125,-2.5 1.250125,1.250125 0 0 1 0.125,0 h 2.75 v -2.75 a 1.250125,1.250125 0 0 1 1.09375,-1.2813 z"
285
+ id="path5340"
286
+ inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/zoom-grey-16.png"
287
+ inkscape:export-xdpi="89.996864"
288
+ inkscape:export-ydpi="89.996864" />
289
+ <path
290
+ style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
291
+ d="m 54,819.36214 v 2 h 12 v -2 z m 0,3 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z m -5,2 v 1 h 4 v -1 z m 5,0 v 1 h 7 v -1 z"
292
+ id="table-5"
293
+ inkscape:connector-curvature="0"
294
+ inkscape:label="table"
295
+ inkscape:export-filename="/home/ybon/Code/js/leaflet-storage/src/img/browse-data.png"
296
+ inkscape:export-xdpi="89.996864"
297
+ inkscape:export-ydpi="89.996864" />
298
+ <g
299
+ transform="translate(32,-48.000118)"
300
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none"
301
+ id="text3784-6" />
302
+ <path
303
+ style="fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
304
+ d="m 63.71429,866.36213 -1.14285,1.14286 2.28571,2.28572 L 66,868.64785 Z M 62,868.07641 l -6.285714,6.28574 2.285715,2.2857 6.285719,-6.28572 z M 55.714286,874.36215 54,878.36214 l 4.000001,-1.71429 z"
305
+ id="path3684"
306
+ inkscape:connector-curvature="0"
307
+ sodipodi:nodetypes="cccccccccccccc" />
308
+ <text
309
+ xml:space="preserve"
310
+ style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
311
+ x="41.647079"
312
+ y="916.79706"
313
+ id="text4457-6"><tspan
314
+ y="916.79706"
315
+ x="41.647079"
316
+ sodipodi:role="line"
317
+ id="tspan4459-6"
318
+ style="font-size:30.4762px;line-height:1.25;font-family:sans-serif"> </tspan></text>
319
+ <g
320
+ id="text4356-2"
321
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
322
+ transform="translate(44,-124.00004)">
323
+ <path
324
+ inkscape:connector-curvature="0"
325
+ id="path4384-2"
326
+ style="font-variant:normal;font-stretch:normal;font-size:20px;font-family:Arial;-inkscape-font-specification:Arial;fill:#f2f2f2;fill-opacity:1"
327
+ d="m 35.742187,999.43835 3.076172,-3.07617 -3.066406,-3.0664 1.191406,-1.19141 3.066407,3.06641 3.05664,-3.05664 1.171875,1.18164 -3.046875,3.05664 3.066406,3.0664 -1.191406,1.19138 L 40,997.54382 36.923828,1000.62 35.742187,999.43835" />
328
+ </g>
329
+ <path
330
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none"
331
+ d="m 63.71429,890.36216 -1.14285,1.1428 2.28571,2.2858 L 66,892.64786 Z M 62,892.07646 55.714286,898.36218 58,900.64788 l 6.28572,-6.2857 z m -6.285714,6.28572 -1.714286,4 4,-1.7143 z"
332
+ id="path3684-2"
333
+ inkscape:connector-curvature="0"
334
+ sodipodi:nodetypes="cccccccccccccc" />
335
+ <path
336
+ inkscape:connector-curvature="0"
337
+ id="table-5-8-8-6-1"
338
+ style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
339
+ d="m 54,914.3622 v 1 h 1 v -1 z m 2,0 v 1 h 10 v -1 z m -2,2 v 1 h 1 v -1 z m 2,0 v 1 h 10 v -1 z m -2,2 v 1 h 1 v -1 z m 2,0 v 1 h 10 v -1 z m -2,2 v 1 h 1 v -1 z m 2,0 v 1 h 10 v -1 z m -2,2 v 1 h 1 v -1 z m 2,0 v 1 h 10 v -1 z m -2,2 v 1 h 1 v -1 z m 2,0 v 1 h 10 v -1 z" />
340
+ <circle
341
+ style="fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
342
+ id="path3764"
343
+ cx="108"
344
+ cy="844.36218"
345
+ r="1.5" />
346
+ <path
347
+ style="fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
348
+ d="m 107,847.36218 h 2 v 6 h -2 z"
349
+ id="rect4274"
350
+ inkscape:connector-curvature="0"
351
+ sodipodi:nodetypes="ccccc" />
352
+ <g
353
+ id="g4717"
354
+ transform="translate(-54.789185,-114.477)">
355
+ <path
356
+ style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
357
+ d="m 141.26953,173.42383 -6.75586,2.67969 0.95313,6.3457 5.87109,3.12695 4.14844,-7.87305 z m -1.44726,2.48828 2.99023,1.60156 -0.5918,2.43164 -3.35742,1.50391 -1.73828,-3.81055 z"
358
+ transform="translate(-1.210815,854.83918)"
359
+ id="path3862"
360
+ inkscape:connector-curvature="0" />
361
+ </g>
362
+ <path
363
+ style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
364
+ d="m 131,865.36213 v 1 c -1.42857,0 -3.28571,0.59991 -4,2 v 1 h 10 v -1 c -0.71429,-1.40009 -2.57143,-2 -4,-2 v -1 z m -4,5 2,9 h 6 l 2,-9 z"
365
+ id="delete-30"
366
+ inkscape:connector-curvature="0"
367
+ sodipodi:nodetypes="cccccccccccccc"
368
+ inkscape:label="delete-30" />
369
+ <g
370
+ id="g4797"
371
+ transform="translate(-70.259925,-96.674381)">
372
+ <path
373
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
374
+ d="m 180.94531,986.19141 -1.46679,13.33593 1.98828,0.21875 1.46679,-13.33593 z"
375
+ id="path4349-2-2-9-3-8"
376
+ inkscape:connector-curvature="0" />
377
+ <path
378
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
379
+ d="m 174.01172,986.32617 -1.9668,0.36719 2.46289,13.1875 1.96485,-0.36719 z"
380
+ id="path4349-2-2-3-3"
381
+ inkscape:connector-curvature="0" />
382
+ <g
383
+ id="g4621">
384
+ <g
385
+ id="g4400-8-39-2-3-1"
386
+ transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)"
387
+ style="stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none" />
388
+ <g
389
+ id="g4400-8-39-2-3"
390
+ transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)"
391
+ style="stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none" />
392
+ </g>
393
+ </g>
394
+ <path
395
+ inkscape:connector-curvature="0"
396
+ id="path4349-2-2-9-3-8-3"
397
+ d="m 111.28778,865.517 -1.46679,13.33593 1.98828,0.21875 1.46679,-13.33593 z"
398
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
399
+ <path
400
+ inkscape:connector-curvature="0"
401
+ id="path4349-2-2-3-3-8"
402
+ d="m 104.35419,865.65176 -1.9668,0.36719 2.46289,13.1875 1.96485,-0.36719 z"
403
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
404
+ <path
405
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
406
+ d="m 107.62695,913.084 -1.46679,13.3359 1.98828,0.2188 1.46679,-13.336 z"
407
+ id="path4349-2-2-9-3-8-7"
408
+ inkscape:connector-curvature="0" />
409
+ <path
410
+ inkscape:connector-curvature="0"
411
+ id="rect4918"
412
+ d="m 126.53906,912.2997 -1.32226,1.1269 4.66601,5.4766 v 2.7305 l -3.44726,4.8613 1.30859,0.9297 3.75195,-5.293 h 2.38672 v -4 h -2.375 z"
413
+ style="fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
414
+ <g
415
+ id="g4621-0-6"
416
+ transform="translate(-45.689927,-70.01671)"
417
+ style="fill:#4d4d4d;fill-opacity:1">
418
+ <g
419
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none"
420
+ transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)"
421
+ id="g4400-8-39-2-3-1-1-8">
422
+ <path
423
+ sodipodi:nodetypes="cc"
424
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
425
+ d="m 175.80573,948.24562 8.38854,8.34969"
426
+ id="path4353-1-6-1-3-6-5-5"
427
+ inkscape:connector-curvature="0" />
428
+ <path
429
+ sodipodi:nodetypes="cc"
430
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
431
+ d="m 176,956.36218 8.15542,-8.19427"
432
+ id="path4355-9-7-1-7-3-31-4"
433
+ inkscape:connector-curvature="0" />
434
+ </g>
435
+ <g
436
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none"
437
+ transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)"
438
+ id="g4400-8-39-2-3-3-7">
439
+ <path
440
+ inkscape:connector-curvature="0"
441
+ id="path4353-1-6-1-3-3-9"
442
+ transform="matrix(1.9000195,0,0,1.9000195,-245.02393,606.04174)"
443
+ d="m 222.11328,179.64258 -1.04883,1.04883 1.58203,1.58007 -1.58203,1.58204 1.04883,1.04687 1.58203,-1.58008 1.58008,1.58008 1.04883,-1.04687 -1.58203,-1.58204 1.58203,-1.58007 -1.04883,-1.04883 -1.58008,1.58008 z"
444
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
445
+ </g>
446
+ </g>
447
+ <path
448
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
449
+ d="m 108.14555,816.36218 v 3.8267 H 112 v -3.8267 z m 0.51755,4.35174 -1.24591,2.31321 1.16687,0.61848 1.24404,-2.31507 z m -1.86888,3.47168 -0.27666,0.51571 h -2.42597 v 2.24408 L 100,831.00938 l 1.36261,1.3528 3.86198,-3.83417 h 2.72145 v -3.6959 l 0.015,-0.028 -0.015,-0.008 v -0.0953 h -0.17879 l -0.97303,-0.51571 z"
450
+ id="path4873"
451
+ inkscape:connector-curvature="0" />
452
+ <g
453
+ id="g4244"
454
+ transform="matrix(0.51357238,-0.54309229,0.54309229,0.51357238,-518.0199,506.22551)">
455
+ <path
456
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
457
+ d="m 220.49219,133.52344 c -0.33017,0.01 -0.66239,0.0456 -0.99414,0.10742 -2.22487,0.41425 -4.02666,1.95747 -4.83203,4.00976 l -0.87696,-1.8164 a 0.50004998,0.50004998 0 0 0 -0.83398,-0.11328 0.50004998,0.50004998 0 0 0 -0.0664,0.54883 l 1.45899,3.01953 a 0.50004998,0.50004998 0 0 0 0.60742,0.25586 l 2.84375,-0.94532 a 0.50028339,0.50028339 0 1 0 -0.31641,-0.94922 l -2.00195,0.66797 c 0.61312,-1.89015 2.20733,-3.32407 4.20117,-3.69531 2.24744,-0.41845 4.51458,0.59912 5.69531,2.55664 1.18073,1.95754 1.02202,4.43774 -0.39648,6.23047 -1.41851,1.79275 -3.79606,2.51535 -5.97266,1.81641 a 0.50004998,0.50004998 0 1 0 -0.30469,0.95117 c 2.57038,0.82539 5.38736,-0.0294 7.0625,-2.14649 0.4188,-0.52924 0.74532,-1.11137 0.97657,-1.7207 0.69373,-1.828 0.53599,-3.91467 -0.50977,-5.64844 -1.22005,-2.02271 -3.42908,-3.19767 -5.74023,-3.1289 z"
458
+ transform="matrix(0.91921787,0.9720541,-0.9720541,0.91921787,152.1356,647.93271)"
459
+ id="path4240"
460
+ inkscape:connector-curvature="0" />
461
+ </g>
462
+ <g
463
+ id="delete-vertex"
464
+ transform="translate(-90,-64)">
465
+ <path
466
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
467
+ d="m 227.55273,53.105469 -6.05468,3.027343 h -3.44141 v 3.517579 l -2.95117,5.902343 1.78906,0.894532 3.15625,-6.314454 h 2.00586 v -2.042968 l 6.39063,-3.195313 z"
468
+ transform="translate(0,852.36218)"
469
+ id="path4349-2-2-9-3-8-3-5"
470
+ inkscape:connector-curvature="0" />
471
+ <path
472
+ sodipodi:nodetypes="cc"
473
+ style="fill:none;stroke:#ffffff;stroke-width:2.482;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
474
+ d="m 217,907.36218 6,6"
475
+ id="path4353-1-6-1-3-5-1-9"
476
+ inkscape:connector-curvature="0" />
477
+ <path
478
+ sodipodi:nodetypes="cc"
479
+ style="fill:none;stroke:#4d4d4d;stroke-width:1.48224;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
480
+ d="m 217,907.36218 6,6"
481
+ id="path4353-1-6-1-3-5-1"
482
+ inkscape:connector-curvature="0" />
483
+ </g>
484
+ <g
485
+ id="split-line">
486
+ <path
487
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
488
+ d="m 135.11523,817.44531 -1.46875,13.33594 1.98829,0.21875 1.46679,-13.33594 z"
489
+ id="path4349-2-2-9-3-8-9"
490
+ inkscape:connector-curvature="0" />
491
+ <path
492
+ style="fill:none;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
493
+ d="m 129.65868,830.95182 -2.4614,-13.1887"
494
+ id="path4349-2-2-3-3-3"
495
+ inkscape:connector-curvature="0" />
496
+ </g>
497
+ <g
498
+ id="g4621-0-6-2"
499
+ transform="translate(-73.384659,-72.287334)"
500
+ style="fill:#4d4d4d;fill-opacity:1">
501
+ <g
502
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none"
503
+ transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)"
504
+ id="g4400-8-39-2-3-1-1-8-9">
505
+ <path
506
+ sodipodi:nodetypes="cc"
507
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
508
+ d="m 175.80573,948.24562 8.38854,8.34969"
509
+ id="path4353-1-6-1-3-6-5-5-7"
510
+ inkscape:connector-curvature="0" />
511
+ <path
512
+ sodipodi:nodetypes="cc"
513
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
514
+ d="m 176,956.36218 8.15542,-8.19427"
515
+ id="path4355-9-7-1-7-3-31-4-6"
516
+ inkscape:connector-curvature="0" />
517
+ </g>
518
+ <g
519
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none"
520
+ transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)"
521
+ id="g4400-8-39-2-3-3-7-9">
522
+ <path
523
+ inkscape:connector-curvature="0"
524
+ id="path4353-1-6-1-3-3-9-1"
525
+ transform="matrix(1.9000195,0,0,1.9000195,-245.02393,606.04174)"
526
+ d="m 222.11328,179.64258 -1.04883,1.04883 1.58203,1.58007 -1.58203,1.58204 1.04883,1.04687 1.58203,-1.58008 1.58008,1.58008 1.04883,-1.04687 -1.58203,-1.58204 1.58203,-1.58007 -1.04883,-1.04883 -1.58008,1.58008 z"
527
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
528
+ </g>
529
+ </g>
530
+ <g
531
+ id="g4621-0-6-9"
532
+ transform="translate(-70.310957,-96.40456)"
533
+ style="fill:#4d4d4d;fill-opacity:1">
534
+ <g
535
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none"
536
+ transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)"
537
+ id="g4400-8-39-2-3-1-1-8-0">
538
+ <path
539
+ sodipodi:nodetypes="cc"
540
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
541
+ d="m 175.80573,948.24562 8.38854,8.34969"
542
+ id="path4353-1-6-1-3-6-5-5-4"
543
+ inkscape:connector-curvature="0" />
544
+ <path
545
+ sodipodi:nodetypes="cc"
546
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
547
+ d="m 176,956.36218 8.15542,-8.19427"
548
+ id="path4355-9-7-1-7-3-31-4-9"
549
+ inkscape:connector-curvature="0" />
550
+ </g>
551
+ <g
552
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none"
553
+ transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)"
554
+ id="g4400-8-39-2-3-3-7-8">
555
+ <path
556
+ inkscape:connector-curvature="0"
557
+ id="path4353-1-6-1-3-3-9-4"
558
+ transform="matrix(1.9000195,0,0,1.9000195,-245.02393,606.04174)"
559
+ d="m 222.11328,179.64258 -1.04883,1.04883 1.58203,1.58007 -1.58203,1.58204 1.04883,1.04687 1.58203,-1.58008 1.58008,1.58008 1.04883,-1.04687 -1.58203,-1.58204 1.58203,-1.58007 -1.04883,-1.04883 -1.58008,1.58008 z"
560
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
561
+ </g>
562
+ </g>
563
+ <g
564
+ id="g4621-0-6-0"
565
+ transform="translate(-69.563661,-120.09111)"
566
+ style="fill:#4d4d4d;fill-opacity:1">
567
+ <g
568
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none"
569
+ transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)"
570
+ id="g4400-8-39-2-3-1-1-8-2">
571
+ <path
572
+ sodipodi:nodetypes="cc"
573
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
574
+ d="m 175.80573,948.24562 8.38854,8.34969"
575
+ id="path4353-1-6-1-3-6-5-5-5"
576
+ inkscape:connector-curvature="0" />
577
+ <path
578
+ sodipodi:nodetypes="cc"
579
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
580
+ d="m 176,956.36218 8.15542,-8.19427"
581
+ id="path4355-9-7-1-7-3-31-4-69"
582
+ inkscape:connector-curvature="0" />
583
+ </g>
584
+ <g
585
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none"
586
+ transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)"
587
+ id="g4400-8-39-2-3-3-7-2">
588
+ <path
589
+ inkscape:connector-curvature="0"
590
+ id="path4353-1-6-1-3-3-9-8"
591
+ transform="matrix(1.9000195,0,0,1.9000195,-245.02393,606.04174)"
592
+ d="m 222.11328,179.64258 -1.04883,1.04883 1.58203,1.58007 -1.58203,1.58204 1.04883,1.04687 1.58203,-1.58008 1.58008,1.58008 1.04883,-1.04687 -1.58203,-1.58204 1.58203,-1.58007 -1.04883,-1.04883 -1.58008,1.58008 z"
593
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
594
+ </g>
595
+ </g>
596
+ <g
597
+ id="g4621-0-6-5"
598
+ transform="translate(-76.593009,-120.17455)"
599
+ style="fill:#4d4d4d;fill-opacity:1">
600
+ <g
601
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:4.22442;stroke-miterlimit:4;stroke-dasharray:none"
602
+ transform="matrix(0.57449139,0,0,0.57449139,77.909804,445.56677)"
603
+ id="g4400-8-39-2-3-1-1-8-6">
604
+ <path
605
+ sodipodi:nodetypes="cc"
606
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
607
+ d="m 175.80573,948.24562 8.38854,8.34969"
608
+ id="path4353-1-6-1-3-6-5-5-2"
609
+ inkscape:connector-curvature="0" />
610
+ <path
611
+ sodipodi:nodetypes="cc"
612
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:4.22442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
613
+ d="m 176,956.36218 8.15542,-8.19427"
614
+ id="path4355-9-7-1-7-3-31-4-0"
615
+ inkscape:connector-curvature="0" />
616
+ </g>
617
+ <g
618
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:2.81628;stroke-miterlimit:4;stroke-dasharray:none"
619
+ transform="matrix(0.52631038,0,0,0.52631038,86.648567,491.41283)"
620
+ id="g4400-8-39-2-3-3-7-0">
621
+ <path
622
+ inkscape:connector-curvature="0"
623
+ id="path4353-1-6-1-3-3-9-6"
624
+ transform="matrix(1.9000195,0,0,1.9000195,-245.02393,606.04174)"
625
+ d="m 222.11328,179.64258 -1.04883,1.04883 1.58203,1.58007 -1.58203,1.58204 1.04883,1.04687 1.58203,-1.58008 1.58008,1.58008 1.04883,-1.04687 -1.58203,-1.58204 1.58203,-1.58007 -1.04883,-1.04883 -1.58008,1.58008 z"
626
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.81628;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
627
+ </g>
628
+ </g>
629
+ <path
630
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
631
+ d="m 108,840.36204 c -4.41236,0 -8.00014,3.58778 -8.00014,8.00014 0,4.41235 3.58778,8.00014 8.00014,8.00014 4.41236,0 8.00014,-3.58779 8.00014,-8.00014 0,-4.41236 -3.58778,-8.00014 -8.00014,-8.00014 z m 0,1.00028 c 3.87192,0 6.99986,3.12794 6.99986,6.99986 0,3.87191 -3.12794,6.99986 -6.99986,6.99986 -3.87192,0 -6.99986,-3.12795 -6.99986,-6.99986 0,-3.87192 3.12794,-6.99986 6.99986,-6.99986 z"
632
+ id="path3014-4"
633
+ inkscape:connector-curvature="0" />
634
+ <rect
635
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
636
+ id="rect4237"
637
+ width="2"
638
+ height="2"
639
+ x="77"
640
+ y="889.36218" />
641
+ <rect
642
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
643
+ id="rect4239"
644
+ width="2"
645
+ height="2"
646
+ x="81"
647
+ y="889.36218" />
648
+ <rect
649
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
650
+ id="rect4241"
651
+ width="2"
652
+ height="2"
653
+ x="85"
654
+ y="889.36218" />
655
+ <rect
656
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
657
+ id="rect4243"
658
+ width="2"
659
+ height="2"
660
+ x="89"
661
+ y="889.36218" />
662
+ <rect
663
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
664
+ id="rect4237-6"
665
+ width="2"
666
+ height="2"
667
+ x="77"
668
+ y="893.36218" />
669
+ <rect
670
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
671
+ id="rect4239-3"
672
+ width="2"
673
+ height="2"
674
+ x="81"
675
+ y="893.36218" />
676
+ <rect
677
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
678
+ id="rect4241-8"
679
+ width="2"
680
+ height="2"
681
+ x="85"
682
+ y="893.36218" />
683
+ <rect
684
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
685
+ id="rect4243-2"
686
+ width="2"
687
+ height="2"
688
+ x="89"
689
+ y="893.36218" />
690
+ <rect
691
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
692
+ id="rect4237-1"
693
+ width="2"
694
+ height="2"
695
+ x="77"
696
+ y="897.36218" />
697
+ <rect
698
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
699
+ id="rect4239-5"
700
+ width="2"
701
+ height="2"
702
+ x="81"
703
+ y="897.36218" />
704
+ <rect
705
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
706
+ id="rect4241-82"
707
+ width="2"
708
+ height="2"
709
+ x="85"
710
+ y="897.36218" />
711
+ <rect
712
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
713
+ id="rect4243-5"
714
+ width="2"
715
+ height="2"
716
+ x="89"
717
+ y="897.36218" />
718
+ <rect
719
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
720
+ id="rect4237-6-6"
721
+ width="2"
722
+ height="2"
723
+ x="77"
724
+ y="901.36218" />
725
+ <rect
726
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
727
+ id="rect4239-3-7"
728
+ width="2"
729
+ height="2"
730
+ x="81"
731
+ y="901.36218" />
732
+ <rect
733
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
734
+ id="rect4241-8-2"
735
+ width="2"
736
+ height="2"
737
+ x="85"
738
+ y="901.36218" />
739
+ <rect
740
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
741
+ id="rect4243-2-5"
742
+ width="2"
743
+ height="2"
744
+ x="89"
745
+ y="901.36218" />
746
+ <path
747
+ style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
748
+ d="m 131,937.3621 v 1 c -1.42857,0 -3.28571,0.5999 -4,2 v 1 h 10 v -1 c -0.71429,-1.4001 -2.57143,-2 -4,-2 v -1 z m -4,5 2,9 h 6 l 2,-9 z"
749
+ id="delete-30-7"
750
+ inkscape:connector-curvature="0"
751
+ sodipodi:nodetypes="cccccccccccccc"
752
+ inkscape:label="delete-30" />
753
+ <path
754
+ d="m 113.2903,943.46769 0.9072,0.5491 c 0.1786,0.10817 0.2366,0.34196 0.1294,0.52223 -0.0319,0.0535 -0.0764,0.0983 -0.1294,0.13055 l -7.00717,4.24121 -7.00708,-4.24121 c -0.17869,-0.10817 -0.236639,-0.34196 -0.12942,-0.52222 0.0319,-0.0536 0.0763,-0.0984 0.12942,-0.13056 l 0.90714,-0.5491 6.09994,3.69219 z m 0,3.57799 0.9072,0.5491 c 0.1786,0.1081 0.2366,0.3419 0.1294,0.5222 -0.0319,0.0535 -0.0764,0.0983 -0.1294,0.1306 l -6.61891,4.0061 c -0.239,0.1447 -0.53753,0.1447 -0.77652,0 l -6.61882,-4.0061 c -0.17869,-0.1082 -0.236639,-0.342 -0.12942,-0.5223 0.0319,-0.0536 0.0763,-0.0984 0.12942,-0.1305 l 0.90714,-0.5491 6.09994,3.6921 z m -5.71171,-10.57501 6.61891,4.00621 c 0.1786,0.10815 0.2366,0.34196 0.1294,0.52222 -0.0319,0.0536 -0.0764,0.0984 -0.1294,0.13056 l -7.00717,4.24119 -7.00708,-4.24119 c -0.17869,-0.10815 -0.236639,-0.34196 -0.12942,-0.52222 0.0319,-0.0536 0.0763,-0.0984 0.12942,-0.13056 l 6.61882,-4.00621 c 0.23899,-0.14465 0.53752,-0.14465 0.77652,0 z"
755
+ fill="#4d4d4d"
756
+ id="path437"
757
+ style="fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:0.178;stroke-dasharray:none;stroke-opacity:1" />
758
+ <path
759
+ id="linestring"
760
+ style="color:#000000;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
761
+ d="m 7,937.36218 v 2 H 8.8828125 L 15,942.42077 v 0.23438 l -6.7070312,6.70703 H 7 v 2 h 2 v -1.29297 l 6.707031,-6.70703 H 17 v -2 H 15.117188 L 9,938.30359 v -0.94141 z" />
762
+ <path
763
+ id="polygon"
764
+ style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
765
+ d="m 29,936.36218 v 2 h 0.927734 l -0.855468,12 H 28 v 2 h 2 v -1.19922 l 8,-1.60156 v 0.80078 h 2 v -2 h -0.777344 l 1.554688,-7 H 42 v -2 h -2 v 0.72656 l -9,-2.45312 v -1.27344 z" />
766
+ <path
767
+ id="marker"
768
+ d="m 84,936.36218 c -2.625,0 -5.25,1.70216 -6,5.1064 0,2.04256 1.5,6.12768 6,10.8936 4.5,-4.76592 6,-8.85104 6,-10.8936 -0.75,-3.40424 -3.375,-5.1064 -6,-5.1064 z m 0,2.38304 c 1.656857,0 3,1.21928 3,2.72336 0,1.50408 -1.343143,2.72344 -3,2.72344 -1.656848,0 -3,-1.21936 -3,-2.72344 0,-1.50408 1.343152,-2.72336 3,-2.72336 z"
769
+ style="fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
770
+ inkscape:connector-curvature="0" />
771
+ <g
772
+ transform="matrix(0.16294606,0,0,0.16295934,27.835262,912.23132)"
773
+ id="settings"
774
+ style="fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:1.49736;stroke-miterlimit:4;stroke-dasharray:none"
775
+ class="sprite">
776
+ <path
777
+ inkscape:connector-curvature="0"
778
+ d="M 98.762,43.652 C 98.576,42.266 97.281,41.07 95.886,40.993 l -6.172,-0.337 c -1.395,-0.076 -2.899,-1.224 -3.341,-2.55 l -2.28,-5.518 c -0.629,-1.249 -0.379,-3.121 0.553,-4.161 l 4.122,-4.6 c 0.933,-1.042 0.962,-2.77 0.066,-3.842 l -8.813,-8.813 c -1.073,-0.897 -2.803,-0.867 -3.845,0.065 l -4.598,4.122 c -1.039,0.934 -2.915,1.182 -4.161,0.551 l -5.521,-2.279 c -1.324,-0.442 -2.472,-1.945 -2.549,-3.34 L 59.01,4.121 C 58.933,2.725 57.738,1.43 56.351,1.243 c 0,0 -3.252,-0.44 -6.248,-0.44 -2.991,0 -6.243,0.44 -6.243,0.44 -1.386,0.188 -2.582,1.483 -2.658,2.878 l -0.338,6.17 c -0.076,1.396 -1.224,2.898 -2.551,3.34 l -5.517,2.279 c -1.249,0.631 -3.122,0.382 -4.161,-0.551 l -4.601,-4.122 c -1.042,-0.932 -2.769,-0.962 -3.842,-0.065 l -8.813,8.813 c -0.897,1.073 -0.867,2.801 0.066,3.842 l 4.122,4.6 c 0.933,1.041 1.182,2.913 0.551,4.161 l -2.279,5.518 c -0.442,1.326 -1.946,2.474 -3.34,2.55 l -6.17,0.337 c -1.396,0.077 -2.691,1.272 -2.879,2.659 0,0 -0.439,3.253 -0.439,6.243 0,2.99 0.44,6.24 0.44,6.24 0.188,1.389 1.483,2.582 2.879,2.659 l 6.169,0.339 c 1.396,0.075 2.898,1.225 3.341,2.549 l 2.278,5.517 c 0.631,1.248 0.381,3.122 -0.551,4.163 l -4.122,4.598 c -0.933,1.042 -0.963,2.771 -0.066,3.845 l 8.814,8.813 c 1.073,0.896 2.801,0.866 3.842,-0.066 l 4.6,-4.122 c 1.041,-0.932 2.913,-1.182 4.161,-0.553 l 5.517,2.28 c 1.327,0.441 2.475,1.946 2.55,3.343 l 0.338,6.168 c 0.076,1.395 1.272,2.692 2.658,2.88 0,0 3.252,0.439 6.244,0.439 2.996,0 6.25,-0.439 6.25,-0.439 1.385,-0.188 2.58,-1.485 2.657,-2.88 L 59.347,89.5 c 0.077,-1.396 1.225,-2.901 2.551,-3.343 l 5.517,-2.28 c 1.248,-0.629 3.122,-0.379 4.163,0.553 l 4.598,4.122 c 1.042,0.933 2.771,0.964 3.843,0.067 l 8.815,-8.814 C 89.73,78.732 89.7,77.002 88.768,75.96 l -4.122,-4.598 c -0.932,-1.041 -1.182,-2.915 -0.553,-4.163 l 2.28,-5.517 c 0.441,-1.324 1.946,-2.474 3.341,-2.549 l 6.172,-0.339 c 1.395,-0.077 2.692,-1.271 2.876,-2.659 0,0 0.441,-3.25 0.441,-6.24 0,-2.99 -0.441,-6.243 -0.441,-6.243 z M 50.104,62.361 c -6.886,0 -12.468,-5.585 -12.468,-12.467 0,-6.885 5.582,-12.467 12.468,-12.467 6.89,0 12.475,5.582 12.475,12.467 -10e-4,6.882 -5.586,12.467 -12.475,12.467 z"
779
+ id="path27812"
780
+ style="fill:#f2f2f2;fill-opacity:1;stroke:#999999;stroke-width:1.49736;stroke-miterlimit:4;stroke-dasharray:none" />
781
+ </g>
782
+ <g
783
+ clip-path="url(#clip0_241_10857)"
784
+ id="undo"
785
+ transform="matrix(0.71300568,0,0,0.66260978,53.493751,938.13028)"
786
+ style="fill:none;stroke:#f2f2f2;stroke-width:1.45488;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1">
787
+ <path
788
+ d="M 1.07001,4.41003 H 10.49 c 0.9234,-0.0066 1.8391,0.16957 2.6941,0.5184 0.8551,0.34883 1.6327,0.8634 2.288,1.51407 0.6553,0.65067 1.1754,1.42458 1.5303,2.27713 0.3549,0.85256 0.5376,1.76697 0.5376,2.69037 0.0067,0.9277 -0.1712,1.8474 -0.5231,2.7058 -0.3519,0.8583 -0.871,1.6382 -1.527,2.2941 -0.656,0.656 -1.4358,1.1751 -2.2941,1.527 -0.8584,0.352 -1.7781,0.5298 -2.7058,0.5231 H 1.07001"
789
+ stroke="#f2f2f2"
790
+ stroke-miterlimit="10"
791
+ id="path580"
792
+ style="fill:none;stroke:#f2f2f2;stroke-width:1.45486;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
793
+ <path
794
+ d="M 4.75002,8.44998 0.710022,4.39998 4.75002,0.349976"
795
+ stroke="#f2f2f2"
796
+ stroke-miterlimit="10"
797
+ id="path582"
798
+ style="fill:none;stroke:#f2f2f2;stroke-width:1.45486;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
799
+ </g>
800
+ <g
801
+ id="g1"
802
+ transform="translate(144,-24.00004)">
803
+ <path
804
+ d="m 9,849.93721 v 4.04997 c 0,0.20708 0.167895,0.375 0.375,0.375 h 5.25 c 0.207075,0 0.375,-0.16792 0.375,-0.375 v -4.04997 c 0,-0.20708 -0.167925,-0.375 -0.375,-0.375 h -5.25 c -0.207105,0 -0.375,0.16792 -0.375,0.375 z"
805
+ stroke="#f2f2f2"
806
+ id="path438"
807
+ style="fill:none;stroke:#999999;stroke-width:0.999997;stroke-opacity:1" />
808
+ <path
809
+ d="M 15.21255,842.36218 H 6.375 c -0.207105,0 -0.375,0.1679 -0.375,0.37499 v 11.24993 c 0,0.20708 0.167895,0.375 0.375,0.375 h 11.25 c 0.207075,0 0.375,-0.16792 0.375,-0.375 v -8.67664 c 0,-0.0953 -0.0363,-0.18697 -0.1014,-0.25648 l -2.41245,-2.57327 c -0.07095,-0.0756 -0.16995,-0.11853 -0.2736,-0.11853 z"
810
+ stroke="#f2f2f2"
811
+ id="save"
812
+ style="fill:none;stroke:#999999;stroke-width:0.999997;stroke-opacity:1" />
813
+ </g>
814
+ <path
815
+ id="close"
816
+ style="color:#000000;fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.188976;stroke-dasharray:none;stroke-opacity:1"
817
+ d="m 32.353516,820.00866 -0.707032,0.70704 3.646485,3.64648 -3.646485,3.64648 0.707032,0.70704 L 36,825.06921 l 3.646484,3.64649 0.707032,-0.70704 -3.646485,-3.64648 3.646485,-3.64648 -0.707032,-0.70704 L 36,823.65515 Z" />
818
+ <g
819
+ clip-path="url(#clip0_576_2753)"
820
+ id="eye"
821
+ transform="translate(51,843.33202)">
822
+ <path
823
+ d="m 9,1 c 3.06,0 6.26,2.74 7.6,4.03 C 15.26,6.33 12.06,9.06 9,9.06 5.94,9.06 2.74,6.33 1.4,5.03 2.74,3.74 5.93,1 9,1 Z M 9,0 C 4.5,0 0,5.03 0,5.03 c 0,0 4.5,5.03 9,5.03 4.5,0 9,-5.03 9,-5.03 C 18,5.03 13.5,0 9,0 Z"
824
+ fill="#f2f2f2"
825
+ id="path1" />
826
+ <path
827
+ d="m 8.99999,3.64001 c 0.77,0 1.39001,0.63 1.39001,1.39 0,0.76 -0.63001,1.39 -1.39001,1.39 -0.76,0 -1.39,-0.63 -1.39,-1.39 0,-0.76 0.63,-1.39 1.39,-1.39 z m 0,-1 c -1.32,0 -2.39,1.07 -2.39,2.39 0,1.32 1.07,2.39 2.39,2.39 1.32001,0 2.39001,-1.07 2.39001,-2.39 0,-1.32 -1.07,-2.39 -2.39001,-2.39 z"
828
+ fill="#f2f2f2"
829
+ id="path2" />
830
+ </g>
831
+ <g
832
+ clip-path="url(#clip0_588_799)"
833
+ id="eye-closed"
834
+ transform="translate(75,841.96201)">
835
+ <path
836
+ d="m 9,2.36001 c 3.06,0 6.26,2.74 7.6,4.03 -1.34,1.3 -4.54,4.02999 -7.6,4.02999 -3.06,0 -6.26,-2.72999 -7.6,-4.01999 1.34,-1.3 4.54,-4.03 7.6,-4.03 m 0,-1 c -4.5,-0.01 -9,5.03 -9,5.03 0,0 4.5,5.02999 9,5.02999 4.5,0 9,-5.02999 9,-5.02999 0,0 -4.5,-5.03 -9,-5.03 z"
837
+ fill="#f2f2f2"
838
+ id="path1-6"
839
+ style="fill:#b3b3b3;fill-opacity:1" />
840
+ <path
841
+ d="m 8.99999,5 c 0.77,0 1.39001,0.63 1.39001,1.39 0,0.76 -0.63001,1.39 -1.39001,1.39 -0.76,0 -1.39,-0.63 -1.39,-1.39 0,-0.76 0.63,-1.39 1.39,-1.39 z m 0,-1 c -1.32,0 -2.39,1.07 -2.39,2.39 0,1.32 1.07,2.39 2.39,2.39 C 10.32,8.78 11.39,7.71 11.39,6.39 11.39,5.07 10.32,4 8.99999,4 Z"
842
+ fill="#f2f2f2"
843
+ id="path2-7"
844
+ style="fill:#b3b3b3;fill-opacity:1" />
845
+ <path
846
+ d="M 16.8,0.400024 1.19995,12.4"
847
+ stroke="#f2f2f2"
848
+ stroke-miterlimit="10"
849
+ id="path3" />
850
+ <path
851
+ d="M 16.8,0.400024 1.19995,12.4"
852
+ stroke="#f2f2f2"
853
+ stroke-miterlimit="10"
854
+ id="path4"
855
+ style="stroke:#b3b3b3;stroke-opacity:1" />
856
+ </g>
857
+ <g
858
+ id="g2"
859
+ transform="translate(144)">
860
+ <path
861
+ d="m 9,849.93721 v 4.04997 c 0,0.20708 0.167895,0.375 0.375,0.375 h 5.25 c 0.207075,0 0.375,-0.16792 0.375,-0.375 v -4.04997 c 0,-0.20708 -0.167925,-0.375 -0.375,-0.375 h -5.25 c -0.207105,0 -0.375,0.16792 -0.375,0.375 z"
862
+ stroke="#f2f2f2"
863
+ id="path438-6"
864
+ style="fill:none;stroke:#42ece6;stroke-width:0.999997;stroke-opacity:1" />
865
+ <path
866
+ d="M 15.21255,842.36218 H 6.375 c -0.207105,0 -0.375,0.1679 -0.375,0.37499 v 11.24993 c 0,0.20708 0.167895,0.375 0.375,0.375 h 11.25 c 0.207075,0 0.375,-0.16792 0.375,-0.375 v -8.67664 c 0,-0.0953 -0.0363,-0.18697 -0.1014,-0.25648 l -2.41245,-2.57327 c -0.07095,-0.0756 -0.16995,-0.11853 -0.2736,-0.11853 z"
867
+ stroke="#f2f2f2"
868
+ id="save-7"
869
+ style="fill:none;stroke:#42ece6;stroke-width:0.999997;stroke-opacity:1" />
870
+ </g>
871
+ <path
872
+ style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.177;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
873
+ d="m 156,875.36218 6,-6 h -12 z"
874
+ id="arrow-down"
875
+ inkscape:connector-curvature="0"
876
+ sodipodi:nodetypes="cccc" />
877
+ <path
878
+ style="fill:#f2f2f2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.177;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
879
+ d="m 159,896.36218 -6,-6 v 12 z"
880
+ id="arrow-right"
881
+ inkscape:connector-curvature="0"
882
+ sodipodi:nodetypes="cccc" />
883
+ <path
884
+ id="permissions"
885
+ class="sprite"
886
+ d="m 151.39636,940.36205 c -2.24289,-0.005 -4.05758,1.79327 -4.06262,4.00014 0.005,2.21175 1.81973,3.9966 4.06262,4.00014 1.49552,-0.002 2.79821,-0.80916 3.50023,-2.00007 h 1.64589 l 1.31254,-1.27088 1.00005,0.95837 0.95837,-0.93753 0.97921,0.95838 1.00005,-0.95838 0.97921,0.95838 1.7084,-1.6459 c 0.24596,-0.25014 0.25203,-0.43892 0,-0.68752 l -1.39588,-1.37504 h -8.16683 c -0.69828,-1.20226 -2.01522,-2.00317 -3.52088,-2.00007 z m -1.77089,2.91689 c 0.58953,-0.003 1.05806,0.47235 1.06254,1.06254 -0.004,0.58196 -0.47273,1.05714 -1.06254,1.06253 -0.59953,-0.006 -1.08889,-0.48057 -1.08338,-1.06253 -0.005,-0.59019 0.48385,-1.06537 1.08338,-1.06254 z"
887
+ fill="#f2f2f2"
888
+ stroke="#999999"
889
+ stroke-width="0.166673" />
890
+ <path
891
+ id="import"
892
+ class="sprite"
893
+ d="m 156.0004,912.44554 c -4.37271,0 -7.91753,3.54481 -7.91753,7.91753 0,4.37272 3.54482,7.91752 7.91753,7.91752 4.37272,0 7.91752,-3.5448 7.91752,-7.91752 0,-4.37272 -3.5448,-7.91753 -7.91752,-7.91753 z m 0,3.29893 4.6186,4.6186 h -3.29893 v 3.95876 h -2.63909 v -3.95876 h -3.29893 z"
894
+ fill="#f2f2f2"
895
+ stroke="#999999"
896
+ stroke-width="0.164949" />
897
+ <g
898
+ id="tilelayers"
899
+ transform="matrix(2.5261037,0,0,2.5463653,48.310583,954.88883)"
900
+ style="stroke-width:0.993545">
901
+ <path
902
+ d="m 25.978244,7.8843707 h 0.03307 V 7.8512977 4.3049501 4.2718771 h -0.03307 -3.713453 -0.03307 v 0.033073 3.5463476 0.033073 h 0.03307 z M 21.999543,3.7253064 h 4.243946 c 0.06157,0 0.120623,0.024461 0.164173,0.068001 0.04352,0.04354 0.068,0.1025948 0.068,0.1641713 v 4.2439425 c 0,0.061569 -0.02447,0.1206236 -0.068,0.164174 -0.04355,0.04355 -0.102605,0.067998 -0.164173,0.067998 h -4.243946 c -0.06158,0 -0.120628,-0.024448 -0.164171,-0.067998 -0.04354,-0.04355 -0.068,-0.1026054 -0.068,-0.164174 V 3.9574787 c 0,-0.061577 0.02446,-0.1206315 0.068,-0.1641713 0.04354,-0.04354 0.102595,-0.068001 0.164171,-0.068001 z"
903
+ fill="#f2f2f2"
904
+ stroke="#999999"
905
+ stroke-width="0.0657188"
906
+ id="path1257" />
907
+ <g
908
+ mask="url(#mask0_181_11916)"
909
+ id="g1284"
910
+ transform="matrix(0.2645833,0,0,0.2645833,20.108331,2.1166664)"
911
+ style="stroke-width:0.993545">
912
+ <path
913
+ d="M 16.0401,2.3158 H 2.005 v 14.0351 h 14.0351 z"
914
+ fill="#d5ecbe"
915
+ id="path1262"
916
+ style="stroke-width:0.992312" />
917
+ <path
918
+ d="M 2.37597,3.42857 C 2.64371,3.11619 2.99113,2.88224 3.38126,2.75161 3.7714,2.62098 4.18964,2.59855 4.59151,2.68672 c 0.32391,0.15649 0.58536,0.41794 0.74185,0.74185 0.37093,0.72181 0,1.26316 0,2.21554 C 5.25316,7.36842 6.33587,7.72933 6.06519,9.33334 5.98499,9.90476 5.72434,10.7769 5.33336,10.807 4.71181,10.8672 4.39101,8.80201 3.11782,8.59148 c -0.39097,-0.06015 -0.47117,0.11028 -0.74185,0 -1.05263,-0.401 -1.523811,-3.65915 0,-5.16291 z"
919
+ fill="#e9daab"
920
+ id="path1264"
921
+ style="stroke-width:0.992312" />
922
+ <path
923
+ d="M 7.1779,16.3509 C 5.42352,14.6266 5.01249,14.5965 5.01249,14.1353 4.85209,13.1328 6.75685,12.8421 7.22803,11.178 7.55886,10.005 6.75685,9.61404 6.48617,7.48873 6.32577,6.2356 6.08517,4.27068 7.22803,3.05765 8.37089,1.84462 10.3659,1.88472 11.6591,2.3158 c 1.0647,0.38986 1.9867,1.09245 2.6451,2.01558 0.6584,0.92314 1.0223,2.02371 1.0441,3.15735 0,1.24311 -0.6817,1.65413 -0.7318,3.68927 0.0605,0.7372 0.0605,1.4782 0,2.2155 -0.1546,1.1225 -0.6763,2.1624 -1.4837,2.9574 C 11.629,17.6942 9.22302,18.0451 7.90973,17.0927 7.75936,16.9825 7.83956,17.0426 7.1779,16.3509 Z"
924
+ fill="#bcd8af"
925
+ id="path1266"
926
+ style="stroke-width:0.992312" />
927
+ <path
928
+ d="m 14.1956,9.33332 c -0.4303,0.37544 -0.6966,0.90438 -0.7419,1.47368 0,0.1203 0,1.213 0.7419,1.4837 0.2937,0.0714 0.6033,0.036 0.8733,-0.0999 0.27,-0.1359 0.4828,-0.3635 0.6004,-0.6419 0.066,-0.2429 0.066,-0.499 0,-0.7419 -0.1604,-1.38345 0.3007,-2.00501 0,-2.21553 -0.3008,-0.21053 -1.0928,0.35087 -1.4737,0.74185 z"
929
+ fill="#ebe9d6"
930
+ id="path1268"
931
+ style="stroke-width:0.992312" />
932
+ <path
933
+ d="m 14.1955,15.2381 c 0.2874,0.0123 0.5733,-0.0483 0.831,-0.1763 0.2577,-0.1279 0.4788,-0.3191 0.6427,-0.5555 0.2005,-0.3308 0.4411,-1.0526 0,-1.4837 -0.2062,-0.1739 -0.4672,-0.2693 -0.7369,-0.2693 -0.2696,0 -0.5306,0.0954 -0.7368,0.2693 0,0 -1.4837,0.7418 -1.4837,1.4837 0,0.7418 1.4837,0.7318 1.4837,0.7318 z"
934
+ fill="#f3ecdd"
935
+ id="path1270"
936
+ style="stroke-width:0.992312" />
937
+ <path
938
+ d="M 7.90976,1.57394 C 6.01502,2.89725 5.6441,3.86968 5.69422,4.53134 c 0.0802,1.0025 1.09273,1.37343 1.48371,3.00752 0.19537,0.72559 0.19537,1.48994 0,2.21553 -0.58145,1.85461 -2.51629,1.88471 -3.69925,3.68921 -0.6679,1.11 -0.92678,2.4186 -0.73183,3.6993"
939
+ stroke="#dfa170"
940
+ stroke-width="0.745158"
941
+ stroke-miterlimit="10"
942
+ id="path1272"
943
+ style="fill:none" />
944
+ <path
945
+ d="m 5.33325,1.94485 c 1.5732,1.61744 2.60339,3.68483 2.94737,5.91479 0.13097,0.73271 0.13097,1.48283 0,2.21556 -0.33083,1.7042 -1.30326,2.3559 -2.21554,4.4311 -0.31515,0.713 -0.56025,1.455 -0.73183,2.2155"
946
+ stroke="#e0859b"
947
+ stroke-width="0.248386"
948
+ stroke-miterlimit="10"
949
+ id="path1274"
950
+ style="fill:none" />
951
+ <path
952
+ d="m 10.4963,14.5063 c -1.84462,-1.0025 -1.7143,-5.53387 0,-6.64665 0.5915,-0.38096 1.1328,-0.21053 1.4837,-0.74186 0.5213,-0.802 -0.411,-1.69423 0,-2.95739 0.2306,-0.72181 0.8922,-1.52381 1.4737,-1.47369 1.0025,0.0802 2.1253,2.5564 1.4737,4.43108 -0.5314,1.56391 -1.9148,1.51379 -2.2156,3.00751 -0.3408,1.6441 1.2732,2.6266 0.7419,3.6892 -0.3395,0.4362 -0.8182,0.7428 -1.3564,0.8687 -0.5382,0.1259 -1.1033,0.0634 -1.601,-0.1769 z"
953
+ fill="#ade3ea"
954
+ id="path1276"
955
+ style="stroke-width:0.992312" />
956
+ <path
957
+ d="M 7.90971,2.31578 C 7.51873,3.22806 8.12023,4.46115 8.65156,4.53132 9.18289,4.6015 9.31322,3.87969 10.1353,3.78947 c 0.401,0 0.5213,0.1203 0.7318,0 0.5013,-0.27068 0.6115,-1.62406 0,-2.21554 C 10.6274,1.41713 10.3579,1.31164 10.0755,1.26409 9.79306,1.21654 9.50385,1.22797 9.22606,1.29765 8.94826,1.36734 8.6879,1.49377 8.46135,1.66899 8.23481,1.84421 8.04699,2.06443 7.90971,2.31578 Z"
958
+ fill="#748ec2"
959
+ id="path1278"
960
+ style="stroke-width:0.992312" />
961
+ <path
962
+ d="M 10.1354,5.27317 C 9.82458,5.57392 9.25315,6.1253 9.3935,6.74686 c 0.09023,0.401 0.45113,0.78195 0.7419,0.74185 0.2907,-0.0401 0.2907,-0.57143 0.7318,-0.74185 0.4411,-0.17043 0.5113,0.11027 0.7418,0 0.5314,-0.24061 0.6116,-1.92482 0,-2.21554 -0.6115,-0.29073 -1.2431,0.4812 -1.4736,0.74185 z"
963
+ fill="#f3ecdd"
964
+ id="path1280"
965
+ style="stroke-width:0.992312" />
966
+ <path
967
+ d="M 3.47861,3.78948 C 3.74929,3.62908 4.79189,4.33083 4.96232,5.27319 5.13275,6.21555 4.14027,7.58898 3.47861,7.48873 3.1966,7.37627 2.96599,7.16372 2.83095,6.8918 2.69592,6.61988 2.66595,6.30769 2.74678,6.01504 3.01746,5.46367 4.20042,5.57394 4.22047,5.28321 4.24052,4.99249 3.70919,5.01254 3.47861,4.53133 c -0.1203,-0.27067 -0.14035,-0.65162 0,-0.74185 z"
968
+ fill="#cfd7c8"
969
+ id="path1282"
970
+ style="stroke-width:0.992312" />
971
+ </g>
972
+ <path
973
+ d="m 24.352274,6.3088036 h 0.03307 V 6.2757306 2.7293857 2.6963127 h -0.03307 -3.713451 -0.03307 v 0.033073 3.5463449 0.033073 h 0.03307 z M 20.373578,2.1497393 h 4.24394 c 0.06157,0 0.120624,0.024461 0.164174,0.068002 0.04355,0.043541 0.068,0.102595 0.068,0.1641723 v 4.2439399 c 0,0.061569 -0.02445,0.1206236 -0.068,0.164174 -0.04355,0.04355 -0.102605,0.067998 -0.164174,0.067998 h -4.24394 c -0.06158,0 -0.120631,-0.024447 -0.164172,-0.067998 -0.04354,-0.04355 -0.068,-0.1026054 -0.068,-0.164174 V 2.3819136 c 0,-0.061577 0.02446,-0.1206315 0.068,-0.1641723 0.04354,-0.043541 0.102595,-0.068002 0.164172,-0.068002 z"
974
+ fill="#f2f2f2"
975
+ stroke="#999999"
976
+ stroke-width="0.0657188"
977
+ id="path1286" />
978
+ </g>
979
+ </g>
980
+ </svg>