pymdownx-mahjong 1.0.0__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.
Files changed (94) hide show
  1. pymdownx_mahjong/__init__.py +23 -0
  2. pymdownx_mahjong/assets/dark/0m.svg +333 -0
  3. pymdownx_mahjong/assets/dark/0p.svg +491 -0
  4. pymdownx_mahjong/assets/dark/0s.svg +678 -0
  5. pymdownx_mahjong/assets/dark/1m.svg +273 -0
  6. pymdownx_mahjong/assets/dark/1p.svg +551 -0
  7. pymdownx_mahjong/assets/dark/1s.svg +764 -0
  8. pymdownx_mahjong/assets/dark/1z.svg +242 -0
  9. pymdownx_mahjong/assets/dark/2m.svg +283 -0
  10. pymdownx_mahjong/assets/dark/2p.svg +396 -0
  11. pymdownx_mahjong/assets/dark/2s.svg +369 -0
  12. pymdownx_mahjong/assets/dark/2z.svg +270 -0
  13. pymdownx_mahjong/assets/dark/3m.svg +289 -0
  14. pymdownx_mahjong/assets/dark/3p.svg +356 -0
  15. pymdownx_mahjong/assets/dark/3s.svg +462 -0
  16. pymdownx_mahjong/assets/dark/3z.svg +248 -0
  17. pymdownx_mahjong/assets/dark/4m.svg +289 -0
  18. pymdownx_mahjong/assets/dark/4p.svg +403 -0
  19. pymdownx_mahjong/assets/dark/4s.svg +570 -0
  20. pymdownx_mahjong/assets/dark/4z.svg +236 -0
  21. pymdownx_mahjong/assets/dark/5m.svg +313 -0
  22. pymdownx_mahjong/assets/dark/5p.svg +450 -0
  23. pymdownx_mahjong/assets/dark/5s.svg +608 -0
  24. pymdownx_mahjong/assets/dark/5z.svg +214 -0
  25. pymdownx_mahjong/assets/dark/6m.svg +294 -0
  26. pymdownx_mahjong/assets/dark/6p.svg +473 -0
  27. pymdownx_mahjong/assets/dark/6s.svg +695 -0
  28. pymdownx_mahjong/assets/dark/6z.svg +324 -0
  29. pymdownx_mahjong/assets/dark/7m.svg +283 -0
  30. pymdownx_mahjong/assets/dark/7p.svg +516 -0
  31. pymdownx_mahjong/assets/dark/7s.svg +628 -0
  32. pymdownx_mahjong/assets/dark/7z.svg +232 -0
  33. pymdownx_mahjong/assets/dark/8m.svg +283 -0
  34. pymdownx_mahjong/assets/dark/8p.svg +566 -0
  35. pymdownx_mahjong/assets/dark/8s.svg +712 -0
  36. pymdownx_mahjong/assets/dark/9m.svg +289 -0
  37. pymdownx_mahjong/assets/dark/9p.svg +609 -0
  38. pymdownx_mahjong/assets/dark/9s.svg +762 -0
  39. pymdownx_mahjong/assets/dark/back.svg +285 -0
  40. pymdownx_mahjong/assets/dark/blank.svg +225 -0
  41. pymdownx_mahjong/assets/dark/front.svg +334 -0
  42. pymdownx_mahjong/assets/light/0m.svg +319 -0
  43. pymdownx_mahjong/assets/light/0p.svg +460 -0
  44. pymdownx_mahjong/assets/light/0s.svg +614 -0
  45. pymdownx_mahjong/assets/light/1m.svg +276 -0
  46. pymdownx_mahjong/assets/light/1p.svg +544 -0
  47. pymdownx_mahjong/assets/light/1s.svg +764 -0
  48. pymdownx_mahjong/assets/light/1z.svg +242 -0
  49. pymdownx_mahjong/assets/light/2m.svg +286 -0
  50. pymdownx_mahjong/assets/light/2p.svg +400 -0
  51. pymdownx_mahjong/assets/light/2s.svg +372 -0
  52. pymdownx_mahjong/assets/light/2z.svg +270 -0
  53. pymdownx_mahjong/assets/light/3m.svg +292 -0
  54. pymdownx_mahjong/assets/light/3p.svg +362 -0
  55. pymdownx_mahjong/assets/light/3s.svg +462 -0
  56. pymdownx_mahjong/assets/light/3z.svg +248 -0
  57. pymdownx_mahjong/assets/light/4m.svg +292 -0
  58. pymdownx_mahjong/assets/light/4p.svg +407 -0
  59. pymdownx_mahjong/assets/light/4s.svg +573 -0
  60. pymdownx_mahjong/assets/light/4z.svg +236 -0
  61. pymdownx_mahjong/assets/light/5m.svg +313 -0
  62. pymdownx_mahjong/assets/light/5p.svg +454 -0
  63. pymdownx_mahjong/assets/light/5s.svg +608 -0
  64. pymdownx_mahjong/assets/light/5z.svg +214 -0
  65. pymdownx_mahjong/assets/light/6m.svg +297 -0
  66. pymdownx_mahjong/assets/light/6p.svg +477 -0
  67. pymdownx_mahjong/assets/light/6s.svg +688 -0
  68. pymdownx_mahjong/assets/light/6z.svg +309 -0
  69. pymdownx_mahjong/assets/light/7m.svg +283 -0
  70. pymdownx_mahjong/assets/light/7p.svg +567 -0
  71. pymdownx_mahjong/assets/light/7s.svg +628 -0
  72. pymdownx_mahjong/assets/light/7z.svg +232 -0
  73. pymdownx_mahjong/assets/light/8m.svg +286 -0
  74. pymdownx_mahjong/assets/light/8p.svg +570 -0
  75. pymdownx_mahjong/assets/light/8s.svg +712 -0
  76. pymdownx_mahjong/assets/light/9m.svg +292 -0
  77. pymdownx_mahjong/assets/light/9p.svg +623 -0
  78. pymdownx_mahjong/assets/light/9s.svg +748 -0
  79. pymdownx_mahjong/assets/light/back.svg +285 -0
  80. pymdownx_mahjong/assets/light/blank.svg +224 -0
  81. pymdownx_mahjong/assets/light/front.svg +334 -0
  82. pymdownx_mahjong/css/mahjong.css +416 -0
  83. pymdownx_mahjong/extension.py +206 -0
  84. pymdownx_mahjong/inline.py +78 -0
  85. pymdownx_mahjong/parser.py +363 -0
  86. pymdownx_mahjong/renderer.py +468 -0
  87. pymdownx_mahjong/superfences.py +126 -0
  88. pymdownx_mahjong/tiles.py +85 -0
  89. pymdownx_mahjong/utils.py +90 -0
  90. pymdownx_mahjong-1.0.0.dist-info/METADATA +44 -0
  91. pymdownx_mahjong-1.0.0.dist-info/RECORD +94 -0
  92. pymdownx_mahjong-1.0.0.dist-info/WHEEL +4 -0
  93. pymdownx_mahjong-1.0.0.dist-info/entry_points.txt +2 -0
  94. pymdownx_mahjong-1.0.0.dist-info/licenses/LICENSE +352 -0
