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,285 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+ <svg
4
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="300"
13
+ height="400"
14
+ viewBox="0 0 300 400"
15
+ id="svg2"
16
+ version="1.1"
17
+ inkscape:version="0.91 r13725"
18
+ sodipodi:docname="Back.svg"
19
+ inkscape:export-filename="C:\Users\Fluffy\Documents\Projects\ExtraRiichi\Tiles\Export\Regular\Back.png"
20
+ inkscape:export-xdpi="180"
21
+ inkscape:export-ydpi="180"
22
+ >
23
+ <defs id="defs4">
24
+ <inkscape:path-effect
25
+ effect="skeletal"
26
+ id="path-effect7963"
27
+ is_visible="true"
28
+ pattern="m -90.825902,-314.06958 23.03016,41.38503 13.798268,-41.38503 z"
29
+ copytype="repeated_stretched"
30
+ prop_scale="1"
31
+ scale_y_rel="false"
32
+ spacing="0"
33
+ normal_offset="0"
34
+ tang_offset="0"
35
+ prop_units="false"
36
+ vertical_pattern="false"
37
+ fuse_tolerance="0"
38
+ pattern-nodetypes="cccc"
39
+ />
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
+ />
56
+ <linearGradient id="linearGradient10055" osb:paint="solid">
57
+ <stop
58
+ style="stop-color:#000000;stop-opacity:1;"
59
+ offset="0"
60
+ id="stop10057"
61
+ />
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
+ >
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
+ />
79
+ </marker>
80
+ <clipPath clipPathUnits="userSpaceOnUse" 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
+ />
88
+ </clipPath>
89
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath7847">
90
+ <ellipse
91
+ 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"
92
+ id="ellipse7849"
93
+ cx="394"
94
+ cy="552.36218"
95
+ rx="349.49533"
96
+ ry="216"
97
+ />
98
+ </clipPath>
99
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath4243-1">
100
+ <circle
101
+ 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"
102
+ id="circle4245-4"
103
+ cx="-264.65997"
104
+ cy="-198.20665"
105
+ r="293.95438"
106
+ />
107
+ </clipPath>
108
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath7876">
109
+ <circle
110
+ 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"
111
+ id="circle7878"
112
+ cx="-264.65997"
113
+ cy="-198.20665"
114
+ r="293.95438"
115
+ />
116
+ </clipPath>
117
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath14693">
118
+ <rect
119
+ 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"
120
+ id="rect14695"
121
+ width="131.78395"
122
+ height="168.82127"
123
+ x="-332.59583"
124
+ y="383.49765"
125
+ rx="1.2551664"
126
+ ry="3.7514515"
127
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)"
128
+ />
129
+ </clipPath>
130
+ <clipPath clipPathUnits="userSpaceOnUse" id="clipPath14952">
131
+ <ellipse
132
+ 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"
133
+ id="ellipse14954"
134
+ cx="-271.34384"
135
+ cy="647.25604"
136
+ rx="69.057365"
137
+ ry="116.91089"
138
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)"
139
+ />
140
+ </clipPath>
141
+ <pattern
142
+ y="0"
143
+ x="0"
144
+ height="6"
145
+ width="6"
146
+ patternUnits="userSpaceOnUse"
147
+ id="EMFhbasepattern"
148
+ />
149
+ <filter
150
+ style="color-interpolation-filters:sRGB;"
151
+ inkscape:label=""
152
+ id="filter4198"
153
+ >
154
+ <feGaussianBlur
155
+ stdDeviation="2.51 2.51"
156
+ result="blur"
157
+ id="feGaussianBlur4200"
158
+ />
159
+ </filter>
160
+ <mask maskUnits="userSpaceOnUse" id="mask4216">
161
+ <rect
162
+ ry="40"
163
+ y="-1325.6035"
164
+ x="-451.93805"
165
+ height="400.77808"
166
+ width="300.05896"
167
+ id="rect4218"
168
+ style="opacity:1;fill:#ff3737;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
169
+ transform="scale(-1,-1)"
170
+ />
171
+ </mask>
172
+ <mask maskUnits="userSpaceOnUse" id="mask4222">
173
+ <rect
174
+ ry="40"
175
+ y="652.28351"
176
+ x="0"
177
+ height="400.77808"
178
+ width="300.05896"
179
+ id="rect4224"
180
+ style="opacity:1;fill:#ff3737;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
181
+ />
182
+ </mask>
183
+ <filter
184
+ style="color-interpolation-filters:sRGB;"
185
+ inkscape:label="Blur"
186
+ id="filter4188"
187
+ >
188
+ <feGaussianBlur
189
+ stdDeviation="2.35 2.34"
190
+ result="blur"
191
+ id="feGaussianBlur4190"
192
+ />
193
+ </filter>
194
+ </defs>
195
+ <sodipodi:namedview
196
+ id="base"
197
+ pagecolor="#aeffff"
198
+ bordercolor="#666666"
199
+ borderopacity="1"
200
+ inkscape:pageopacity="0"
201
+ inkscape:pageshadow="2"
202
+ inkscape:zoom="0.35742971"
203
+ inkscape:cx="-92.256393"
204
+ inkscape:cy="-195.52606"
205
+ inkscape:document-units="px"
206
+ inkscape:current-layer="layer1"
207
+ showgrid="true"
208
+ inkscape:window-width="1920"
209
+ inkscape:window-height="1017"
210
+ inkscape:window-x="1912"
211
+ inkscape:window-y="-8"
212
+ inkscape:window-maximized="1"
213
+ showguides="true"
214
+ inkscape:guide-bbox="true"
215
+ units="px"
216
+ >
217
+ <inkscape:grid
218
+ type="xygrid"
219
+ id="grid4774"
220
+ visible="true"
221
+ dotted="false"
222
+ color="#3f3fff"
223
+ opacity="0.03921569"
224
+ empcolor="#3f3fff"
225
+ empopacity="0.07843137"
226
+ enabled="false"
227
+ />
228
+ <sodipodi:guide
229
+ position="150,200"
230
+ orientation="0,1"
231
+ id="guide8231"
232
+ inkscape:label=""
233
+ inkscape:color="rgb(0,0,255)"
234
+ />
235
+ <sodipodi:guide
236
+ position="150,200"
237
+ orientation="1,0"
238
+ id="guide8233"
239
+ inkscape:label=""
240
+ inkscape:color="rgb(0,0,255)"
241
+ />
242
+ </sodipodi:namedview>
243
+ <metadata id="metadata7">
244
+ <rdf:RDF>
245
+ <cc:Work rdf:about="">
246
+ <dc:format>image/svg+xml</dc:format>
247
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
248
+ <dc:title />
249
+ </cc:Work>
250
+ </rdf:RDF>
251
+ </metadata>
252
+ <g
253
+ inkscape:label="Layer 1"
254
+ inkscape:groupmode="layer"
255
+ id="layer1"
256
+ transform="translate(0,-652.36216)"
257
+ >
258
+ <rect
259
+ style="opacity:1;fill:#FFC000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
260
+ id="rect4164"
261
+ width="300.05896"
262
+ height="400.77808"
263
+ x="0"
264
+ y="652.28351"
265
+ ry="40"
266
+ />
267
+ <path
268
+ style="fill:#ffffff;fill-opacity:0.78431373;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4198)"
269
+ d="M -4.7687833,775.07096 C -9.6501835,741.99485 -16.84552,674.23676 -1.2788716,652.0641 18.998297,625.94378 233.50094,631.63117 263.31435,653.90999 276.21398,662.64856 59.158568,656.47658 35.908342,685.10013 13.199947,712.46776 0.65060847,818.18718 -4.7687833,775.07096 Z"
270
+ id="path4166"
271
+ inkscape:connector-curvature="0"
272
+ sodipodi:nodetypes="ccccc"
273
+ mask="url(#mask4222)"
274
+ />
275
+ <path
276
+ sodipodi:nodetypes="ccccc"
277
+ inkscape:connector-curvature="0"
278
+ id="path4221"
279
+ d="m 151.73588,1025.0177 c -3.32683,-9.3138 -10.24843,-68.45389 5.31821,-90.62655 20.27717,-26.12032 219.43558,-16.45796 231.55506,-9.93184 11.07433,5.31702 -178.60366,0.0589 -204.85126,34.86646 -21.59349,30.0006 -26.50086,82.17843 -32.02201,65.69193 z"
280
+ style="fill:#000000;fill-opacity:0.39215687;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4198)"
281
+ transform="matrix(-1,0,0,-1,451.93806,1977.887)"
282
+ mask="url(#mask4216)"
283
+ />
284
+ </g>
285
+ </svg>
@@ -0,0 +1,225 @@
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="Blank.svg"
20
+ inkscape:export-filename="C:\Users\Fluffy\Documents\Projects\ExtraRiichi\Blank.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="2.0219278"
161
+ inkscape:cx="148.21511"
162
+ inkscape:cy="205.23973"
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
+ style="font-style:normal;font-weight:normal;font-size:519.32067871px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#f0a023;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
216
+ id="text11690">
217
+ <path
218
+ d="m 275.30302,756.03454 c 0,16.56687 -2.95837,31.35872 -8.87511,44.37555 -5.91674,12.84778 -13.69303,24.25863 -23.32886,34.23256 -9.46678,9.63583 -20.37048,18.67999 -32.71111,27.13248 -12.34063,8.45249 -25.44198,16.6514 -39.30406,24.59673 l 0,57.05428 -45.38984,0 0,-77.34024 c 10.98823,-6.25484 22.82171,-13.10135 35.50044,-20.53954 12.84777,-7.43819 23.32885,-14.9609 31.44324,-22.56813 9.80488,-8.79059 17.41212,-17.83475 22.82171,-27.13248 5.40959,-9.46679 8.11438,-21.46932 8.11438,-36.00759 0,-19.10261 -6.50841,-33.30279 -19.52524,-42.60052 -12.84777,-9.46679 -29.49917,-14.20018 -49.95418,-14.20018 -32.7283,1.20707 -79.344302,14.33075 -107.662353,40.62637 l -2.535745,0 0,-51.72921 c 31.218393,-21.8767 81.322938,-32.11693 113.748138,-32.2584 36.34569,0 64.99961,8.87511 85.96177,26.62532 21.13121,17.58117 31.69682,40.82551 31.69682,69.733 z m -100.16194,288.82146 -51.72921,0 0,-53.50427 51.72921,0 z"
219
+ id="path5660"
220
+ inkscape:connector-curvature="0"
221
+ sodipodi:nodetypes="sccscccccccscccccccsccccc"
222
+ style="fill:#f0a023;fill-opacity:1" />
223
+ </g>
224
+ </g>
225
+ </svg>