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,544 @@
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:xlink="http://www.w3.org/1999/xlink"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ width="300"
15
+ height="400"
16
+ viewBox="0 0 300 400"
17
+ id="svg2"
18
+ version="1.1"
19
+ inkscape:version="0.91 r13725"
20
+ sodipodi:docname="Pin1.svg"
21
+ inkscape:export-filename="C:\Users\Fluffy\Documents\Projects\ExtraRiichi\Pin1.png"
22
+ inkscape:export-xdpi="180"
23
+ inkscape:export-ydpi="180">
24
+ <defs
25
+ id="defs4">
26
+ <inkscape:path-effect
27
+ effect="skeletal"
28
+ id="path-effect7963"
29
+ is_visible="true"
30
+ pattern="m -90.825902,-314.06958 23.03016,41.38503 21.477976,-41.38503 z"
31
+ copytype="repeated_stretched"
32
+ prop_scale="1"
33
+ scale_y_rel="false"
34
+ spacing="0"
35
+ normal_offset="0"
36
+ tang_offset="0"
37
+ prop_units="false"
38
+ vertical_pattern="false"
39
+ fuse_tolerance="0"
40
+ pattern-nodetypes="cccc" />
41
+ <inkscape:path-effect
42
+ effect="skeletal"
43
+ id="path-effect7830"
44
+ is_visible="true"
45
+ pattern="M -12.828427,33.715729 -17,-11 l 9.0000001,0 z"
46
+ copytype="repeated_stretched"
47
+ prop_scale="-1"
48
+ scale_y_rel="false"
49
+ spacing="5.1"
50
+ normal_offset="0"
51
+ tang_offset="0"
52
+ prop_units="false"
53
+ vertical_pattern="false"
54
+ fuse_tolerance="0"
55
+ pattern-nodetypes="cccc" />
56
+ <linearGradient
57
+ id="linearGradient10055"
58
+ osb:paint="solid">
59
+ <stop
60
+ style="stop-color:#000000;stop-opacity:1;"
61
+ offset="0"
62
+ id="stop10057" />
63
+ </linearGradient>
64
+ <marker
65
+ inkscape:stockid="Arrow1Lstart"
66
+ orient="auto"
67
+ refY="0"
68
+ refX="0"
69
+ id="Arrow1Lstart"
70
+ style="overflow:visible"
71
+ inkscape:isstock="true">
72
+ <path
73
+ id="path4978"
74
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
75
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ff5c00;stroke-width:1pt;stroke-opacity:1"
76
+ transform="matrix(0.8,0,0,0.8,10,0)"
77
+ inkscape:connector-curvature="0" />
78
+ </marker>
79
+ <clipPath
80
+ clipPathUnits="userSpaceOnUse"
81
+ id="clipPath4243">
82
+ <circle
83
+ 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"
84
+ id="circle4245"
85
+ cx="-264.65997"
86
+ cy="-198.20665"
87
+ r="293.95438" />
88
+ </clipPath>
89
+ <clipPath
90
+ clipPathUnits="userSpaceOnUse"
91
+ id="clipPath7847">
92
+ <ellipse
93
+ 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"
94
+ id="ellipse7849"
95
+ cx="394"
96
+ cy="552.36218"
97
+ rx="349.49533"
98
+ ry="216" />
99
+ </clipPath>
100
+ <clipPath
101
+ clipPathUnits="userSpaceOnUse"
102
+ id="clipPath4243-1">
103
+ <circle
104
+ 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"
105
+ id="circle4245-4"
106
+ cx="-264.65997"
107
+ cy="-198.20665"
108
+ r="293.95438" />
109
+ </clipPath>
110
+ <clipPath
111
+ clipPathUnits="userSpaceOnUse"
112
+ id="clipPath7876">
113
+ <circle
114
+ 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"
115
+ id="circle7878"
116
+ cx="-264.65997"
117
+ cy="-198.20665"
118
+ r="293.95438" />
119
+ </clipPath>
120
+ <clipPath
121
+ clipPathUnits="userSpaceOnUse"
122
+ id="clipPath14693">
123
+ <rect
124
+ 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"
125
+ id="rect14695"
126
+ width="131.78395"
127
+ height="168.82127"
128
+ x="-332.59583"
129
+ y="383.49765"
130
+ rx="1.2551664"
131
+ ry="3.7514515"
132
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
133
+ </clipPath>
134
+ <clipPath
135
+ clipPathUnits="userSpaceOnUse"
136
+ id="clipPath14952">
137
+ <ellipse
138
+ 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"
139
+ id="ellipse14954"
140
+ cx="-271.34384"
141
+ cy="647.25604"
142
+ rx="69.057365"
143
+ ry="116.91089"
144
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
145
+ </clipPath>
146
+ <pattern
147
+ y="0"
148
+ x="0"
149
+ height="6"
150
+ width="6"
151
+ patternUnits="userSpaceOnUse"
152
+ id="EMFhbasepattern" />
153
+ </defs>
154
+ <sodipodi:namedview
155
+ id="base"
156
+ pagecolor="#aeffff"
157
+ bordercolor="#666666"
158
+ borderopacity="1"
159
+ inkscape:pageopacity="0"
160
+ inkscape:pageshadow="2"
161
+ inkscape:zoom="1.0109639"
162
+ inkscape:cx="97.181841"
163
+ inkscape:cy="219.79673"
164
+ inkscape:document-units="px"
165
+ inkscape:current-layer="layer1"
166
+ showgrid="true"
167
+ inkscape:window-width="1920"
168
+ inkscape:window-height="1017"
169
+ inkscape:window-x="1912"
170
+ inkscape:window-y="-8"
171
+ inkscape:window-maximized="1"
172
+ showguides="true"
173
+ inkscape:guide-bbox="true"
174
+ units="px">
175
+ <inkscape:grid
176
+ type="xygrid"
177
+ id="grid4774"
178
+ visible="true"
179
+ dotted="false"
180
+ color="#3f3fff"
181
+ opacity="0.03921569"
182
+ empcolor="#3f3fff"
183
+ empopacity="0.07843137"
184
+ enabled="false" />
185
+ <sodipodi:guide
186
+ position="150,200"
187
+ orientation="0,1"
188
+ id="guide8231"
189
+ inkscape:label=""
190
+ inkscape:color="rgb(0,0,255)" />
191
+ <sodipodi:guide
192
+ position="150,200"
193
+ orientation="1,0"
194
+ id="guide8233"
195
+ inkscape:label=""
196
+ inkscape:color="rgb(0,0,255)" />
197
+ </sodipodi:namedview>
198
+ <metadata
199
+ id="metadata7">
200
+ <rdf:RDF>
201
+ <cc:Work
202
+ rdf:about="">
203
+ <dc:format>image/svg+xml</dc:format>
204
+ <dc:type
205
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
206
+ <dc:title />
207
+ </cc:Work>
208
+ </rdf:RDF>
209
+ </metadata>
210
+ <g
211
+ inkscape:label="Layer 1"
212
+ inkscape:groupmode="layer"
213
+ id="layer1"
214
+ transform="translate(0,-652.36216)">
215
+ <g
216
+ id="g6641"
217
+ transform="matrix(0.89332354,0,0,0.89332354,-207.38654,341.03071)">
218
+ <circle
219
+ r="160"
220
+ cy="572.36218"
221
+ cx="400"
222
+ id="path5446"
223
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:10.03299999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
224
+ <circle
225
+ r="145"
226
+ cy="572.36218"
227
+ cx="400"
228
+ id="path5448"
229
+ style="opacity:1;fill:#000037;fill-opacity:1;fill-rule:nonzero;stroke:#000037;stroke-width:10.03299999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
230
+ <g
231
+ transform="translate(0.35355339,0)"
232
+ id="g5971">
233
+ <path
234
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.95532227;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
235
+ d="m 392.32741,496.48087 c -8.27246,-82.93549 24.08267,-82.93853 15.28731,0"
236
+ id="path5460"
237
+ inkscape:connector-curvature="0"
238
+ sodipodi:nodetypes="cc"
239
+ inkscape:transform-center-y="-122.30186"
240
+ inkscape:tile-cx="399.93275"
241
+ inkscape:tile-cy="572.50692"
242
+ inkscape:tile-w="30.803226"
243
+ inkscape:tile-h="64.041819"
244
+ inkscape:tile-x0="384.53113"
245
+ inkscape:tile-y0="430.98601" />
246
+ <g
247
+ id="g5914"
248
+ transform="translate(-31,-64.5)">
249
+ <use
250
+ height="100%"
251
+ width="100%"
252
+ inkscape:transform-center-y="-100.94097"
253
+ inkscape:transform-center-x="-33.466979"
254
+ id="use5880"
255
+ transform="matrix(0.93969262,0.34202014,-0.34202014,0.93969262,250.39181,-36.968234)"
256
+ xlink:href="#path5460"
257
+ inkscape:tiled-clone-of="#path5460"
258
+ y="0"
259
+ x="0" />
260
+ <use
261
+ height="100%"
262
+ width="100%"
263
+ inkscape:transform-center-y="-80.402085"
264
+ inkscape:transform-center-x="-66.418446"
265
+ id="use5882"
266
+ transform="matrix(0.76604444,0.64278761,-0.64278761,0.76604444,491.62428,-58.031527)"
267
+ xlink:href="#path5460"
268
+ inkscape:tiled-clone-of="#path5460"
269
+ y="0"
270
+ x="0" />
271
+ <use
272
+ height="100%"
273
+ width="100%"
274
+ inkscape:transform-center-y="-50.569105"
275
+ inkscape:transform-center-x="-92.035968"
276
+ id="use5884"
277
+ transform="matrix(0.5,0.8660254,-0.8660254,0.5,725.51269,4.6818112)"
278
+ xlink:href="#path5460"
279
+ inkscape:tiled-clone-of="#path5460"
280
+ y="0"
281
+ x="0" />
282
+ <use
283
+ height="100%"
284
+ width="100%"
285
+ inkscape:transform-center-y="-16.020278"
286
+ inkscape:transform-center-x="-106.83186"
287
+ id="use5886"
288
+ transform="matrix(0.17364818,0.98480775,-0.98480775,0.17364818,923.8467,143.6076)"
289
+ xlink:href="#path5460"
290
+ inkscape:tiled-clone-of="#path5460"
291
+ y="0"
292
+ x="0" />
293
+ <use
294
+ height="100%"
295
+ width="100%"
296
+ inkscape:transform-center-y="16.01696"
297
+ inkscape:transform-center-x="-106.83192"
298
+ id="use5888"
299
+ transform="matrix(-0.17364818,0.98480775,-0.98480775,-0.17364818,1062.7042,341.98942)"
300
+ xlink:href="#path5460"
301
+ inkscape:tiled-clone-of="#path5460"
302
+ y="0"
303
+ x="0" />
304
+ <use
305
+ height="100%"
306
+ width="100%"
307
+ inkscape:transform-center-y="50.568001"
308
+ inkscape:transform-center-x="-92.03626"
309
+ id="use5890"
310
+ transform="matrix(-0.5,0.8660254,-0.8660254,-0.5,1125.3371,575.89941)"
311
+ xlink:href="#path5460"
312
+ inkscape:tiled-clone-of="#path5460"
313
+ y="0"
314
+ x="0" />
315
+ <use
316
+ height="100%"
317
+ width="100%"
318
+ inkscape:transform-center-y="80.401655"
319
+ inkscape:transform-center-x="-66.419137"
320
+ id="use5892"
321
+ transform="matrix(-0.76604444,0.64278761,-0.64278761,-0.76604444,1104.1907,817.1246)"
322
+ xlink:href="#path5460"
323
+ inkscape:tiled-clone-of="#path5460"
324
+ y="0"
325
+ x="0" />
326
+ <use
327
+ height="100%"
328
+ width="100%"
329
+ inkscape:transform-center-y="100.94079"
330
+ inkscape:transform-center-x="-33.468884"
331
+ id="use5894"
332
+ transform="matrix(-0.93969262,0.34202014,-0.34202014,-0.93969262,1001.8161,1036.5696)"
333
+ xlink:href="#path5460"
334
+ inkscape:tiled-clone-of="#path5460"
335
+ y="0"
336
+ x="0" />
337
+ <use
338
+ height="100%"
339
+ width="100%"
340
+ inkscape:transform-center-y="109.52358"
341
+ id="use5896"
342
+ transform="matrix(-1,0,0,-1,830.56043,1207.7663)"
343
+ xlink:href="#path5460"
344
+ inkscape:tiled-clone-of="#path5460"
345
+ y="0"
346
+ x="0" />
347
+ <use
348
+ height="100%"
349
+ width="100%"
350
+ inkscape:transform-center-y="100.94095"
351
+ inkscape:transform-center-x="33.466976"
352
+ id="use5898"
353
+ transform="matrix(-0.93969262,-0.34202014,0.34202014,-0.93969262,611.08014,1310.0656)"
354
+ xlink:href="#path5460"
355
+ inkscape:tiled-clone-of="#path5460"
356
+ y="0"
357
+ x="0" />
358
+ <use
359
+ height="100%"
360
+ width="100%"
361
+ inkscape:transform-center-y="80.402089"
362
+ inkscape:transform-center-x="66.418443"
363
+ id="use5900"
364
+ transform="matrix(-0.76604444,-0.64278761,0.64278761,-0.76604444,369.84767,1331.1292)"
365
+ xlink:href="#path5460"
366
+ inkscape:tiled-clone-of="#path5460"
367
+ y="0"
368
+ x="0" />
369
+ <use
370
+ height="100%"
371
+ width="100%"
372
+ inkscape:transform-center-y="50.569089"
373
+ inkscape:transform-center-x="92.035965"
374
+ id="use5902"
375
+ transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,135.95926,1268.4156)"
376
+ xlink:href="#path5460"
377
+ inkscape:tiled-clone-of="#path5460"
378
+ y="0"
379
+ x="0" />
380
+ <use
381
+ height="100%"
382
+ width="100%"
383
+ inkscape:transform-center-y="16.020282"
384
+ inkscape:transform-center-x="106.83186"
385
+ id="use5904"
386
+ transform="matrix(-0.17364818,-0.98480775,0.98480775,-0.17364818,-62.374757,1129.4899)"
387
+ xlink:href="#path5460"
388
+ inkscape:tiled-clone-of="#path5460"
389
+ y="0"
390
+ x="0" />
391
+ <use
392
+ height="100%"
393
+ width="100%"
394
+ inkscape:transform-center-y="-16.016956"
395
+ inkscape:transform-center-x="106.83194"
396
+ id="use5906"
397
+ transform="matrix(0.17364818,-0.98480775,0.98480775,0.17364818,-201.23234,931.10806)"
398
+ xlink:href="#path5460"
399
+ inkscape:tiled-clone-of="#path5460"
400
+ y="0"
401
+ x="0" />
402
+ <use
403
+ height="100%"
404
+ width="100%"
405
+ inkscape:transform-center-y="-50.567997"
406
+ inkscape:transform-center-x="92.036247"
407
+ id="use5908"
408
+ transform="matrix(0.5,-0.8660254,0.8660254,0.5,-263.86519,697.19807)"
409
+ xlink:href="#path5460"
410
+ inkscape:tiled-clone-of="#path5460"
411
+ y="0"
412
+ x="0" />
413
+ <use
414
+ height="100%"
415
+ width="100%"
416
+ inkscape:transform-center-y="-80.401651"
417
+ inkscape:transform-center-x="66.419125"
418
+ id="use5910"
419
+ transform="matrix(0.76604444,-0.64278761,0.64278761,0.76604444,-242.71892,455.97288)"
420
+ xlink:href="#path5460"
421
+ inkscape:tiled-clone-of="#path5460"
422
+ y="0"
423
+ x="0" />
424
+ <use
425
+ height="100%"
426
+ width="100%"
427
+ inkscape:transform-center-y="-100.94079"
428
+ inkscape:transform-center-x="33.468911"
429
+ id="use5912"
430
+ transform="matrix(0.93969262,-0.34202014,0.34202014,0.93969262,-140.34405,236.5278)"
431
+ xlink:href="#path5460"
432
+ inkscape:tiled-clone-of="#path5460"
433
+ y="0"
434
+ x="0" />
435
+ </g>
436
+ </g>
437
+ <circle
438
+ r="84.473503"
439
+ cy="572.36218"
440
+ cx="400"
441
+ id="path5454"
442
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000037;stroke-width:10.23999977;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
443
+ <circle
444
+ r="72.314705"
445
+ cy="572.36218"
446
+ cx="400"
447
+ id="path5992"
448
+ style="opacity:1;fill:#b93c3c;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" />
449
+ <g
450
+ inkscape:transform-center-y="-33.991657"
451
+ inkscape:transform-center-x="-0.057936225"
452
+ transform="translate(-0.17677669,0.08838835)"
453
+ id="g6038">
454
+ <path
455
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:23.10970306;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
456
+ d="m 401.33152,554.24492 c -3.14542,-9.94018 -29.56798,-32.56818 -1.22213,-34.01501 29.36983,1.60064 0.87135,23.52895 -1.71866,34.17839"
457
+ id="path5994"
458
+ inkscape:connector-curvature="0"
459
+ sodipodi:nodetypes="ccc"
460
+ inkscape:transform-center-x="-0.0026845101"
461
+ inkscape:transform-center-y="63.28125" />
462
+ <path
463
+ style="fill:none;fill-rule:evenodd;stroke:#b93c3c;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
464
+ d="m 400,555.19145 0,-25.65771"
465
+ id="path6018"
466
+ inkscape:connector-curvature="0"
467
+ sodipodi:nodetypes="cc" />
468
+ <circle
469
+ style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
470
+ id="path6028"
471
+ cx="400"
472
+ cy="527.83356"
473
+ r="4.818634" />
474
+ <path
475
+ style="fill:none;fill-rule:evenodd;stroke:#b93c3c;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
476
+ d="m 404.6875,557.4872 6.5651,-16.10951"
477
+ id="path6030"
478
+ inkscape:connector-curvature="0"
479
+ sodipodi:nodetypes="cc" />
480
+ <use
481
+ x="0"
482
+ y="0"
483
+ xlink:href="#path6030"
484
+ id="use6032"
485
+ inkscape:transform-center-x="7.5"
486
+ width="100%"
487
+ height="100%"
488
+ transform="matrix(-1,0,0,1,799.9375,0)" />
489
+ </g>
490
+ <circle
491
+ r="16.034555"
492
+ cy="572.36218"
493
+ cx="400"
494
+ id="path6010"
495
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#b93c3c;stroke-width:6.66957808;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
496
+ <circle
497
+ r="8.5365553"
498
+ cy="572.36218"
499
+ cx="400"
500
+ id="path6016"
501
+ style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
502
+ <use
503
+ height="100%"
504
+ width="100%"
505
+ transform="matrix(0.30901699,-0.95105652,0.95105652,0.30901699,-267.97075,775.88681)"
506
+ id="use6047"
507
+ inkscape:transform-center-y="-12.637547"
508
+ inkscape:transform-center-x="31.767912"
509
+ xlink:href="#g6038"
510
+ y="0"
511
+ x="0" />
512
+ <use
513
+ height="100%"
514
+ width="100%"
515
+ transform="matrix(0.30901699,-0.95105652,0.95105652,0.30901699,-267.97075,775.88681)"
516
+ id="use6049"
517
+ inkscape:transform-center-y="27.707643"
518
+ inkscape:transform-center-x="21.376967"
519
+ xlink:href="#use6047"
520
+ y="0"
521
+ x="0" />
522
+ <use
523
+ height="100%"
524
+ width="100%"
525
+ transform="matrix(0.30901699,-0.95105652,0.95105652,0.30901699,-267.97075,775.88681)"
526
+ id="use6051"
527
+ inkscape:transform-center-y="27.656408"
528
+ inkscape:transform-center-x="-21.44051"
529
+ xlink:href="#use6049"
530
+ y="0"
531
+ x="0" />
532
+ <use
533
+ height="100%"
534
+ width="100%"
535
+ transform="matrix(0.30901699,-0.95105652,0.95105652,0.30901699,-267.97075,775.88681)"
536
+ id="use6053"
537
+ inkscape:transform-center-y="-12.723383"
538
+ inkscape:transform-center-x="-31.665728"
539
+ xlink:href="#use6051"
540
+ y="0"
541
+ x="0" />
542
+ </g>
543
+ </g>
544
+ </svg>