@@ -0,0 +1,695 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
6
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+ xmlns:cc="http://creativecommons.org/ns#"
8
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
+ xmlns:svg="http://www.w3.org/2000/svg"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="300"
14
+ height="400"
15
+ viewBox="0 0 300 400"
16
+ id="svg2"
17
+ version="1.1"
18
+ inkscape:version="0.91 r13725"
19
+ sodipodi:docname="Sou6.svg"
20
+ inkscape:export-filename="C:\Users\Fluffy\Documents\Projects\ExtraRiichi\Sou6.png"
21
+ inkscape:export-xdpi="180"
22
+ inkscape:export-ydpi="180">
23
+ <defs
24
+ id="defs4">
25
+ <inkscape:path-effect
26
+ effect="skeletal"
27
+ id="path-effect7963"
28
+ is_visible="true"
29
+ pattern="m -90.825902,-314.06958 23.03016,41.38503 13.798268,-41.38503 z"
30
+ copytype="repeated_stretched"
31
+ prop_scale="1"
32
+ scale_y_rel="false"
33
+ spacing="0"
34
+ normal_offset="0"
35
+ tang_offset="0"
36
+ prop_units="false"
37
+ vertical_pattern="false"
38
+ fuse_tolerance="0"
39
+ pattern-nodetypes="cccc" />
40
+ <inkscape:path-effect
41
+ effect="skeletal"
42
+ id="path-effect7830"
43
+ is_visible="true"
44
+ pattern="M -12.828427,33.715729 -17,-11 l 9.0000001,0 z"
45
+ copytype="repeated_stretched"
46
+ prop_scale="-1"
47
+ scale_y_rel="false"
48
+ spacing="5.1"
49
+ normal_offset="0"
50
+ tang_offset="0"
51
+ prop_units="false"
52
+ vertical_pattern="false"
53
+ fuse_tolerance="0"
54
+ pattern-nodetypes="cccc" />
55
+ <linearGradient
56
+ id="linearGradient10055"
57
+ osb:paint="solid">
58
+ <stop
59
+ style="stop-color:#000000;stop-opacity:1;"
60
+ offset="0"
61
+ id="stop10057" />
62
+ </linearGradient>
63
+ <marker
64
+ inkscape:stockid="Arrow1Lstart"
65
+ orient="auto"
66
+ refY="0"
67
+ refX="0"
68
+ id="Arrow1Lstart"
69
+ style="overflow:visible"
70
+ inkscape:isstock="true">
71
+ <path
72
+ id="path4978"
73
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
74
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ff5c00;stroke-width:1pt;stroke-opacity:1"
75
+ transform="matrix(0.8,0,0,0.8,10,0)"
76
+ inkscape:connector-curvature="0" />
77
+ </marker>
78
+ <clipPath
79
+ clipPathUnits="userSpaceOnUse"
80
+ id="clipPath4243">
81
+ <circle
82
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
83
+ id="circle4245"
84
+ cx="-264.65997"
85
+ cy="-198.20665"
86
+ r="293.95438" />
87
+ </clipPath>
88
+ <clipPath
89
+ clipPathUnits="userSpaceOnUse"
90
+ id="clipPath7847">
91
+ <ellipse
92
+ style="opacity:1;fill:#822600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
93
+ id="ellipse7849"
94
+ cx="394"
95
+ cy="552.36218"
96
+ rx="349.49533"
97
+ ry="216" />
98
+ </clipPath>
99
+ <clipPath
100
+ clipPathUnits="userSpaceOnUse"
101
+ id="clipPath4243-1">
102
+ <circle
103
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
104
+ id="circle4245-4"
105
+ cx="-264.65997"
106
+ cy="-198.20665"
107
+ r="293.95438" />
108
+ </clipPath>
109
+ <clipPath
110
+ clipPathUnits="userSpaceOnUse"
111
+ id="clipPath7876">
112
+ <circle
113
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
114
+ id="circle7878"
115
+ cx="-264.65997"
116
+ cy="-198.20665"
117
+ r="293.95438" />
118
+ </clipPath>
119
+ <clipPath
120
+ clipPathUnits="userSpaceOnUse"
121
+ id="clipPath14693">
122
+ <rect
123
+ style="opacity:1;fill:#a53c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
124
+ id="rect14695"
125
+ width="131.78395"
126
+ height="168.82127"
127
+ x="-332.59583"
128
+ y="383.49765"
129
+ rx="1.2551664"
130
+ ry="3.7514515"
131
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
132
+ </clipPath>
133
+ <clipPath
134
+ clipPathUnits="userSpaceOnUse"
135
+ id="clipPath14952">
136
+ <ellipse
137
+ style="opacity:1;fill:#a53c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
138
+ id="ellipse14954"
139
+ cx="-271.34384"
140
+ cy="647.25604"
141
+ rx="69.057365"
142
+ ry="116.91089"
143
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
144
+ </clipPath>
145
+ <pattern
146
+ y="0"
147
+ x="0"
148
+ height="6"
149
+ width="6"
150
+ patternUnits="userSpaceOnUse"
151
+ id="EMFhbasepattern" />
152
+ </defs>
153
+ <sodipodi:namedview
154
+ id="base"
155
+ pagecolor="#000000"
156
+ bordercolor="#666666"
157
+ borderopacity="1"
158
+ inkscape:pageopacity="0"
159
+ inkscape:pageshadow="2"
160
+ inkscape:zoom="1.4297189"
161
+ inkscape:cx="-13.503222"
162
+ inkscape:cy="253.05661"
163
+ inkscape:document-units="px"
164
+ inkscape:current-layer="layer1"
165
+ showgrid="true"
166
+ inkscape:window-width="1920"
167
+ inkscape:window-height="1017"
168
+ inkscape:window-x="-8"
169
+ inkscape:window-y="-8"
170
+ inkscape:window-maximized="1"
171
+ showguides="true"
172
+ inkscape:guide-bbox="true"
173
+ units="px">
174
+ <inkscape:grid
175
+ type="xygrid"
176
+ id="grid4774"
177
+ visible="true"
178
+ dotted="false"
179
+ color="#3f3fff"
180
+ opacity="0.03921569"
181
+ empcolor="#3f3fff"
182
+ empopacity="0.07843137"
183
+ enabled="false" />
184
+ <sodipodi:guide
185
+ position="150,200"
186
+ orientation="0,1"
187
+ id="guide8231"
188
+ inkscape:label=""
189
+ inkscape:color="rgb(0,0,255)" />
190
+ <sodipodi:guide
191
+ position="150,200"
192
+ orientation="1,0"
193
+ id="guide8233"
194
+ inkscape:label=""
195
+ inkscape:color="rgb(0,0,255)" />
196
+ </sodipodi:namedview>
197
+ <metadata
198
+ id="metadata7">
199
+ <rdf:RDF>
200
+ <cc:Work
201
+ rdf:about="">
202
+ <dc:format>image/svg+xml</dc:format>
203
+ <dc:type
204
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
205
+ <dc:title></dc:title>
206
+ </cc:Work>
207
+ </rdf:RDF>
208
+ </metadata>
209
+ <g
210
+ inkscape:label="Layer 1"
211
+ inkscape:groupmode="layer"
212
+ id="layer1"
213
+ transform="translate(0,-652.36216)">
214
+ <g
215
+ id="g4337"
216
+ transform="matrix(0.95915654,0,0,0.95915654,-93.20763,26.803561)">
217
+ <ellipse
218
+ ry="19.097431"
219
+ rx="24.680117"
220
+ cy="680.42645"
221
+ cx="135.05489"
222
+ id="ellipse4339"
223
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
224
+ <ellipse
225
+ ry="19.097431"
226
+ rx="24.680117"
227
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
228
+ id="ellipse4341"
229
+ cx="164.01987"
230
+ cy="680.42645" />
231
+ <ellipse
232
+ ry="19.097431"
233
+ rx="24.680117"
234
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
235
+ id="ellipse4343"
236
+ cx="133.83817"
237
+ cy="829.79926" />
238
+ <path
239
+ inkscape:connector-curvature="0"
240
+ id="path4345"
241
+ d="m 149.58492,818.81626 0,-134.67362"
242
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
243
+ <ellipse
244
+ ry="19.097431"
245
+ rx="24.680117"
246
+ cy="829.79926"
247
+ cx="165.64214"
248
+ id="ellipse4347"
249
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
250
+ <ellipse
251
+ ry="25.370163"
252
+ rx="32.786533"
253
+ cy="748.83081"
254
+ cx="160.99481"
255
+ id="ellipse4349"
256
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
257
+ <ellipse
258
+ ry="25.370163"
259
+ rx="32.786533"
260
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
261
+ id="ellipse4351"
262
+ cx="138.32327"
263
+ cy="748.83081" />
264
+ <path
265
+ inkscape:connector-curvature="0"
266
+ id="path4353"
267
+ d="m 149.58492,685.72349 0,37.84241"
268
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
269
+ <path
270
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
271
+ d="m 149.58491,777.56215 0,46.73373"
272
+ id="path4355"
273
+ inkscape:connector-curvature="0" />
274
+ <ellipse
275
+ cy="683.5329"
276
+ cx="149.58495"
277
+ id="ellipse4357"
278
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
279
+ rx="8.9920015"
280
+ ry="8.6974945" />
281
+ <path
282
+ sodipodi:nodetypes="cc"
283
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
284
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
285
+ id="path4359"
286
+ inkscape:connector-curvature="0" />
287
+ <path
288
+ inkscape:connector-curvature="0"
289
+ id="path4361"
290
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
291
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
292
+ sodipodi:nodetypes="cc" />
293
+ </g>
294
+ <g
295
+ transform="matrix(0.95915654,0,0,0.95915654,-93.20763,235.23614)"
296
+ id="g4356">
297
+ <ellipse
298
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
299
+ id="ellipse4359"
300
+ cx="135.05489"
301
+ cy="680.42645"
302
+ rx="24.680117"
303
+ ry="19.097431" />
304
+ <ellipse
305
+ cy="680.42645"
306
+ cx="164.01987"
307
+ id="ellipse4361"
308
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
309
+ rx="24.680117"
310
+ ry="19.097431" />
311
+ <ellipse
312
+ cy="829.79926"
313
+ cx="133.83817"
314
+ id="ellipse4363"
315
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
316
+ rx="24.680117"
317
+ ry="19.097431" />
318
+ <path
319
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
320
+ d="m 149.58492,818.81626 0,-134.67362"
321
+ id="path4365"
322
+ inkscape:connector-curvature="0" />
323
+ <ellipse
324
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
325
+ id="ellipse4367"
326
+ cx="165.64214"
327
+ cy="829.79926"
328
+ rx="24.680117"
329
+ ry="19.097431" />
330
+ <ellipse
331
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
332
+ id="ellipse4369"
333
+ cx="160.99481"
334
+ cy="748.83081"
335
+ rx="32.786533"
336
+ ry="25.370163" />
337
+ <ellipse
338
+ cy="748.83081"
339
+ cx="138.32327"
340
+ id="ellipse4371"
341
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
342
+ rx="32.786533"
343
+ ry="25.370163" />
344
+ <path
345
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
346
+ d="m 149.58492,685.72349 0,37.84241"
347
+ id="path4373"
348
+ inkscape:connector-curvature="0" />
349
+ <path
350
+ inkscape:connector-curvature="0"
351
+ id="path4375"
352
+ d="m 149.58491,777.56215 0,46.73373"
353
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
354
+ <ellipse
355
+ ry="8.6974945"
356
+ rx="8.9920015"
357
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
358
+ id="ellipse4377"
359
+ cx="149.58495"
360
+ cy="683.5329" />
361
+ <path
362
+ inkscape:connector-curvature="0"
363
+ id="path4379"
364
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
365
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
366
+ sodipodi:nodetypes="cc" />
367
+ <path
368
+ sodipodi:nodetypes="cc"
369
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
370
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
371
+ id="path4381"
372
+ inkscape:connector-curvature="0" />
373
+ </g>
374
+ <g
375
+ id="g4383"
376
+ transform="matrix(0.95915654,0,0,0.95915654,109.62944,235.23614)">
377
+ <ellipse
378
+ ry="19.097431"
379
+ rx="24.680117"
380
+ cy="680.42645"
381
+ cx="135.05489"
382
+ id="ellipse4385"
383
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
384
+ <ellipse
385
+ ry="19.097431"
386
+ rx="24.680117"
387
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
388
+ id="ellipse4387"
389
+ cx="164.01987"
390
+ cy="680.42645" />
391
+ <ellipse
392
+ ry="19.097431"
393
+ rx="24.680117"
394
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
395
+ id="ellipse4389"
396
+ cx="133.83817"
397
+ cy="829.79926" />
398
+ <path
399
+ inkscape:connector-curvature="0"
400
+ id="path4391"
401
+ d="m 149.58492,818.81626 0,-134.67362"
402
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
403
+ <ellipse
404
+ ry="19.097431"
405
+ rx="24.680117"
406
+ cy="829.79926"
407
+ cx="165.64214"
408
+ id="ellipse4393"
409
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
410
+ <ellipse
411
+ ry="25.370163"
412
+ rx="32.786533"
413
+ cy="748.83081"
414
+ cx="160.99481"
415
+ id="ellipse4395"
416
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
417
+ <ellipse
418
+ ry="25.370163"
419
+ rx="32.786533"
420
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
421
+ id="ellipse4397"
422
+ cx="138.32327"
423
+ cy="748.83081" />
424
+ <path
425
+ inkscape:connector-curvature="0"
426
+ id="path4399"
427
+ d="m 149.58492,685.72349 0,37.84241"
428
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
429
+ <path
430
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
431
+ d="m 149.58491,777.56215 0,46.73373"
432
+ id="path4401"
433
+ inkscape:connector-curvature="0" />
434
+ <ellipse
435
+ cy="683.5329"
436
+ cx="149.58495"
437
+ id="ellipse4403"
438
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
439
+ rx="8.9920015"
440
+ ry="8.6974945" />
441
+ <path
442
+ sodipodi:nodetypes="cc"
443
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
444
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
445
+ id="path4405"
446
+ inkscape:connector-curvature="0" />
447
+ <path
448
+ inkscape:connector-curvature="0"
449
+ id="path4407"
450
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
451
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
452
+ sodipodi:nodetypes="cc" />
453
+ </g>
454
+ <g
455
+ transform="matrix(0.95915654,0,0,0.95915654,109.62944,26.803561)"
456
+ id="g4409">
457
+ <ellipse
458
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
459
+ id="ellipse4411"
460
+ cx="135.05489"
461
+ cy="680.42645"
462
+ rx="24.680117"
463
+ ry="19.097431" />
464
+ <ellipse
465
+ cy="680.42645"
466
+ cx="164.01987"
467
+ id="ellipse4413"
468
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
469
+ rx="24.680117"
470
+ ry="19.097431" />
471
+ <ellipse
472
+ cy="829.79926"
473
+ cx="133.83817"
474
+ id="ellipse4415"
475
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
476
+ rx="24.680117"
477
+ ry="19.097431" />
478
+ <path
479
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
480
+ d="m 149.58492,818.81626 0,-134.67362"
481
+ id="path4417"
482
+ inkscape:connector-curvature="0" />
483
+ <ellipse
484
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
485
+ id="ellipse4419"
486
+ cx="165.64214"
487
+ cy="829.79926"
488
+ rx="24.680117"
489
+ ry="19.097431" />
490
+ <ellipse
491
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
492
+ id="ellipse4421"
493
+ cx="160.99481"
494
+ cy="748.83081"
495
+ rx="32.786533"
496
+ ry="25.370163" />
497
+ <ellipse
498
+ cy="748.83081"
499
+ cx="138.32327"
500
+ id="ellipse4423"
501
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
502
+ rx="32.786533"
503
+ ry="25.370163" />
504
+ <path
505
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
506
+ d="m 149.58492,685.72349 0,37.84241"
507
+ id="path4425"
508
+ inkscape:connector-curvature="0" />
509
+ <path
510
+ inkscape:connector-curvature="0"
511
+ id="path4427"
512
+ d="m 149.58491,777.56215 0,46.73373"
513
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
514
+ <ellipse
515
+ ry="8.6974945"
516
+ rx="8.9920015"
517
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
518
+ id="ellipse4429"
519
+ cx="149.58495"
520
+ cy="683.5329" />
521
+ <path
522
+ inkscape:connector-curvature="0"
523
+ id="path4431"
524
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
525
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
526
+ sodipodi:nodetypes="cc" />
527
+ <path
528
+ sodipodi:nodetypes="cc"
529
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
530
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
531
+ id="path4433"
532
+ inkscape:connector-curvature="0" />
533
+ </g>
534
+ <g
535
+ id="g4337-4"
536
+ transform="matrix(0.95915654,0,0,0.95915654,6.1125962,26.803561)">
537
+ <ellipse
538
+ ry="19.097431"
539
+ rx="24.680117"
540
+ cy="680.42645"
541
+ cx="135.05489"
542
+ id="ellipse4339-2"
543
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
544
+ <ellipse
545
+ ry="19.097431"
546
+ rx="24.680117"
547
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
548
+ id="ellipse4341-9"
549
+ cx="164.01987"
550
+ cy="680.42645" />
551
+ <ellipse
552
+ ry="19.097431"
553
+ rx="24.680117"
554
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
555
+ id="ellipse4343-5"
556
+ cx="133.83817"
557
+ cy="829.79926" />
558
+ <path
559
+ inkscape:connector-curvature="0"
560
+ id="path4345-7"
561
+ d="m 149.58492,818.81626 0,-134.67362"
562
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
563
+ <ellipse
564
+ ry="19.097431"
565
+ rx="24.680117"
566
+ cy="829.79926"
567
+ cx="165.64214"
568
+ id="ellipse4347-6"
569
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
570
+ <ellipse
571
+ ry="25.370163"
572
+ rx="32.786533"
573
+ cy="748.83081"
574
+ cx="160.99481"
575
+ id="ellipse4349-7"
576
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
577
+ <ellipse
578
+ ry="25.370163"
579
+ rx="32.786533"
580
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
581
+ id="ellipse4351-9"
582
+ cx="138.32327"
583
+ cy="748.83081" />
584
+ <path
585
+ inkscape:connector-curvature="0"
586
+ id="path4353-8"
587
+ d="m 149.58492,685.72349 0,37.84241"
588
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
589
+ <path
590
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
591
+ d="m 149.58491,777.56215 0,46.73373"
592
+ id="path4355-0"
593
+ inkscape:connector-curvature="0" />
594
+ <ellipse
595
+ cy="683.5329"
596
+ cx="149.58495"
597
+ id="ellipse4357-9"
598
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
599
+ rx="8.9920015"
600
+ ry="8.6974945" />
601
+ <path
602
+ sodipodi:nodetypes="cc"
603
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
604
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
605
+ id="path4359-3"
606
+ inkscape:connector-curvature="0" />
607
+ <path
608
+ inkscape:connector-curvature="0"
609
+ id="path4361-9"
610
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
611
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
612
+ sodipodi:nodetypes="cc" />
613
+ </g>
614
+ <g
615
+ transform="matrix(0.95915654,0,0,0.95915654,6.1125962,235.23614)"
616
+ id="g4465">
617
+ <ellipse
618
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
619
+ id="ellipse4467"
620
+ cx="135.05489"
621
+ cy="680.42645"
622
+ rx="24.680117"
623
+ ry="19.097431" />
624
+ <ellipse
625
+ cy="680.42645"
626
+ cx="164.01987"
627
+ id="ellipse4469"
628
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
629
+ rx="24.680117"
630
+ ry="19.097431" />
631
+ <ellipse
632
+ cy="829.79926"
633
+ cx="133.83817"
634
+ id="ellipse4471"
635
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
636
+ rx="24.680117"
637
+ ry="19.097431" />
638
+ <path
639
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
640
+ d="m 149.58492,818.81626 0,-134.67362"
641
+ id="path4473"
642
+ inkscape:connector-curvature="0" />
643
+ <ellipse
644
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
645
+ id="ellipse4475"
646
+ cx="165.64214"
647
+ cy="829.79926"
648
+ rx="24.680117"
649
+ ry="19.097431" />
650
+ <ellipse
651
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
652
+ id="ellipse4477"
653
+ cx="160.99481"
654
+ cy="748.83081"
655
+ rx="32.786533"
656
+ ry="25.370163" />
657
+ <ellipse
658
+ cy="748.83081"
659
+ cx="138.32327"
660
+ id="ellipse4479"
661
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
662
+ rx="32.786533"
663
+ ry="25.370163" />
664
+ <path
665
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
666
+ d="m 149.58492,685.72349 0,37.84241"
667
+ id="path4481"
668
+ inkscape:connector-curvature="0" />
669
+ <path
670
+ inkscape:connector-curvature="0"
671
+ id="path4483"
672
+ d="m 149.58491,777.56215 0,46.73373"
673
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
674
+ <ellipse
675
+ ry="8.6974945"
676
+ rx="8.9920015"
677
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
678
+ id="ellipse4485"
679
+ cx="149.58495"
680
+ cy="683.5329" />
681
+ <path
682
+ inkscape:connector-curvature="0"
683
+ id="path4487"
684
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
685
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
686
+ sodipodi:nodetypes="cc" />
687
+ <path
688
+ sodipodi:nodetypes="cc"
689
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
690
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
691
+ id="path4489"
692
+ inkscape:connector-curvature="0" />
693
+ </g>
694
+ </g>
695
+ </svg>