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,570 @@
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="Sou4.svg"
20
+ inkscape:export-filename="C:\Users\Fluffy\Documents\Projects\ExtraRiichi\Sou4.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
+ <pattern
153
+ y="0"
154
+ x="0"
155
+ height="6"
156
+ width="6"
157
+ patternUnits="userSpaceOnUse"
158
+ id="EMFhbasepattern-5" />
159
+ <pattern
160
+ y="0"
161
+ x="0"
162
+ height="6"
163
+ width="6"
164
+ patternUnits="userSpaceOnUse"
165
+ id="EMFhbasepattern-0" />
166
+ <pattern
167
+ y="0"
168
+ x="0"
169
+ height="6"
170
+ width="6"
171
+ patternUnits="userSpaceOnUse"
172
+ id="EMFhbasepattern-8" />
173
+ <pattern
174
+ y="0"
175
+ x="0"
176
+ height="6"
177
+ width="6"
178
+ patternUnits="userSpaceOnUse"
179
+ id="EMFhbasepattern-1" />
180
+ <pattern
181
+ y="0"
182
+ x="0"
183
+ height="6"
184
+ width="6"
185
+ patternUnits="userSpaceOnUse"
186
+ id="EMFhbasepattern-10" />
187
+ </defs>
188
+ <sodipodi:namedview
189
+ id="base"
190
+ pagecolor="#000000"
191
+ bordercolor="#666666"
192
+ borderopacity="1"
193
+ inkscape:pageopacity="0"
194
+ inkscape:pageshadow="2"
195
+ inkscape:zoom="1.4297189"
196
+ inkscape:cx="27.995237"
197
+ inkscape:cy="306.98805"
198
+ inkscape:document-units="px"
199
+ inkscape:current-layer="layer1"
200
+ showgrid="true"
201
+ inkscape:window-width="1920"
202
+ inkscape:window-height="1017"
203
+ inkscape:window-x="-8"
204
+ inkscape:window-y="-8"
205
+ inkscape:window-maximized="1"
206
+ showguides="true"
207
+ inkscape:guide-bbox="true"
208
+ units="px">
209
+ <inkscape:grid
210
+ type="xygrid"
211
+ id="grid4774"
212
+ visible="true"
213
+ dotted="false"
214
+ color="#3f3fff"
215
+ opacity="0.03921569"
216
+ empcolor="#3f3fff"
217
+ empopacity="0.07843137"
218
+ enabled="false" />
219
+ <sodipodi:guide
220
+ position="150,200"
221
+ orientation="0,1"
222
+ id="guide8231"
223
+ inkscape:label=""
224
+ inkscape:color="rgb(0,0,255)" />
225
+ <sodipodi:guide
226
+ position="150,200"
227
+ orientation="1,0"
228
+ id="guide8233"
229
+ inkscape:label=""
230
+ inkscape:color="rgb(0,0,255)" />
231
+ </sodipodi:namedview>
232
+ <metadata
233
+ id="metadata7">
234
+ <rdf:RDF>
235
+ <cc:Work
236
+ rdf:about="">
237
+ <dc:format>image/svg+xml</dc:format>
238
+ <dc:type
239
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
240
+ <dc:title></dc:title>
241
+ </cc:Work>
242
+ </rdf:RDF>
243
+ </metadata>
244
+ <g
245
+ inkscape:label="Layer 1"
246
+ inkscape:groupmode="layer"
247
+ id="layer1"
248
+ transform="translate(0,-652.36216)">
249
+ <g
250
+ id="g4337-5"
251
+ transform="matrix(0.95915654,0,0,0.95915654,83.750227,235.23614)">
252
+ <ellipse
253
+ ry="19.097431"
254
+ rx="24.680117"
255
+ cy="680.42645"
256
+ cx="135.05489"
257
+ id="ellipse4339-8"
258
+ 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" />
259
+ <ellipse
260
+ ry="19.097431"
261
+ rx="24.680117"
262
+ 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"
263
+ id="ellipse4341-2"
264
+ cx="164.01987"
265
+ cy="680.42645" />
266
+ <ellipse
267
+ ry="19.097431"
268
+ rx="24.680117"
269
+ 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"
270
+ id="ellipse4343-7"
271
+ cx="133.83817"
272
+ cy="829.79926" />
273
+ <path
274
+ inkscape:connector-curvature="0"
275
+ id="path4345-3"
276
+ d="m 149.58492,818.81626 0,-134.67362"
277
+ 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" />
278
+ <ellipse
279
+ ry="19.097431"
280
+ rx="24.680117"
281
+ cy="829.79926"
282
+ cx="165.64214"
283
+ id="ellipse4347-5"
284
+ 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" />
285
+ <ellipse
286
+ ry="25.370163"
287
+ rx="32.786533"
288
+ cy="748.83081"
289
+ cx="160.99481"
290
+ id="ellipse4349-2"
291
+ 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" />
292
+ <ellipse
293
+ ry="25.370163"
294
+ rx="32.786533"
295
+ 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"
296
+ id="ellipse4351-5"
297
+ cx="138.32327"
298
+ cy="748.83081" />
299
+ <path
300
+ inkscape:connector-curvature="0"
301
+ id="path4353-7"
302
+ d="m 149.58492,685.72349 0,37.84241"
303
+ 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" />
304
+ <path
305
+ 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"
306
+ d="m 149.58491,777.56215 0,46.73373"
307
+ id="path4355-3"
308
+ inkscape:connector-curvature="0" />
309
+ <ellipse
310
+ cy="683.5329"
311
+ cx="149.58495"
312
+ id="ellipse4357-2"
313
+ 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"
314
+ rx="8.9920015"
315
+ ry="8.6974945" />
316
+ <path
317
+ sodipodi:nodetypes="cc"
318
+ 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"
319
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
320
+ id="path4359-6"
321
+ inkscape:connector-curvature="0" />
322
+ <path
323
+ inkscape:connector-curvature="0"
324
+ id="path4361-8"
325
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
326
+ 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"
327
+ sodipodi:nodetypes="cc" />
328
+ </g>
329
+ <g
330
+ id="g4337-58"
331
+ transform="matrix(0.95915654,0,0,0.95915654,83.750227,26.803561)">
332
+ <ellipse
333
+ ry="19.097431"
334
+ rx="24.680117"
335
+ cy="680.42645"
336
+ cx="135.05489"
337
+ id="ellipse4339-87"
338
+ 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" />
339
+ <ellipse
340
+ ry="19.097431"
341
+ rx="24.680117"
342
+ 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"
343
+ id="ellipse4341-8"
344
+ cx="164.01987"
345
+ cy="680.42645" />
346
+ <ellipse
347
+ ry="19.097431"
348
+ rx="24.680117"
349
+ 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"
350
+ id="ellipse4343-73"
351
+ cx="133.83817"
352
+ cy="829.79926" />
353
+ <path
354
+ inkscape:connector-curvature="0"
355
+ id="path4345-5"
356
+ d="m 149.58492,818.81626 0,-134.67362"
357
+ 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" />
358
+ <ellipse
359
+ ry="19.097431"
360
+ rx="24.680117"
361
+ cy="829.79926"
362
+ cx="165.64214"
363
+ id="ellipse4347-2"
364
+ 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" />
365
+ <ellipse
366
+ ry="25.370163"
367
+ rx="32.786533"
368
+ cy="748.83081"
369
+ cx="160.99481"
370
+ id="ellipse4349-4"
371
+ 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" />
372
+ <ellipse
373
+ ry="25.370163"
374
+ rx="32.786533"
375
+ 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"
376
+ id="ellipse4351-9"
377
+ cx="138.32327"
378
+ cy="748.83081" />
379
+ <path
380
+ inkscape:connector-curvature="0"
381
+ id="path4353-5"
382
+ d="m 149.58492,685.72349 0,37.84241"
383
+ 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" />
384
+ <path
385
+ 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"
386
+ d="m 149.58491,777.56215 0,46.73373"
387
+ id="path4355-0"
388
+ inkscape:connector-curvature="0" />
389
+ <ellipse
390
+ cy="683.5329"
391
+ cx="149.58495"
392
+ id="ellipse4357-20"
393
+ 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"
394
+ rx="8.9920015"
395
+ ry="8.6974945" />
396
+ <path
397
+ sodipodi:nodetypes="cc"
398
+ 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"
399
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
400
+ id="path4359-8"
401
+ inkscape:connector-curvature="0" />
402
+ <path
403
+ inkscape:connector-curvature="0"
404
+ id="path4361-4"
405
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
406
+ 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"
407
+ sodipodi:nodetypes="cc" />
408
+ </g>
409
+ <g
410
+ id="g4337-52"
411
+ transform="matrix(0.95915654,0,0,0.95915654,-71.525046,26.803561)">
412
+ <ellipse
413
+ ry="19.097431"
414
+ rx="24.680117"
415
+ cy="680.42645"
416
+ cx="135.05489"
417
+ id="ellipse4339-5"
418
+ 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" />
419
+ <ellipse
420
+ ry="19.097431"
421
+ rx="24.680117"
422
+ 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"
423
+ id="ellipse4341-5"
424
+ cx="164.01987"
425
+ cy="680.42645" />
426
+ <ellipse
427
+ ry="19.097431"
428
+ rx="24.680117"
429
+ 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"
430
+ id="ellipse4343-1"
431
+ cx="133.83817"
432
+ cy="829.79926" />
433
+ <path
434
+ inkscape:connector-curvature="0"
435
+ id="path4345-2"
436
+ d="m 149.58492,818.81626 0,-134.67362"
437
+ 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" />
438
+ <ellipse
439
+ ry="19.097431"
440
+ rx="24.680117"
441
+ cy="829.79926"
442
+ cx="165.64214"
443
+ id="ellipse4347-1"
444
+ 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" />
445
+ <ellipse
446
+ ry="25.370163"
447
+ rx="32.786533"
448
+ cy="748.83081"
449
+ cx="160.99481"
450
+ id="ellipse4349-6"
451
+ 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" />
452
+ <ellipse
453
+ ry="25.370163"
454
+ rx="32.786533"
455
+ 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"
456
+ id="ellipse4351-6"
457
+ cx="138.32327"
458
+ cy="748.83081" />
459
+ <path
460
+ inkscape:connector-curvature="0"
461
+ id="path4353-4"
462
+ d="m 149.58492,685.72349 0,37.84241"
463
+ 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" />
464
+ <path
465
+ 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"
466
+ d="m 149.58491,777.56215 0,46.73373"
467
+ id="path4355-7"
468
+ inkscape:connector-curvature="0" />
469
+ <ellipse
470
+ cy="683.5329"
471
+ cx="149.58495"
472
+ id="ellipse4357-6"
473
+ 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"
474
+ rx="8.9920015"
475
+ ry="8.6974945" />
476
+ <path
477
+ sodipodi:nodetypes="cc"
478
+ 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"
479
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
480
+ id="path4359-0"
481
+ inkscape:connector-curvature="0" />
482
+ <path
483
+ inkscape:connector-curvature="0"
484
+ id="path4361-5"
485
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
486
+ 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"
487
+ sodipodi:nodetypes="cc" />
488
+ </g>
489
+ <g
490
+ id="g4337-8"
491
+ transform="matrix(0.95915654,0,0,0.95915654,-71.525046,235.23614)">
492
+ <ellipse
493
+ ry="19.097431"
494
+ rx="24.680117"
495
+ cy="680.42645"
496
+ cx="135.05489"
497
+ id="ellipse4339-9"
498
+ 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" />
499
+ <ellipse
500
+ ry="19.097431"
501
+ rx="24.680117"
502
+ 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"
503
+ id="ellipse4341-0"
504
+ cx="164.01987"
505
+ cy="680.42645" />
506
+ <ellipse
507
+ ry="19.097431"
508
+ rx="24.680117"
509
+ 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"
510
+ id="ellipse4343-76"
511
+ cx="133.83817"
512
+ cy="829.79926" />
513
+ <path
514
+ inkscape:connector-curvature="0"
515
+ id="path4345-1"
516
+ d="m 149.58492,818.81626 0,-134.67362"
517
+ 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" />
518
+ <ellipse
519
+ ry="19.097431"
520
+ rx="24.680117"
521
+ cy="829.79926"
522
+ cx="165.64214"
523
+ id="ellipse4347-9"
524
+ 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" />
525
+ <ellipse
526
+ ry="25.370163"
527
+ rx="32.786533"
528
+ cy="748.83081"
529
+ cx="160.99481"
530
+ id="ellipse4349-65"
531
+ 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" />
532
+ <ellipse
533
+ ry="25.370163"
534
+ rx="32.786533"
535
+ 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"
536
+ id="ellipse4351-64"
537
+ cx="138.32327"
538
+ cy="748.83081" />
539
+ <path
540
+ inkscape:connector-curvature="0"
541
+ id="path4353-57"
542
+ d="m 149.58492,685.72349 0,37.84241"
543
+ 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" />
544
+ <path
545
+ 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"
546
+ d="m 149.58491,777.56215 0,46.73373"
547
+ id="path4355-4"
548
+ inkscape:connector-curvature="0" />
549
+ <ellipse
550
+ cy="683.5329"
551
+ cx="149.58495"
552
+ id="ellipse4357-0"
553
+ 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"
554
+ rx="8.9920015"
555
+ ry="8.6974945" />
556
+ <path
557
+ sodipodi:nodetypes="cc"
558
+ 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"
559
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
560
+ id="path4359-7"
561
+ inkscape:connector-curvature="0" />
562
+ <path
563
+ inkscape:connector-curvature="0"
564
+ id="path4361-9"
565
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
566
+ 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"
567
+ sodipodi:nodetypes="cc" />
568
+ </g>
569
+ </g>
570
+ </svg>