Merge pull request #87 from dougfelt/subregion_flags

Subregion flags
pull/89/head
dougfelt 2017-01-26 15:25:57 -08:00 committed by GitHub
commit 1217d9c211
111 changed files with 67808 additions and 5 deletions

View File

@ -70,7 +70,9 @@ SELECTED_FLAGS = AC AD AE AF AG AI AL AM AO AQ AR AS AT AU AW AX AZ \
VA VC VE VG VI VN VU \
WS \
YE \
ZA ZM ZW
ZA ZM ZW \
GB-ENG GB-SCT GB-WLS
ALL_FLAGS = $(basename $(notdir $(wildcard $(FLAGS_SRC_DIR)/*.png)))
FLAGS = $(SELECTED_FLAGS)

View File

@ -18,18 +18,38 @@
__author__ = 'roozbeh@google.com (Roozbeh Pournader)'
import re
import sys
import add_emoji_gsub
def two_letter_code_to_glyph_name(iso_code):
def two_letter_code_to_glyph_name(region_code):
return 'u%04x_%04x' % (
add_emoji_gsub.reg_indicator(iso_code[0]),
add_emoji_gsub.reg_indicator(iso_code[1]))
add_emoji_gsub.reg_indicator(region_code[0]),
add_emoji_gsub.reg_indicator(region_code[1]))
subcode_re = re.compile(r'[0-9a-z]{2}-[0-9a-z]+$')
def hyphenated_code_to_glyph_name(sub_code):
# Hyphenated codes use tag sequences, not regional indicator symbol pairs.
sub_code = sub_code.lower()
if not subcode_re.match(sub_code):
raise Exception('%s is not a valid flag subcode' % sub_code)
cps = ['u1f3f3']
cps.extend('e00%02x' % ord(cp) for cp in sub_code if cp != '-')
cps.append('e007f')
return '_'.join(cps)
def flag_code_to_glyph_name(flag_code):
if '-' in flag_code:
return hyphenated_code_to_glyph_name(flag_code)
return two_letter_code_to_glyph_name(flag_code)
def main():
print ' '.join([
two_letter_code_to_glyph_name(iso_code) for iso_code in sys.argv[1:]])
flag_code_to_glyph_name(flag_code) for flag_code in sys.argv[1:]])
if __name__ == '__main__':
main()

View File

@ -195,6 +195,7 @@ for (u, filename) in img_pairs:
cp = ord(char)
if cp not in c and not is_vs(cp):
name = glyph_name (char)
g.append(name)
c[cp] = name
if len (u) > 1:
h[name] = [0, 0]

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 376 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 626 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 367 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 15" width="800" height="480"><rect width="25" height="15" fill="#FFF"/><g fill="#CE1124"><rect width="3" height="15" x="11"/><rect width="25" height="3" y="6"/></g></svg>

After

Width:  |  Height:  |  Size: 248 B

View File

@ -0,0 +1,914 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="600"
height="300"
id="svg19402"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="Flag_of_Northern_Ireland.svg"
sodipodi:docbase="C:\WIKIPEDI"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata1341">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Flag of Northern Ireland</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:window-width="1436"
inkscape:window-height="838"
inkscape:zoom="1.43"
inkscape:cx="82.085362"
inkscape:cy="139.16205"
inkscape:window-x="4"
inkscape:window-y="30"
inkscape:current-layer="svg19402"
showgrid="false" />
<defs
id="defs19404">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 150 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="600 : 150 : 1"
inkscape:persp3d-origin="300 : 100 : 1"
id="perspective3382" />
<clipPath
id="clipPath3266"
clipPathUnits="userSpaceOnUse">
<rect
y="0.18325138"
x="-1.4834156"
height="19.633497"
width="32.966831"
id="rect3268"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.3665022;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</clipPath>
<clipPath
id="clipPath3304"
clipPathUnits="userSpaceOnUse">
<rect
y="0"
x="-1.666666"
height="20"
width="33.333332"
id="rect3306"
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.06940922;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</clipPath>
<inkscape:perspective
id="perspective21"
inkscape:persp3d-origin="500 : 200 : 1"
inkscape:vp_z="1000 : 300 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 300 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective193"
inkscape:persp3d-origin="200 : 133.33333 : 1"
inkscape:vp_z="400 : 200 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 200 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.64999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1433"
width="600"
height="300"
x="0"
y="-7.6293945e-006"
rx="5.5511257e-015"
ry="7.5502976e-016" />
<rect
id="use3168"
style="fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke-opacity:1"
y="119.99999"
x="0"
ry="7.5502982e-016"
rx="5.5511257e-015"
height="60"
width="600" />
<use
xlink:href="#use3168"
height="300"
width="600"
y="0"
x="0"
id="use6771"
transform="matrix(0,0.5,-1,0,450,-5e-6)" />
<path
id="path5103"
style="fill:#ebeae3;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 322.00318,91.631 C 323.92865,88.618611 322.77727,86.673251 319.86504,86.072147 C 319.86504,86.072147 310.57347,89.05058 300.53833,89.377487 C 290.50318,89.704392 278.58069,86.853713 278.58069,86.853713 C 276.44247,88.195386 276.96424,91.379345 278.02479,93.366981 C 278.02479,93.366981 288.52987,96.857063 300.48917,96.514418 C 308.08522,96.296784 315.28322,94.358564 319.32118,93.073797 C 321.64062,92.335815 322.00429,91.665217 322.00318,91.631 z"
sodipodi:nodetypes="ccsccssc" />
<path
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;stroke:#161111;stroke-width:1.15781746999999990;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3244"
sodipodi:sides="6"
sodipodi:cx="-236.36365"
sodipodi:cy="-15.151515"
sodipodi:r1="85.064659"
sodipodi:r2="44.658947"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.0943951"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="M -236.36365,69.913144 L -258.69312,23.524268 L -310.0318,27.380817 L -281.02259,-15.151515 L -310.0318,-57.683843 L -258.69312,-53.827298 L -236.36365,-100.21617 L -214.03417,-53.827298 L -162.69549,-57.683847 L -191.7047,-15.151515 L -162.69549,27.380813 L -214.03417,23.524268 L -236.36365,69.913144 z"
transform="matrix(0.863694,0,0,0.863694,504.14586,163.08627)" />
<g
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.07538979;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(13.50416,0,0,13.028887,98.956639,17.58519)"
inkscape:label="red_hand"
id="red_hand">
<path
sodipodi:nodetypes="cccscscsscscsssccsccscssccc"
d="M 15.775625,11.621559 C 15.890747,11.504149 16.075829,11.374139 16.178622,11.091567 C 16.274904,10.827109 16.3215,10.34166 16.409332,10.095622 C 16.524055,9.6738658 16.755236,9.2626511 16.480141,9.2908029 C 16.218156,9.3176131 16.133455,9.5799253 16.034191,9.7719038 C 15.988204,9.8434065 15.943741,10.013333 15.923716,10.100364 C 15.91126,10.1545 15.909596,10.214427 15.860135,10.239772 C 15.931896,9.5990736 15.759801,9.1211197 15.701248,8.1714373 C 15.676688,7.7730904 15.613872,7.3729165 15.414197,7.3699388 C 15.263869,7.3677704 15.238633,7.5739907 15.215221,7.7280838 C 15.215221,7.5104958 15.222917,7.0512 14.971753,7.0512 C 14.666561,7.0512 14.759403,7.6922752 14.718459,8.0169389 C 14.711408,7.9021383 14.707477,7.6547031 14.67543,7.4948576 C 14.663312,7.4344169 14.638095,7.3878986 14.608412,7.3609123 C 14.589615,7.3438234 14.563279,7.3345667 14.524316,7.3345667 C 14.249185,7.3345667 14.255426,7.7343005 14.264277,8.1332337 C 14.268017,8.1754414 14.264427,8.3663706 14.267752,8.4914107 C 14.267752,8.2738227 14.269578,7.8491996 14.05134,7.8675771 C 13.868776,7.8829506 13.855099,8.360959 13.846879,8.6148194 C 13.858793,8.8686791 13.773934,9.4605428 13.744288,9.6288398 C 13.736179,9.7480925 13.690754,9.9032084 13.671552,10.069458 C 13.630227,10.427249 13.669536,10.846163 13.715243,11.06058 C 13.806103,11.399065 14.043246,11.550948 14.031332,11.780617 C 14.019418,12.010315 14.031332,12.415282 14.031332,12.596612 C 14.031332,12.777943 14.183305,12.787714 14.497917,12.717495 C 15.012297,12.602646 15.293385,12.832343 15.718132,12.663094 C 15.664242,12.161421 15.787538,11.80289 15.775625,11.621559 z"
id="path3484"
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.07538979;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
transform="matrix(0.1385348,0,0,0.1399912,-5.1564348,2.9008814e-2)"
id="g3486"
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
d="M 149.02319,76.449939 C 149.79119,74.275339 150.76119,73.421139 151.69719,72.946839"
id="path3488"
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 150.41791,83.948748 C 150.48491,83.503548 150.75691,83.150548 151.13491,82.769348"
id="path3490"
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M 140.21051,59.896585 C 140.26351,61.820385 140.37659,65.519845 140.37659,66.404445"
id="path3492"
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cscc"
d="M 147.0788,54.638723 C 146.97197,55.661532 147.09255,56.489193 147.07004,57.533626 C 147.05504,58.22959 147.16555,59.50871 147.2531,61.05851 C 147.23078,61.619709 147.42412,64.413506 147.24757,65.449806"
id="path3494"
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csc"
d="M 143.46288,56.556016 C 143.499,56.935594 143.48786,57.394775 143.50566,57.905946 C 143.59145,60.369457 143.53634,64.040504 143.60756,65.828335"
id="path3496"
style="fill:#cc0000;fill-opacity:1;stroke:#161111;stroke-width:0.54135574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<path
d="M 299.71195,76.392216 C 323.93915,80.385706 323.07389,81.517197 323.07389,81.517197 L 329.39692,62.614667 C 329.39692,62.614667 330.06249,58.887408 328.33198,56.624429 C 326.60147,54.36145 321.74272,55.626054 321.74272,55.626054 C 321.74272,55.626054 321.07714,52.564378 318.94728,51.832235 C 316.81742,51.100097 308.89699,54.69424 306.43433,55.49294 C 303.97168,56.291637 302.70707,57.090338 299.24604,57.023776 C 295.78502,56.957218 289.5951,53.89554 288.46362,53.296517 C 287.33213,52.697494 285.66818,52.098471 284.13734,52.165028 C 282.60649,52.231587 281.0091,52.630935 280.2104,53.695868 C 279.4117,54.760796 279.4117,56.091963 279.4117,56.091963 C 279.4117,56.091963 278.1471,55.293266 276.15035,55.293266 C 274.15361,55.293266 273.02212,55.559496 272.09029,56.624429 C 271.15849,57.689358 269.96043,60.684478 269.96043,60.684478 L 272.22342,65.809459 L 272.35653,72.86463 L 277.08217,80.31915 L 299.71195,76.392216 z"
style="fill:#b02320;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.81492889;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34974" />
<path
d="M 322.29625,87.071738 C 322.29625,87.071738 323.51613,88.526202 323.46921,89.042298 C 323.42229,89.558398 322.90619,90.027579 322.90619,90.027579 C 322.90619,90.027579 323.28155,90.402924 323.1877,90.96594 C 323.09387,91.528955 322.34318,91.575877 322.34318,91.575877 C 322.34318,91.575877 322.48393,92.091975 322.01475,92.326566 C 321.54557,92.561155 319.62193,92.983418 319.62193,92.983418 C 319.62193,92.983418 310.23831,90.309085 300.19785,90.309085 C 290.15737,90.309085 278.33402,93.546435 278.33402,93.546435 C 278.33402,93.546435 277.11415,93.124173 277.06722,92.326566 C 277.02032,91.528955 277.20799,90.96594 277.20799,90.96594 C 277.20799,90.96594 276.54011,91.035516 276.36346,90.449841 C 276.11639,89.630674 276.4573,88.995382 276.4573,88.995382 C 276.4573,88.995382 275.99214,89.145158 276.50421,88.057018 C 276.87955,87.259412 277.44258,86.977904 277.44258,86.977904 C 277.44258,86.977904 287.95222,83.224455 299.91634,83.177539 C 311.88044,83.13062 322.29625,86.9779 322.29625,87.071738 z"
style="fill:#ebeae3;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="path30012" />
<path
d="M 272.64293,63.434622 C 272.64293,63.434622 272.24227,62.072423 273.12369,60.870482 C 274.00513,59.668541 275.60771,59.748669 276.08848,59.989057 C 276.56927,60.229446 276.48914,60.790354 277.13019,60.950612 C 277.77122,61.11087 278.25199,60.630093 278.25199,60.630093"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.7171374;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path41763" />
<path
d="M 331.14018,66.623912 L 327.5013,74.152629 L 326.07085,74.403585 C 326.07085,74.403585 325.19814,73.87932 322.70802,74.052245 C 320.92622,74.177723 320.39921,74.629446 320.39921,74.629446 L 323.63656,67.125826 C 323.63656,67.125826 323.88889,68.73804 324.26395,69.685588 C 324.74077,70.890184 326.54766,72.019494 326.54766,72.019494 C 326.54766,72.019494 326.79805,70.578581 326.32181,68.832336 C 325.79479,66.899968 324.5651,64.29001 324.5651,64.29001 L 331.14018,66.623912 z"
style="fill:#ffcc00;fill-opacity:0.94117647;fill-rule:evenodd;stroke:#000000;stroke-width:0.74973458;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path17396" />
<rect
width="4.07269"
height="17.308931"
x="297.80765"
y="43.225334"
style="fill:#121116;fill-opacity:1;stroke:#121116;stroke-width:0.7311542;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5511" />
<path
d="M 272.84965,75.147177 L 275.46533,80.743525 C 275.46533,80.743525 286.59688,76.40458 299.73644,76.485437 C 319.4453,76.607095 325.04164,80.561033 325.04164,80.561033 L 327.96148,73.626432 L 325.77162,74.90386 L 323.5209,76.302945 L 320.96605,77.276224 L 317.86373,77.032903 L 315.12638,75.025522 L 313.7273,72.105686 L 311.41576,74.23473 L 307.34017,75.147181 L 303.3254,74.113072 L 299.79726,69.672496 C 299.79726,69.672496 297.16907,74.60852 293.83593,74.90386 C 289.03038,75.32967 286.23221,72.592327 286.23221,72.592327 C 286.23221,72.592327 284.44572,76.6071 281.48748,77.337054 C 276.80359,78.492818 272.91048,75.147177 272.84965,75.147177 z"
style="fill:#f6ca1f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6193459;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path24185" />
<g
transform="matrix(0.3259716,0,0,0.3259716,177.52929,-39.537736)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g5431">
<g
transform="translate(-0.375,-0.25)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3168">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path2193" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path2195" />
</g>
<g
transform="translate(-16.050688,7.0776797)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3172">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3174" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3176" />
</g>
<g
transform="translate(17.824312,-4.5473203)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3178">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3180" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3182" />
</g>
<g
transform="translate(38.324312,-0.4223203)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3184">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3186" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3188" />
</g>
<g
transform="translate(53.949312,12.45268)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3190">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3192" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3194" />
</g>
<g
transform="translate(60.699312,33.57768)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3196">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3199" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3201" />
</g>
<g
transform="translate(58.199312,54.95268)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3203">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3205" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3207" />
</g>
<g
transform="translate(48.699312,73.70268)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3209">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3211" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3213" />
</g>
<g
transform="translate(-31.300688,12.70268)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3215">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3217" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3219" />
</g>
<g
transform="matrix(0.83626,0,0,0.83626,19.71636,51.540496)"
style="stroke-width:2.68218017;stroke-miterlimit:4;stroke-dasharray:none"
id="g3221">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.68218017;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3223" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.68218017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3225" />
</g>
<g
transform="matrix(0.83626,0,0,0.83626,19.778839,58.338511)"
style="stroke-width:2.68218017;stroke-miterlimit:4;stroke-dasharray:none"
id="g3227">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.68218017;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3229" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.68218017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3231" />
</g>
<g
transform="matrix(0.83626,0,0,0.83626,20.153839,68.338511)"
style="stroke-width:2.68218017;stroke-miterlimit:4;stroke-dasharray:none"
id="g3233">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.68218017;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3235" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.68218017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3237" />
</g>
<g
transform="matrix(0.904373,0,0,0.904373,-8.6190797,62.111696)"
style="stroke-width:2.48017144;stroke-miterlimit:4;stroke-dasharray:none"
id="g3239">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.48017144;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3241" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.48017144;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3243" />
</g>
<g
transform="translate(-49.175688,52.70268)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3245">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3247" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3249" />
</g>
<g
transform="matrix(0.939156,0,0,0.939156,-23.620878,97.000746)"
style="stroke-width:2.38831472;stroke-miterlimit:4;stroke-dasharray:none"
id="g3251">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.38831472;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3253" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.38831472;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3255" />
</g>
<g
transform="translate(-67.280909,12.529107)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3257">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3259" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3261" />
</g>
<g
transform="translate(-83.278087,6.220361)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3263">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3265" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3267" />
</g>
<g
transform="translate(-98.599328,-0.9896346)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3269">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3271" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3273" />
</g>
<g
transform="translate(-116.17369,-4.8199447)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3275">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3277" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3279" />
</g>
<g
transform="translate(-136.90243,0.1369272)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3281">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3283" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3285" />
</g>
<g
transform="translate(-151.54773,14.78223)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3287">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3289" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3291" />
</g>
<g
transform="translate(-157.63117,35.285656)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3293">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3295" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3297" />
</g>
<g
transform="translate(-154.92742,56.69033)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3299">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3301" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3303" />
</g>
<g
transform="translate(-145.01367,76.067193)"
style="stroke-width:2.24300003;stroke-miterlimit:4;stroke-dasharray:none"
id="g3305">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.24300003;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3307" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.24300003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3309" />
</g>
<g
transform="matrix(0.605819,-0.1623287,0.2588191,0.9659259,-28.101915,178.81366)"
style="stroke-width:2.83223772;stroke-miterlimit:4;stroke-dasharray:none"
id="g3313">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.83223772;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3315" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.83223772;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3317" />
</g>
<g
transform="matrix(0.6089124,0.1503097,-0.2396557,0.970858,260.54037,44.207964)"
style="stroke-width:2.83223772;stroke-miterlimit:4;stroke-dasharray:none"
id="g3319">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:2.83223772;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3321" />
<path
d="M 421.17048,250.76826 C 421.17048,250.76826 426.38539,250.67986 426.91572,248.55854 C 427.44605,246.43722 426.56217,243.69719 426.56217,243.69719 C 426.56217,243.69719 429.03704,246.43723 428.32994,248.55855 C 427.62283,250.67987 426.92915,251.22818 425.14795,251.65214 C 423.94108,251.93939 422.14275,251.47537 421.17048,250.76826 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.83223772;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3323" />
</g>
</g>
<path
d="M 297.95153,33.632299 L 298.1031,37.194194 C 298.1031,37.194194 293.88024,37.565054 293.70757,37.952041 C 292.8871,39.790961 294.69277,42.271784 294.69277,42.271784 C 294.69277,42.271784 296.1126,41.210798 299.69459,41.210795 C 303.10491,41.210793 304.84795,42.044429 304.84795,42.044429 C 304.84795,42.044429 305.75737,40.604513 305.75737,39.543526 C 305.75737,38.482538 305.37845,37.421549 305.37845,37.421549 C 305.37845,37.421549 303.6354,37.194194 303.10491,37.194194 C 302.57441,37.194194 301.5892,37.194194 301.5892,37.194194 L 301.43764,33.556514 L 297.95153,33.632299 z"
style="fill:#b3a192;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7311542;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5515" />
<path
d="M 303.97435,39.158202 C 303.97442,39.557647 303.63703,39.881744 303.22021,39.8826 C 302.80339,39.88346 302.46455,39.560755 302.46284,39.161311 C 302.46114,38.761865 302.79719,38.436507 303.214,38.434079 C 303.63081,38.431655 303.97098,38.75308 303.97433,39.152516"
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5517" />
<path
d="M 305.71503,39.546085 C 305.7151,39.96291 305.36302,40.301107 304.92808,40.301999 C 304.49313,40.302896 304.13954,39.966152 304.13776,39.549329 C 304.13597,39.132505 304.48666,38.79299 304.9216,38.790456 C 305.35655,38.787927 305.71151,39.123338 305.71501,39.54015"
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5519" />
<path
d="M 302.23128,39.130546 C 302.23136,39.529991 301.89395,39.854087 301.47715,39.854945 C 301.06033,39.855804 300.72148,39.533098 300.71976,39.133656 C 300.71806,38.734209 301.05412,38.408851 301.47092,38.406424 C 301.88774,38.403998 302.2279,38.725424 302.23125,39.124859"
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5521" />
<path
d="M 298.73801,39.16972 C 298.73809,39.585408 298.38698,39.922684 297.95321,39.923574 C 297.51945,39.92447 297.16682,39.588643 297.16504,39.172956 C 297.16326,38.757267 297.51299,38.418678 297.94675,38.416153 C 298.3805,38.413628 298.7345,38.748125 298.73798,39.163802"
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5523" />
<path
d="M 296.799,39.299092 C 296.79908,39.71478 296.44796,40.052056 296.01419,40.052948 C 295.58043,40.053842 295.2278,39.718016 295.22602,39.302329 C 295.22424,38.88664 295.57397,38.548051 296.00773,38.545525 C 296.44149,38.543001 296.79548,38.877498 296.79897,39.293175"
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5525" />
<path
d="M 300.35814,37.118409 C 300.35821,37.469125 300.06198,37.753685 299.696,37.754436 C 299.33004,37.755189 299.03253,37.471853 299.03102,37.12114 C 299.02953,36.770423 299.3246,36.484756 299.69056,36.482625 C 300.05652,36.480496 300.35518,36.76271 300.35812,37.113417"
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5527" />
<path
d="M 300.35814,34.162795 C 300.35821,34.513512 300.06198,34.79807 299.696,34.798823 C 299.33004,34.799577 299.03252,34.516239 299.03102,34.165526 C 299.02953,33.814809 299.3246,33.529141 299.69055,33.52701 C 300.05651,33.524882 300.35518,33.807095 300.35812,34.157802"
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5529" />
<path
d="M 300.35814,35.754278 C 300.35821,36.104995 300.06198,36.389554 299.696,36.390306 C 299.33004,36.391059 299.03253,36.107722 299.03102,35.757008 C 299.02953,35.406292 299.3246,35.120625 299.69056,35.118494 C 300.05652,35.116366 300.35518,35.39858 300.35812,35.749286"
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5531" />
<path
d="M 294.83375,39.827158 C 294.83383,40.228311 294.495,40.55379 294.0764,40.554648 C 293.65781,40.555511 293.31752,40.231429 293.3158,39.830283 C 293.31407,39.429134 293.65158,39.102385 294.07017,39.099947 C 294.48875,39.097513 294.83037,39.420311 294.83373,39.82145"
style="fill:#f0ddcb;fill-opacity:1;stroke:#121116;stroke-width:0.37258551;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5533" />
<path
d="M 300.52821,38.975137 C 300.52825,39.414003 300.15604,39.770038 299.69627,39.770926 C 299.2365,39.771813 298.86278,39.417219 298.86095,38.978357 C 298.85912,38.539495 299.22988,38.182068 299.68962,38.179457 C 300.14939,38.176849 300.52455,38.530038 300.52819,38.968891"
style="fill:#916c68;fill-opacity:1;stroke:#4d3126;stroke-width:0.37258548;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5535" />
<g
transform="matrix(0.2884843,0,0,0.2884843,191.61641,-31.520442)"
style="stroke-width:2.53446817;stroke-miterlimit:4;stroke-dasharray:none"
id="g5545">
<path
d="M 430.62804,247.4095 C 430.62812,251.01684 427.74708,253.94321 424.1885,253.95037 C 420.62992,253.95754 417.73744,251.04278 417.72339,247.43547 C 417.70934,243.82816 420.57902,240.89035 424.13755,240.86903 C 427.69608,240.8477 430.59982,243.75092 430.62784,247.35815"
transform="matrix(0.83626,0,0,0.83626,20.051688,0.8296653)"
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1e1e1e;stroke-width:3.03071785;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5541" />
<path
d="M 372.25971,210.53713 C 372.25971,210.53713 376.62073,210.46321 377.06423,208.68923 C 377.50772,206.91525 376.76857,204.62388 376.76857,204.62388 C 376.76857,204.62388 378.8382,206.91526 378.24688,208.68924 C 377.65556,210.46321 377.07546,210.92174 375.58591,211.27628 C 374.57666,211.5165 373.07278,211.12846 372.25971,210.53713 z"
style="fill:#a3afb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.53446817;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5543" />
</g>
<path
d="M 274.9794,81.334677 C 274.9794,81.334677 276.36824,82.630926 276.73858,83.788292 C 277.10895,84.945657 277.66448,88.047395 277.66448,88.047395 C 277.66448,88.047395 292.20098,84.019763 299.33034,84.343826 C 306.45972,84.66789 322.89428,88.278867 322.89428,88.278867 C 322.89428,88.278867 323.17206,86.519673 323.49611,84.66789 C 323.82018,82.816105 325.16272,80.779144 325.16272,80.779144 C 325.16272,80.779144 309.46886,75.87192 299.56183,76.334865 C 289.65478,76.79781 284.70126,77.862584 282.47912,78.557003 C 280.25699,79.251425 274.84051,81.380973 274.9794,81.334677 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="path34972" />
<path
d="M 296.66319,22.529814 L 302.91544,22.529814 C 302.91544,22.529814 301.3727,23.597259 301.05871,24.613895 C 300.78849,25.48883 300.86925,26.925336 300.86925,26.925336 C 300.86925,26.925336 302.57441,26.925336 303.33226,26.281165 C 304.09011,25.636993 305.68159,24.500219 305.68159,24.500219 L 305.68159,32.457635 C 305.68159,32.457635 304.14713,30.973737 303.21858,30.487228 C 302.10323,29.902846 300.98292,29.691486 300.98292,29.691486 C 300.98292,29.691486 300.98292,30.979829 301.51341,31.73768 C 302.04391,32.495529 304.16589,35.375354 304.16589,35.375354 L 295.22327,35.716389 C 295.22327,35.716389 297.34439,33.479829 298.21678,31.851357 C 298.78517,30.790365 298.5578,29.691486 298.5578,29.691486 C 298.5578,29.691486 297.04211,29.691486 296.28426,30.221982 C 295.52641,30.752474 294.20018,32.343959 294.20018,32.343959 L 294.20019,24.689681 C 294.20019,24.689681 294.76856,26.167489 296.01901,26.735876 C 297.26946,27.304263 298.44414,27.001123 298.44414,27.001123 C 298.44414,27.001123 298.68676,25.478082 298.17888,24.538114 C 297.65527,23.569029 296.5495,22.491918 296.66319,22.529814 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7311542;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5537" />
<path
d="M 296.17319,47.780318 C 296.17319,47.780318 291.72539,47.726732 287.92063,45.476035 C 284.11588,43.225338 280.2784,40.868081 274.63081,42.207164 C 273.47421,42.481397 269.21841,44.350687 267.34283,50.406129 C 266.02678,54.655112 267.55719,59.784037 268.89689,62.088322 C 270.23658,64.392607 272.3969,66.728261 272.3969,66.728261 L 274.69453,65.171989 C 274.69453,65.171989 268.84329,60.212739 269.53994,53.782177 C 270.23658,47.351613 273.45187,45.851149 273.45187,45.851149 C 273.45187,45.851149 277.41738,42.743044 282.72261,45.690383 C 288.02781,48.637728 293.22585,49.977429 293.22585,49.977429 C 293.22585,49.977429 298.10237,51.156363 298.53107,51.102777 C 298.95977,51.049185 296.06602,47.726728 296.17319,47.780318 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#121116;stroke-width:0.7311542;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3325" />
<path
d="M 271.57209,71.899604 L 269.2088,67.25451 L 276.29868,64.483752 C 276.29868,64.483752 274.58733,66.765553 274.17986,68.39541 C 273.6822,70.386083 273.85389,72.062591 273.85389,72.062591 C 273.85389,72.062591 274.50583,71.573632 275.32076,70.269746 C 275.93916,69.280302 276.95062,65.706146 276.95062,65.706146 L 280.12884,75.892757 C 280.15338,75.92003 278.495,74.258946 277.32903,74.061734 C 276.01463,73.839419 274.42434,74.262897 274.42434,74.262897 L 272.55,74.833349 L 271.57209,71.899604 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.74973458;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path16425" />
<path
d="M 304.18942,47.6965 C 304.18942,47.6965 308.63722,47.642915 312.44197,45.392217 C 316.24672,43.141521 320.08419,40.784266 325.7318,42.123346 C 326.88839,42.397579 331.1442,44.26687 333.01976,50.322313 C 334.33583,54.571297 332.80542,59.700222 331.46572,62.004504 C 330.12603,64.308789 329.21483,65.664349 329.21483,65.664349 L 326.45335,64.672591 C 326.45335,64.672591 331.51931,60.128922 330.82266,53.698362 C 330.12603,47.267797 326.91073,45.767333 326.91073,45.767333 C 326.91073,45.767333 322.94523,42.659226 317.64001,45.606568 C 312.33479,48.553911 307.13675,49.893612 307.13675,49.893612 C 307.13675,49.893612 302.26025,51.072547 301.83155,51.01896 C 301.40284,50.96537 304.29659,47.642911 304.18942,47.6965 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#121116;stroke-width:0.7311542;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4296" />
<rect
width="1.8567302"
height="17.316853"
x="301.89236"
y="43.294868"
style="fill:#ffcc00;fill-opacity:1;stroke:#121116;stroke-width:0.7311542;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5267" />
<rect
width="2.1977625"
height="17.316853"
x="295.64011"
y="43.219086"
style="fill:#ffcc00;fill-opacity:1;stroke:#121116;stroke-width:0.7311542;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5269" />
<path
d="M 305.75737,39.202492 C 305.75753,42.274554 303.05051,44.766761 299.70676,44.772935 C 296.36302,44.779107 293.64513,42.296918 293.63183,39.22488 C 293.61856,36.152839 296.31492,33.650893 299.6586,33.632659 C 303.00228,33.614428 305.73078,36.086794 305.7572,39.158763"
style="fill:#ffcc00;fill-opacity:1;stroke:#121116;stroke-width:0.7311542;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5513" />
<path
d="M 294.31675,60.466922 L 304.74266,60.381111 C 304.74266,60.381111 303.51987,61.110497 302.4687,62.976864 C 301.41753,64.843234 301.5677,66.02312 301.5677,66.02312 C 301.5677,66.02312 303.15518,66.001669 304.27071,65.186471 C 305.38624,64.371279 306.63049,62.848151 306.63049,62.848151 L 306.58759,72.458875 C 306.58759,72.458875 305.83675,71.236079 304.59251,70.506696 C 303.34826,69.777308 301.58915,69.777308 301.58915,69.777308 L 298.02803,69.777308 C 298.02803,69.777308 296.39968,69.873531 295.66826,70.356527 C 294.63654,71.037833 293.35139,72.351611 293.35139,72.351611 L 293.17977,63.277201 C 293.17977,63.277201 293.69463,64.864687 295.36793,65.508262 C 297.04123,66.151835 297.98513,66.066024 297.98513,66.066024 C 297.98513,66.066024 297.98513,64.028038 297.12703,62.976864 C 296.26893,61.925689 294.31675,60.509828 294.31675,60.466922 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.6193459;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path19336" />
<path
d="M 300.12586,68.013185 C 300.12586,68.013185 301.65131,71.572575 303.42501,73.143505 C 304.45749,74.057938 307.56185,74.746724 308.96518,74.388434 C 312.11918,73.583166 314.2868,71.059764 314.2868,71.059764 C 314.2868,71.059764 314.17396,73.824252 316.1486,75.347544 C 318.12324,76.870831 319.70294,77.265757 321.33906,76.81441 C 322.97519,76.363067 327.60147,72.921561 327.60147,72.921561 L 328.56058,73.767835 C 328.56058,73.767835 325.90731,76.344465 323.11867,77.71224 C 321.68286,78.416474 317.32479,78.024971 315.91433,76.896608 C 314.50388,75.768245 313.6662,73.0344 313.6662,73.0344 C 313.6662,73.0344 312.79788,74.79195 310.93608,75.412551 C 309.07429,76.033148 306.51569,76.006239 304.14013,75.312037 C 302.54101,74.844728 300.46436,72.639473 300.06943,71.906036 C 299.67452,71.1726 299.78734,70.777673 299.78734,70.777673 C 299.78734,70.777673 298.6157,74.135838 296.17659,75.051997 C 293.87319,75.917173 291.24729,75.924043 289.01635,75.282531 C 286.76112,74.634032 286.58551,73.372907 286.58551,73.372907 C 286.58551,73.372907 286.41626,76.927249 281.50788,77.942773 C 276.5995,78.9583 272.70665,75.347544 272.70665,75.347544 L 273.38367,74.332013 C 273.38367,74.332013 276.14815,77.435012 280.37951,77.152919 C 284.61088,76.870831 286.02133,71.454692 286.02133,71.454692 C 286.02133,71.454692 287.88312,74.275598 292.84792,74.332013 C 297.81271,74.388434 299.22316,67.900352 299.22316,67.900352 L 300.12586,68.013185 z"
style="fill:#f6ca1f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.58674878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path21276" />
<g
transform="matrix(0.3259716,0,0,0.3259716,177.52929,-39.537736)"
style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:2.20000005;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g13496">
<path
d="M 338.56863,336.29188 C 338.56863,336.29188 338.68263,330.99114 339.82201,329.3983 C 341.43776,327.13949 343.63585,327.04726 344.75719,327.36156 C 346.14067,327.74933 347.57728,329.00662 347.34228,332.68841 C 347.10727,336.37021 346.0889,338.17194 347.1856,339.58199 C 348.28231,340.99204 348.43898,341.93207 350.55406,341.61873 C 352.66913,341.30539 353.60916,340.60036 353.13915,338.64196 C 352.66913,336.68356 352.04244,338.79863 351.65076,337.15357 C 351.25908,335.50851 353.69664,328.40213 353.29582,323.99311 C 352.90414,319.68462 351.25908,316.23783 347.96896,315.37614 C 344.8768,314.56629 342.25042,314.59277 339.35199,316.70785 C 336.57202,318.73648 333.00677,325.40316 333.00677,325.40316 L 332.92843,339.66033 L 338.7253,339.34698 L 338.56863,336.29188 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path11548" />
<path
d="M 327.77011,340.12967 C 327.77011,340.12967 325.55283,335.3136 323.87301,334.30687 C 321.49084,332.87922 319.43813,333.67073 318.53498,334.40592 C 317.42069,335.31297 316.60425,337.03867 318.28723,340.32171 C 319.97022,343.60476 321.62233,344.8513 321.1785,346.58163 C 320.73468,348.31196 320.96566,349.23653 318.90095,349.79217 C 316.83625,350.3478 315.69311,350.07586 315.34361,348.09241 C 314.99412,346.10894 316.41189,347.79897 316.11544,346.13412 C 315.819,344.46926 310.75101,338.92327 309.36131,334.71984 C 308.0033,330.61225 308.13826,326.7954 310.8123,324.69376 C 313.32546,322.71857 315.74476,321.69606 319.24603,322.48064 C 322.6042,323.23316 328.53117,327.92642 328.53117,327.92642 L 334.28552,340.97098 L 328.8441,342.99406 L 327.77011,340.12967 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path12519" />
<path
d="M 326.66154,297.90718 C 326.66154,297.90718 321.02134,307.38585 322.27472,314.67111 C 323.5281,321.95637 331.04836,337.62359 331.04836,337.62359 L 331.1267,339.73866 L 335.18451,339.29998 L 334.26015,337.15357 C 334.26015,337.15357 336.28688,318.39837 335.0435,312.4777 C 334.11928,308.0768 326.73988,297.98552 326.66154,297.90718 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path11546" />
<path
d="M 335.6702,341.30539 C 335.6702,341.30539 338.48845,344.67762 341.85875,346.3189 C 345.54054,348.11188 347.05405,348.12357 348.51732,347.02392 C 349.58943,346.21823 349.22235,342.79377 347.96897,341.85373 C 346.71559,340.9137 345.29364,341.3914 345.07052,342.32375 C 344.69382,343.89794 344.18026,343.79309 343.03379,343.18545 C 341.3597,342.29816 337.47193,339.89534 337.47193,339.89534 L 335.6702,341.30539 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path12521" />
<path
d="M 331.30431,342.07093 C 331.30431,342.07093 330.11806,346.30263 327.71808,349.18236 C 325.0963,352.32825 323.72088,352.95998 321.93524,352.55763 C 320.62695,352.26283 319.55648,348.98933 320.31372,347.61777 C 321.07098,346.2462 322.56371,346.09833 323.14977,346.85701 C 324.13927,348.13798 324.56457,347.83163 325.36073,346.80705 C 326.52327,345.31095 329.08265,341.5244 329.08265,341.5244 L 331.30431,342.07093 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path13492" />
<path
d="M 342.09377,341.93207 C 342.09356,343.18498 338.14081,344.20131 333.25879,344.20372 C 328.37677,344.20612 324.40884,343.1937 324.38988,341.9408 C 324.37092,340.6879 328.30809,339.66759 333.19003,339.66027 C 338.07197,339.65294 342.05537,340.66136 342.0935,341.91423"
transform="matrix(0.9862139,-0.1654759,0.1654759,0.9862139,-51.909075,58.055679)"
style="opacity:1;fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:2.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path13494" />
</g>
<g
transform="matrix(0.3052707,0.1143121,-0.1143121,0.3052707,251.10949,-70.586457)"
style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:2.19999981;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g13504">
<path
d="M 338.56863,336.29188 C 338.56863,336.29188 338.68263,330.99114 339.82201,329.3983 C 341.43776,327.13949 343.63585,327.04726 344.75719,327.36156 C 346.14067,327.74933 347.57728,329.00662 347.34228,332.68841 C 347.10727,336.37021 346.0889,338.17194 347.1856,339.58199 C 348.28231,340.99204 348.43898,341.93207 350.55406,341.61873 C 352.66913,341.30539 353.60916,340.60036 353.13915,338.64196 C 352.66913,336.68356 352.04244,338.79863 351.65076,337.15357 C 351.25908,335.50851 353.69664,328.40213 353.29582,323.99311 C 352.90414,319.68462 351.25908,316.23783 347.96896,315.37614 C 344.8768,314.56629 342.25042,314.59277 339.35199,316.70785 C 336.57202,318.73648 333.00677,325.40316 333.00677,325.40316 L 332.92843,339.66033 L 338.7253,339.34698 L 338.56863,336.29188 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path13506" />
<path
d="M 327.77011,340.12967 C 327.77011,340.12967 325.55283,335.3136 323.87301,334.30687 C 321.49084,332.87922 319.43813,333.67073 318.53498,334.40592 C 317.42069,335.31297 316.60425,337.03867 318.28723,340.32171 C 319.97022,343.60476 321.62233,344.8513 321.1785,346.58163 C 320.73468,348.31196 320.96566,349.23653 318.90095,349.79217 C 316.83625,350.3478 315.69311,350.07586 315.34361,348.09241 C 314.99412,346.10894 316.41189,347.79897 316.11544,346.13412 C 315.819,344.46926 310.75101,338.92327 309.36131,334.71984 C 308.0033,330.61225 308.13826,326.7954 310.8123,324.69376 C 313.32546,322.71857 315.74476,321.69606 319.24603,322.48064 C 322.6042,323.23316 328.53117,327.92642 328.53117,327.92642 L 334.28552,340.97098 L 328.8441,342.99406 L 327.77011,340.12967 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path13508" />
<path
d="M 326.66154,297.90718 C 326.66154,297.90718 321.02134,307.38585 322.27472,314.67111 C 323.5281,321.95637 331.04836,337.62359 331.04836,337.62359 L 331.1267,339.73866 L 335.18451,339.29998 L 334.26015,337.15357 C 334.26015,337.15357 336.28688,318.39837 335.0435,312.4777 C 334.11928,308.0768 326.73988,297.98552 326.66154,297.90718 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path13510" />
<path
d="M 335.6702,341.30539 C 335.6702,341.30539 338.48845,344.67762 341.85875,346.3189 C 345.54054,348.11188 347.05405,348.12357 348.51732,347.02392 C 349.58943,346.21823 349.22235,342.79377 347.96897,341.85373 C 346.71559,340.9137 345.29364,341.3914 345.07052,342.32375 C 344.69382,343.89794 344.18026,343.79309 343.03379,343.18545 C 341.3597,342.29816 337.47193,339.89534 337.47193,339.89534 L 335.6702,341.30539 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path13512" />
<path
d="M 331.30431,342.07093 C 331.30431,342.07093 330.11806,346.30263 327.71808,349.18236 C 325.0963,352.32825 323.72088,352.95998 321.93524,352.55763 C 320.62695,352.26283 319.55648,348.98933 320.31372,347.61777 C 321.07098,346.2462 322.56371,346.09833 323.14977,346.85701 C 324.13927,348.13798 324.56457,347.83163 325.36073,346.80705 C 326.52327,345.31095 329.08265,341.5244 329.08265,341.5244 L 331.30431,342.07093 z"
style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.19999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path13514" />
<path
d="M 342.09377,341.93207 C 342.09356,343.18498 338.14081,344.20131 333.25879,344.20372 C 328.37677,344.20612 324.40884,343.1937 324.38988,341.9408 C 324.37092,340.6879 328.30809,339.66759 333.19003,339.66027 C 338.07197,339.65294 342.05537,340.66136 342.0935,341.91423"
transform="matrix(0.9862139,-0.1654759,0.1654759,0.9862139,-51.909075,58.055679)"
style="opacity:1;fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:2.19999981;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path13516" />
</g>
<path
d="M 274.43122,81.169335 C 274.43122,81.169335 274.73538,82.446763 275.46533,81.777634 C 276.1953,81.108507 286.23221,77.154565 300.40557,77.154565 C 314.57892,77.154565 323.88588,81.047677 324.43335,81.290995 C 324.98082,81.534317 325.22414,81.838463 325.71078,81.290995 C 326.19742,80.743525 325.22414,79.89191 325.22414,79.89191 C 325.22414,79.89191 315.3697,75.694651 299.97976,75.75548 C 284.5898,75.816309 274.61371,80.19606 274.61371,80.19606 C 274.61371,80.19606 273.94458,80.682696 274.43122,81.169335 z"
style="fill:#cca715;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="path27095" />
<path
d="M 292.40382,87.064808 C 292.40382,87.064808 292.85594,85.807761 293.64563,85.565832 C 294.27525,85.372936 295.26952,85.99201 295.26952,85.99201 C 295.26952,85.99201 294.07181,85.881792 293.69706,86.09488 C 293.35852,86.287383 293.25619,86.859064 293.25619,86.859064 C 293.25619,86.859064 293.51336,86.403492 294.43185,86.447582 C 295.35033,86.491668 295.45322,86.491668 295.45322,86.491668 C 295.45322,86.491668 293.89546,86.609237 293.5354,87.05746 C 293.17536,87.505685 295.00499,87.711425 295.00499,87.711425 C 295.00499,87.711425 292.20542,87.726119 291.83803,87.557116 C 291.47064,87.388112 291.23552,86.814977 290.61094,86.991329 C 289.98635,87.167678 289.34708,87.726119 289.34708,87.726119 C 289.34708,87.726119 290.05984,86.528409 290.50806,86.521062 C 290.95629,86.513714 291.2208,86.491668 291.62494,86.675366 C 292.02908,86.859064 292.40382,87.064808 292.40382,87.064808 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path27097" />
<path
d="M 281.93545,89.332368 C 281.93545,89.332368 282.14733,88.013394 282.87867,87.629622 C 283.46176,87.323633 284.55336,87.748184 284.55336,87.748184 C 284.55336,87.748184 283.35592,87.861329 283.02705,88.140035 C 282.72994,88.391815 282.73508,88.972563 282.73508,88.972563 C 282.73508,88.972563 282.90358,88.477296 283.81438,88.350787 C 284.72519,88.224282 284.82629,88.205265 284.82629,88.205265 C 284.82629,88.205265 283.31712,88.60884 283.04616,89.115909 C 282.7752,89.622977 284.61133,89.486865 284.61133,89.486865 C 284.61133,89.486865 281.86276,90.018957 281.47045,89.920802 C 281.07814,89.822645 280.74108,89.302867 280.15989,89.591664 C 279.57869,89.880461 279.0537,90.547475 279.0537,90.547475 C 279.0537,90.547475 279.53271,89.238628 279.97184,89.148526 C 280.41098,89.058429 280.66686,88.987853 281.09799,89.093656 C 281.52913,89.199458 281.93545,89.332368 281.93545,89.332368 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path30014" />
<path
d="M 301.23277,86.600044 C 301.23277,86.600044 301.75696,85.371301 302.55933,85.17553 C 303.19908,85.019435 304.15581,85.695069 304.15581,85.695069 C 304.15581,85.695069 302.96649,85.515648 302.58004,85.706667 C 302.23092,85.879233 302.09563,86.444029 302.09563,86.444029 C 302.09563,86.444029 302.37876,86.004118 303.29317,86.101348 C 304.20755,86.198571 304.31026,86.204534 304.31026,86.204534 C 304.31026,86.204534 302.74829,86.231653 302.36289,86.658266 C 301.97748,87.084879 303.79212,87.396272 303.79212,87.396272 C 303.79212,87.396272 300.9964,87.24875 300.63942,87.058747 C 300.28243,86.868743 300.08089,86.282946 299.44716,86.422817 C 298.81341,86.562685 298.14286,87.083154 298.14286,87.083154 C 298.14286,87.083154 298.92381,85.928749 299.3717,85.94738 C 299.81959,85.966014 300.08495,85.959331 300.47777,86.166134 C 300.87059,86.372937 301.23277,86.600044 301.23277,86.600044 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path30016" />
<path
d="M 310.07237,87.599994 C 310.07237,87.599994 310.73635,86.44081 311.55609,86.340003 C 312.20967,86.259624 313.08103,87.042282 313.08103,87.042282 C 313.08103,87.042282 311.92077,86.725308 311.51466,86.86993 C 311.1478,87.00058 310.94753,87.545728 310.94753,87.545728 C 310.94753,87.545728 311.28007,87.141864 312.17686,87.345124 C 313.07367,87.548384 313.17497,87.566286 313.17497,87.566286 C 313.17497,87.566286 311.62052,87.410963 311.18797,87.789691 C 310.75541,88.168415 312.52131,88.689427 312.52131,88.689427 C 312.52131,88.689427 309.76191,88.216691 309.42953,87.986327 C 309.09716,87.755965 308.96535,87.150653 308.31963,87.215619 C 307.67388,87.280585 306.94719,87.719252 306.94719,87.719252 C 306.94719,87.719252 307.85751,86.663856 308.30017,86.734623 C 308.74282,86.805396 309.00714,86.82972 309.37316,87.080947 C 309.73915,87.332173 310.07237,87.599994 310.07237,87.599994 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path30018" />
<path
d="M 318.85007,89.16704 C 318.85007,89.16704 319.46855,88.284193 320.13465,88.263235 C 320.66574,88.246527 321.3086,88.939285 321.3086,88.939285 C 321.3086,88.939285 320.39948,88.599573 320.06254,88.686038 C 319.75817,88.764149 319.5573,89.187545 319.5573,89.187545 C 319.5573,89.187545 319.8541,88.887367 320.55986,89.116401 C 321.2656,89.345433 321.3457,89.36724 321.3457,89.36724 C 321.3457,89.36724 320.10797,89.128554 319.73262,89.401196 C 319.3573,89.673842 320.73817,90.221879 320.73817,90.221879 C 320.73817,90.221879 318.55542,89.639857 318.3052,89.430393 C 318.05498,89.22093 317.99342,88.724867 317.46977,88.729763 C 316.94612,88.734666 316.33001,89.033926 316.33001,89.033926 C 316.33001,89.033926 317.13884,88.252535 317.48937,88.341829 C 317.8399,88.431121 318.05051,88.470032 318.32622,88.698723 C 318.60191,88.927416 318.85007,89.16704 318.85007,89.16704 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path30020" />
<path
d="M 290.63881,81.076418 C 290.84972,82.123727 289.61775,83.254132 287.88776,83.600702 C 286.15777,83.94727 284.58544,83.378645 284.37664,82.33092 C 284.16575,81.283614 285.39771,80.153207 287.1277,79.806639 C 288.85768,79.46007 290.43002,80.028694 290.63881,81.076418 z"
style="fill:#0f6545;fill-opacity:1;stroke:#000000;stroke-width:0.43534634;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path30022" />
<path
d="M 286.72035,80.905308 C 286.77121,81.159141 286.50376,81.426749 286.12301,81.503026 C 285.74225,81.579302 285.39237,81.435363 285.34152,81.181528 C 285.29067,80.927692 285.55811,80.660085 285.93886,80.583809 C 286.31962,80.507532 286.6695,80.651471 286.72035,80.905308 z"
style="fill:#cecfc1;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path30993" />
<path
d="M 315.08763,82.343575 C 314.76863,83.363165 313.14477,83.761416 311.46142,83.232901 C 309.77807,82.704385 308.67327,81.449417 308.9943,80.430464 C 309.31331,79.410874 310.93717,79.012622 312.62051,79.541141 C 314.30386,80.069655 315.40866,81.324622 315.08763,82.343575 z"
style="fill:#0f6545;fill-opacity:1;stroke:#000000;stroke-width:0.43534634;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path32945" />
<path
d="M 311.73482,80.308306 C 311.65727,80.555298 311.29407,80.661225 310.92358,80.544904 C 310.55308,80.428583 310.31561,80.13406 310.39317,79.88707 C 310.47072,79.640079 310.83391,79.534149 311.2044,79.650471 C 311.57489,79.766792 311.81237,80.061315 311.73482,80.308306 z"
style="fill:#cecfc1;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path32947" />
<rect
width="6.3372135"
height="3.1947937"
x="296.62701"
y="78.714584"
style="fill:#1f2d86;fill-opacity:1;stroke:#000000;stroke-width:0.6193459;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect32949" />
<path
d="M 299.29806,79.395451 C 299.29806,79.540078 299.02842,79.657321 298.69578,79.657321 C 298.36313,79.657321 298.09347,79.540078 298.09347,79.395451 C 298.09347,79.250825 298.36313,79.133582 298.69578,79.133582 C 299.02842,79.133582 299.29806,79.250825 299.29806,79.395451 z"
style="fill:#707c8b;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path32951" />
<path
id="path33926"
style="fill:#9f1209;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 278.71523,81.909386 L 279.76271,84.999433 L 277.82488,86.046907 C 277.82488,86.046907 276.93453,86.67539 276.04417,86.20403 C 275.15383,85.732663 274.62861,84.320925 275.10144,83.742464 C 276.03954,82.594806 278.71523,81.857012 278.71523,81.909386 z" />
<path
id="path34899"
style="fill:#8f322f;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 277.09164,84.10908 C 277.09199,84.629995 276.69327,85.05248 276.2013,85.05248 C 275.70932,85.05248 275.31058,84.629995 275.31094,84.10908 C 275.31058,83.588165 275.70932,83.165679 276.2013,83.165679 C 276.69327,83.165679 277.09199,83.588165 277.09164,84.10908 z" />
<path
id="path33928"
style="fill:#e2a494;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 276.24923,83.739995 C 276.27659,83.906353 276.23773,84.07067 276.14729,84.170931 C 276.05684,84.27119 275.92861,84.292125 275.81098,84.225841 C 275.69334,84.159549 275.60423,84.016127 275.57727,83.849702 C 275.54991,83.683344 275.58876,83.519027 275.67921,83.418766 C 275.76965,83.318507 275.89788,83.297572 276.01552,83.363858 C 276.13315,83.430149 276.22226,83.573571 276.24923,83.739995 z" />
<path
id="path34906"
style="fill:#9f1209;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32597154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 321.17493,82.311607 L 320.13451,85.063696 L 322.60132,86.355838 C 322.60132,86.355838 323.69208,86.842487 324.38011,86.23837 C 324.96833,85.721882 325.10169,84.526702 324.63182,83.922586 C 324.1869,83.350541 321.14137,82.294826 321.17493,82.311607 z" />
<path
id="path34910"
style="fill:#aa675d;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 324.12839,84.518316 C 324.12839,84.856596 323.77527,85.130822 323.33968,85.130822 C 322.90409,85.130822 322.55098,84.856596 322.55098,84.518316 C 322.55098,84.180034 322.90409,83.905808 323.33968,83.905808 C 323.77527,83.905808 324.12839,84.180034 324.12839,84.518316 L 324.12839,84.518316 z" />
<path
id="path34908"
style="fill:#e2a494;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 323.37323,84.426016 C 323.37342,84.58804 323.30309,84.737852 323.18879,84.81893 C 323.07449,84.900005 322.93362,84.900005 322.81931,84.81893 C 322.70502,84.737852 322.63469,84.58804 322.63487,84.426016 C 322.63469,84.263993 322.70502,84.114182 322.81931,84.033104 C 322.93362,83.952028 323.07449,83.952028 323.18879,84.033104 C 323.30309,84.114182 323.37342,84.263993 323.37323,84.426016 z" />
<g
transform="matrix(0.3259716,0,0,0.3259716,177.52929,-39.537736)"
id="g34927">
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34917" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.2723912,0.4769997)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34919" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="matrix(1.2568807,0,0,1.2568807,-96.644174,-89.713181)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34921" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.0715441,9.0883177)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34923" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.7873223e-2,8.0589765)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34925" />
</g>
<g
transform="matrix(0.3175682,-7.3538389e-2,7.3538389e-2,0.3175682,141.0716,-7.1884386)"
id="g34936">
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34938" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.2723912,0.4769997)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34940" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="matrix(1.2568807,0,0,1.2568807,-96.644174,-89.713181)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34942" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.0715441,9.0883177)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34944" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.7873223e-2,8.0589765)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34946" />
</g>
<g
transform="matrix(0.3038704,-0.1179841,0.1179841,0.3038704,118.91443,17.673176)"
id="g34948">
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34950" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.2723912,0.4769997)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34952" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="matrix(1.2568807,0,0,1.2568807,-96.644174,-89.713181)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34954" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.0715441,9.0883177)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34956" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.7873223e-2,8.0589765)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34958" />
</g>
<g
transform="matrix(0.3411174,8.3559122e-2,-8.3559122e-2,0.3411174,213.6815,-76.132325)"
id="g34960">
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34962" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.2723912,0.4769997)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34964" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="matrix(1.2568807,0,0,1.2568807,-96.644174,-89.713181)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34966" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.0715441,9.0883177)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34968" />
<path
d="M 392.10368,363.60739 C 392.10439,364.32888 391.49159,364.91412 390.73541,364.91412 C 389.97923,364.91412 389.36643,364.32888 389.36714,363.60739 C 389.36643,362.8859 389.97923,362.30066 390.73541,362.30066 C 391.49159,362.30066 392.10439,362.8859 392.10368,363.60739 z"
transform="translate(8.7873223e-2,8.0589765)"
style="opacity:1;fill:#f5d8bc;fill-opacity:1;stroke:none;stroke-width:1.89999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34970" />
</g>
<path
d="M 322.48342,55.581939 C 322.48342,55.581939 321.20136,56.783881 319.6789,56.783881 C 318.15644,56.783881 317.27502,56.142844 316.79424,55.822329 C 316.31347,55.501812 316.95451,54.540257 316.95451,54.540257"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.74973458;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path40792" />
<path
d="M 295.55995,57.985822 C 295.55995,57.985822 293.23619,57.585178 292.27464,57.264658 C 291.31309,56.944141 291.55347,56.303104 290.43167,56.383236 C 289.30984,56.463362 288.18803,57.264658 288.42841,58.38647 C 288.66881,59.508282 289.47011,59.668541 290.27139,59.428152 C 291.0727,59.187763 290.83232,57.825565 289.79062,57.905691 C 288.74894,57.985822 289.63037,58.867246 289.63037,58.867246"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.68454021;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path42739" />
<path
d="M 279.53406,56.222975 C 279.53406,56.222975 280.17509,57.184529 281.85782,57.024269 C 283.54053,56.864011 284.18157,55.982587 284.26169,55.581939 C 284.34182,55.181294 284.26169,54.460127 283.94117,54.139608 C 283.62065,53.81909 282.49885,53.658833 282.49885,53.658833"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.65194309;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path43710" />
</svg>

After

Width:  |  Height:  |  Size: 94 KiB

View File

@ -0,0 +1,5 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600" viewBox="0 0 5 3">
<rect width="5" height="3" fill="#0065BD"/>
<path d="M 0,0 L 5,3 M 0,3 L 5,0" stroke="#fff" stroke-width=".6"/>
</svg>

After

Width:  |  Height:  |  Size: 226 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1416" height="1000">
<title>Flag of Alaska</title>
<defs><g id="star5" fill="#ffb612"><g id="cone"><polygon id="triangle" points="0,0 0,1 .5,1" transform="translate(0,-1) rotate(18)"/><use xlink:href="#triangle" transform="scale(-1,1)"/></g><use xlink:href="#cone" transform="rotate(72)"/><use xlink:href="#cone" transform="rotate(-72)"/><use xlink:href="#cone" transform="rotate(144)"/><use xlink:href="#cone" transform="rotate(-144)"/></g></defs>
<rect width="1416" height="1000" fill="#0F204B"/>
<use xlink:href="#star5" transform="translate(1158,182)scale(52)"/>
<use id="star" xlink:href="#star5" transform="translate(229,396)scale(31)"/><use xlink:href="#star" x="167" y="62"/><use xlink:href="#star" x="250" y="151"/><use xlink:href="#star" x="334" y="244"/><use xlink:href="#star" x="584" y="333"/><use xlink:href="#star" x="323" y="375"/><use xlink:href="#star" x="511" y="437"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg
xmlns="http://www.w3.org/2000/svg" width="600" height="400">
<rect width="600" height="400" fill="#fff"/>
<path d="M0,0 600,400M0,400 600,0" stroke="#b10021" stroke-width="68"/>
</svg>

After

Width:  |  Height:  |  Size: 230 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="600">
<rect width="900" height="600" fill="#002868"/>
<rect width="900" height="300" fill="#bf0a30"/>
<g fill="#fed700" transform="translate(450,300)">
<g id="r3">
<path id="r" d="M0,0H-550V135.562825z" transform="rotate(27.692308)"/>
<use xlink:href="#r" transform="rotate(27.692308)"/>
<use xlink:href="#r" transform="rotate(55.384615)"/>
</g>
<use xlink:href="#r3" transform="scale(-1,1)"/>
</g>
<path d="M450,150 547.475909,450 292.280666,264.589803H607.719334L352.524091,450z" fill="#ce5c17"/>
</svg>

After

Width:  |  Height:  |  Size: 648 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 365 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1800" height="1200">
<!-- Created per specification at http://www.50states.com/flag/coflag.htm by Robert Fleming -->
<rect width="1800" height="1200" fill="#002868"/>
<rect width="1800" height="400" y="400" fill="white"/>
<!-- 76 + 180*sqrt(55)/36 ~= 113.1 -->
<path d="M1130.81,750A400,400 0 1,1 1130.81,450L760,600Z" fill="#bf0a30"/>
<circle cx="760" cy="600" r="200" fill="gold"/>
</svg>

After

Width:  |  Height:  |  Size: 498 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 125 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 246 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 599 KiB

View File

@ -0,0 +1,512 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.0"
width="6912"
height="4320"
id="svg2"
xml:space="preserve"><defs
id="defs397" /><rect
width="6912"
height="4320"
x="0"
y="1.480374e-05"
id="rect2559"
style="fill:#ffffff" /><rect
width="6912"
height="1440"
x="0"
y="0"
id="rect3246"
style="fill:#b50027" /><rect
width="2880"
height="2880"
x="0"
y="0"
id="rect4024"
style="fill:#002577" /><polygon
points="1444.332,1320.138 1403.893,1438.995 1278.337,1437.193 1378.899,1512.454 1338.473,1631.312 1441.062,1558.965 1541.625,1634.22 1504.465,1514.251 1607.055,1441.907 1481.491,1440.102 1444.332,1320.138 "
transform="translate(0,-1120.464)"
id="polygon46"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="867.647,1458.604 887.069,1582.635 775.06,1639.381 899.072,1659.292 918.505,1783.318 975.725,1671.59 1099.735,1691.496 1011.088,1602.538 1068.309,1490.812 956.292,1547.558 867.647,1458.604 "
transform="translate(0,-1120.464)"
id="polygon48"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="419.827,1851.639 494.656,1952.437 421.846,2054.727 540.903,2014.734 615.74,2115.521 614.489,1990.005 733.542,1950.008 613.715,1912.432 612.465,1786.917 539.649,1889.213 419.827,1851.639 "
transform="translate(0,-1120.464)"
id="polygon50"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="209.038,2406.831 322.13,2461.311 305.192,2585.714 392.027,2494.982 505.122,2549.449 445.692,2438.894 532.521,2348.16 408.961,2370.567 349.533,2260.013 332.592,2384.424 209.038,2406.831 "
transform="translate(0,-1120.464)"
id="polygon52"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="277.713,2995.217 403.163,2990.905 445.971,3108.928 480.698,2988.241 606.145,2983.917 502.153,2913.643 536.874,2792.957 437.882,2870.211 333.892,2799.936 376.7,2917.966 277.713,2995.217 "
transform="translate(0,-1120.464)"
id="polygon54"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="613.079,3487.141 722.154,3425.031 814.898,3509.641 789.568,3386.644 898.634,3324.526 773.902,3310.623 748.567,3187.63 696.813,3302.032 572.082,3288.127 664.83,3372.745 613.079,3487.141 "
transform="translate(0,-1120.464)"
id="polygon56"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="1139.405,3764.116 1207.125,3658.438 1328.559,3690.261 1248.979,3593.125 1316.687,3487.443 1199.784,3533.091 1120.202,3435.961 1127.534,3561.305 1010.632,3606.951 1132.073,3638.778 1139.405,3764.116 "
transform="translate(0,-1120.464)"
id="polygon58"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="1731.522,3766.216 1742.38,3641.179 1864.688,3612.931 1749.09,3563.901 1759.935,3438.866 1677.636,3533.604 1562.039,3484.581 1626.773,3592.157 1544.473,3686.893 1666.79,3658.645 1731.522,3766.216 "
transform="translate(0,-1120.464)"
id="polygon60"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="2259.644,3493.405 2211.158,3377.647 2306.328,3295.803 2181.191,3306.104 2132.694,3190.354 2103.845,3312.48 1978.711,3322.787 2086.016,3387.959 2057.166,3510.083 2152.343,3428.236 2259.644,3493.405 "
transform="translate(0,-1120.464)"
id="polygon62"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="2598.811,3004.083 2502.091,2924.117 2548.329,2807.427 2442.314,2874.694 2345.589,2794.739 2376.792,2916.279 2270.783,2983.549 2396.077,2991.396 2427.279,3112.935 2473.521,2996.239 2598.811,3004.083 "
transform="translate(0,-1120.464)"
id="polygon64"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="2465.066,1859.841 2344.32,1894 2274.568,1789.662 2269.693,1915.111 2148.954,1949.28 2266.69,1992.65 2261.821,2118.096 2339.455,2019.454 2457.19,2062.825 2387.436,1958.48 2465.066,1859.841 "
transform="translate(0,-1120.464)"
id="polygon66"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="2020.601,1463.456 1929.56,1549.807 1819.317,1489.834 1873.292,1603.176 1782.262,1689.534 1906.662,1673.228 1960.64,1786.564 1983.546,1663.149 2107.945,1646.845 1997.697,1586.866 2020.601,1463.456 "
transform="translate(0,-1120.464)"
id="polygon68"
style="fill:#ffffff;fill-rule:evenodd" /><polygon
points="2671.637,2416.182 2548.841,2390.318 2535.56,2265.512 2472.947,2374.334 2350.151,2348.483 2434.255,2441.6 2371.648,2550.422 2486.234,2499.15 2570.335,2592.267 2557.056,2467.453 2671.637,2416.182 "
transform="translate(0,-1120.464)"
id="polygon72"
style="fill:#ffffff;fill-rule:evenodd" /><path
d="m 918.673,2090.018 -36.357,0 0,-4.044 c 1.024,-0.075 2.503,-0.189 4.438,-0.342 1.934,-0.151 3.3,-0.379 4.097,-0.684 1.252,-0.493 2.162,-1.157 2.731,-1.993 0.569,-0.873 0.854,-2.069 0.854,-3.589 l 0,-58.562 c 0,-1.328 -0.21,-2.43 -0.626,-3.304 -0.418,-0.912 -1.405,-1.669 -2.959,-2.279 -1.138,-0.456 -2.58,-0.872 -4.324,-1.253 -1.707,-0.417 -3.112,-0.664 -4.21,-0.741 l 0,-4.044 36.357,0 0,4.044 c -1.177,0.04 -2.58,0.191 -4.21,0.456 -1.632,0.228 -3.055,0.532 -4.267,0.912 -1.442,0.456 -2.409,1.196 -2.902,2.222 -0.495,1.025 -0.74,2.165 -0.74,3.418 l 0,58.504 c 0,1.253 0.265,2.375 0.797,3.361 0.569,0.95 1.517,1.709 2.845,2.278 0.797,0.305 2.086,0.646 3.869,1.025 1.821,0.342 3.357,0.532 4.609,0.57 l 0,4.045 -0.002,0 z"
id="path76"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1018.292,2013.227 c -1.063,0.04 -2.694,0.342 -4.893,0.912 -2.201,0.569 -3.775,1.159 -4.722,1.766 -1.366,0.951 -2.296,2.773 -2.788,5.469 -0.455,2.697 -0.683,6.115 -0.683,10.254 l 0,59.188 -4.95,0 -48.932,-66.138 0,41.7 c 0,4.671 0.285,8.26 0.854,10.767 0.606,2.506 1.516,4.292 2.731,5.354 0.871,0.837 2.672,1.615 5.405,2.336 2.731,0.723 4.532,1.102 5.405,1.139 l 0,4.044 -33.114,0 0,-4.044 c 1.024,-0.075 2.749,-0.436 5.178,-1.083 2.427,-0.684 3.944,-1.291 4.552,-1.823 1.326,-1.063 2.237,-2.675 2.731,-4.842 0.493,-2.202 0.738,-5.942 0.74,-11.222 l 0,-39.82 c 0,-1.746 -0.304,-3.493 -0.91,-5.241 -0.608,-1.747 -1.423,-3.094 -2.447,-4.044 -1.365,-1.254 -3.225,-2.316 -5.576,-3.19 -2.315,-0.911 -4.193,-1.404 -5.633,-1.481 l 0,-4.044 23.044,0 45.404,61.638 0,-38.453 c 0,-4.708 -0.304,-8.315 -0.91,-10.824 -0.608,-2.544 -1.479,-4.233 -2.617,-5.07 -1.063,-0.721 -2.807,-1.422 -5.234,-2.108 -2.39,-0.684 -4.21,-1.063 -5.462,-1.14 l 0,-4.044 32.83,0 0,4.044 0,0 z"
id="path78"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1137.369,2057.718 c -0.911,0.114 -2.144,0.305 -3.698,0.569 -1.518,0.229 -2.751,0.57 -3.698,1.025 -1.138,0.57 -1.954,1.387 -2.447,2.45 -0.455,1.025 -0.683,2.241 -0.683,3.646 l 0,6.267 c 0,4.557 0.018,7.633 0.057,9.228 0.075,1.595 0.151,2.906 0.228,3.931 -5.046,2.278 -10.071,4.026 -15.078,5.241 -5.007,1.214 -9.92,1.821 -14.737,1.823 -5.16,0 -10.128,-0.968 -14.907,-2.905 -4.78,-1.937 -8.953,-4.689 -12.518,-8.26 -3.604,-3.607 -6.469,-7.993 -8.592,-13.159 -2.125,-5.165 -3.186,-10.936 -3.186,-17.318 0,-6.153 1.004,-11.849 3.015,-17.09 2.048,-5.278 4.93,-9.854 8.648,-13.729 3.602,-3.797 7.889,-6.74 12.859,-8.83 5.007,-2.125 10.355,-3.188 16.045,-3.19 4.552,0 8.515,0.552 11.891,1.652 3.375,1.102 6.353,2.432 8.933,3.988 l 2.333,-3.874 4.552,0 0.512,28.255 -4.666,0 c -0.797,-3.113 -1.783,-6.17 -2.958,-9.172 -1.177,-3.036 -2.694,-5.751 -4.552,-8.146 -1.86,-2.393 -4.136,-4.29 -6.828,-5.697 -2.656,-1.442 -5.843,-2.163 -9.559,-2.165 -4.059,0 -7.681,0.837 -10.867,2.506 -3.186,1.634 -5.957,4.083 -8.307,7.349 -2.315,3.153 -4.097,7.083 -5.349,11.792 -1.252,4.71 -1.878,9.969 -1.878,15.78 0,5.127 0.606,9.969 1.821,14.526 1.252,4.52 3.053,8.431 5.405,11.735 2.35,3.381 5.29,6.039 8.819,7.975 3.528,1.938 7.528,2.906 12.006,2.906 3.337,0 6.371,-0.513 9.104,-1.538 2.768,-1.026 4.721,-2.108 5.86,-3.247 0.302,-1.974 0.453,-3.968 0.455,-5.981 0.037,-2.012 0.055,-3.72 0.057,-5.127 l 0,-4.443 c 0,-1.595 -0.228,-3 -0.683,-4.216 -0.418,-1.253 -1.309,-2.165 -2.674,-2.734 -1.252,-0.57 -2.959,-0.986 -5.121,-1.254 -2.125,-0.302 -3.794,-0.493 -5.007,-0.569 l 0,-4.158 35.391,0 0,4.158 0,0 z"
id="path80"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1216.758,2018.753 c 3.565,3.723 6.353,8.223 8.364,13.501 2.009,5.241 3.014,11.051 3.016,17.432 0,6.419 -1.024,12.248 -3.073,17.489 -2.049,5.241 -4.893,9.704 -8.535,13.387 -3.528,3.646 -7.624,6.457 -12.29,8.431 -4.666,1.975 -9.636,2.96 -14.907,2.962 -5.615,0 -10.81,-1.044 -15.59,-3.133 -4.742,-2.125 -8.819,-5.068 -12.233,-8.83 -3.414,-3.683 -6.108,-8.145 -8.08,-13.387 -1.934,-5.278 -2.902,-10.918 -2.902,-16.919 0,-6.569 1.024,-12.417 3.073,-17.546 2.048,-5.164 4.874,-9.625 8.478,-13.387 3.565,-3.721 7.699,-6.569 12.404,-8.545 4.74,-1.975 9.69,-2.96 14.85,-2.962 5.348,0 10.393,1.008 15.135,3.019 4.741,2.014 8.837,4.842 12.29,8.488 z m -8.477,57.308 c 2.123,-3.456 3.659,-7.367 4.609,-11.735 0.985,-4.367 1.477,-9.247 1.479,-14.641 0,-5.544 -0.551,-10.633 -1.65,-15.267 -1.063,-4.632 -2.637,-8.583 -4.723,-11.849 -2.087,-3.228 -4.705,-5.733 -7.852,-7.52 -3.149,-1.823 -6.753,-2.734 -10.811,-2.734 -4.552,0 -8.421,1.045 -11.607,3.133 -3.186,2.09 -5.786,4.881 -7.795,8.374 -1.897,3.343 -3.32,7.254 -4.267,11.735 -0.91,4.482 -1.366,9.191 -1.366,14.128 0,5.469 0.492,10.407 1.479,14.812 0.985,4.406 2.541,8.317 4.666,11.735 2.048,3.343 4.626,5.963 7.738,7.861 3.11,1.862 6.826,2.792 11.152,2.792 4.057,0 7.719,-0.949 10.981,-2.849 3.262,-1.897 5.916,-4.555 7.967,-7.975 z"
id="path82"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1317.578,2050.085 c 0,6.875 -1.291,12.836 -3.869,17.887 -2.58,5.052 -5.937,9.191 -10.071,12.419 -4.173,3.229 -8.858,5.64 -14.054,7.234 -5.197,1.595 -10.565,2.393 -16.102,2.393 l -33.456,0 0,-4.044 c 1.099,0 2.521,-0.094 4.267,-0.285 1.781,-0.228 2.957,-0.474 3.528,-0.741 1.138,-0.493 1.952,-1.214 2.447,-2.164 0.53,-0.986 0.795,-2.163 0.796,-3.532 l 0,-58.333 c 0,-1.291 -0.228,-2.448 -0.683,-3.475 -0.418,-1.025 -1.271,-1.841 -2.56,-2.449 -1.177,-0.57 -2.447,-0.986 -3.812,-1.253 -1.365,-0.266 -2.542,-0.437 -3.528,-0.514 l 0,-4.044 35.277,0 c 4.854,0 9.633,0.76 14.338,2.278 4.703,1.481 8.799,3.495 12.29,6.039 4.74,3.38 8.458,7.804 11.152,13.273 2.691,5.468 4.038,11.905 4.04,19.311 z m -13.941,-0.057 c 0,-5.43 -0.722,-10.329 -2.162,-14.697 -1.442,-4.404 -3.547,-8.24 -6.316,-11.507 -2.617,-3.114 -5.843,-5.563 -9.672,-7.349 -3.794,-1.784 -8.022,-2.675 -12.688,-2.677 -1.556,0 -3.319,0.039 -5.291,0.114 -1.934,0.039 -3.376,0.077 -4.324,0.114 l 0,62.15 c 0,3.457 1.005,5.85 3.016,7.178 2.009,1.33 5.101,1.994 9.274,1.994 4.817,0 9.027,-0.854 12.631,-2.563 3.603,-1.709 6.524,-4.082 8.762,-7.121 2.351,-3.19 4.058,-6.873 5.121,-11.052 1.098,-4.216 1.648,-9.076 1.649,-14.584 z"
id="path84"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1471.759,2013.227 c -0.949,0.04 -2.048,0.268 -3.3,0.684 -1.252,0.381 -2.409,0.894 -3.471,1.538 -1.328,0.836 -2.409,1.805 -3.243,2.905 -0.797,1.064 -1.499,2.563 -2.105,4.5 -2.694,8.772 -5.823,19.026 -9.388,30.762 -3.567,11.698 -7.416,24.173 -11.551,37.427 l -5.234,0 -20.369,-62.207 -21.223,62.207 -5.007,0 c -3.755,-13.291 -7.644,-27.077 -11.664,-41.357 -4.022,-14.316 -6.714,-23.906 -8.08,-28.768 -0.341,-1.177 -0.854,-2.22 -1.536,-3.133 -0.646,-0.911 -1.536,-1.746 -2.674,-2.506 -0.949,-0.645 -2.068,-1.12 -3.357,-1.424 -1.252,-0.342 -2.39,-0.55 -3.414,-0.627 l 0,-4.044 32.944,0 0,4.044 c -2.884,0.154 -5.348,0.438 -7.396,0.855 -2.011,0.418 -3.016,1.122 -3.016,2.108 0,0.381 0.057,0.894 0.171,1.538 0.114,0.609 0.208,1.102 0.284,1.481 0.871,3.343 2.408,8.869 4.609,16.577 2.237,7.672 5.537,19.18 9.9,34.522 l 20.141,-59.986 5.576,0 20.312,61.296 c 2.731,-9.417 5.082,-17.64 7.056,-24.667 1.972,-7.063 3.602,-13.103 4.893,-18.115 0.91,-3.532 1.479,-5.942 1.707,-7.235 0.228,-1.328 0.342,-2.448 0.342,-3.361 0,-1.291 -0.893,-2.373 -2.674,-3.247 -1.746,-0.873 -4.591,-1.461 -8.535,-1.767 l 0,-4.044 29.302,0 0,4.044 0,0 z"
id="path86"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1550.155,2066.206 -1.536,23.812 -67.025,0 0,-4.044 c 1.138,-0.075 2.655,-0.226 4.552,-0.456 1.896,-0.266 3.127,-0.531 3.698,-0.798 1.213,-0.569 2.047,-1.311 2.504,-2.222 0.492,-0.911 0.738,-2.068 0.74,-3.475 l 0,-58.106 c 0,-1.253 -0.21,-2.354 -0.626,-3.304 -0.418,-0.986 -1.291,-1.783 -2.617,-2.393 -1.024,-0.493 -2.409,-0.929 -4.153,-1.31 -1.707,-0.379 -3.072,-0.607 -4.097,-0.684 l 0,-4.044 62.474,0 0,19.482 -4.267,0 c -0.76,-2.886 -2.409,-5.942 -4.95,-9.172 -2.504,-3.265 -4.893,-5.05 -7.169,-5.354 -1.177,-0.151 -2.58,-0.266 -4.211,-0.342 -1.632,-0.075 -3.49,-0.112 -5.576,-0.114 l -12.688,0 0,32.129 9.104,0 c 2.919,0 5.044,-0.265 6.373,-0.797 1.365,-0.57 2.561,-1.5 3.584,-2.792 0.834,-1.1 1.534,-2.562 2.105,-4.386 0.606,-1.86 1.005,-3.607 1.195,-5.241 l 4.268,0 0,31.616 -4.268,0 c -0.153,-1.823 -0.569,-3.74 -1.251,-5.754 -0.646,-2.05 -1.328,-3.531 -2.048,-4.443 -1.177,-1.481 -2.523,-2.449 -4.04,-2.905 -1.48,-0.456 -3.453,-0.684 -5.917,-0.684 l -9.104,0 0,24.268 c 0,2.432 0.171,4.35 0.512,5.754 0.342,1.406 1.005,2.469 1.991,3.19 0.985,0.723 2.331,1.196 4.04,1.424 1.707,0.19 4.134,0.285 7.283,0.285 1.252,0 2.902,0 4.95,0 2.048,0 3.773,-0.075 5.177,-0.228 1.44,-0.151 2.919,-0.417 4.438,-0.798 1.554,-0.417 2.655,-0.966 3.3,-1.652 1.744,-1.823 3.565,-4.575 5.462,-8.26 1.935,-3.721 3.167,-6.455 3.698,-8.203 l 4.095,0 0,0 z"
id="path88"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1668.908,2031.115 -3.926,0 c -0.341,-1.367 -0.967,-2.98 -1.877,-4.842 -0.873,-1.898 -1.86,-3.684 -2.959,-5.355 -1.138,-1.747 -2.389,-3.265 -3.755,-4.557 -1.329,-1.328 -2.618,-2.088 -3.869,-2.279 -1.177,-0.151 -2.657,-0.265 -4.438,-0.341 -1.783,-0.075 -3.434,-0.112 -4.95,-0.114 l -3.3,0 0,64.656 c 0,1.254 0.265,2.413 0.797,3.476 0.53,1.025 1.46,1.822 2.788,2.393 0.683,0.267 2.105,0.626 4.268,1.082 2.199,0.456 3.906,0.703 5.121,0.741 l 0,4.044 -38.122,0 0,-4.044 c 1.062,-0.075 2.673,-0.226 4.836,-0.456 2.2,-0.228 3.717,-0.513 4.552,-0.854 1.252,-0.493 2.162,-1.195 2.731,-2.108 0.606,-0.948 0.909,-2.202 0.91,-3.76 l 0,-65.169 -3.3,0 c -1.177,0 -2.637,0.039 -4.381,0.114 -1.746,0.039 -3.414,0.152 -5.007,0.341 -1.252,0.153 -2.561,0.912 -3.926,2.279 -1.328,1.33 -2.56,2.848 -3.698,4.557 -1.138,1.709 -2.144,3.532 -3.015,5.469 -0.873,1.899 -1.479,3.475 -1.821,4.728 l -3.983,0 0,-21.932 70.325,0 0,21.931 0,0 z"
id="path90"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1760.675,2090.018 -21.735,0 c -4.818,-7.557 -9.18,-14.088 -13.086,-19.596 -3.869,-5.506 -8.08,-11.183 -12.631,-17.033 l -8.25,0 0,25.635 c 0,1.329 0.208,2.506 0.626,3.531 0.416,0.988 1.307,1.749 2.674,2.279 0.683,0.267 1.878,0.513 3.585,0.74 1.707,0.228 3.147,0.361 4.324,0.399 l 0,4.044 -34.139,0 0,-4.044 c 0.91,-0.075 2.219,-0.208 3.926,-0.399 1.744,-0.188 2.957,-0.436 3.642,-0.74 1.138,-0.493 1.952,-1.214 2.446,-2.165 0.53,-0.949 0.795,-2.163 0.797,-3.646 l 0,-58.448 c 0,-1.328 -0.19,-2.505 -0.569,-3.532 -0.381,-1.025 -1.271,-1.804 -2.674,-2.336 -0.95,-0.342 -2.182,-0.645 -3.698,-0.911 -1.519,-0.303 -2.808,-0.493 -3.869,-0.57 l 0,-4.044 37.268,0 c 3.414,0 6.618,0.361 9.616,1.082 2.996,0.684 5.707,1.806 8.136,3.361 2.351,1.521 4.228,3.514 5.633,5.981 1.403,2.432 2.104,5.374 2.105,8.83 0,3.116 -0.475,5.868 -1.422,8.26 -0.949,2.393 -2.352,4.463 -4.21,6.209 -1.707,1.635 -3.755,3.059 -6.145,4.272 -2.389,1.179 -5.026,2.185 -7.908,3.02 3.982,5.28 7.282,9.724 9.9,13.33 2.655,3.608 5.897,7.995 9.729,13.159 1.668,2.278 3.167,3.97 4.495,5.07 1.366,1.064 2.712,1.937 4.04,2.62 0.985,0.495 2.217,0.874 3.698,1.14 1.479,0.267 2.711,0.418 3.698,0.456 l 0,4.046 0,0 z m -29.928,-60.271 c 0,-4.899 -1.404,-8.772 -4.21,-11.621 -2.808,-2.886 -6.771,-4.327 -11.892,-4.329 l -9.672,0 0,34.692 7.454,0 c 5.235,0 9.596,-1.67 13.086,-5.013 3.487,-3.378 5.232,-7.955 5.234,-13.729 z"
id="path92"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1845.111,2013.227 c -1.063,0.04 -2.617,0.268 -4.666,0.684 -2.048,0.418 -3.718,1.045 -5.007,1.88 -1.291,0.875 -2.182,2.677 -2.674,5.412 -0.494,2.734 -0.74,6.078 -0.74,10.026 l 0,35.148 c 0,4.482 -0.93,8.374 -2.788,11.678 -1.86,3.304 -4.306,6.021 -7.34,8.146 -2.998,2.05 -6.164,3.514 -9.502,4.386 -3.3,0.911 -6.469,1.367 -9.502,1.367 -4.856,0 -9.18,-0.646 -12.973,-1.937 -3.794,-1.253 -6.981,-2.962 -9.559,-5.127 -2.542,-2.165 -4.458,-4.632 -5.747,-7.406 -1.291,-2.809 -1.935,-5.734 -1.935,-8.773 l 0,-47.794 c 0,-1.328 -0.227,-2.43 -0.683,-3.304 -0.418,-0.911 -1.291,-1.746 -2.617,-2.506 -0.949,-0.531 -2.162,-0.949 -3.642,-1.253 -1.479,-0.342 -2.694,-0.55 -3.642,-0.627 l 0,-4.044 33.627,0 0,4.044 c -1.063,0.04 -2.409,0.211 -4.04,0.514 -1.593,0.304 -2.77,0.589 -3.528,0.854 -1.291,0.456 -2.162,1.216 -2.617,2.279 -0.418,1.064 -0.626,2.222 -0.626,3.475 l 0,44.662 c 0,2.165 0.228,4.443 0.683,6.836 0.493,2.355 1.44,4.557 2.845,6.607 1.479,2.09 3.489,3.799 6.031,5.127 2.541,1.33 6.029,1.994 10.469,1.994 4.171,0 7.662,-0.664 10.469,-1.994 2.845,-1.328 5.082,-3.074 6.714,-5.24 1.554,-2.051 2.655,-4.196 3.3,-6.438 0.644,-2.239 0.966,-4.499 0.967,-6.779 l 0,-33.155 c 0,-4.215 -0.304,-7.651 -0.91,-10.311 -0.608,-2.695 -1.499,-4.461 -2.674,-5.298 -1.328,-0.949 -3.149,-1.689 -5.462,-2.222 -2.276,-0.531 -4.022,-0.835 -5.235,-0.912 l 0,-4.044 33.001,0 0,4.045 0,0 z"
id="path94"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1904.99,2052.933 c 1.707,1.899 2.959,3.988 3.755,6.267 0.834,2.241 1.25,4.861 1.252,7.861 0,7.14 -2.637,13.027 -7.909,17.659 -5.273,4.634 -11.817,6.948 -19.629,6.95 -3.604,0 -7.208,-0.552 -10.811,-1.652 -3.604,-1.14 -6.714,-2.507 -9.331,-4.102 l -2.447,4.159 -4.552,0 -0.797,-27.686 4.609,0 c 0.948,3.418 2.046,6.514 3.3,9.286 1.289,2.734 2.976,5.298 5.064,7.69 1.972,2.241 4.265,4.026 6.885,5.354 2.655,1.33 5.727,1.994 9.218,1.994 2.617,0 4.893,-0.342 6.827,-1.025 1.972,-0.684 3.565,-1.652 4.78,-2.905 1.212,-1.253 2.104,-2.715 2.674,-4.387 0.606,-1.709 0.908,-3.664 0.91,-5.868 0,-3.227 -0.91,-6.227 -2.731,-9 -1.821,-2.809 -4.534,-4.937 -8.136,-6.38 -2.466,-0.986 -5.292,-2.069 -8.478,-3.247 -3.186,-1.215 -5.937,-2.354 -8.25,-3.418 -4.552,-2.05 -8.099,-4.728 -10.64,-8.032 -2.503,-3.341 -3.755,-7.689 -3.755,-13.045 0,-3.076 0.626,-5.942 1.878,-8.602 1.252,-2.658 3.033,-5.031 5.348,-7.121 2.199,-1.974 4.797,-3.512 7.795,-4.614 2.996,-1.139 6.125,-1.709 9.388,-1.709 3.716,0 7.036,0.57 9.957,1.709 2.959,1.14 5.651,2.469 8.079,3.988 l 2.333,-3.874 4.552,0 0.455,26.831 -4.609,0 c -0.836,-3.076 -1.783,-6.019 -2.845,-8.83 -1.024,-2.809 -2.372,-5.353 -4.04,-7.633 -1.632,-2.202 -3.624,-3.949 -5.974,-5.241 -2.353,-1.328 -5.235,-1.992 -8.648,-1.994 -3.604,0 -6.677,1.159 -9.218,3.475 -2.542,2.318 -3.812,5.146 -3.812,8.488 0,3.495 0.814,6.4 2.447,8.716 1.631,2.279 4.001,4.159 7.112,5.64 2.769,1.33 5.48,2.489 8.137,3.475 2.692,0.951 5.29,1.976 7.795,3.077 2.276,0.987 4.456,2.107 6.543,3.36 2.123,1.253 3.964,2.716 5.519,4.386 z"
id="path96"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1992.376,2031.115 -3.926,0 c -0.341,-1.367 -0.967,-2.98 -1.877,-4.842 -0.873,-1.898 -1.86,-3.684 -2.959,-5.355 -1.138,-1.747 -2.39,-3.265 -3.755,-4.557 -1.328,-1.328 -2.617,-2.088 -3.869,-2.279 -1.177,-0.151 -2.656,-0.265 -4.438,-0.341 -1.783,-0.075 -3.433,-0.112 -4.95,-0.114 l -3.3,0 0,64.656 c 0,1.254 0.265,2.413 0.796,3.476 0.53,1.025 1.46,1.822 2.788,2.393 0.683,0.267 2.105,0.626 4.267,1.082 2.199,0.456 3.906,0.703 5.121,0.741 l 0,4.044 -38.122,0 0,-4.044 c 1.062,-0.075 2.672,-0.226 4.836,-0.456 2.199,-0.228 3.716,-0.513 4.552,-0.854 1.251,-0.493 2.162,-1.195 2.731,-2.108 0.606,-0.948 0.909,-2.202 0.911,-3.76 l 0,-65.169 -3.3,0 c -1.177,0 -2.637,0.039 -4.381,0.114 -1.746,0.039 -3.414,0.152 -5.007,0.341 -1.251,0.153 -2.56,0.912 -3.926,2.279 -1.328,1.33 -2.56,2.848 -3.698,4.557 -1.138,1.709 -2.145,3.532 -3.016,5.469 -0.873,1.899 -1.479,3.475 -1.821,4.728 l -3.983,0 0,-21.932 70.326,0 0,21.931 z"
id="path98"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1442.886,1066.189 c 0.164,-0.066 0.257,-0.094 0.263,-0.092 0.064,-0.025 10.041,3.569 10.126,19.197 8.829,-1.654 12.393,3.009 10.691,13.987 0,0 -10.482,-2.834 -12.193,3.143 -2.57,6.91 -0.61,12.539 5.879,16.888 0,0 10.9,8.638 17.759,-7.735 6.859,-16.373 9.328,-21.942 9.328,-21.942 1.908,-6.032 13.265,-20.168 23.578,-22.149 3.929,-1.575 7.69,-1.264 11.886,-0.261 0,0 9.024,1.953 9.28,9.494 0.257,7.54 -2.822,10.822 -7.911,13.01 -5.626,2.419 -12.573,-2.773 -12.573,-2.773 -2.422,-0.453 -3.195,0.385 -4.683,1.417 -0.685,0.475 -3.541,3.61 -5.196,7.139 0,0 -5.009,10.588 -7.398,18.675 -1.882,6.368 -6.03,25.629 -25.531,28.52 l -46.022,0 c -19.501,-2.891 -23.649,-22.152 -25.531,-28.52 -2.39,-8.087 -7.398,-18.675 -7.398,-18.675 -1.655,-3.529 -4.511,-6.664 -5.196,-7.139 -1.487,-1.031 -2.261,-1.869 -4.683,-1.417 0,0 -6.948,5.192 -12.574,2.773 -5.089,-2.188 -8.168,-5.469 -7.911,-13.01 0.257,-7.541 9.281,-9.494 9.281,-9.494 4.196,-1.002 7.957,-1.314 11.886,0.261 10.313,1.981 21.67,16.117 23.577,22.149 0,0 2.469,5.569 9.328,21.942 6.858,16.373 17.759,7.735 17.759,7.735 6.489,-4.349 8.448,-9.979 5.879,-16.888 -1.71,-5.978 -12.193,-3.143 -12.193,-3.143 -1.701,-10.978 1.862,-15.64 10.691,-13.987 0.085,-15.628 10.062,-19.222 10.127,-19.197 0.01,0 0.099,0.026 0.263,0.092 l -0.588,0 z"
id="path106"
style="fill:#fab700;stroke:#002577;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><polygon
points="1401.897,2277.747 1487.526,2277.747 1500.156,2712.424 1388.749,2712.424 1388.749,2712.424 "
transform="translate(0,-1120.464)"
id="polygon108"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><polygon
points="1381.37,2756.748 1499.679,2756.711 1499.679,2954.14 1381.375,2954.14 1381.375,2954.14 "
transform="translate(0,-1120.464)"
id="polygon110"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><path
d="m 1379.438,1613.774 119.926,0 c 8.354,0 15.125,5.091 15.125,11.372 0,6.281 -6.772,11.372 -15.125,11.372 l -119.926,0 c -8.354,0 -15.125,-5.091 -15.125,-11.372 0,-6.281 6.771,-11.372 15.125,-11.372 l 0,0 z"
id="path114"
style="fill:#fab700;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><path
d="m 1388.33,1592.438 104.688,0 c 7.438,0 13.468,4.776 13.468,10.668 l 0,0 c 0,5.892 -6.03,10.668 -13.468,10.668 l -104.688,0 c -7.438,0 -13.468,-4.776 -13.468,-10.668 l 0,0 c 0,-5.892 6.03,-10.668 13.468,-10.668 z"
id="path118"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><rect
width="63.203999"
height="130.138"
x="1408.073"
y="1673.2579"
id="rect120"
style="fill:none;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><path
d="m 1406.756,1142.121 72.604,0 c 5.967,0 10.804,3.515 10.804,7.852 0,4.336 -4.837,7.851 -10.804,7.851 l -72.604,0 c -5.967,0 -10.804,-3.515 -10.804,-7.851 10e-4,-4.336 4.838,-7.852 10.804,-7.852 l 0,0 z"
id="path124"
style="fill:#fab700;stroke:#002577;stroke-width:4.89989996;stroke-miterlimit:3.86369991" /><rect
width="1205.739"
height="40.657001"
x="847.716"
y="1857.296"
id="rect128"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:10;stroke-miterlimit:3.86369991" /><rect
width="1309.455"
height="43.049"
x="796.27502"
y="1897.608"
id="rect132"
style="fill:#fab700;stroke:#002577;stroke-width:6.00010014;stroke-miterlimit:3.86369991" /><rect
width="1125.787"
height="24.908001"
x="883.36902"
y="974.46106"
id="rect136"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:9.55039978;stroke-miterlimit:3.86369991" /><path
d="m 1797.101,973.69801 c -58.327,-139.731 -193.696,-237.364 -351.38,-237.364 -157.589,0 -292.886,97.769 -351.272,237.364 l -139.936,0 c 64.724,-214.771 260.381,-372.222 491.209,-372.222 230.985,0 426.756,157.157 491.414,372.153 l -140.035,0.069 z"
id="path138"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:4.89989996;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><path
d="m 913.621,999.68201 c 0,0 19.459,11.63999 35.665,46.29699 l 1001.527,-0.04 c 0,0 16.471,-38.751 39.159,-46.33199 l -1076.351,0.075 z"
id="path140"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:6.00010014;stroke-miterlimit:3.86369991" /><path
d="m 1162.093,1054.981 c 0,0 92.78,159.232 281.446,157.039 186.37,-2.166 281.447,-151.624 281.447,-151.624 l 49.699,73.646 c 0,0 18.367,24.909 -17.286,56.317 -125.957,110.957 -225.731,132.764 -313.859,132.129 -130.155,-7.123 -235.137,-51.168 -314.939,-132.129 -14.354,-11.935 -17.287,-27.617 -12.965,-40.614 l 46.457,-94.764 z"
id="path144"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:4.89989996;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><path
d="m 1113.745,1166.262 c 0,0 -5.672,-32.219 45.107,-6.226 l 3.781,-104.514"
id="path146"
style="fill:none;stroke:#002577;stroke-width:6.36689997;stroke-miterlimit:3.86369991" /><path
d="m 1778.196,1144.331 c -16.206,-34.927 -45.918,7.851 -45.918,7.851 l -7.481,-91.244"
id="path148"
style="fill:none;stroke:#002577;stroke-width:6.36689997;stroke-miterlimit:3.86369991" /><path
d="m 943.869,1047.856 1006.944,0 c 3.58,0 6.482,3.027 6.482,6.761 l 0,2.252 c 0,3.734 -2.902,6.761 -6.482,6.761 l -1006.944,0 c -3.58,0 -6.482,-3.027 -6.482,-6.761 l 0,-2.252 c -10e-4,-3.734 2.902,-6.761 6.482,-6.761 l 0,0 z"
id="path152"
style="fill:#fab700;stroke:#002577;stroke-width:5;stroke-miterlimit:3.86369991" /><path
d="m 1032.874,1064.939 c 0.164,-0.066 0.257,-0.094 0.263,-0.092 0.065,-0.025 10.041,3.569 10.126,19.197 8.829,-1.654 12.393,3.009 10.692,13.987 0,0 -10.482,-2.834 -12.193,3.143 -2.57,6.91 -0.61,12.539 5.879,16.888 0,0 10.9,8.638 17.759,-7.735 6.859,-16.373 9.328,-21.942 9.328,-21.942 1.907,-6.032 13.264,-20.168 23.578,-22.149 3.929,-1.575 7.69,-1.264 11.886,-0.261 0,0 9.024,1.953 9.28,9.494 0.256,7.541 -2.823,10.822 -7.911,13.01 -5.626,2.419 -12.573,-2.773 -12.573,-2.773 -2.422,-0.453 -3.196,0.385 -4.683,1.417 -0.685,0.475 -3.541,3.61 -5.196,7.139 0,0 -5.009,10.588 -7.398,18.675 -1.882,6.368 -6.03,25.629 -25.531,28.52 l -46.022,0 c -19.501,-2.891 -23.649,-22.152 -25.531,-28.52 -2.389,-8.087 -7.398,-18.675 -7.398,-18.675 -1.655,-3.529 -4.511,-6.664 -5.196,-7.139 -1.487,-1.031 -2.261,-1.869 -4.683,-1.417 0,0 -6.948,5.192 -12.573,2.773 -5.089,-2.188 -8.168,-5.469 -7.912,-13.01 0.257,-7.54 9.281,-9.494 9.281,-9.494 4.196,-1.002 7.957,-1.314 11.886,0.261 10.313,1.981 21.67,16.117 23.577,22.149 0,0 2.469,5.569 9.328,21.942 6.859,16.373 17.759,7.735 17.759,7.735 6.489,-4.349 8.448,-9.979 5.879,-16.888 -1.711,-5.978 -12.193,-3.143 -12.193,-3.143 -1.701,-10.978 1.863,-15.64 10.691,-13.987 0.086,-15.628 10.062,-19.222 10.127,-19.197 0.01,0 0.099,0.026 0.263,0.092 l -0.589,0 z"
id="path162"
style="fill:#fab700;stroke:#002577;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><polygon
points="992.28,2277.747 1074.575,2277.747 1088.871,2712.424 977.464,2712.424 977.464,2712.424 "
transform="translate(0,-1120.464)"
id="polygon164"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><polygon
points="974.015,2756.748 1092.32,2756.711 1092.32,2954.14 974.016,2954.14 974.016,2954.14 "
transform="translate(0,-1120.464)"
id="polygon166"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><path
d="m 973.205,1613.774 119.926,0 c 8.354,0 15.125,5.091 15.125,11.372 l 0,0 c 0,6.281 -6.772,11.372 -15.125,11.372 l -119.926,0 c -8.353,0 -15.125,-5.091 -15.125,-11.372 l 0,0 c -0.001,-6.281 6.771,-11.372 15.125,-11.372 z"
id="path168"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><path
d="m 980.824,1592.438 104.688,0 c 7.438,0 13.468,4.776 13.468,10.668 l 0,0 c 0,5.892 -6.03,10.668 -13.468,10.668 l -104.688,0 c -7.438,0 -13.468,-4.776 -13.468,-10.668 l 0,0 c 0,-5.892 6.03,-10.668 13.468,-10.668 z"
id="path170"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><rect
width="63.203999"
height="130.138"
x="1001.566"
y="1673.2579"
id="rect172"
style="fill:none;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><path
d="m 996.866,1143.786 72.604,0 c 5.967,0 10.804,3.515 10.804,7.852 0,4.336 -4.837,7.852 -10.804,7.852 l -72.604,0 c -5.967,0 -10.804,-3.515 -10.804,-7.852 0,-4.336 4.837,-7.852 10.804,-7.852 l 0,0 z"
id="path176"
style="fill:#fab700;stroke:#002577;stroke-width:4.89989996;stroke-miterlimit:3.86369991" /><rect
width="168.54401"
height="22.743999"
x="948.896"
y="1834.1771"
id="rect180"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:4.08330011;stroke-miterlimit:3.86369991" /><path
d="m 1858.991,1066.189 c 0.164,-0.066 0.257,-0.094 0.263,-0.092 0.065,-0.025 10.042,3.569 10.127,19.197 8.829,-1.654 12.393,3.009 10.691,13.987 0,0 -10.482,-2.834 -12.193,3.143 -2.57,6.91 -0.61,12.539 5.879,16.888 0,0 10.9,8.638 17.759,-7.735 6.859,-16.373 9.328,-21.942 9.328,-21.942 1.908,-6.032 13.264,-20.168 23.578,-22.149 3.929,-1.575 7.69,-1.264 11.886,-0.261 0,0 9.024,1.953 9.28,9.494 0.257,7.54 -2.822,10.822 -7.912,13.01 -5.625,2.419 -12.573,-2.773 -12.573,-2.773 -2.422,-0.453 -3.195,0.385 -4.683,1.417 -0.685,0.475 -3.541,3.61 -5.196,7.139 0,0 -5.009,10.588 -7.398,18.675 -1.882,6.368 -6.03,25.629 -25.531,28.52 l -46.022,0 c -19.501,-2.891 -23.649,-22.152 -25.531,-28.52 -2.39,-8.087 -7.399,-18.675 -7.399,-18.675 -1.655,-3.529 -4.51,-6.664 -5.196,-7.139 -1.487,-1.031 -2.261,-1.869 -4.683,-1.417 0,0 -6.948,5.192 -12.574,2.773 -5.089,-2.188 -8.168,-5.469 -7.911,-13.01 0.257,-7.541 9.281,-9.494 9.281,-9.494 4.196,-1.002 7.957,-1.314 11.886,0.261 10.313,1.981 21.67,16.117 23.578,22.149 0,0 2.469,5.569 9.328,21.942 6.858,16.373 17.759,7.735 17.759,7.735 6.488,-4.349 8.448,-9.979 5.878,-16.888 -1.71,-5.978 -12.193,-3.143 -12.193,-3.143 -1.701,-10.978 1.862,-15.64 10.691,-13.987 0.085,-15.628 10.062,-19.222 10.126,-19.197 0.01,0 0.099,0.026 0.263,0.092 l -0.586,0 z"
id="path188"
style="fill:#fab700;stroke:#002577;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><polygon
points="1820.51,2277.747 1902.806,2277.747 1917.102,2712.424 1805.695,2712.424 1805.695,2712.424 "
transform="translate(0,-1120.464)"
id="polygon190"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><polygon
points="1803.701,2756.748 1923.254,2756.711 1923.254,2954.14 1804.949,2954.14 1804.949,2954.14 "
transform="translate(0,-1120.464)"
id="polygon192"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><path
d="m 1803.856,1613.774 119.926,0 c 8.354,0 15.125,5.091 15.125,11.372 0,6.281 -6.772,11.372 -15.125,11.372 l -119.926,0 c -8.354,0 -15.125,-5.091 -15.125,-11.372 0,-6.281 6.771,-11.372 15.125,-11.372 l 0,0 z"
id="path196"
style="fill:#fab700;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><path
d="m 1809.948,1592.438 104.688,0 c 7.438,0 13.468,4.776 13.468,10.668 l 0,0 c 0,5.892 -6.03,10.668 -13.468,10.668 l -104.688,0 c -7.438,0 -13.468,-4.776 -13.468,-10.668 l 0,0 c 0,-5.892 6.029,-10.668 13.468,-10.668 z"
id="path200"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><rect
width="63.203999"
height="130.138"
x="1831.408"
y="1673.2579"
id="rect202"
style="fill:none;stroke:#002577;stroke-width:8.48910046;stroke-miterlimit:3.86369991" /><path
d="m 1824.538,1142.121 72.604,0 c 5.967,0 10.804,3.515 10.804,7.852 0,4.336 -4.837,7.851 -10.804,7.851 l -72.604,0 c -5.967,0 -10.804,-3.515 -10.804,-7.851 0,-4.336 4.837,-7.852 10.804,-7.852 l 0,0 z"
id="path206"
style="fill:#fab700;stroke:#002577;stroke-width:4.89989996;stroke-miterlimit:3.86369991" /><rect
width="168.54401"
height="22.743999"
x="1353.505"
y="1834.1771"
id="rect210"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:4.08330011;stroke-miterlimit:3.86369991" /><path
d="m 727.79,1525.974 c -28.631,-20.578 -58.882,-15.162 -58.882,-15.162 0,0 21.861,-29.11 56.721,-14.621 22.148,9.206 41.056,43.321 97.237,7.581 56.181,-35.74 77.986,-53.798 127.488,-70.397 50.861,-17.054 90.754,-20.577 102.639,-24.909 11.884,-4.332 30.48,-11.121 39.975,-68.231 2.161,-12.997 54.02,108.303 54.02,108.303 0,0 -7.563,40.072 -57.262,62.816 -49.699,22.744 -135.811,36.349 -183.669,74.729 -16.206,12.996 -47.347,35.467 -66.175,63.087 -44.297,64.981 -90.484,72.292 -90.484,72.292 0,0 41.88,-36.678 53.48,-86.101 2.161,-9.206 -1.371,-50.612 15.126,-67.148 -17.517,17.56 -61.868,-17.038 -56.181,-12.455 0,-10e-4 -5.402,-9.207 -34.033,-29.784 z"
id="path212"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:7.42799997;stroke-miterlimit:3.86369991" /><path
d="m 1800.096,1341.276 c 0,0 8.643,49.278 105.34,74.188 96.697,24.91 111.823,56.318 127.489,63.899 15.666,7.581 56.371,36.771 99.938,22.202 17.164,-5.74 65.126,-18.954 69.041,-16.017 1.468,2.447 -13.703,27.896 -15.561,30.097 -32.083,38.016 -44.297,43.863 -56.181,49.819 -25.956,13.01 -27.962,14.589 -46.457,15.704 0,0 17.286,21.661 19.987,56.859 2.701,35.198 49.699,70.938 49.699,70.938 0,0 -62.664,-16.245 -90.214,-53.61 -27.551,-37.365 -72.927,-69.314 -89.674,-77.437 -16.746,-8.123 -102.098,-37.365 -119.925,-44.404 -17.827,-7.04 -73.468,-36.281 -81.031,-83.393 -7.565,-47.112 27.549,-108.845 27.549,-108.845 z"
id="path214"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:7.42799997;stroke-miterlimit:3.86369991" /><path
d="m 883.307,1379.172 c -65.635,-25.722 -45.367,-43.083 -45.367,-43.083 16.15,-28.875 37.307,-65.144 117.277,-95.913 106.96,-41.155 216.082,-22.743 186.911,24.91 -17.734,28.969 -48.348,79.603 -48.348,79.603 0,0 -12.695,-34.115 -71.037,-12.455 -58.342,21.661 -76.352,30.839 -79.813,42.288 -5.402,17.87 -3.241,29.242 38.895,22.744 -27.551,9.206 -58.244,-0.399 -92.704,-15.732 l -5.814,-2.362 z"
id="path216"
style="fill:#fab700;stroke:#002577;stroke-width:7.42799997;stroke-miterlimit:3.86369991" /><path
d="m 1883.557,1330.608 c 12.13,3.125 32.835,13.174 45.04,21.939 59.464,42.705 48.516,79.96 32.031,80.933 -18.367,1.083 116.593,-2.691 132.799,-11.355 16.206,-8.664 21.608,-18.412 11.885,-38.989 -9.723,-20.577 -83.191,-146.209 -203.117,-170.036 -119.926,-23.826 -167.449,26.739 -157.199,43.863 9.723,16.245 54.02,70.396 55.64,92.598 12.301,-23.234 39.972,-29.853 82.921,-18.953 z"
id="path218"
style="fill:#fab700;stroke:#002577;stroke-width:6.36709976;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><polygon
points="1844.311,2360.028 1853.127,2358.549 1863.632,2421.504 1863.632,2421.504 1851.337,2423.567 1845.309,2387.437 1833.033,2426.637 1826.076,2427.804 1802.929,2394.547 1808.958,2430.676 1799.667,2432.235 1789.162,2369.279 1799.125,2367.608 1829.191,2409.698 "
transform="translate(0,-1120.464)"
id="polygon222"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1921.643,1283.214 c -2.002,9.865 -5.758,16.942 -11.262,21.229 -5.501,4.26 -11.903,5.643 -19.209,4.154 -7.227,-1.474 -12.555,-5.251 -15.984,-11.332 -3.423,-6.108 -4.147,-14.025 -2.173,-23.753 l 0.724,-3.565 c 1.84,-9.063 5.422,-16.03 10.746,-20.902 5.35,-4.865 12.058,-6.476 20.124,-4.831 7.881,1.608 13.249,5.724 16.104,12.35 2.88,6.631 3.417,14.396 1.612,23.293 l -0.682,3.357 z m -13.264,-3.569 0.345,-1.699 c 1.565,-7.71 2.097,-13.558 1.598,-17.545 -0.5,-3.987 -3.119,-6.464 -7.858,-7.43 -4.373,-0.892 -7.616,0.173 -9.729,3.195 -2.087,3.028 -3.997,8.811 -5.73,17.35 l -0.312,1.534 c -1.745,8.594 -2.302,14.625 -1.668,18.092 0.632,3.468 3.278,5.676 7.94,6.627 3.822,0.78 6.936,-0.384 9.339,-3.491 2.428,-3.102 4.454,-8.646 6.075,-16.633 z"
id="path224"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1972.808,1310.829 c -4.927,9.096 -10.3,14.916 -16.116,17.46 -5.796,2.558 -12.038,2.015 -18.731,-1.628 l -19.48,-10.604 30.384,-56.097 17.472,9.511 c 7.984,4.346 12.382,9.869 13.193,16.569 0.848,6.688 -0.983,14.194 -5.494,22.522 l -1.228,2.267 z m -11.846,-6.93 0.826,-1.524 c 3.329,-6.146 4.862,-11.393 4.602,-15.739 -0.262,-4.345 -2.131,-7.464 -5.605,-9.357 l -4.474,-2.435 -21.323,39.368 5.495,2.991 c 3.405,1.854 6.669,1.946 9.793,0.277 3.137,-1.693 6.698,-6.22 10.686,-13.581 z"
id="path226"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1993.873,2483.318 1987.218,2490.107 1987.218,2490.107 1959.798,2463.091 2004.433,2417.558 2030.68,2443.418 2024.025,2450.207 2007.499,2433.925 1995.52,2446.146 2008.357,2458.794 2001.613,2465.674 1988.775,2453.026 1976.175,2465.88 "
transform="translate(0,-1120.464)"
id="polygon228"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 2013.864,1414.385 -6.835,-11.635 c 8.792,-5.317 14.631,-9.853 17.519,-13.61 2.923,-3.748 3.422,-7.26 1.497,-10.539 l -1.628,-2.77 -24.651,14.556 -6.917,-11.773 54.864,-32.398 12.084,20.568 c 2.943,5.009 3.884,9.225 2.827,12.649 -1.045,3.446 -3.228,6.149 -6.547,8.111 l -2.982,1.76 c -3.127,1.846 -6.171,2.416 -9.133,1.709 -2.962,-0.708 -5.685,-2.784 -8.166,-6.231 1.129,4.867 0.079,9.638 -3.149,14.312 -3.19,4.684 -9.451,9.781 -18.783,15.291 z m 31.291,-36.014 1.49,-0.88 c 2.375,-1.402 3.718,-3.004 4.032,-4.806 0.313,-1.802 -0.222,-3.88 -1.606,-6.234 l -2.258,-3.844 -14.507,8.567 1.871,3.186 c 1.641,2.793 3.346,4.475 5.119,5.046 1.772,0.569 3.724,0.224 5.859,-1.035 z"
id="path230"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1841.604,1493.168 -11.285,-8.22 5.378,-15.01 -16.149,-11.763 -12.675,9.696 -8.983,-6.543 53.898,-39.643 10.28,7.488 -20.464,63.995 z m -2.834,-32.392 7.733,-23.387 -19.407,14.884 11.674,8.503 z"
id="path234"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1876.914,2630.16 1864.665,2624.17 1888.415,2575.353 1876.31,2569.433 1880.471,2560.879 1916.643,2578.566 1912.48,2587.121 1912.48,2587.121 1900.664,2581.342 "
transform="translate(0,-1120.464)"
id="polygon236"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1904.295,2641.79 1929.173,2583.032 1941.718,2588.371 1916.84,2647.129 1916.84,2647.129 "
transform="translate(0,-1120.464)"
id="polygon238"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1989.973,1526.255 c -4.085,9.198 -9.279,15.292 -15.579,18.282 -6.291,2.966 -12.839,2.927 -19.651,-0.113 -6.738,-3.008 -11.124,-7.851 -13.159,-14.533 -2.024,-6.706 -1.022,-14.594 3.005,-23.663 l 1.476,-3.323 c 3.752,-8.45 8.753,-14.474 15.004,-18.076 6.274,-3.59 13.171,-3.706 20.69,-0.35 7.348,3.28 11.7,8.464 13.057,15.553 1.38,7.099 0.229,14.797 -3.454,23.092 l -1.389,3.131 z m -12.181,-6.363 0.704,-1.584 c 3.192,-7.188 4.975,-12.782 5.348,-16.783 0.373,-4.001 -1.651,-6.988 -6.069,-8.96 -4.077,-1.82 -7.474,-1.484 -10.189,1.009 -2.691,2.503 -5.805,7.735 -9.34,15.696 l -0.635,1.43 c -3.559,8.013 -5.404,13.78 -5.534,17.302 -0.132,3.523 1.975,6.253 6.322,8.193 3.563,1.591 6.854,1.131 9.872,-1.381 3.041,-2.502 6.215,-7.475 9.521,-14.922 z"
id="path240"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="2027.919,2701.036 2022.851,2698.102 2016.642,2648.203 1996.641,2682.932 1988.241,2678.069 2020.076,2622.788 2026.394,2626.445 2032.514,2673.607 2051.354,2640.892 2059.754,2645.755 2027.919,2701.036 "
transform="translate(0,-1120.464)"
id="polygon242"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="959.796,2425.911 947.473,2386.156 956.922,2380.464 956.922,2380.464 975.353,2443.831 966.901,2448.923 934.647,2419.841 944.877,2462.19 936.425,2467.281 889.304,2421.197 901.123,2414.077 930.901,2443.318 920.398,2402.466 928.679,2397.478 "
transform="translate(0,-1120.464)"
id="polygon246"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="997.61,2436.853 978.994,2375.81 992.027,2371.815 1010.643,2432.858 1010.643,2432.858 "
transform="translate(0,-1120.464)"
id="polygon248"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1065.244,1283.929 c 0.94,6.703 -0.483,11.958 -4.266,15.766 -3.789,3.781 -9.453,6.202 -16.995,7.264 -4.314,0.608 -7.99,0.854 -11.028,0.742 -3.039,-0.113 -5.58,-0.438 -7.625,-0.976 l -1.527,-10.892 c 1.646,0.765 4.141,1.339 7.487,1.722 3.341,0.355 6.573,0.313 9.697,-0.128 4.393,-0.618 7.323,-1.657 8.792,-3.118 1.495,-1.463 2.043,-3.619 1.643,-6.469 -0.258,-1.843 -1.083,-3.393 -2.473,-4.649 -1.391,-1.257 -5.043,-2.664 -10.955,-4.224 -4.712,-1.272 -8.492,-3.202 -11.337,-5.793 -2.85,-2.616 -4.631,-6.467 -5.343,-11.55 -0.681,-4.859 0.701,-9.24 4.148,-13.143 3.472,-3.907 8.676,-6.348 15.61,-7.326 3.36,-0.473 6.418,-0.605 9.174,-0.395 2.778,0.179 4.74,0.415 5.888,0.708 l 1.351,9.635 c -2.359,-0.266 -4.693,-0.463 -7.005,-0.594 -2.313,-0.129 -4.738,-0.015 -7.279,0.342 -3.6,0.507 -6.11,1.459 -7.534,2.855 -1.423,1.397 -2.012,2.975 -1.765,4.734 0.313,2.235 1.146,3.841 2.497,4.817 1.352,0.978 5.082,2.176 11.19,3.592 5.688,1.307 9.893,3.391 12.616,6.253 2.744,2.835 4.424,6.443 5.039,10.827 z"
id="path250"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1262.309,1240.531 c -1.954,3.845 -4.823,6.479 -8.605,7.902 -3.747,1.41 -8.083,0.856 -13.013,-1.661 -2.882,-1.472 -5.101,-2.86 -6.658,-4.161 -1.535,-1.29 -2.689,-2.559 -3.462,-3.81 l 4.425,-8.707 c 0.724,0.877 1.752,1.892 3.085,3.048 1.368,1.143 2.827,2.109 4.375,2.9 1.476,0.754 2.966,0.978 4.473,0.671 1.506,-0.307 2.77,-1.466 3.792,-3.476 l 21.649,-42.594 12.144,6.203 -22.205,43.685 z"
id="path254"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1331.491,1266.041 c -2.148,5.608 -5.468,9.377 -9.955,11.306 -4.479,1.902 -10.149,1.534 -17.008,-1.105 -7.36,-2.831 -11.997,-6.563 -13.914,-11.198 -1.917,-4.635 -1.595,-10.295 0.967,-16.983 l 15.356,-40.087 12.723,4.894 -15.977,41.707 c -1.24,3.239 -1.489,5.938 -0.741,8.098 0.781,2.144 2.881,3.873 6.299,5.188 3.168,1.219 5.79,1.397 7.867,0.534 2.101,-0.853 3.867,-3.149 5.301,-6.888 l 15.886,-41.47 9.43,3.627 -16.234,42.377 z"
id="path256"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1398.845,1279.804 c -0.823,6.718 -3.554,11.425 -8.191,14.122 -4.636,2.668 -10.732,3.538 -18.292,2.607 -4.324,-0.532 -7.938,-1.248 -10.844,-2.145 -2.906,-0.897 -5.277,-1.871 -7.114,-2.922 l 1.337,-10.917 c 1.392,1.166 3.654,2.368 6.787,3.606 3.136,1.21 6.269,2.008 9.4,2.393 4.403,0.542 7.502,0.299 9.298,-0.731 1.822,-1.025 2.907,-2.965 3.258,-5.822 0.226,-1.848 -0.17,-3.559 -1.189,-5.133 -1.019,-1.574 -4.183,-3.882 -9.491,-6.922 -4.223,-2.451 -7.375,-5.296 -9.455,-8.537 -2.077,-3.267 -2.804,-7.448 -2.18,-12.543 0.597,-4.871 3.063,-8.744 7.4,-11.619 4.363,-2.873 10.019,-3.881 16.97,-3.026 3.368,0.415 6.356,1.081 8.963,1.999 2.637,0.893 4.471,1.631 5.504,2.212 l -1.183,9.657 c -2.209,-0.868 -4.414,-1.665 -6.613,-2.391 -2.2,-0.725 -4.573,-1.243 -7.119,-1.558 -3.608,-0.444 -6.279,-0.176 -8.014,0.803 -1.735,0.98 -2.711,2.352 -2.927,4.115 -0.274,2.24 0.115,4.007 1.168,5.301 1.053,1.295 4.347,3.42 9.881,6.374 5.157,2.738 8.681,5.842 10.572,9.314 1.921,3.447 2.612,7.368 2.074,11.763 z"
id="path258"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1447.528,2422.64 1433.902,2422.402 1434.849,2368.096 1421.383,2367.86 1421.549,2358.344 1461.787,2359.047 1461.621,2368.563 1461.621,2368.563 1448.475,2368.334 "
transform="translate(0,-1120.464)"
id="polygon260"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1493.033,2420.52 1485.275,2357.163 1498.802,2355.497 1506.56,2418.855 1506.56,2418.855 "
transform="translate(0,-1120.464)"
id="polygon262"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1575.005,1279.406 c -0.706,0.895 -2.148,1.985 -4.325,3.272 -2.171,1.313 -4.802,2.443 -7.893,3.392 -7.795,2.389 -14.932,1.804 -21.41,-1.756 -6.461,-3.594 -11.193,-10.313 -14.196,-20.157 l -0.753,-2.468 c -2.797,-9.17 -2.551,-17.296 0.738,-24.379 3.314,-7.09 8.741,-11.79 16.28,-14.102 3.245,-0.994 6.015,-1.622 8.312,-1.884 2.287,-0.288 4.13,-0.292 5.529,-0.013 l 2.961,9.709 c -1.289,-0.282 -2.952,-0.377 -4.991,-0.284 -2.015,0.087 -4.286,0.517 -6.816,1.292 -4.703,1.441 -7.795,4.498 -9.276,9.168 -1.457,4.664 -1.147,10.393 0.926,17.19 l 0.259,0.85 c 2.221,7.282 5.089,12.287 8.603,15.014 3.54,2.72 7.444,3.426 11.712,2.118 2.887,-0.885 5.263,-1.936 7.127,-3.157 1.855,-1.246 3.301,-2.323 4.338,-3.231 l 2.875,9.426 z"
id="path264"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1636.273,2360.857 1640.583,2369.337 1640.583,2369.337 1606.333,2386.833 1577.426,2329.958 1610.213,2313.21 1614.523,2321.69 1593.88,2332.235 1601.638,2347.5 1617.674,2339.308 1622.042,2347.902 1606.005,2356.093 1614.166,2372.15 "
transform="translate(0,-1120.464)"
id="polygon266"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 922.566,1515.702 c 5.008,9.055 7.019,16.725 6.037,23.01 -0.96,6.275 -4.77,11.26 -11.43,14.96 l -19.385,10.769 -30.885,-55.839 17.387,-9.658 c 7.945,-4.414 14.954,-5.163 21.028,-2.248 6.083,2.878 11.416,8.461 16.001,16.75 l 1.247,2.256 z m -12.193,6.29 -0.839,-1.517 c -3.383,-6.117 -6.975,-10.234 -10.772,-12.35 -3.797,-2.114 -7.425,-2.211 -10.884,-0.291 l -4.452,2.473 21.675,39.188 5.469,-3.038 c 3.388,-1.882 5.219,-4.592 5.493,-8.131 0.259,-3.562 -1.638,-9.005 -5.69,-16.334 z"
id="path270"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 980.029,1491.701 c 3.924,9.269 4.828,17.234 2.713,23.894 -2.127,6.636 -6.622,11.411 -13.485,14.333 -6.79,2.89 -13.316,2.803 -19.578,-0.263 -6.273,-3.09 -11.344,-9.205 -15.214,-18.344 l -1.418,-3.349 c -3.605,-8.515 -4.59,-16.292 -2.954,-23.332 1.66,-7.049 6.279,-12.186 13.857,-15.41 7.405,-3.151 14.155,-2.807 20.253,1.033 6.121,3.83 10.951,9.925 14.492,18.284 l 1.334,3.154 z m -12.95,4.592 -0.676,-1.597 c -3.067,-7.244 -5.933,-12.366 -8.598,-15.369 -2.665,-3.002 -6.224,-3.556 -10.676,-1.661 -4.109,1.748 -6.18,4.468 -6.214,8.159 -0.009,3.681 1.684,9.532 5.081,17.555 l 0.61,1.441 c 3.419,8.074 6.368,13.362 8.849,15.859 2.48,2.499 5.91,2.817 10.289,0.953 3.591,-1.528 5.5,-4.255 5.725,-8.181 0.251,-3.935 -1.213,-9.655 -4.39,-17.159 z"
id="path272"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1035.804,2558.35 1044.204,2555.285 1065.981,2615.269 1065.981,2615.269 1054.266,2619.543 1041.769,2585.119 1036.827,2625.907 1030.197,2628.326 1001.39,2599.853 1013.888,2634.277 1005.036,2637.507 983.259,2577.524 992.751,2574.06 1029.968,2609.953 "
transform="translate(0,-1120.464)"
id="polygon274"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1114.145,876.08701 c -0.038,1.311 -0.615,3.334 -1.728,6.068 -1.088,2.754 -2.719,5.681 -4.889,8.783 -5.475,7.82 -12.354,12.516 -20.639,14.089 -8.292,1.529 -17.116,-0.982 -26.474,-7.534 l -2.346,-1.642 c -8.716,-6.103 -13.964,-13.503 -15.745,-22.2 -1.762,-8.722 0,-16.864 5.299,-24.428 2.28,-3.255 4.374,-5.838 6.285,-7.748 1.885,-1.927 3.556,-3.279 5.016,-4.053 l 9.229,6.462 c -1.361,0.691 -2.937,1.823 -4.727,3.395 -1.772,1.549 -3.546,3.592 -5.323,6.13 -3.303,4.718 -4.055,9.693 -2.256,14.925 1.817,5.209 5.956,10.073 12.416,14.597 l 0.808,0.565 c 6.922,4.847 12.898,7.197 17.928,7.052 5.048,-0.171 9.071,-2.397 12.069,-6.678 2.028,-2.896 3.479,-5.567 4.351,-8.014 0.847,-2.462 1.435,-4.477 1.766,-6.042 l 8.96,6.273 z"
id="path278"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1148.707,790.84701 c 8.037,7.761 12.324,15.6 12.86,23.513 0.514,7.894 -2.263,14.978 -8.327,21.26 -6,6.213 -12.963,9.213 -20.891,8.997 -7.949,-0.237 -15.886,-4.182 -23.812,-11.835 l -2.904,-2.804 c -7.384,-7.13 -11.677,-14.735 -12.882,-22.815 -1.182,-8.102 1.575,-15.62 8.271,-22.554 6.543,-6.776 13.853,-9.615 21.929,-8.517 8.097,1.077 15.77,5.115 23.02,12.114 l 2.736,2.641 z m -11.828,10.897 -1.385,-1.337 c -6.281,-6.066 -11.463,-10.025 -15.546,-11.88 -4.083,-1.854 -8.092,-0.744 -12.027,3.331 -3.631,3.76 -4.693,7.563 -3.187,11.41 1.527,3.824 5.769,9.095 12.726,15.813 l 1.249,1.207 c 7.002,6.761 12.341,10.853 16.017,12.27 3.677,1.419 7.449,0.125 11.32,-3.883 3.173,-3.286 4.061,-7.02 2.66,-11.201 -1.378,-4.203 -5.32,-9.447 -11.827,-15.73 z"
id="path280"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1238.037,1884.487 1232.492,1888.516 1177.66,1873.344 1203.818,1909.348 1194.627,1916.026 1152.99,1858.716 1159.902,1853.694 1211.849,1867.77 1187.208,1833.855 1196.399,1827.177 1238.037,1884.487 "
transform="translate(0,-1120.464)"
id="polygon282"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1300.082,711.41101 c 3.175,6.807 3.253,12.9 0.236,18.278 -3.031,5.35 -8.587,9.909 -16.671,13.679 -4.624,2.156 -8.649,3.705 -12.077,4.647 -3.429,0.943 -6.369,1.486 -8.823,1.628 l -5.158,-11.062 c 2.08,0.239 5.048,-0.023 8.905,-0.786 3.843,-0.791 7.439,-1.967 10.787,-3.528 4.708,-2.195 7.65,-4.327 8.827,-6.396 1.205,-2.08 1.134,-4.567 -0.216,-7.461 -0.873,-1.872 -2.285,-3.234 -4.236,-4.085 -1.951,-0.852 -6.475,-1.073 -13.57,-0.665 -5.664,0.294 -10.496,-0.439 -14.494,-2.202 -4.012,-1.789 -7.221,-5.265 -9.628,-10.428 -2.302,-4.935 -2.148,-10.083 0.464,-15.445 2.638,-5.374 7.673,-9.794 15.105,-13.26 3.602,-1.679 6.974,-2.889 10.117,-3.63 3.158,-0.781 5.424,-1.216 6.798,-1.305 l 4.563,9.786 c -2.718,0.542 -5.387,1.149 -8.01,1.818 -2.623,0.671 -5.295,1.642 -8.018,2.91 -3.858,1.799 -6.359,3.691 -7.506,5.676 -1.147,1.985 -1.303,3.871 -0.47,5.658 1.059,2.27 2.497,3.688 4.315,4.255 1.819,0.568 6.364,0.539 13.633,-0.09 6.765,-0.599 12.121,0.149 16.068,2.245 3.963,2.056 6.982,5.31 9.059,9.763 z"
id="path284"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1362.1,1835.399 1346.683,1839.53 1331.083,1781.307 1315.847,1785.39 1313.113,1775.187 1358.639,1762.989 1361.373,1773.191 1361.373,1773.191 1346.5,1777.176 "
transform="translate(0,-1120.464)"
id="polygon286"
style="fill:#002577;fill-rule:evenodd" /><rect
width="15.961621"
height="70.840752"
x="1354.8712"
y="733.32196"
transform="matrix(0.9975612,-0.06979728,0.06979728,0.9975612,0,0)"
id="rect288"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1484.431,1828.899 1468.509,1827.786 1472.714,1767.656 1456.98,1766.556 1457.717,1756.02 1504.733,1759.308 1503.997,1769.844 1503.997,1769.844 1488.636,1768.77 "
transform="translate(0,-1120.464)"
id="polygon290"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1581.496,710.03201 c -1.949,6.375 -5.438,10.773 -10.465,13.196 -5.019,2.393 -11.644,2.331 -19.874,-0.185 -8.83,-2.7 -14.583,-6.57 -17.264,-11.611 -2.68,-5.041 -2.859,-11.362 -0.534,-18.965 l 13.931,-45.566 15.263,4.667 -14.494,47.406 c -1.125,3.681 -1.15,6.702 -0.07,9.06 1.117,2.339 3.727,4.134 7.827,5.387 3.801,1.162 6.865,1.2 9.195,0.111 2.358,-1.079 4.186,-3.742 5.487,-7.993 l 14.411,-47.137 11.313,3.459 -14.726,48.171 z"
id="path292"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1629.388,1872.765 1615.167,1865.519 1642.532,1811.812 1628.478,1804.651 1633.273,1795.24 1675.268,1816.638 1670.473,1826.049 1670.473,1826.049 1656.753,1819.058 "
transform="translate(0,-1120.464)"
id="polygon294"
style="fill:#002577;fill-rule:evenodd" /><rect
width="15.960919"
height="70.838638"
x="1805.2533"
y="-423.87827"
transform="matrix(0.8090041,0.587803,-0.587803,0.8090041,0,0)"
id="rect296"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1771.74,821.83801 c -7.9,7.9 -15.813,12.05 -23.734,12.448 -7.901,0.376 -14.936,-2.524 -21.112,-8.697 -6.108,-6.108 -8.985,-13.122 -8.631,-21.045 0.375,-7.944 4.458,-15.811 12.249,-23.601 l 2.854,-2.855 c 7.258,-7.258 14.937,-11.418 23.037,-12.481 8.121,-1.041 15.59,1.847 22.406,8.664 6.661,6.661 9.371,14.019 8.133,22.074 -1.218,8.077 -5.39,15.678 -12.514,22.805 l -2.688,2.688 z m -10.688,-12.017 1.361,-1.361 c 6.174,-6.174 10.224,-11.286 12.149,-15.336 1.925,-4.05 0.885,-8.077 -3.12,-12.083 -3.696,-3.696 -7.48,-4.824 -11.352,-3.385 -3.851,1.461 -9.195,5.61 -16.033,12.448 l -1.229,1.228 c -6.883,6.882 -11.066,12.149 -12.547,15.801 -1.483,3.651 -0.255,7.446 3.685,11.386 3.23,3.23 6.948,4.182 11.153,2.855 4.225,-1.306 9.536,-5.157 15.933,-11.553 z"
id="path298"
style="fill:#002577;fill-rule:evenodd" /><polygon
points="1798.981,2030.174 1794.953,2024.629 1810.124,1969.797 1774.12,1995.955 1767.443,1986.765 1824.753,1945.127 1829.774,1952.039 1815.699,2003.986 1849.614,1979.346 1856.292,1988.537 1798.981,2030.174 "
transform="translate(0,-1120.464)"
id="polygon300"
style="fill:#002577;fill-rule:evenodd" /><path
d="m 1673.098,1398.951 c 0,0 3.906,-4.294 5.173,-1.16 1.267,3.134 1.536,5.806 0.452,6.977 -1.084,1.171 -0.955,1.911 -2.49,3.876 -1.534,1.965 -0.854,3.088 -2.335,4.033 -1.481,0.945 -2.161,0.519 -3.793,0.433 l -0.664,4.873 -1.062,4.073 0.612,3.918 2.784,6.23 -2.123,-4.669 2.972,5.094 c 2.25,5.935 23.638,11.897 31.387,15.364 16.131,7.216 13.608,41.517 15.307,44.913 1.698,3.396 8.489,48.816 8.489,56.457 0,7.641 -8.489,48.816 -9.338,57.306 -0.423,4.23 -1.479,14.363 -2.536,24.621 -0.209,2.027 -3.119,-0.638 -4.039,1.186 -1.219,2.418 -1.042,9.375 -0.753,11.677 -0.507,5.008 -1.932,8.902 -2.163,11.448 -0.849,9.339 -9.455,10.211 -9.455,10.211 0,0 -0.306,31.94 -2.004,39.58 -1.698,7.641 -2.853,9.096 -0.306,30.321 2.547,21.225 -3.396,47.543 -3.396,47.543 0,0 -8.767,38.694 -10.465,44.637 -1.698,5.943 1.126,11.396 1.975,15.64 0.849,4.245 0.849,11.037 0.849,11.037 l -74.647,0 c -1.898,0 1.311,-6.715 3.82,-11.461 1.162,-2.198 4.669,-5.518 9.763,-6.367 5.094,-0.849 5.518,-6.367 8.49,-13.159 2.971,-6.792 1.698,-21.224 -0.849,-30.139 -2.547,-8.915 -5.943,-30.563 -5.943,-38.204 0,-7.641 -4.213,-25.045 -8.458,-36.931 -4.245,-11.885 -6.367,-37.779 -6.367,-40.326 0,-1.111 -0.485,-2.545 -1.384,-4.796 -1.162,-2.908 -1.349,-7.181 -3.741,-13.882 -4.245,-11.885 -3.852,-26.318 -4.276,-38.628 -0.424,-12.31 -5.094,-25.894 -7.245,-28.904 l -1.313,-5.318 -13.092,4.083 -12.657,9.911 c -2.787,2.519 -5.826,2.939 -10.944,3.396 -9.909,0.885 -19.817,-10.743 -22.142,-27.55 -2.569,-18.578 1.101,-26.54 21.775,-26.476 l 9.187,0.023 7.984,0.266 3.863,0 c 0,0 2.318,4.523 -1.288,6.119 -3.605,1.596 -4.635,1.862 -4.635,1.862 l 4.613,5.282 c -0.086,0.01 2.499,-1.738 10.188,-5.943 l 2.865,-6.686 c 0.212,-4.245 0.531,-5.2 -0.318,-9.869 -0.849,-4.669 -2.497,-31.513 -2.497,-37.88 0,-6.367 0.185,-13.9 0.833,-21.25 0.59,-6.686 0.5,-21.587 3.75,-27.917 4.032,-7.853 25.833,-11.25 25.833,-11.25 0,0 9.435,-1.033 10.708,-3.581 0.475,-0.949 2.845,-5.021 3.853,-6.611 -6.068,-2.154 -8.059,-9.613 -8.947,-11.429 -0.924,-1.889 -2.547,-10.613 -2.759,-11.461 -0.313,-1.253 -2.214,-9.138 -3.278,-12.261 -1.063,-3.123 -0.16,-8.814 -0.16,-8.814 l -6.905,-0.759 -8.351,-0.642 c 0,0 -4.669,-0.654 -5.871,-1.125 -1.202,-0.472 -5.249,-1.298 -5.249,-1.298 0,0 -6.634,-5.682 -0.055,-10.245 6.579,-4.563 14.313,-8.793 15.579,-9.545 1.266,-0.752 1.773,-2.002 1.773,-2.002 l -0.118,-1.642 c -1.514,-2.329 -2.985,-5.474 -4.876,-12.321 -1.89,-6.847 16.079,-9.705 16.079,-9.705 5.198,-0.446 22.627,1.861 20.833,1.465 3.639,0.804 6.019,0.674 12.974,0.63 6.955,-0.044 16.025,2.476 21.081,3.559 5.056,1.083 10.211,5.763 12.82,10.604 2.609,4.84 13.172,10.963 16.286,13.989 4.711,4.579 10.31,14.174 12.465,17.678 3.769,6.128 -0.296,4.665 -1.562,5.417 -5.89,3.496 -38.687,-3.9 -35.828,-3.545 2.348,0.292 1.797,-0.544 -0.74,-1.913 l -0.017,2.313 -1.91,7.216 -2.071,2.403 z"
id="path306"
style="fill:#fab700;fill-rule:evenodd;stroke:#fab700;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1638.242,1490.782 c 1.041,-17.388 2.469,-31.719 5.094,-42.874 0.849,-3.608 0,-5.306 0,-5.306 -4.52,-0.108 -7.562,-0.451 -12.24,-5.861"
id="path314"
style="fill:none;stroke:#002577;stroke-width:4.08330011;stroke-miterlimit:3.86369991" /><path
d="m 1609.604,1680.391 0.999,-7.205 c 0,0 2.233,-4.119 1.384,-12.184 -0.849,-8.065 0,-30.563 2.123,-42.024 2.009,-10.852 19.039,-44.571 20.737,-53.486 1.465,-7.689 1.698,-33.535 1.698,-35.657 0,-0.704 -0.841,-3.159 -0.425,-12.735"
id="path316"
style="fill:none;stroke:#002577;stroke-width:4.89989996;stroke-miterlimit:3.86369991" /><path
d="m 1595.341,1591.771 c 2.151,3.01 6.82,16.594 7.245,28.904 0.425,12.31 -1.635,26.743 2.61,38.628 2.393,6.701 4.246,10.973 5.408,13.882 0.899,2.25 4.717,3.685 4.717,4.796 0,2.547 2.122,28.441 6.367,40.326 4.245,11.886 6.792,29.29 6.792,36.931 0,7.641 3.396,29.29 5.943,38.204 2.547,8.914 3.82,23.347 0.849,30.139 -2.972,6.792 -3.805,10.987 -8.49,13.159 -3.602,1.67 -5.356,2.389 -8.185,5.836 -3.405,4.151 -7.297,11.992 -5.399,11.992 l 71.314,0 c 0,0 0,-6.792 -0.849,-11.037 -0.849,-4.245 -5.943,-10.188 -4.245,-16.131 1.698,-5.943 12.735,-44.147 12.735,-44.147 0,0 5.943,-26.318 3.396,-47.543 -2.547,-21.225 -3.396,-21.225 -1.698,-28.865 1.698,-7.641 3.542,-38.112 3.542,-38.112 0,0 13.318,-3.578 14.167,-12.917 0.849,-9.339 6.062,-40.661 6.911,-49.151 0.849,-8.49 9.338,-49.665 9.338,-57.306 0,-7.641 -6.792,-53.061 -8.489,-56.457 -1.698,-3.396 0,-29.714 -16.131,-36.93 -7.75,-3.467 -28.313,-17.412 -30.563,-23.347 l -2.972,-5.094"
id="path320"
style="fill:none" /><path
d="m 1631.908,1432.383 -3.853,6.608 c 0,0 -32.509,6.98 -36.542,14.833 -3.25,6.33 -4.583,42.8 -4.583,49.167 0,6.367 1.647,33.211 2.497,37.88 0.849,4.669 0.531,5.624 0.318,9.869"
id="path322"
style="fill:none;stroke:#002577;stroke-width:5.42070007;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><path
d="m 1650.553,1538.749 c 0.424,3.396 -0.451,25.145 8.49,39.053 3.821,5.943 20.519,38.312 24.196,42.449 2.2,2.475 7.857,3.437 9.283,6.806 7.375,17.43 -0.417,34.583 10,37.083 l 2.917,10"
id="path326"
style="fill:none;stroke:#002577;stroke-width:4.89989996;stroke-miterlimit:3.86369991" /><path
d="m 1673.771,1432.057 c -1.772,2.453 -13.635,9.583 -20.625,9.583 -2.547,0 -1.042,5.208 -2.169,11.362 -1.187,6.482 -1.273,43.298 -0.424,47.968 0.344,1.896 -0.325,2.864 -0.425,8.914"
id="path328"
style="fill:none;stroke:#002577;stroke-width:4.08330011;stroke-miterlimit:3.86369991" /><path
d="m 1684.847,1477.575 4.334,17.027 5.943,31.412 2.122,19.102 0.425,16.979 -0.425,14.433 -1.698,10.188 -2.122,9.339 -3.821,30.563 c 12.31,-2.971 20.409,-0.086 26.318,4.669"
id="path330"
style="fill:none;stroke:#002577;stroke-width:4.89989996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><path
d="m 1603.596,1446.325 0.833,2.917 c -1.158,-6.398 19.38,84.414 89.421,126.863 l 3.396,2.124"
id="path332"
style="fill:none;stroke:#002577;stroke-width:4.89989996;stroke-miterlimit:3.86369991" /><path
d="m 1617.346,1442.575 c 7.356,23.38 29.381,81.816 79.688,112.305 l 0.637,4.245"
id="path334"
style="fill:none;stroke:#002577;stroke-width:4.89989996;stroke-miterlimit:3.86369991" /><path
d="m 1627.938,1581.643 c 12.917,2.707 21.249,2.705 32.916,-0.42"
id="path336"
style="fill:none;stroke:#002577;stroke-width:4.89989996;stroke-miterlimit:3.86369991" /><path
d="m 1648.152,1647.789 c 2.543,17.639 5.684,38.712 6.646,42.078 1.698,5.943 3.396,35.657 3.396,35.657 l 0.849,28.865 0.849,36.506 0,33.11 0,9.339 c -6.972,4.877 -10.632,12.156 -10.982,21.836"
id="path338"
style="fill:none;stroke:#002577;stroke-width:4.89989996;stroke-miterlimit:3.86369991" /><path
d="m 1578.322,1556.962 c -4.333,6.515 -25.726,-5.853 -26.81,12.606 -0.833,14.186 1.913,30.217 15.631,31.979 l 10.096,-6.678 2.703,-2.709"
id="path340"
style="fill:none;stroke:#002577;stroke-width:4.51719999;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><path
d="m 1565.595,1549.397 c -5.883,-92.15 -3.148,-172.881 12.134,-234.008 -41.149,59.743 -24.225,234.072 -24.225,234.072 l 12.091,-0.064 z"
id="path342"
style="fill:#fab700;fill-rule:evenodd" /><path
d="m 1589.851,1549.361 -2.971,8.065 c -7.689,4.205 -10.07,4.427 -9.984,4.422"
id="path344"
style="fill:none;stroke:#002577;stroke-width:5.42070007;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><path
d="m 1575.868,1559.857 c 0,0 7.545,20.054 1.37,35.011"
id="path346"
style="fill:none;stroke:#002577;stroke-width:4.51719999;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><path
d="m 1565.802,1549.922 8.337,0.184 3.863,0 c 0,0 2.318,4.523 -1.288,6.119 -3.605,1.596 -6.069,1.561 -6.069,1.561"
id="path348"
style="fill:none;stroke:#002577;stroke-width:3.48819995;stroke-linejoin:round;stroke-miterlimit:3.86369991" /><path
d="m 1568.28,1600.448 c -2.787,2.519 -5.826,2.939 -10.944,3.396 -9.909,0.885 -19.817,-10.743 -22.142,-27.55 -2.569,-18.578 -0.094,-26.309 18.311,-26.832"
id="path350"
style="fill:none;stroke:#002577;stroke-width:3.48819995;stroke-miterlimit:3.86369991" /><path
d="m 1571.481,1557.615 -13.211,0 c 0,0 -7.026,1.87 -7.34,7.583 -0.5,9.099 -0.665,21.964 3.25,27.019 l 3.915,4.044"
id="path352"
style="fill:none;stroke:#002577;stroke-width:3.48819995;stroke-miterlimit:3.86369991" /><path
d="m 1616.792,1380.182 1.146,6.875 -1.628,2.95 -7.142,-0.471 -8.368,-0.277 c 0,0 -4.692,-0.449 -5.914,-0.868 -1.222,-0.419 -5.299,-1.067 -5.299,-1.067 0,0 -6.055,-8.015 0.316,-12.86 6.371,-4.844 12.934,-8.258 14.167,-9.064 1.232,-0.806 1.843,-0.596 1.843,-0.596"
id="path354"
style="fill:none;stroke:#002577;stroke-width:4.08330011;stroke-miterlimit:3.86369991" /><line
clip-rule="evenodd"
stroke-miterlimit="3.8637"
x1="1616.717"
y1="1381.6791"
x2="1616.718"
y2="1389.4491"
id="line356"
style="fill:none;stroke:#002577;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1617.845,1387.464 c 0,0 -1.984,6.644 -0.921,9.767 1.063,3.123 2.965,11.009 3.278,12.261 0.212,0.849 1.836,9.573 2.759,11.461 0.923,1.889 3.04,9.881 9.695,11.662 6.655,1.781 14.082,0.534 18.321,-2.312"
id="path358"
style="fill:none;stroke:#002577;stroke-width:3.26659989;stroke-miterlimit:3.86369991" /><path
d="m 1630.726,1417.067 c 0,0 3.239,-1.181 4.339,-0.714 1.1,0.467 4.25,0.836 4.25,0.836 0,0 3.923,-0.715 5.232,-0.339 1.31,0.375 3.397,0.381 4.015,0.311"
id="path360"
style="fill:none;stroke:#002577;stroke-width:2.45000005;stroke-miterlimit:3.86369991" /><path
d="m 1633.573,1421.272 c 0,0 7.731,1.508 10.972,0.145"
id="path362"
style="fill:none;stroke:#002577;stroke-width:2.45000005;stroke-miterlimit:3.86369991" /><path
d="m 1644.289,1388.094 c 0,0 6.973,-2.867 13.075,1.645"
id="path364"
style="fill:none;stroke:#002577;stroke-width:2.45000005;stroke-miterlimit:3.86369991" /><path
d="m 1635.42,1387.669 c 0.537,1.46 -0.503,5.7 -1.41,7.39 -0.906,1.69 -1.169,4.744 -1.748,6.043 -0.58,1.299 -1.309,3.51 -1.271,4.739 0.038,1.229 0.043,1.127 1.933,2.146 1.89,1.019 3.222,0.139 4.676,-0.296 1.455,-0.435 2.746,-0.849 4.055,-0.474 1.31,0.375 3.204,-0.65 3.172,-1.981 -0.033,-1.331 -0.441,-3.295 -1.321,-4.057 -0.88,-0.762 -2.759,-1.985 -2.759,-1.985"
id="path366"
style="fill:none;stroke:#002577;stroke-width:1.9598;stroke-miterlimit:3.86369991" /><path
d="m 1622.391,1388.52 c 1.054,-0.154 7.747,-3.906 13.305,-0.039"
id="path368"
style="fill:none;stroke:#002577;stroke-width:2.45000005;stroke-miterlimit:3.86369991" /><ellipse
cx="1628.149"
cy="2513.3931"
rx="4.5739999"
ry="1.136"
transform="matrix(-0.9998,-0.0175,0.0175,-0.9998,3212.042,3934.4432)"
id="ellipse372"
style="fill:#002577;stroke:#002577;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1631.908,1432.383 c 0.243,0.086 0.492,0.164 0.748,0.232 6.655,1.78 14.082,0.534 18.321,-2.312"
id="path376"
style="fill:none;stroke:#002577;stroke-width:3.26659989;stroke-miterlimit:3.86369991" /><path
d="m 1615.528,1339.161 c 0,0 -17.399,5.157 -15.212,11.913 2.187,6.757 3.794,9.833 5.407,12.093 1.614,2.26 4.803,11.067 5.803,13.526 1,2.458 0.394,6.934 4.449,4.939 23.026,-11.331 72.591,8.278 61.929,7.423 -2.872,-0.23 32.086,6.995 37.816,3.247 1.232,-0.806 3.696,-2.418 -0.335,-8.374 -2.305,-3.406 -9.316,-12.335 -14.221,-16.703 -3.242,-2.887 -12.651,-9.047 -15.469,-13.768 -2.817,-4.72 -9.578,-8.664 -14.674,-9.525 -5.097,-0.861 -14.266,-2.983 -21.211,-2.635 -6.945,0.348 -8.98,-0.282 -12.65,-0.927 1.807,0.319 -16.46,-1.88 -21.632,-1.209 z"
id="path378"
style="fill:none;stroke:#002577;stroke-width:3.2651;stroke-miterlimit:3.86369991" /><path
d="m 1657.521,1705.81 c 0,0 18.333,11.248 40,-0.419 20.187,-10.869 3.75,-2.084 3.75,-2.084"
id="path380"
style="fill:none;stroke:#002577;stroke-width:4.90010023;stroke-miterlimit:3.86369991" /><path
d="m 1614.186,1708.307 c 0,0 20.29,9.595 41.123,-1.239"
id="path382"
style="fill:none;stroke:#002577;stroke-width:4.90010023;stroke-miterlimit:3.86369991" /><ellipse
cx="1650.4139"
cy="2514.073"
rx="4.8080001"
ry="1.1950001"
transform="matrix(-0.9945,-0.1046,0.1046,-0.9945,3028.7739,4066.5394)"
id="ellipse386"
style="fill:#002577;stroke:#002577;stroke-width:1.63329995;stroke-miterlimit:3.86369991" /><path
d="m 1623.772,1593.309 c 12.292,4.582 31.25,3.332 43.124,-0.418"
id="path390"
style="fill:none;stroke:#002577;stroke-width:4.89989996;stroke-miterlimit:3.86369991" /><rect
width="168.543"
height="22.743999"
x="1779.83"
y="1834.1771"
id="rect394"
style="fill:#fab700;fill-rule:evenodd;stroke:#002577;stroke-width:0.68049997;stroke-miterlimit:3.86369991" /><rect
width="6912"
height="1440"
x="0"
y="2880"
id="rect4022"
style="fill:#b50027" /></svg>

After

Width:  |  Height:  |  Size: 66 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600" viewBox="0 0 48 24">
<clipPath id="c">
<path d="M0,0V6H22V12H21zM21,0H10.5V13H0V12z"/>
</clipPath>
<rect width="48" height="24" fill="#00247d"/>
<g>
<path d="M0,0 21,12M21,0 0,12" stroke="#fff" stroke-width="2.4"/>
<path d="M0,0 21,12M21,0 0,12" stroke="#cf142b" stroke-width="1.6" clip-path="url(#c)"/>
<path d="M10.5,0V15M0,6H24" stroke="#fff" stroke-width="4"/>
<path d="M10.5,0V15M0,6H24" stroke="#cf142b" stroke-width="2.4"/>
</g>
<path d="M21,12V9L24,6 21,3V0H48V24H0V18z" fill="#fff"/>
<path d="M21,6V9H48V3zM0,15V18H48V12z" fill="#00247d"/>
<path d="M21,4.5H48M0,13.5H48M0,22.5H48" stroke="#cf142b" stroke-width="3"/>
</svg>

After

Width:  |  Height:  |  Size: 738 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 110 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 452 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 250 KiB

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="750" height="500">
<rect width="750" height="500" id="rect1526" style="fill:#000f5d"/>
<use transform="translate(94.998437,-302.57555)" id="use4474" xlink:href="#path72"/>
<use transform="translate(165.10176,-239.95912)" id="use4472" xlink:href="#path72"/>
<use transform="translate(202.31636,-149.82232)" id="use4468" xlink:href="#path72"/>
<use transform="translate(126.44047,-126.44797)" id="use4466" xlink:href="#path72"/>
<use transform="translate(187.86405,-50.087407)" id="use4464" xlink:href="#path72"/>
<use transform="translate(131.65888,27.026192)" id="use4462" xlink:href="#path72"/>
<use transform="translate(88.726724,-37.115289)" id="use4460" xlink:href="#path72"/>
<use transform="translate(47.979803,74.909224)" id="use4458" xlink:href="#path72"/>
<use transform="translate(-52.93993,74.909224)" id="use4442" xlink:href="#path72"/>
<use transform="translate(-88.937372,-37.115289)" id="use4440" xlink:href="#path72"/>
<use transform="translate(-136.78986,27.026192)" id="use4444" xlink:href="#path72"/>
<use transform="translate(-191.93667,-50.087407)" id="use4446" xlink:href="#path72"/>
<use transform="translate(-204.36749,-149.82232)" id="use4450" xlink:href="#path72"/>
<use transform="translate(-127.05167,-126.44797)" id="use4448" xlink:href="#path72"/>
<use transform="translate(-166.33627,-239.95912)" id="use4452" xlink:href="#path72"/>
<use transform="translate(-95.803472,-302.57555)" id="use4454" xlink:href="#path72"/>
<use transform="translate(-0.23142361,-328.73602)" id="use4456" xlink:href="#path72"/>
<use transform="matrix(-1,0,0,1,752.2069,0)" id="use4438" xlink:href="#path112"/>
<use transform="matrix(-1,0,0,1,751.83265,0)" id="use4436" xlink:href="#path110"/>
<use transform="matrix(-1,0,0,1,751.65672,0)" id="use4434" xlink:href="#path108"/>
<path d="M 354.95018,372.00322 L 370.90411,371.99164 L 376.16124,356.40597 L 381.03319,372.03944 L 397.10166,372.03553 L 384.64728,382.15514 L 389.16062,396.95805 L 376.00022,388.06183 L 362.95541,397.02868 L 367.39789,382.02521 L 354.95018,372.00322 z" id="path72" style="fill:#d59f0f"/>
<path d="M 346.35055,114.65178 L 368.85295,114.69937 L 376.26166,92.714791 L 383.12529,114.71017 L 405.75066,114.73246 L 388.20221,128.96962 L 394.5602,149.82634 L 376.04666,137.32131 L 357.64566,149.94348 L 363.90115,128.77515 L 346.35055,114.65178 z" id="path90" style="fill:#d59f0f"/>
<path d="M 347.52856,222.70253 C 347.4874,222.66214 347.44302,222.60687 347.41502,222.54936 C 329.2787,198.59476 347.7268,189.79066 348.09995,172.84414 C 360.1017,195.12577 342.5136,202.05748 363.42376,222.71921 L 347.52856,222.70253 z" id="path92" style="fill:#d59f0f"/>
<path d="M 367.55914,222.71763 C 361.17397,213.73554 356.69497,199.39741 358.61092,190.03068 C 360.51103,180.66868 366.99816,171.45004 366.0992,164.3641 C 369.47814,172.34214 372.6558,175.4172 371.67189,181.28864 C 376.74893,166.14796 388.41897,158.32285 404.23967,157.54485 C 375.78601,179.16672 412.92895,195.78433 388.36879,222.74202 L 367.55914,222.71763 z" id="path94" style="fill:#d59f0f"/>
<path d="M 393.64217,222.75386 C 416.2383,195.49043 387.48335,181.51801 413.68964,169.30208 C 414.65397,177.3624 408.2312,177.35649 411.06196,187.22123 C 411.54714,191.49333 410.95543,194.97861 409.57113,197.95418 C 412.2374,194.68587 417.42328,188.52085 420.7161,186.12245 C 412.9239,197.86106 421.29136,208.13345 402.49587,222.75309 L 393.25346,222.75616" id="path96" style="fill:#d59f0f"/>
<path d="M 389.82136,281.58361 C 390.82888,256.02095 396.29828,248.23921 406.66763,237.54812 C 386.54613,237.50072 364.05939,237.49715 345.7624,237.48412 C 356.08816,248.19192 361.55073,255.97891 362.50416,281.53921 C 371.61069,281.54324 380.71485,281.56127 389.82136,281.58361 z" id="path98" style="fill:#d59f0f"/>
<path d="M 376.07106,343.98852 L 384.03191,368.9587 L 388.42946,294.87416 C 380.23138,294.84636 372.03328,294.83544 363.83518,294.82352 L 368.05515,368.9428 z" id="path100" style="fill:#d59f0f"/>
<path d="M 375.95444,455.95155 C 379.46647,452.69495 380.46383,442.08558 380.46383,442.08558 L 382.64795,398.78646 L 376.01383,394.12493 L 369.36464,398.77199 L 371.47948,442.08215 C 371.47948,442.08215 372.42152,452.66141 375.93833,455.95502 L 375.95444,455.95155 z" id="path102" style="fill:#d59f0f"/>
<path d="M 411.54548,232.95842 L 340.79522,232.8825 L 340.80282,226.16746 L 411.56793,226.24019 L 411.54548,232.95842 z" id="path104" style="fill:#d59f0f"/>
<path d="M 394.32085,292.6443 L 356.99902,292.6056 L 357.009,284.2516 L 394.33432,284.30641 L 394.32085,292.6443 z" id="path106" style="fill:#d59f0f"/>
<path d="M 200.58174,226.53289 L 333.81402,210.57135 L 333.39761,206.99529 L 200.13809,222.98088 L 200.58174,226.53289 z" id="path108" style="fill:#d59f0f"/>
<path d="M 225.89566,145.68825 L 335.46309,187.81998 L 336.75089,184.47609 L 227.19984,142.34212 L 225.89566,145.68825 z" id="path110" style="fill:#d59f0f"/>
<path d="M 293.74159,98.652483 L 340.89124,165.82514 L 343.81529,163.74908 L 296.653,96.596011 L 293.74159,98.652483 z" id="path112" style="fill:#d59f0f"/>
<path d="M 373.88872,142.71881 L 373.8549,167.16286 L 377.43995,167.1661 L 377.45418,142.70943 L 373.88872,142.71881 z" id="path114" style="fill:#d59f0f"/>
<path d="M 336.86717,114.9936 L 321.38502,107.05518 L 322.46289,104.95307 L 337.94502,112.89149 L 336.86717,114.9936 M 339.50483,109.27627 L 326.99545,97.18368 L 328.79335,95.323842 L 343.52839,98.265219 C 343.85242,98.326562 344.14872,98.393923 344.41728,98.46733 C 344.68583,98.540768 344.9239,98.62306 345.1315,98.714178 L 334.99152,88.912036 L 336.55953,87.289988 L 349.0689,99.38258 L 347.28745,101.22543 L 332.30187,98.28831 C 332.07277,98.242099 331.84346,98.184722 331.61397,98.116203 C 331.38997,98.042041 331.1602,97.956828 330.92467,97.86056 L 341.06464,107.66273 L 339.50483,109.27627 M 352.71073,80.587962 L 348.92506,82.064004 L 353.7437,94.422423 L 357.52934,92.946384 C 359.15073,92.314208 360.1714,91.311921 360.59138,89.939525 C 361.00846,88.559837 360.81511,86.839205 360.01131,84.777631 C 359.2418,82.804108 358.23069,81.457261 356.97791,80.737094 C 355.72515,80.016925 354.30275,79.967245 352.71073,80.587962 M 352.31508,97.261458 L 345.99464,81.051358 L 352.16835,78.644185 C 354.42802,77.763164 356.41895,77.764467 358.14115,78.64809 C 359.87069,79.528905 361.23175,81.242187 362.22439,83.787932 C 363.25131,86.421786 363.42724,88.715479 362.75214,90.669097 C 362.08152,92.612499 360.63106,94.019009 358.40076,94.888627 L 352.31508,97.261458 M 368.67726,92.330698 L 367.30166,74.986458 L 369.65661,74.79968 L 371.03221,92.143923 L 368.67726,92.330698 M 379.32059,85.20946 L 384.64506,86.231076 L 383.44694,78.183506 L 379.32059,85.20946 M 373.0168,91.360617 L 382.64055,75.49103 L 385.20418,75.982928 L 388.2942,94.291867 L 385.77698,93.808911 L 384.94666,88.357608 L 378.21856,87.066694 L 375.41802,91.821354 L 373.0168,91.360617 M 390.0233,95.218923 L 399.85772,80.866231 L 401.99161,82.328384 L 401.55157,97.347685 C 401.54518,97.67743 401.52823,97.980814 401.50069,98.25784 C 401.47312,98.534895 401.43173,98.78336 401.37654,99.003268 L 409.34821,87.369097 L 411.2093,88.644298 L 401.37488,102.99699 L 399.26048,101.54821 L 399.65448,86.28258 C 399.66182,86.048986 399.68011,85.81331 399.70934,85.575606 C 399.74506,85.342361 399.79073,85.10159 399.84631,84.853298 L 391.87462,96.487442 L 390.0233,95.218923 M 411.65492,104.6862 L 414.54312,109.27445 L 419.60599,102.90529 L 411.65492,104.6862 M 402.8567,104.27873 L 421.02302,100.47804 L 422.41363,102.68718 L 411.14374,117.44372 L 409.7783,115.27456 L 413.19501,110.94653 L 409.54545,105.14873 L 404.15923,106.34794 L 402.8567,104.27873" id="text2636" style="fill:#d59f0f"/>
</svg>

After

Width:  |  Height:  |  Size: 7.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 221 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 237 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 224 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 226 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" standalone="no"?>
<svg viewBox="0 0 360 240" width="750" height="500"
xmlns="http://www.w3.org/2000/svg" version="1.1"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<path id="cross" transform="scale(.24)" d="M0,215 a32 32 0 0 0 32 -32 v-16 h31 a32 32 0 0 0 0 -64 h-31 V32 H231 v31 a32 32 0 0 0 64 0 v-31 h28 a32 32 0 0 0 32 -32 L0,0 z"/>
</defs>
<g id="q1">
<rect width="180" height="120"/>
<path fill="#EAAB00" d="M0,120 v-100 l30,20 v80 h30 v-120 h30 v120 h30 v-120 h30 v120 h30 v-20 L30,0 v40 L150,120 z"/>
</g>
<g id="q2">
<rect fill="#fff" x="180" width="180" height="120"/>
<path fill="#981E32" d="M270,0 h90 v60 h-180 v60 h90 z"/>
<g transform="translate(270,60)">
<use fill="#981E32" xlink:href="#cross"/>
<use fill="#fff" transform="scale(-1 1)" xlink:href="#cross"/>
<use fill="#fff" transform="scale(1 -1)" xlink:href="#cross"/>
<use fill="#981E32" transform="scale(-1)" xlink:href="#cross"/>
</g>
</g>
<use id="q3" x="-180" y="120" xlink:href="#q2"/>
<use id="q4" x="180" y="120" xlink:href="#q1"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 440 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 126 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 275 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 277 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="600" viewBox="0 0 1107 738">
<defs>
<path id="s" transform="scale(3)" fill="#fff" d="M0,-1 L0.58779,0.80902 L-0.95106,-0.30902 L0.95106,-0.30902 L-0.58779,0.80902z"/>
<clipPath id="canton"><path d="M0,0h60.5v60.5h-60.5z"/></clipPath>
</defs>
<rect fill="#bf0a30" width="1107" height="738"/>
<g clip-path="url(#canton)" transform="scale(8)">
<path stroke="#fff" stroke-width="12" d="M0,0L60,60M0,60L60,0"/>
<path stroke="#002868" stroke-width="9" d="M0,0L60,60M0,60L60,0"/>
<g id="s6">
<use xlink:href="#s" x="6" y="6"/>
<use xlink:href="#s" x="14" y="14"/>
<use xlink:href="#s" x="22" y="22"/>
<use xlink:href="#s" x="38" y="38"/>
<use xlink:href="#s" x="46" y="46"/>
<use xlink:href="#s" x="54" y="54"/>
</g>
<use xlink:href="#s6" transform="scale(-1,1)" x="-60"/>
<use xlink:href="#s" x="30" y="30"/>
</g>
<path fill="#fff" d="M480,0H1107V492H0v-12H480z"/>
<rect fill="#002868" x="492" width="615" height="246"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 204 KiB

View File

@ -0,0 +1,268 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="750"
height="500"
id="svg166"
inkscape:version="0.48.1 "
sodipodi:docname="AJAX.svg">
<metadata
id="metadata58">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="1004"
id="namedview56"
showgrid="false"
inkscape:zoom="1.044"
inkscape:cx="138.32985"
inkscape:cy="179.2277"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg166" />
<defs
id="defs168" />
<rect
width="499.96783"
height="250.06471"
x="250.0322"
y="0.042898677"
style="font-size:12px;fill:#bf0a30;fill-opacity:1;fill-rule:evenodd;stroke-width:1.01768994"
id="rect172" />
<rect
width="250.03131"
height="500"
x="-3.2278505e-010"
y="-7.1273498e-006"
style="font-size:12px;fill:#002868;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt"
id="rect170" />
<rect
width="499.87289"
height="249.82846"
x="250.07309"
y="250.16896"
style="font-size:12px;fill:#ffffff;fill-rule:evenodd;stroke-width:1.01768994"
id="rect603" />
<path
d="M 37.394865,117.30837 C 21.763899,126.03696 18.929705,129.67732 10.362933,136.37131 L 29.360794,136.76886 C 29.134623,138.53809 24.987348,160.56448 24.594126,162.11887 C 38.896913,152.61413 45.683589,148.25725 65.197875,142.7597 C 72.951529,140.60676 64.588075,132.72901 63.781173,130.63342 C 58.479882,133.02613 54.403503,135.8673 50.495549,139.34887"
style="font-size:12px;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:1;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;stroke-miterlimit:4"
id="path607" />
<path
d="M 50.748679,139.16458 C 79.887875,112.47106 176.30637,113.10903 203.1605,139.98937 C 204.02686,139.67779 221.40006,110.3682 220.5337,110.67979 C 167.81038,73.744788 73.339235,80.072393 33.68948,109.22055 L 34.159802,110.96036 L 50.748679,139.16458 z "
style="font-size:12px;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:1;stroke-dasharray:none;stroke-opacity:1;stroke-miterlimit:4"
id="path628" />
<path
d="M 55.75715,127.58192 C 55.612442,127.20061 47.284795,111.69289 47.284795,111.69289 L 60.915583,123.70536 L 57.743977,106.15326 L 66.671145,121.17173"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499737999999990;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path613" />
<path
d="M 105.19339,100.7945 C 105.25281,96.053135 109.05249,95.733743 111.66786,96.554094 C 113.20209,97.724375 114.00758,101.5381 112.16881,103.71195 L 108.47643,106.85884 C 107.19969,108.45497 105.78595,110.27724 105.87756,112.28356 L 114.21968,111.96499"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499737999999990;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path618" />
<path
d="M 120.3351,95.731315 C 118.8116,96.475739 118.29909,97.653448 117.94586,99.397314 C 117.71808,101.4028 117.81959,106.145 118.22977,108.10509 C 118.59537,109.56423 118.9585,110.52158 120.05368,111.47894 C 121.33041,112.2085 122.74332,112.07233 123.5191,111.57054 C 124.56723,110.97798 125.2968,109.74662 125.66158,108.28749 C 126.25414,106.41817 126.20875,100.94723 125.79775,98.940921 C 125.41812,97.603929 124.94687,96.540113 123.88306,95.749472 C 122.60632,95.202296 121.11006,95.321139 120.3351,95.731315 z "
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499737999999990;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path621" />
<path
d="M 160.17579,100.28644 C 161.76376,99.623221 162.9711,98.811478 164.29481,97.25657 L 161.95146,113.76716"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499619000000010;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path629" />
<path
d="M 172.37541,99.441022 C 172.56593,99.513208 180.30543,101.76339 180.30543,101.76339 C 176.53113,106.47866 173.43655,110.66728 170.91409,115.99058"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12500072000000010;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path630" />
<path
d="M 187.06639,103.55472 L 194.73836,107.33888 C 190.18339,110.5946 186.43806,114.69111 183.12344,119.48162"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12500380999999990;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path631" />
<path
d="M 206.51697,113.48083 L 201.4918,110.53429 L 197.04751,116.55183 C 200.23985,115.92244 202.38528,116.88667 203.30312,119.78367 C 203.86625,124.05084 201.30888,126.48662 198.54495,126.5628 C 195.63659,126.49672 194.13546,124.8995 193.7262,121.54796"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499905000000000;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path632" />
<path
d="M 70.938218,119.02279 C 70.938218,119.02279 71.4234,101.09798 71.604636,101.11773 C 71.683646,100.39245 81.72625,115.97903 81.72625,115.97903 L 81.72625,115.97903"
style="font-size:12px;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:3.12500143000000020;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path614" />
<path
d="M 71.266913,112.63795 L 78.089658,110.62998"
style="font-size:12px;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:3.12500143000000020;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path615" />
<path
d="M 31.438511,288.13873 L 41.407342,288.27284 L 41.092368,245.08538 L 60.200437,288.50066 L 70.572862,288.4998 L 70.572862,224.97634 L 60.447994,225.11217 L 60.60193,265.27524 L 42.741754,225.29185 L 31.592447,225.42682 L 31.438511,288.13873 z "
style="font-size:12px;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.62499958000000000;stroke-dasharray:none;stroke-opacity:1"
id="path678" />
<path
d="M 213.63097,245.13119 L 224.24809,245.13119 L 224.12,239.53374 C 223.81911,235.91788 222.45307,231.33659 218.88623,227.9494 C 216.51178,225.30671 213.70146,223.81428 210.05553,222.8179 C 206.96066,221.60316 199.38167,221.96079 195.53543,224.1126 C 190.98683,226.65299 187.1449,231.18356 184.58045,238.4832 C 181.21564,250.77421 182.73557,266.16527 184.86759,273.40817 C 187.40624,281.08435 191.38831,285.18078 196.68827,287.76502 C 199.98689,288.87316 205.74163,289.71909 211.1267,288.2602 C 216.9932,286.04133 219.67456,282.18906 222.00431,278.08059 C 223.4185,275.29949 225.04158,269.96854 224.75875,264.05988 L 213.68083,264.19485 C 213.68857,266.35698 213.25013,268.85266 212.70079,271.01479 C 211.44737,274.03746 209.51135,276.06032 204.69883,276.05946 C 201.47329,276.05602 199.29312,274.72779 197.48778,272.34731 C 195.05143,269.99519 194.41268,264.72958 194.2502,263.24146 C 193.51603,256.52039 193.4954,249.86638 195.43227,242.85387 C 196.16988,240.02033 197.63651,237.39913 199.55533,236.12249 C 202.66481,234.43663 205.88176,234.6868 207.70085,235.21809 C 210.08906,235.95571 212.29244,237.74043 212.98019,240.10372 C 213.51491,242.32602 213.60002,243.67746 213.63097,245.13119 z "
style="font-size:12px;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.62499987999999995;stroke-dasharray:none;stroke-opacity:1"
id="path680" />
<path
d="M 151.99654,290.2245 L 128.19788,271.72979 L 103.77196,290.10991 L 113.45052,261.32512 L 88.687063,243.10325 L 118.4674,243.80797 L 127.58866,214.16611 L 136.31537,243.38645 L 166.71607,243.28864 L 142.32913,260.64309 L 151.99654,290.2245 z "
style="font-size:12px;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.64412992999999996;stroke-dasharray:none;stroke-opacity:1"
id="polygon693" />
<path
d="M 50.757677,139.26969 C 50.757677,139.26969 50.757677,139.26969 50.757677,139.26969"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="path668" />
<path
d="M 50.831256,139.18109 C 51.879503,140.25313 53.951806,139.98684 56.811301,139.44467 C 59.094261,139.1691 61.695727,139.06437 63.742832,138.82811 C 67.131491,139.10489 69.072763,139.89794 67.679804,141.50549"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;stroke-miterlimit:4"
id="path679" />
<path
d="M 216.6449,118.25092 C 232.27586,126.97951 235.11006,130.61987 243.67683,137.31386 L 224.67897,137.71141 C 224.90514,139.48064 229.05242,161.50703 229.44564,163.06143 C 215.14285,153.55669 208.35617,149.1998 188.84189,143.70225 C 181.08823,141.54932 189.73154,133.53188 190.53844,131.43628 C 195.83965,133.82902 200.33591,136.67 203.54421,140.29142"
style="font-size:12px;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:1;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;stroke-miterlimit:4"
id="path685" />
<path
d="M 203.2811,140.21232 C 203.2811,140.21232 203.2811,140.21232 203.2811,140.21232"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="path689" />
<path
d="M 202.98477,140.12372 C 201.22997,140.93491 199.41872,140.57629 197.22748,140.3873 C 195.14812,140.08472 192.78856,139.73023 190.45319,139.65151 C 186.53839,139.67852 185.12325,141.31309 186.35898,142.44812"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;stroke-miterlimit:4"
id="path690" />
<path
d="M 129.37407,101.8685 C 132.39999,101.92356 135.32696,102.04265 135.32696,102.04265"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:2.24999714000000010;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path622" />
<path
d="M 138.66652,97.913834 L 138.3137,112.3367"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:2.25000453000000000;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path624" />
<path
d="M 144.94481,112.99043 C 145.78851,102.63838 144.4336,102.26916 139.43317,102.29198"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:2.25000453000000000;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path627" />
<path
d="M 131.73442,97.391671 L 131.51167,109.38056 C 131.47942,111.65507 132.18698,112.30287 134.16555,112.30287"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:2.25000000000000000;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path661" />
<path
d="M 80.600608,98.959088 L 88.011917,106.47804 L 89.350461,114.64232"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12500262000000010;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="path616" />
<path
d="M 92.248189,96.376012 L 88.186907,106.8381"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12500262000000010;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="path617" />
<path
d="M 38.024821,387.45054 C 22.393855,378.91512 19.559661,375.35533 10.992889,368.80948 L 29.99075,368.42073 C 29.764579,366.69066 25.617304,345.15174 25.224082,343.63175 C 39.526869,352.92614 46.313545,357.1866 65.827831,362.56248 C 73.581485,364.66777 65.218031,372.37118 64.411129,374.42039 C 59.109838,372.08063 55.033459,369.30234 51.125505,365.89783"
style="font-size:12px;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:1;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;stroke-miterlimit:4"
id="path671" />
<path
d="M 51.378635,366.07779 C 80.517831,392.18058 176.93632,391.55672 203.79045,365.27125 C 204.65681,365.57595 222.03002,394.2369 221.16366,393.93221 C 168.44034,430.04982 73.969191,423.86224 34.319436,395.35915 L 34.789758,393.65785 L 51.378635,366.07779 z "
style="font-size:12px;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:1;stroke-dasharray:none;stroke-opacity:1;stroke-miterlimit:4"
id="path683" />
<path
d="M 50.757677,366.29011 C 50.757677,366.29011 50.757677,366.29011 50.757677,366.29011"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.98887253pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="path686" />
<path
d="M 51.461206,366.06176 C 52.509453,365.01345 54.581756,365.27385 57.441251,365.80402 C 59.724211,366.07349 62.325677,366.1759 64.372782,366.40693 C 67.761441,366.13628 69.702713,365.36078 68.309754,363.7888"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;stroke-miterlimit:4"
id="path687" />
<path
d="M 217.27395,386.52888 C 232.90491,377.99346 235.73911,374.43367 244.30588,367.88782 L 225.30802,367.49907 C 225.53419,365.769 229.68147,344.23008 230.07469,342.71009 C 215.7719,352.00448 208.98522,356.26494 189.47094,361.64082 C 181.71728,363.74611 190.36059,371.58611 191.16749,373.63532 C 196.4687,371.29554 200.96496,368.51743 204.17326,364.97617"
style="font-size:12px;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:1;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;stroke-miterlimit:4"
id="path693" />
<path
d="M 203.2811,365.36845 C 203.2811,365.36845 203.2811,365.36845 203.2811,365.36845"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.98887253pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="path694" />
<path
d="M 203.61467,365.1401 C 201.85987,364.34687 200.04862,364.69755 197.85738,364.88236 C 195.77802,365.17825 193.41846,365.52489 191.08309,365.60187 C 187.16829,365.57545 185.75315,363.97706 186.98888,362.86714"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;stroke-miterlimit:4"
id="path695" />
<path
d="M 126.72341,400.30947 C 127.9786,396.00234 130.83905,396.5294 133.38967,397.11957 C 135.43782,398.52511 135.73133,402.35504 133.77478,404.58398 L 130.18475,407.31781 C 128.66672,408.32609 127.15954,410.19698 127.21665,412.28829 L 135.91098,412.11575"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12500000000000000;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path646" />
<path
d="M 117.94547,399.72733 C 119.52045,398.87125 119.89828,398.53202 121.10463,396.78005 L 120.43138,412.35629"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499832999999990;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path657" />
<path
d="M 98.770653,392.87564 C 98.767929,392.97103 96.120792,409.14509 96.00687,409.80665 L 104.43004,410.99749"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12500072000000010;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
id="path676" />
<path
d="M 88.880864,408.9443 L 91.473255,391.3007"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499905000000000;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path675" />
<path
d="M 58.789777,399.69412 L 65.216321,383.37812 C 67.14109,384.34313 69.621091,384.72389 71.759951,386.63202 C 73.148784,388.94102 72.509023,393.67678 68.529775,394.12613 C 66.337005,393.83353 64.504799,392.77156 62.582431,391.90108"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499905000000000;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
id="path672" />
<path
d="M 163.90836,396.39045 C 165.17938,395.15526 166.04356,393.90938 166.77009,391.88004 L 170.05567,409.19805"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.08430743000000000;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path654" />
<path
d="M 171.32365,391.40704 C 171.52913,391.35396 179.73544,388.48397 179.73544,388.48397 C 179.35787,394.76409 179.24073,400.79209 180.02603,406.36606"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12500262000000010;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path655" />
<path
d="M 184.04487,386.99919 L 192.45863,383.70634 C 192.09704,390.07377 191.703,396.85389 192.873,401.63096"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499690000000020;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path656" />
<path
d="M 204.03716,380.40376 C 203.07616,378.81312 201.60716,378.22917 199.54314,378.77164 C 197.62922,380.45106 197.27316,381.7758 197.13765,383.81868 C 197.21636,386.35033 197.9131,388.84958 199.06267,391.08333 C 199.85135,393.16561 201.55641,394.65243 202.84071,394.97911 C 204.29499,395.51531 205.38445,395.37824 206.55078,394.36939 C 207.44061,393.24663 207.84529,391.36176 207.76317,389.94155 C 207.48635,388.05674 206.63539,386.34931 204.7135,385.34935 C 203.2261,384.73968 202.61153,384.6149 201.26874,385.18571 C 199.22979,386.39031 198.8592,388.62072 199.16194,390.89503"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499595000000020;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path677" />
<path
d="M 138.00182,401.70758 C 141.02499,401.56729 143.95355,401.49729 143.95355,401.49729"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:2.24999856999999980;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path706" />
<path
d="M 140.06837,397.08769 L 140.61962,409.06598 C 140.73418,411.33784 141.48208,411.93863 143.45652,411.81097"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#002868;stroke-width:2.25000072000000010;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path709" />
<path
d="M 145.9309,396.96303 L 147.59133,411.29434"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:2.25000380999999990;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path707" />
<path
d="M 154.24926,411.01763 C 153.64219,400.649 152.24905,400.47219 147.30058,401.19159"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:2.25000380999999990;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path708" />
<path
d="M 43.757838,392.40993 C 43.757838,392.40993 56.633023,378.8779 56.759497,379.01956 C 57.326402,378.51343 54.22826,397.57769 54.22826,397.57769 L 54.22826,397.57769"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12500118999999990;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path659" />
<path
d="M 48.464615,387.69849 L 55.144359,390.90257"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12500118999999990;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path660" />
<path
d="M 72.802358,405.54441 C 72.799934,405.44902 77.488451,388.03769 77.488451,388.03769 C 79.496115,388.52505 81.593921,388.82005 83.511465,389.50061 C 84.852934,389.94124 86.890261,391.59998 86.103261,394.27985 C 85.732788,395.90513 84.977697,397.34928 83.828362,398.23328"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499905000000000;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
id="path673" />
<path
d="M 75.424263,396.54619 L 81.831961,398.18939 C 83.557939,398.81031 83.976301,400.3201 83.978702,400.41464 C 84.299698,401.83232 83.21973,407.93972 83.21973,407.93972"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#002868;stroke-width:3.12499905000000000;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
id="path674" />
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 323 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 330 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 266 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 331 KiB

View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="#ffd700" width="1200" height="800"/>
<g transform="translate(600,400)" stroke="#bf0a30">
<path id="lin" d="M157.344,38.2812H-157.344M191.375,12.75H-191.375M191.375-12.75H-191.375M157.344-38.2812H-157.344" stroke-width="17" stroke-linecap="round"/>
<use transform="rotate(90)" xlink:href="#lin"/>
<circle fill="#ffd700" r="64.3125" stroke-width="10.625"/></g></svg>

After

Width:  |  Height:  |  Size: 487 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,232 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="450" width="900" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata id="metadata228">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<path id="path14" d="m-2761.5 2662z"/>
<path id="path16" d="m-2761.5 2659.8z"/>
<path id="path20" fill="#002a86" d="m0 450h900v-450l-900-1.228e-14v450z"/>
<path id="path22" fill="#46b7e8" d="m413.85 300.65"/>
<path id="path24" fill="#46b7e8" d="m413.63 300.63h-0.03 0.03"/>
<path id="path26" fill="#46b7e8" d="m414.08 300.65h0.03-0.03"/>
<path id="path32" fill="#46b7e8" d="m414.41 300.63h-0.06 0.06"/>
<path id="path46" fill="#46b7e8" d="m415.09 300.51h-0.01 0.01"/>
<g id="g6061">
<path id="path28" fill="#46b7e8" d="m491.53 315.36c-0.11 0.02-0.21 0.02-0.32 0.04 0.11-0.02 0.21-0.02 0.32-0.04"/>
<path id="path30" fill="#46b7e8" d="m490.44 315.5c-0.18 0.02-0.36 0.02-0.53 0.02 0.18 0 0.36 0 0.53-0.02"/>
<path id="path34" fill="#46b7e8" d="m490.98 315.44c-0.12 0.02-0.24 0.02-0.36 0.04 0.11-0.02 0.23-0.02 0.36-0.04"/>
<path id="path36" fill="#46b7e8" d="m492.07 315.23c-0.1 0.02-0.19 0.07-0.3 0.07 0.11-0.02 0.2-0.05 0.3-0.07"/>
<path id="path38" fill="#46b7e8" d="m410.93 317.92c-0.02 0-0.03 0-0.05 0.03 0.02-0.03 0.03-0.03 0.05-0.03"/>
<path id="path40" fill="#46b7e8" d="m520.13 318.45v-0.59c0-1.3-0.03-7.48-0.03-15.77v0.06h-0.65l-38.77 1.39 6.46 3.22-4.62 0.46 6.01 1.39-3.7 1.39 6.46 0.46-5.53 1.37 9.24 0.45-9.24 2.3 8.76-0.45-2.38 1.06c2.03-0.53 3.77-1.52 3.77-1.52s-2.3-6.01 4.16-1.84c6.46 4.16 9.7 4.62 9.7 4.62s4.61-5.55 3.68-0.95c-0.92 4.63 5.53 4.17 5.53 4.17l1.1 0.59c0.02-0.59 0.02-1.43 0.02-1.83"/>
<path id="path42" fill="#46b7e8" d="m413.4 317.21c-0.03 0.01-0.06 0.01-0.11 0.01 0.03 0 0.07-0.01 0.11-0.01"/>
<path id="path44" fill="#46b7e8" d="m392.52 320.62c5.08 1.38 6 0 6 0s5.08-3.71 8.31-3.22c1.38 0.17 2.01 0.46 2.66 0.57l1.02-1.5-6.92-0.93 8.3-1.38-7.83-0.93 5.99-1.37-6.46-0.91 5.07-1.41-5.07-1.37 7.85-0.93-9.24-0.9 13.85-1.41s2.3-1.83-6.92-1.83c-9.24 0-28.16-1.39-28.16-1.39h-0.65c-0.02 8.45-0.03 14.82-0.03 16.17v0.59l0.23-0.15c7.85 0 6.91 0.93 11.99 2.3"/>
<path id="path48" fill="#46b7e8" d="m412.64 317.48c-0.05 0-0.08 0.02-0.12 0.02 0.04-0.02 0.07-0.02 0.12-0.02"/>
<path id="path50" fill="#46b7e8" d="m411.95 317.67c-0.02 0-0.06 0.02-0.08 0.02 0.02 0 0.06-0.02 0.08-0.02"/>
<path id="path52" fill="#46b7e8" d="m450.13 175.71h-40.63c-5.41 10.73-14.65 19.02-25.81 23.19 5.4 6.8 8.35 15.15 8.35 23.94 0 10.36-4.26 20.35-11.71 27.54 0.01 1.89 0.02 4.23 0.02 6.85l-0.29 0.6s1.84-1.86 5.53-3.69c3.69-1.85 5.07-2.77 7.85-0.92 2.77 1.85 5.53 2.78 5.53 2.78s3.69-2.32 6.92-4.61c3.23-2.32 2.3-3.68 6.46-2.78 4.15 0.93 14.3-1.84 18-3.67 3.69-1.85 5.53 0.44 8.76-3.7 3.23-4.17 3.23-3.69 7.84-5.56 4.62-1.83 3.69-5.04 9.69-3.22 6 1.83 9.23 0.93 18 7.85 8.76 6.92 14.31 9.23 18 12.91 3.68 3.68 7.37 6.02 7.37 6.02s3.7-1.39 7.39-3.24c3.68-1.83 5.07-3.22 7.85-1.37 2.77 1.85 5.07 2.29 5.07 2.29l-0.29-0.33c0.01-2.36 0.02-4.46 0.02-6.21-7.45-7.17-11.71-17.15-11.71-27.52 0-8.78 2.95-17.14 8.35-23.94-11.16-4.17-20.39-12.46-25.81-23.21h-40.81"/>
<path id="path54" fill="#46b7e8" d="m418.15 156.34s-0.15 0-0.41 0.03c3.69 0.61 12.67-0.03 12.67-0.03-4.15-0.81-4.34-4.56-6.61-6.66-2.26-2.1-4.34-3.09-7.36-3.09-3.47 0-5.24 1.85-4.89 5.12 0.34 3.29 2.95 4.63 6.23 4.63"/>
<path id="path56" fill="#46b7e8" d="m448.38 149.66c-2.26-2.1-4.34-3.07-7.35-3.07-1.93 0-3.59 1.39-5.89 2.14 0.28 0.27 0.6 0.59 0.98 0.93 2.26 2.12 2.45 5.87 6.61 6.68 0 0-0.15 0-0.41 0.03 3.69 0.61 12.67-0.03 12.67-0.03-4.16-0.81-4.34-4.56-6.61-6.68"/>
<path id="path58" fill="#46b7e8" d="m472.97 149.66c-2.26-2.1-4.34-3.07-7.36-3.07-1.92 0-3.58 1.39-5.88 2.14 0.28 0.27 0.6 0.59 0.98 0.93 2.26 2.12 2.44 5.87 6.6 6.68 0 0-0.14 0-0.4 0.03 3.68 0.61 12.67-0.03 12.67-0.03-4.16-0.81-4.34-4.56-6.61-6.68"/>
<path id="path60" fill="#46b7e8" d="m477.1 146.4c2.89-4.55 4.55-9.93 4.55-15.71 0-16.23-13.15-29.35-29.37-29.35s-29.37 13.12-29.37 29.35c0 5.82 1.7 11.27 4.62 15.81l-0.2 0.32c0.45-0.12 0.93-0.21 1.4-0.21 2.52 0 4.37 0.65 6.22 2.08l0.78-0.16c2-0.79 3.52-1.92 5.27-1.92 2.44 0 4.25 0.6 6.06 1.95l0.35 0.17c2.3-0.75 3.96-2.16 5.89-2.16 2.53 0 4.4 0.69 6.3 2.18l0.1-0.02c2.3-0.75 3.96-2.16 5.87-2.16 2.4 0 4.23 0.63 6.01 1.98l0.38 0.18c2.04-0.67 3.55-1.83 5.21-2.1l-0.11-0.23"/>
<path id="path62" fill="#46b7e8" d="m553.48 204.64s2.42-2.74 6.22-3.8c3.81-1.03 7.96-1.37 13.85-1.74 5.88-0.36 4.15 0.37 8.3 1.04 4.15 0.7 8.64 2.76 10.38 4.87 0 9.33-0.69 20.74-2.08 31.13-1.38 10.39-2.08 10.75-2.08 10.75v0.34l5.54 2.41s2.76 4.17 5.87 3.12c3.1-1.05 2.43-0.69 2.08-16.28-0.34-15.56-5.19-39.11-5.19-39.11v0.69l-1.03-2.75c-0.69-4.16-5.71-3.28-6.74-2.08-1.04 1.22-1.39 1.55-1.39 1.55s-0.86-0.18-3.47-1.05c-2.59-0.86-5.36-1.03-10.03-1.03s-4.16 0-9 0.88c-4.85 0.87-6.92 1.54-9.17 3.64l-2.08 7.42"/>
<path id="path64" fill="#46b7e8" d="m293.06 171.06s6.45-13.83 9.92-19.13c2.23-3.42 3.71-4.59 5.26-4.33 0 0 2.13-0.88 5.57-1.43 3.46-0.57 8.42-3.47 8.42-3.47v0.1s1.85 6.59 3.35 9.93 1.96 2.55 3.47 2.42c1.49-0.11 5.42-0.24 7.73-0.24 2.3 0 1.5-0.92 2.19-3.8s0.81-7.03 0.81-7.03l0.35 0.93v-0.58s1.48 2.89 5.3 4.03c3.8 1.15 7.38 1.7 7.38 1.7 3.1 0.51 6.62 8.98 10.09 12.62 3.46 3.64 2.93 5.17 2.93 7.42l0.12 0.38c-1.01-1.24-2.02-1.75-2.02-1.75-5.71-0.53-5.36 5.54-5.71 10.21 0.74 1.46 2.8 3.05 5.01 4.33l-0.32 0.15s-2.6 11.08-4.16 15.22c-1.54 4.16-3.27-1.2-4.49-6.22-1.2-5.03-2.77-9.87-3.45-21.11-0.87 5.18-1.57 20.07-1.57 20.07l-0.3 0.32c-1.01-0.07-2.29 0.31-3.51 1.17-3.23 2.32-1.15 1.16-5.07 1.16-3.93 0-9.24-0.92-13.38-2.77-4.16-1.83-5.53-0.93-8.76 0-3.24 0.92-6.01 0.7-6.01 0.7s-2.31-3.02-0.92-8.54c0.6-2.42 0.92-2.32-0.46-3.48-1.39-1.15-1.15-6.91-1.15-6.91s-1.15 1.59-1.61 3.93c-0.46 2.31-4.21 15.66-4.21 15.66-2.07 6.75-6.18 12.24-8.07 5.49l-0.41-6.85c3.47-1.16 4.38-4.86 5.31-11.32 0.87-6.07-3.68-8.1-7.6-7.37v-1.63"/>
<path id="path66" fill="#46b7e8" d="m312.55 197.03c-4.15 4.5-5.19 9.7-6.22 17.65-1.04 7.96-0.69 13.85-0.34 19.05-3.82 14.53 4.5 36.69 4.5 36.69s-1.74 10.7 1.04 22.16c-2.09 4.14-2.78 3.79-2.78 3.79s3.81 6.56 2.78 11.08c-1.04 4.48-0.7 4.83 2.08 7.61-1.39 2.09 3.11 11.09 0.69 22.83 3.45-1.36 10.04 3.82 16.61 6.59 6.57 2.76 15.57 0.34 19.72-1.72 4.16-2.11 10.38 1.72 10.38 1.72s1.04 2.76-0.69-2.42c-1.73-5.19-4.84-9-4.84-9s-2.77-28.75-1.74-38.1c1.04-9.31 2.08-9.67 2.08-9.67s-1.73-4.17-2.08-10.74 1.38-13.85 2.43-19.04c1.04-5.19-0.35-8.28-0.35-8.28l-0.01-0.02c-0.45-0.09-0.91-0.21-1.38-0.34-2.41-0.69-2.41-0.36-3.45 0.34-1.04 0.69-2.08 0-4.5-0.7-2.44-0.67-0.7-6.22-0.7-6.22l-0.11-0.46-0.46-38.78s-8.99 0.94-13.37 1.18c-4.39 0.23-1.85-1.39-6.7-3.68-4.85-2.32-12.68-1.18-12.68-1.18"/>
<path id="path68" fill="#fff" d="m449.75 388.35c26.76 0 30.47-1.96 56.3-7.05-4.15-8.29-4.15-15.46-7.38-25.15-3.23-9.67 12-9.23 23.08-9.67 11.08-0.47 76.61 0.92 92.31 1.38 15.69 0.47 16.61-0.92 29.53 6.46-4.15 6.45-8.76 17.54-11.53 22.6-2.78 5.09-3.69 7.39-12 5.54l-1.84 5.55c-11.54-0.46-16.62-1.39-12-6.92s5.54-9.71 5.54-9.71l-54.46 0.48 7.85 12.47s-40.62 27.21-115.39 27.21c-74.75 0-115.37-27.21-115.37-27.21l7.83-12.47-54.44-0.48s0.91 4.16 5.52 9.71c4.62 5.53-0.46 6.46-11.98 6.92l-1.85-5.55c-8.3 1.85-9.23-0.45-12-5.54-2.76-5.06-7.38-16.15-11.53-22.6 12.92-7.38 13.85-5.99 29.54-6.46 15.69-0.46 81.23-1.85 92.31-1.38 11.07 0.44 26.31 0 23.07 9.67-3.23 9.69-2.77 16.18-6.91 24.48 25.83 5.07 29.06 7.72 55.83 7.72"/>
<path id="path70" fill="#ffe84f" d="m452.51 234.07c6.49 0 11.75-5.26 11.75-11.74 0-6.49-5.26-11.76-11.75-11.76-6.48 0-11.74 5.27-11.74 11.76 0 6.48 5.26 11.74 11.74 11.74"/>
<path id="path72" fill="#ffe84f" d="m577.96 163.69l9.61-0.22-3.64-16.44-3.66-0.77c0.36 0.26 0.91 1.21 1.47 4.3 0.93 5.05 2.08 9.93 2.08 9.93l-5.08 0.2c0.03-0.02 0.05-0.02 0.08-0.02l-4.45 0.24 0.01-0.02-6.48 0.27s-1.85-9.69-5.08-15.23l-2.41 0.77c2.08 3.25 5.53 17.28 5.53 17.28l7.3-0.18c0.08 1.32 0.32 2.85 0.32 4.17 0 2.78-2.43 8.31-3.47 11.78s-3.98 13.66-3.98 13.66l4.33-0.49s2.42-6.59 4.5-12.82c2.07-6.22 2.77-7.96 3.12-13.16l-0.17-3.19"/>
<path id="path74" fill="#ffe84f" d="m488.83 148.14s11.52-0.16 14.27-0.08c2.78 0.08 2.78-2.35 0-2.35h-14.36c-2.76 0-3.9 2.27 0.09 2.43"/>
<path id="path76" fill="#ffe84f" d="m494.37 156.54s0.1 2.6 0.1 3.64 1.99 2.18 1.99 0.07c0-2.05-0.08-4.06-0.08-4.06"/>
<path id="path78" fill="#ffe84f" d="m431.86 109.22c1.66-0.93 3.23 4.17 3.23 4.17l0.47 2.98s-0.7 0.92 0.69 0.26c1.37-0.7 2.29 0.66 2.29 0.66l-0.35 0.13c-0.68 0.69-1.37 0.18-2.42 1.37-1.03 1.22-2.25 2.08-2.25 2.08s-1.2-0.16-1.2 1.41c0 1.54-0.53 2.23-0.7 1.17-0.18-1.02-0.18-1.53-1.56-2.05-0.69-0.25-1.3-0.49-1.78-0.4l-0.12-0.46s-0.23-2.52-1.38-4.17c0 0 3.46-6.22 5.07-7.15"/>
<path id="path80" fill="#ffe84f" d="m407.32 251.71c0.41 0.03 0.8-2.42 2.04-2.91 3.31-1.65 6.94-3.66 9.61-6.5l-1.06 0.02c-5.18 3.54-10.73 6.02-17.06 7.22l-1.02-0.87c3.95-4.37 9.59-6.35 14.08-9.9l0.29-1.51-0.81-0.15-4.46 1.26-5.9 0.49-0.22-0.51 2.45-1.49c0.45-0.92-1.33-0.48-1.89-1.12l-0.2-0.75 6.35-2.65 0.31-0.88c-0.84-0.66-2.44 0.65-3.21-0.64 0.6-1.05 2.27-1.07 3.92-1.45-0.11-0.2 1.05 0.61 0.8-0.42 1.5-0.38 3.62-0.71 3.88-2.41-1.28-0.34-2.64 0.06-4.09-0.09-3.52-1.56 1.72-1.21 1.19-2.86-2.94-0.53-5.91-0.02-9.17-0.09-2.35-0.16-5.81 0.37-6.93-1.48 1.8-0.64 4.07-1.58 5.88-1.67-0.58 0.06-2.22-0.8-2.44-1.38l8.69-0.51 7.4-1.51c0.76-0.76-0.41-1.37-0.66-1.66-3.9-1.35-8.28-3.35-12.77-4.99-0.84-0.59-2.23-1.3-2.04-2.4 3.31-0.4 6.14 2.34 9.19 1.9 3.29-0.27 7.31 2.5 10.91 1.52-0.09-0.51-0.29-1.15-1.02-1.02-5.24-3.68-10.85-6.6-15.48-10.16-0.17-0.98 0.89-0.52 1.07-0.84l-0.28-0.67-6.13-3.9 0.84-0.66c6.83 0.57 11.97 4.61 18.51 7.26 0.46 0.18 0.84-0.7 0.39-1.04-2.67-1.72-5.28-3.31-7.69-5.53 1.42-2.35-2.06-2.88-1.85-4.88l0.63-0.05c6.5 3.67 13.59 9.6 20.62 12.23l0.95-0.53c-5.06-6.03-10.78-9.91-15.98-15.98 0.08-0.67-1.34-1.59-0.18-2.03l5.83 3.88 0.07-1.36c4.46 2.65 8.35 7.21 12.51 9.4-2.49-3.41-3.34-7.09-6.12-10.46l-0.92-2.45c1.3-0.64-0.55-1.33-0.11-2.23 0.26-0.55 0.81 0.2 1.23 0.18l10.29 12.37 0.83-0.59-0.39-0.95c0.32-0.4-0.27-0.71-0.54-0.69-1.27-2.99-2.67-4.94-3.68-7.91 1.13-0.75 1.4 1.96 2.53 1.03-0.41-1.36 0.99-0.84 1.3-1.72 0.19-1.12-1.3-3.42-0.31-4.92 0.93-0.17 1.36 1.06 1.72 1.51 1.15 4.29 3.07 8.4 6.22 12.1 1.74 1.22 1.04 3.23 3.22 3.74 2.26-1.62 1.91-4.88 3.75-7.11 1.03 0.11 2.02 0.57 2.47 1.66l1.7-1 1.53 1.34c0.62-0.06 1.38-1.81 2.17-0.83 0.52 2.27-0.28 4.7-0.75 7.1l0.41 0.67 0.43-0.23 6.49-15.17 1.02-1.15 0.58 0.42-1.72 6.35c0.58 0.48 1.19-0.64 1.67 0.04-1.24 2.44 1.24 0.07 1.79 0.82 0.11 3.49-1.8 6.48-0.6 8.92 1.14 0.48 2.81-0.21 3.55-1.22 1.89-3.58 4.61-7.37 6.26-9.84l1.05-0.02c-1.66 4.48-4.02 8.25-5.2 12.25 0.62 0.53 0.55-1.35 1.58-1.24l0.67-0.97c1.87-2.5 4.07-4.22 6.61-5.9 0.44-0.92 1.71-1.71 2.78-2.48 1.34 0.35 0.5 1.65 0.66 2.09l0.63-0.05c1.18 0.65 0.02 1.66 0.36 2.48 0.68 0.13 1.88-1.33 2.83-0.97l0.03 0.97-4.04 5.21-0.45 0.32-2.28 2.52-3 4.67 0.32 0.82c3.32-3.07 6.68-3.89 9.72-6.9l1.93-1.26 1.29-0.27c0.29 1.83 1.89 1.81 0.64 3.11l1.23 0.14 0.57 0.55c-2.59 1.45-4.33 4-7.12 4.74-2.71 1.86-5.36 1.86-7.12 4.11l0.37 0.93 0.33-0.36c3.7-0.84 6.95-1.91 11.07-2.8 1.11-1.26 2.29-1.13 3.64-1.46 1.41-0.28 0.85 1.04 0.7 1.81 0.4 0.24 2.53-0.22 2.08 1.46l-0.88 1.03 1.09 0.87c-1.36 1.6-3.3 2.92-4.64 3.13-3.7 0.72-6.4 1.26-9.74 2.51l-0.07 0.69 2.39-0.11c3.81 0.06 8.51-2.23 12.94-1.87 0.64 1.18 0.91 1.2 1.79 2.19l-0.96 1.15c0.41 0.74 2.48 0.82 1.66 2.06-5.97 0.46-10.11 0.72-15.18 1.37l-1.38 1.1 0.85 1.1 0.61 0.16c4.19-0.8 8.09 0.52 12.66 1.36l-0.04 1.18c-0.47 1.14 1 1.01 1.36 1.6l-1.23 1.11c-0.58 1.54 1.41 0.51 1.05 1.85l-2.86 0.74-11.82-0.76-1.19 0.61c1.74 0.76 3.55 2.76 5.19 2.92 3.1 2.84 7.9 3.7 11.52 6.11 0.5 0.68 1.31 0.84 1.11 1.38l0.48 1.31c-0.07 0-1.15 0.29-1.49-0.3-5.09-1.18-9.19-2.59-14.11-4.02l0.34 0.59c1.22 1.01-0.74 1.1-0.81 1.79 3.86 3.53 8.25 6.1 13.58 7.74 2.81 0.44 4.14 3.55 6.85 3.7l0.88 1.49"/>
<path id="path82" fill="#ffd9ee" d="m565.37 144.99s1.37-2.52 1.37-6.45c0-3.91-0.69-6.67-0.69-6.67l-1.61-0.72s2.3-1.37 2.09-2.29c-0.24-0.93-0.24-2.31-0.24-2.31s7.39 0.92 12.92 0.69c0 0 0.49 0.05 0.58 1.39 0.09 1.24 0.78 1.72 0.81 3.45 0.04 2.9-1.61 2.09-1.61 6.01 0 3.91-0.46 7.36-0.46 7.36l1.38 0.72s0.93-0.72 1.85 4.35c0.93 5.09 2.08 9.93 2.08 9.93l-15.92 0.68s-1.84-9.69-5.07-15.22l2.54-0.92"/>
<path id="path84" fill="#ffd9ee" d="m567.67 121.22s6.7 0.24 9.24 0.24c0 0-1.39-2.07-1.62-2.98-0.23-0.93-1.61-1.63-2.08 0.22-0.46 1.84-2.77 2.99-3.46 1.6-0.7-1.36-1.62-1.6-2.09 0.92"/>
<path id="path86" fill="#ffd9ee" d="m529.26 172.12s-5.54-4.5-10.74-9.34c-5.19-4.85-7.61-6.24-10.39-9.72-2.78-3.45-9-4.5-9-4.5s-0.69 1.43-1.17 2.73c-0.32 0.97-0.74 1.25-1.2 1.54l0.88-1.7s-3.81-1.39-4.96-2.09c-1.14-0.68-3.23-0.46-2.54 0.91 0.7 1.41 0.58 1.98 0.58 3.48 0 1.48 0 2.74 1.27 2.89 1.26 0.09 2.99 0 2.99 0l0.14-0.27c0.28 0.23 0.58 0.23 1.5-0.35l-0.13 0.09s-0.39 0.97 3.47 1.96 3.5-0.48 5.58 1.98c2.09 2.48 16.45 22.31 22.1 25.87 5.64 3.59 11.42 4.87 11.42 4.87l-9.79-18.35"/>
<path id="path88" fill="#ffd9ee" d="m539.17 190.56c0.35-4.81-1.39-11.52-1.96-13.25-2.88 0.8-5.31 1.36-6.92-1.85-1.62-3.24-1.73-2.65-1.5-3.47"/>
<path id="path90" fill="#ffd9ee" d="m605.74 171.06c0.7-3.97 2.43-8.28 2.43-15.22 0 0-2.09 0-2.43-1.9-0.35-1.88-0.35-3.46-0.35-3.46s-1.9-0.51-1.38-1.2c0.52-0.7 0.87 0.18 0.34-0.53-0.52-0.66-2.08-1.91 0-2.05 2.09-0.18 3.64-0.18 4.16-0.18 0.51 0 0.69 0 2.07 1.57 1.39 1.52 2.08 1.21 2.6 4.5 0.53 3.27 1.22 11.41-0.69 19.02s-5.02 19.55-7.96 22.5c-2.95 2.94-5.19 2.43-5.54-1.19-0.33-3.64-0.51-5.37-0.51-5.37 1.21-0.87 2.24-0.87 2.94-3.98 0.69-3.11 1.91-4.33 2.94-6.58 1.05-2.25 2.26-4.67 1.39-5.86"/>
<path id="path92" fill="#ffd9ee" d="m322.24 142.8s1.96-1.04 2.54-2.65c0.58-1.59 0.47-2.65 0.35-5.98-0.11-3.35-0.23-4.04-0.23-4.04s-1.96 0.92-2.08-0.93c-0.11-1.85 0.11-3.92 0.11-3.92s1.03-0.09 1.62-2.07c0.57-1.96 3.22-5.54 4.84-6 1.61-0.46 4.04-2.41 4.04-2.41s0.67 2.41 2.52 3.11c1.84 0.69 4.5 0.69 4.96 4.5 0.45 3.8 0.11 4.14-0.34 6.68-0.46 2.55-1.16 2.78-1.27 6.69-0.1 3.93-0.71 6.33 0.8 9.25l-0.34-0.93s-0.12 4.15-0.81 7.03 0.11 3.8-2.18 3.8c-2.31 0-6.23 0.11-7.73 0.24-1.5 0.12-1.96 0.93-3.47-2.42-1.5-3.34-3.35-9.93-3.35-9.93"/>
<path id="path94" fill="#ffd9ee" d="m293.06 172.69c3.92-0.7 8.48 1.32 7.61 7.37-0.93 6.48-1.84 10.17-5.31 11.32"/>
<path id="path96" fill="#ffd9ee" d="m292.6 192.53c-4.38-2.28-8.07-9.44-9.7-22.39-1.61-12.91-3.23-21.21-1.38-24.23 1.85-2.98 2.31-7.13 3-8.74 0.69-1.63 0.69-3.93 2.08-5.78 1.38-1.83 3.69-3 2.54-1.37-1.16 1.62-1.16 1.37-1.86 4.15-0.68 2.76-0.92 4.37 1.16 3.46 2.07-0.92 6.23 0 4.84 1.15s-0.92 0.93-0.92 0.93 2.07 1.37 0.68 1.83c-1.38 0.46-0.68 0.24-0.68 0.24s1.84 0.69 0.92 1.61c-0.92 0.93-1.61-0.22-0.69 0.44 0.93 0.69 1.15 1.41-0.23 2.1 0 0-1.86 1.59-3.93 4.15-2.08 2.54-2.77 1.16-1.85 4.85 0.93 3.69 3.92 8.52 3.92 8.52"/>
<path id="path98" fill="#ffd9ee" d="m363.96 168.83s2.95 1.54 3.81 5.54c5.54-3.12 14.01-7.95 18.52-11.59 4.5-3.64 3.98-2.6 6.58-4.67 2.57-2.08 3.63-2.41 7.42-3.47 3.81-1.03 5.7-1.19 7.26-1.72 1.57-0.53 2.95-0.33 2.78 0.69-0.18 1.03-0.18 0.53-0.18 0.53s2.6 1.89 3.64 2.77c1.04 0.84 2.26 3.09 0.18 1.73-2.09-1.41-3.47-2.61-3.47-2.61s-0.35 2.78-0.87 2.78c-0.5 0-0.32-2.44-0.32-2.44s-0.86-0.32-2.78 0.71c-1.9 1.03-5.36 1.18-5.36 1.18s-0.53 0.55 1.21 1.41c1.73 0.86 3.46 1.88 2.77 2.58-0.7 0.69-0.7 0.69-2.77-0.15-2.08-0.86-0.69-0.69-2.94-0.52-2.26 0.17-4.33-1.22-6.07 2.06-1.73 3.3-11.42 17.14-19.72 21.14-2.77 1.17-3.11 1.89-6.22 0.69-3.12-1.22-7.96-4-9.17-6.41 0.33-4.69 0-10.76 5.7-10.23"/>
<path id="path100" fill="#ffd9ee" d="m317.24 340.01s-2.78 0.86-3.99 2.75-2.43 2.25-0.18 3.13c2.26 0.84 2.95 0.49 5.19-0.38 2.26-0.84 3.98-2.06 3.98-2.06l-2.76-1.92-3.47 2.09s0.17-2.42 0.87-2.59c0.69-0.19 1.21-0.52 1.21-0.52l-0.86-0.53"/>
<path id="path102" fill="#ffd9ee" d="m317.93 338.95l5.87 3.81 1.55-1.2-6.91-3.28-0.51 0.67"/>
<path id="path104" fill="#ffd9ee" d="m349.24 343.78l2.95 1.75s-0.69-1.75 1.57-1.89c2.25-0.17 4.15-0.7 4.15-0.7s-5.71-1.91-8.66 0.84"/>
<path id="path106" fill="#ffd9ee" d="m353.76 346.39s3.11 3.81 3.98 4.14c0.86 0.36 1.56 0.53 2.08 0.53 0.51 0 1.04-0.17 1.89 0 0.86 0.17 1.39-0.69 1.39-0.69s0.68 0.69 1.39 0.16c0.68-0.52 2.07-0.52 0.51-1.74-1.57-1.17-3.47-3.78-3.47-3.78s-2.41 0.88-1.04 2.25c-1.89-1.56-5.35-3.81-6.73-0.88"/>
<path id="path108" fill="#ffd9ee" d="m538.25 339.48l-1.21 2.27 3.64 2.06 2.25-2.59s-2.42-2.27-4.67-1.74"/>
<path id="path110" fill="#ffd9ee" d="m543.78 342.06l-1.56 2.78 2.6 2.23 2.25-2.23-3.29-2.78"/>
<path id="path112" fill="#ffd9ee" d="m539.63 351.76l4.16-3.98s-1.56-2.06-3.11-0.16c-1.56 1.89-2.43 1.53-1.73 0.33 0.68-1.22-0.88-3.47-1.57-3.81-0.7-0.33-0.34-0.69-1.55 1.01-1.21 1.75-1.9 1.58-0.69 3.13 1.2 1.54 1.2 2.25 2.6 2.41 1.38 0.18 1.89 1.05 1.89 1.05"/>
<path id="path114" fill="#ffd9ee" d="m578.22 346.76c1.56 0.88 2.08 2.25 3.47 2.41 1.38 0.17 1.2 0.17 1.89 0.17s1.05 0.35 1.56 0.51c0.51 0.18 1.22 0 1.22 0s-0.34 0 1.37-0.33c1.73-0.35 1.9-0.88 1.9-0.88s-0.85-1.2-1.9-1.88c-1.03-0.7-4.84-2.76-4.84-2.76s-1.21-0.88-2.07 0.48c-0.88 1.41-2.61 2.28-2.61 2.28"/>
<path id="path116" fill="#193a84" d="m398.87 331.34s6.11-3.35 11.18-3.8c5.08-0.44 6.46 1.4 10.62 0.91 4.15-0.46 17.52-4.13 17.52-4.13 6.93-3.24-3.68-4.17-3.68-4.17l-5.07-0.44s-0.92-0.46-5.08-3.22c-4.16-2.78-5.07-1.41-10.15 0.44-2.9 1.06-3.85 1.22-4.72 1.06l1.02-1.5-6.92-0.92 8.3-1.39-7.83-0.93 5.99-1.37-6.46-0.92 5.07-1.4-5.07-1.37 7.85-0.93-9.24-0.9 13.85-1.41s2.3-1.83-6.92-1.83c-9.24 0-28.16-1.39-28.16-1.39h-0.65c0.01-3.15 0.01-6.58 0.02-10.15l0.18-0.44h138.92l0.63 0.44c0.01 3.73 0.01 7.33 0.02 10.61h-0.65l-38.77 1.39 6.46 3.22-4.62 0.46 6.01 1.39-3.7 1.39 6.46 0.45-5.53 1.39 9.24 0.47-9.24 2.29 8.76-0.44-2.39 1.05c-0.73 0.18-1.49 0.32-2.23 0.32-2.75 0-9.21 2.75-9.21 2.75s-2.31 1.85-5.54 0c-3.24-1.83-7.38-3.68-11.54-3.24-4.15 0.46-6.46 6.48-6.46 6.48s-2.3 1.85 0.46 4.63c2.77 2.75-0.93 1.82-5.08 2.75-4.15 0.92-5.08-0.16-8.76 0-10.15 0.48-21.69 4.61-11.08 6.02 10.62 1.36 28.62 0.9 33.7 1.36 5.07 0.47-2.78 4.61-13.39 4.61-10.62 0-20.77-0.9-21.69-2.76-0.92-1.85-7.37-4.14-8.76-1.85-1.39 2.32-8.76 2.78-8.76 2.78"/>
<path id="path118" fill="#197352" d="m380.06 257.85s1.84-1.83 5.53-3.68c3.68-1.86 5.07-2.78 7.84-0.93 2.75 1.85 5.53 2.76 5.53 2.76s3.7-2.32 6.93-4.63c3.23-2.3 2.3-3.69 6.46-2.76 4.15 0.93 14.3-1.84 18-3.69 3.69-1.83 5.53 0.48 8.76-3.68 3.23-4.15 3.23-3.71 7.85-5.54s3.68-5.06 9.69-3.24c5.99 1.85 9.22 0.93 17.99 7.87 8.76 6.91 14.31 9.23 18 12.91s7.39 6.02 7.39 6.02 3.69-1.41 7.38-3.24c3.68-1.85 5.07-3.22 7.85-1.39 2.77 1.85 5.07 2.29 5.07 2.29v33.71l-139.84 0.93-0.47-33.71"/>
<path id="path120" fill="#c5baad" d="m608.34 155.84l0.18 12.97-3.3-0.16 0.86-13.65"/>
<path id="path122" fill="#c5baad" d="m608.75 141.29c0-0.97-0.76-1.74-1.71-1.74s-1.71 0.77-1.71 1.74c0 0.58 0.3 1.11 0.76 1.42v3.27l2.09-0.19-0.16-3.11c0.45-0.3 0.74-0.83 0.74-1.39"/>
<path id="path124" fill="#10503a" d="m410.05 327.54c5.08-0.44 6.46 1.4 10.62 0.91 4.15-0.46 17.54-4.13 17.54-4.13 6.92-3.24-3.7-4.17-3.7-4.17l-5.07-0.46s-0.92-0.46-5.08-3.22c-4.16-2.78-5.07-1.39-10.15 0.46-0.28 0.13-0.55 0.22-0.81 0.28-0.03 0.01-0.06 0.04-0.11 0.04-0.23 0.08-0.45 0.15-0.65 0.23-0.05 0-0.08 0.02-0.12 0.02-0.2 0.07-0.39 0.11-0.56 0.17-0.02 0-0.06 0.02-0.08 0.02-0.18 0.06-0.33 0.1-0.49 0.15h-0.01c-0.15 0.02-0.29 0.06-0.43 0.08h-0.05c-0.13 0.05-0.23 0.05-0.35 0.07-0.02 0-0.05 0.02-0.07 0.02-0.11 0-0.2 0.02-0.3 0.02h-0.03-0.29v-0.02c-0.1 0-0.18-0.02-0.27-0.02-0.02 0-0.02-0.02-0.04-0.02h-0.03c-0.65-0.11-1.28-0.4-2.65-0.6-3.23-0.44-8.32 3.25-8.32 3.25s-0.92 1.38-5.98 0c-5.08-1.39-4.16-2.32-12-2.32l-0.22 0.15c0 0.4 0 1.24 0.02 1.83 0.19 0.12 0.44 0.27 0.8 0.51 1.96 1.06 8.99 5.08 18.15 10.33 1.4-0.73 6.46-3.18 10.79-3.58"/>
<path id="path126" fill="#10503a" d="m518.97 319.69s-6.46 0.44-5.53-4.17c0.93-4.57-3.68 0.95-3.68 0.95s-3.24-0.48-9.7-4.63c-6.46-4.13-4.16 1.85-4.16 1.85s-1.74 0.99-3.77 1.52l-0.01 0.02h-0.05c-0.09 0.02-0.19 0.05-0.29 0.07-0.08 0.02-0.15 0.04-0.24 0.06-0.11 0.02-0.21 0.02-0.32 0.04-0.08 0.03-0.15 0.03-0.23 0.03-0.12 0.01-0.23 0.03-0.36 0.05-0.07 0-0.12 0-0.19 0.02-0.18 0.02-0.36 0.02-0.53 0.02-2.76 0-9.23 2.78-9.23 2.78s-2.29 1.83-5.52 0c-3.25-1.85-7.39-3.7-11.54-3.24s-6.46 6.46-6.46 6.46-2.3 1.85 0.46 4.63c2.76 2.77-0.93 1.83-5.07 2.77-4.16 0.9-5.09 0-8.77 0-10.15 0.46-21.69 4.6-11.08 5.99 10.62 1.37 28.62 0.93 33.7 1.37 5.07 0.46-2.78 4.63-13.39 4.63-10.62 0-20.77-0.93-21.68-2.78-0.93-1.85-7.39-4.14-8.77-1.85-1.39 2.34-8.76 2.78-8.76 2.78l-6.87-3.58c14.57 8.37 31.96 18.4 43.26 24.92h0.13c21.13-12.22 63.7-36.7 69.02-39.63 0.37-0.2 0.61-0.37 0.8-0.49l-1.12-0.59"/>
<path id="path128" fill="#10503a" d="m469.6 272.17s2.77-4.17-4.16-4.63c-6.91-0.47-8.76-2.3-14.76-1.39-6 0.92-10.15 0.92-10.15-1.83 0-2.77 3.23-3.69 6-1.84 2.78 1.84 3.23-0.47 6.46 0.44 3.24 0.91 4.15 0.91 6.47-0.91 2.3-1.85 2.3-2.31 5.99-1.85 3.69 0.44 4.62 0-0.92-2.31-5.53-2.32-6-0.93-3.23-5.56 2.78-4.58 1.84-7.35-2.3-6.89-4.16 0.44-4.16 2.28-6.01 5.53-1.84 3.21 3.69 5.07-3.68 6.92-7.38 1.85-15.22 0.46-18.46 0.46-3.23 0-3.23-0.93-5.53 3.22-2.31 4.16-2.31 3.69-9.69 4.64-7.39 0.9-7.39 2.76-5.54 4.12 1.85 1.41-0.45 1.86-3.69 1.86-3.23 0-5.99 0.46-9.22 0.92s-0.93 3.24-0.93 3.24 4.62 1.39-1.84 1.85c-6.46 0.45-16.61 5.06-8.77 5.53 7.85 0.44 12.92 0.44 14.31 2.29 1.39 1.83 3.23 4.63 3.23 4.63h-22.61v-21.24c6.92-3.68 12-6.89 16.62-6.45 4.61 0.46 7.84 3.69 10.61 1.84 2.78-1.84 6.46-2.28 6.46-2.28s6.47 1.84 7.39 0.44c0.92-1.37 2.75-4.17 2.75-4.17s-5.52-2.75-7.37-3.22c-1.84-0.46-2.78-1.85 0.92-2.75 3.69-0.93 0.93-4.63 0.93-4.63l4.16-0.47s2.76 3.69 1.37 6c4.16 0 3.7-1.39 8.32 1.85 4.6 3.22 9.69 0.93 9.69 0.93s10.14-4.17 8.76-8.78c-1.39-4.59-3.23-8.76 1.39-9.22 4.62-0.47 4.15 2.29 4.15 2.29s4.62-1.83 8.32-1.83c3.68 0 6.45-0.93 6.45-0.93l5.08 3.69c-7.39 0.92-8.31 0-9.69 3.72-1.39 3.67-1.84 6.45-2.77 7.82-0.93 1.39 3.68 1.39 3.68 1.39s3.69 0.92 6.92-2.76c3.23-3.7 6.93-6.45 6.93-6.45s5.53 3.67 8.76 6.45c3.22 2.76 8.3 5.53 10.61 7.83 2.3 2.31 5.99 5.52 10.61 6.45 4.62 0.92 8.29 3.7 8.29 3.7l-0.45 6s-6.91-3.68-12.46 0c-5.53 3.7-5.08 1.41-9.24 1.41-4.15 0-9.22-1.41-11.99-1.41-2.76 0-10.6 2.78-14.3 2.78-3.69 0-4.15 0-9.23-1.86-5.06-1.85-4.61-0.44-7.84 0.93-3.23 1.39-6 0-10.62 2.76s-7.85 1.4-7.85 1.4 3.7-1.4 0.46-4.65c-3.23-3.21-1.84-5.53-1.84-5.53s-4.62-6.9 0-5.53c4.61 1.41 5.08 4.16 11.07 5.09 6.01 0.93 14.31 0.93 14.31 0.93h9.7"/>
<path id="path130" fill="#596e60" d="m447.73 111.2c-0.69-1.41-0.34-1.89 0.18-3.11 0.5-1.25 0.33-1.58 0.16-2.27-0.16-0.7-1.56-1.56 0.51-1.04 2.08 0.53 1.73 0.18 2.94 0.32 1.22 0.19 1.91 1.05 1.39 1.91-0.5 0.86 0 1.39-1.39 2.08-1.37 0.68-2.06 1.03-2.41 1.56-0.34 0.53-1.39 0.53-1.39 0.53"/>
<path id="path132" fill="#596e60" d="m453.96 109.64c0.87-0.33 2.09 0 1.04 0.51-1.04 0.5-1.04-0.51-1.04-0.51"/>
<path id="path134" fill="#596e60" d="m444.44 109.97c0.52-0.35 0.17-0.88 0.87-1.02 0.69-0.17 0.69-0.17 0.51-1.23-0.16-1.04 0.16-1.21-0.86-1.72-1.04-0.51-1.91-0.69-1.21 0.15 0.69 0.86 0.52 1.75 0.52 1.75l-1.22 1.19s0.87 1.23 1.39 0.87"/>
<path id="path136" fill="#596e60" d="m459.49 115.36c0-0.89 0.53-1.24-0.34-1.91-0.87-0.7-1.57-1.72-0.35-1.03s3.12 1.36 2.08 2.25c-1.03 0.86-1.39 0.69-1.39 0.69"/>
<path id="path138" fill="#596e60" d="m457.94 115c0-1.04 1.03-1.9 0.86-0.88-0.17 1.05-0.86 0.88-0.86 0.88"/>
<path id="path140" fill="#596e60" d="m432.71 128.76c0.69-0.39 0.13-0.79 0.91-0.61 0.79 0.17 0.7 0.17 1.04 0.57 0.35 0.4 0.56 0.77-0.13 0.58-0.7-0.16-0.51 0.08-1-0.08-0.47-0.15-0.82-0.46-0.82-0.46"/>
<path id="path142" fill="#596e60" d="m431.76 127.03c-0.28-1.22-0.69-1.42-1.21-1.24-0.53 0.17-1.13-0.51-0.48-0.51s0.7-0.29 1.6 0.62c0.92 0.92 1.82 2.12 1.04 1.96-0.78-0.15-0.87-0.45-0.95-0.83"/>
<path id="path144" fill="#596e60" d="m470.22 147.18c-0.17-1.54 0-2.23 0.7-3.64 0.69-1.34 1.38-2.75 0.17-3.64-1.21-0.84-1.04-1.34-1.04-2.23 0-0.86 1.21-1.56-0.86-1.72-2.09-0.17-3.29 0.34-5.02 1.05-1.73 0.67-2.95 0-3.98-1.05-1.04-1.03-1.39-1.91-1.73-2.59-0.35-0.69 0.17-1.75-0.18-2.96-0.32-1.2-0.15-2.25 0.69-3.64 0.88-1.37 1.74-2.25 1.74-2.25l0.51-1.53s-0.34-0.7 1.22-0.87c1.56-0.19 2.42-0.89 3.47-1.4 1.03-0.51 1.03-0.17 1.55 0.51 0.5 0.7 0.68 0.35 1.9 0.7 1.2 0.36 1.55 0.17 1.38-0.35-0.18-0.51 0.17-0.51 1.21-0.7 1.04-0.16 2.07-0.51 1.73-1.7-0.34-1.24-0.34-1.06-1.21-0.69-0.86 0.33-0.86 0-1.38-0.72-0.52-0.69-0.69-1.2 0-1.73 0.68-0.5 1.73-1.03 0.34-1.72-1.39-0.68-3.12-0.88-2.25 0.53 0.86 1.37 1.38 1.37 0.69 2.39-0.69 1.05 0.52 2.59-0.52 1.58-1.04-1.05 0.52-1.74-2.08-2.6-2.59-0.86-2.59 0-1.2 0.69 1.38 0.7 2.25 1.38 2.07 2.07-0.15 0.68-0.68-0.16-0.68-0.16s-0.52-0.33-1.73-1.05c-1.21-0.69-2.31-0.53-2.42 0.72-0.18 1.88 0.52 2.23-1.39 2.74-1.9 0.53-1.73 0.18-2.07-1.02-0.36-1.23-1.22-2.09 0.51-2.09 1.74 0 2.08-0.51 1.22-1.19-0.87-0.71-0.87-0.71-0.18-1.75 0.7-1.05 0.52-1.89 1.91-2.42 1.38-0.53 1.38-1.39 1.21-1.9s-0.69-0.7-1.56-1.21c-0.86-0.53-2.25-2.06-1.56-0.88 0.7 1.21 1.38 1.91 1.73 2.27 0.34 0.33-0.35 1.34-1.03 0.48-0.7-0.84-0.7 0.38-1.39-0.31-0.69-0.72-1.22-1.74-1.04-2.78 0.18-1.03-0.7-1.91 0.69-1.91s2.08 0 2.08-1.02c0-1.04 0.34-0.71-1.91-1.57s-4.15-1.19-4.32-2.05v-0.28c10.45 1.39 19.16 8.29 23.13 17.66l-0.29-0.79s0 1.39 0.18 2.76c0.16 1.39 0.33 2.62-0.18 4.34-0.5 1.75-0.85 0.16-1.55-1.2-0.69-1.38-2.76-3.63-2.76-3.63l-0.7 0.49s1.73 2.25 2.95 3.99c1.21 1.74 1.89 2.76 1.89 2.76l1.03-1.38s0.36 3.81-0.34 5.86c-0.69 2.07-0.85 2.78-1.2 5.89-0.34 3.11-0.7 2.42-1.21 3.81-0.51 1.37-1.39 2.78-2.41 4.67l-2.61 1.83-1.9-1.49"/>
<path id="path146" fill="#596e60" d="m434.75 148.23s-0.17-1.39-1.73-2.94c-1.56-1.54-2.08-3.09-2.78-5.03-0.69-1.9-0.86-2.94-0.16-4.15 0.69-1.19 1.2-1.39 0-2.43-1.21-1.01-1.74-0.66-1.9-2.95-0.17-2.23-1.2-2.76-1.9-4.12-0.69-1.4-1.21-1.57-0.35-4.52 0.87-2.94 0.52-5.7 1.22-6.89l-0.8 1.72c3.24-6.1 8.58-10.92 15.07-13.5l0.12 0.75c-0.07 0.41-0.03 1.06 0.48 2 1.03 1.92 1.21 1.55-1.21 2.25-2.42 0.67-2.94 0.67-2.59 2.25 0.34 1.58 0 2.61 0 2.61s0.85-0.86 1.55-1.39c0.69-0.53 0.69-0.86 1.37-1.57 0.7-0.66 1.05 0.18 1.57 0.35 0.52 0.2 0.17-0.7 0.7 1.75 0.5 2.42 1.02 5 0.16 4.14-0.86-0.88-0.16-1.21-1.56-1.39-1.38-0.17-1.9 0.34-1.9 0.34s1.2 1.21 0 1.58c-1.2 0.31-1.2-0.37-1.89 0.31-0.7 0.69-1.39 0.2-2.44 1.39-1.03 1.22-2.25 2.08-2.25 2.08s-1.2-0.14-1.2 1.39c0 1.56-0.53 2.25-0.7 1.19-0.17-1.02-0.17-1.55-1.56-2.08-1.38-0.5-2.43-0.86-2.77 1.06-0.35 1.89-0.16 4.66 0.69 3.64 0.87-1.06 1.9-0.91 1.09 0.29-1.11 1.64-0.55 1.77-0.05 2.45 0.52 0.7 0.35 0.53 0.18 1.57-0.18 1.05 0 1.91 0.51 1.91 0.52 0 0.7 0.71 1.56 0 0.85-0.7 1.74-0.7 2.77 0.16s2.08 0.18 3.28 2.09c1.21 1.9 1.39 1.53 2.43 2.08 1.03 0.51 0.17-0.53 1.9 1.89s2.08 2.08 3.81 2.78c1.74 0.67 5.54 1.37 3.81 2.92-1.73 1.58-1.56 1.39-1.73 2.44s-0.52 1.37-0.52 1.37-2.83-1.67-5.36-1.43c-2.53 0.23-6.68 2.29-6.68 2.29l-0.24-0.68"/>
<path id="path150" fill="#fff" d="m450.27 375.24s67.5-38.87 75.29-43.21c7.79-4.31 7.44-9.5 7.44-14.17v-72.69l-2.39-2.61c-5.7-4.67-9.34-11.76-9.34-19.7 0-8.96 4.58-16.83 11.56-21.37l2.44-1.64-6.11-10.99c-14.3-1.85-25.82-13.4-29.44-26.01h-49.45l-0.15 12.84h40.82c5.4 10.75 14.64 19.04 25.81 23.23-5.41 6.78-8.36 15.13-8.36 23.92 0 10.36 4.25 20.35 11.7 27.54-0.07 16.07 0.03 63.55 0.03 67.48v0.59c0 0.4 0 1.24-0.03 1.83-0.18 0.12-0.42 0.27-0.78 0.49-5.32 2.93-47.89 27.41-69.02 39.63h-0.14c-21.14-12.22-63.71-36.7-69.03-39.63-0.36-0.2-0.61-0.37-0.79-0.49-0.03-0.59-0.03-1.43-0.03-1.83v-0.59c0-3.93 0.11-51.41 0.03-67.48 7.45-7.19 11.71-17.18 11.71-27.54 0-8.78-2.95-17.14-8.35-23.92 11.16-4.17 20.39-12.48 25.81-23.23h40.63l0.03-12.84h-49.45c-3.61 13.66-15.13 24.16-29.44 26.01l-6.1 10.99 2.43 1.64c6.96 4.54 11.55 12.41 11.55 21.37 0 7.94-3.64 15.01-9.34 19.7l-2.39 2.61v72.69c0 4.67-0.35 9.84 7.43 14.17 7.78 4.34 75.28 43.21 75.28 43.21h0.12"/>
<path id="path152" fill="#fff" d="m422.11 296.2c2.08-2.94 1.04-4.31 1.04-4.31l9.52-0.21 2.07 5.74c-1.9 0-3.3-0.86-3.3-0.86l-9.5 0.16-1.56 1.54"/>
<path id="path154" fill="#fff" d="m422.28 290.31c3.12-1.02 8.83-0.14 8.83-0.14s1.39-1.92 0.17-4.86l-9.34-0.68s1.89 1.04 0.32 5.7"/>
<path id="path156" fill="#fff" d="m424.19 283.75l5.7 0.51s1.05-1.39 0.7-2.59l-6.23-0.35s0.33 0.52-0.17 2.43"/>
<path id="path158" fill="#fff" d="m432.5 287.72l0.86 4.7 2.95-0.2-2.78-4.5h-1.03"/>
<path id="path160" fill="#fff" d="m420.39 295.17v-3.47l-11.43-1.53s1.04 1.37 0 6.22l11.43-1.22"/>
<path id="path162" fill="#fff" d="m411.56 289.81c1.39-2.27 2.08-4.86 1.04-7.78l10.38 0.33s-1.2 0.17-1.72 2.95l-0.53 2.77-9.17 1.73"/>
<path id="path164" fill="#fff" d="m421.42 282.03c-3.98-0.86-8.66-1.39-8.66-1.39l0.18-3.11 7.26 0.53s1.04 1.36 1.21 3.97"/>
<path id="path166" fill="#fff" d="m412.25 287.72l-6.75-0.52s0.69-2.77-0.87-6.03l7.62 0.86"/>
<path id="path168" fill="#fff" d="m408.62 290.17l-5.36-0.22c0.86 4.36 1.2 4.7 0 6.95l5.36-0.86v2.43"/>
<path id="path170" fill="#fff" d="m490.71 300.54c-6-7.39-5.88-17.52-5.88-17.52l-5.3 2.29v17.28l13.96-2.62"/>
<path id="path172" fill="#fff" d="m477.56 302.28c-1.96-5.66-3.23-12.93-1.5-16.97 0 0-5.89 8.2-8.42 14.53l9.93 2.42"/>
<path id="path174" fill="#fff" d="m564.39 126.59s1.2-2.75 1.55-3.63c0.35-0.87 0.35-1.74 2.26-1.54 1.89 0.17 8.64 0.17 8.64 0.17s1.55 0.5 2.61 1.37c1.02 0.88 1.38 2.76 1.71 3.63 0.34 0.88 0 2.25-0.85 1.56-0.86-0.68-2.08-0.84-2.08-0.84l-11.25-0.53-2.59-0.17"/>
<path id="path176" fill="#fff" d="m497.57 145.45l-1.39-72.168h-1.38l-1.39 72.168"/>
<path id="path178" fill="#fff" d="m289.37 149.39s16.84 193.13 17.3 195.91c0.47 2.78 2.55 1.85 2.55 1.85l-18.24-199.37"/>
<path id="path180" fill="#fff" d="m288.33 137.17l-0.52-5.36 1.39-1.75 0.86 6.94"/>
<path id="path182" fill="#fff" d="m288.85 129.01l-1.04-9.16-1.56 0.86 1.21 9"/>
<path id="path184" fill="#ffd90f" d="m450.23 372.66c8.09-4.69 67.01-38.59 74.22-42.58 6.31-3.51 6.3-7.28 6.29-11.65v-0.57c0-4.35-0.05-63.82-0.01-71.81l-1.71-1.88c-6.37-5.27-10.01-13.03-10.01-21.31 0-9.4 4.7-18.11 12.58-23.24-0.01 0 0.3-0.21 0.69-0.48l-4.56-8.2c-14.02-2.25-25.43-13.25-29.7-25.84h-47.76l-0.08 8.36h42.14c5.54 11.88 15.79 20.72 28.31 24.44-6.35 6.62-10.01 15.52-10.01 24.96 0 10.15 4.25 19.76 11.72 26.58-0.08 16.35 0.03 64.49 0.03 68.42v0.59c0.01 1.01 0.01 2.56-0.16 2.96-0.02 0.02-0.36 0.51-1.81 1.35-5.67 3.11-50.3 28.79-70.14 40.24h-0.08c-19.83-11.48-64.49-37.13-70.13-40.24-1.46-0.84-1.8-1.33-1.83-1.35-0.15-0.42-0.15-1.95-0.15-2.96v-0.59c0-3.93 0.1-52.07 0.02-68.42 7.46-6.82 11.71-16.43 11.71-26.58 0-9.47-3.65-18.34-10.01-24.96 12.52-3.72 22.77-12.56 28.31-24.44h41.96l0.09-8.36h-47.75c-4.26 13.62-15.68 23.59-29.7 25.84l-4.56 8.2c0.4 0.27 0.7 0.48 0.69 0.48 7.88 5.13 12.59 13.82 12.59 23.24 0 8.28-3.66 16.04-10.02 21.31l-1.71 1.88c0.04 7.99-0.01 67.46-0.01 71.81v0.57c-0.01 4.37-0.02 8.12 6.29 11.65 7.21 3.99 66.13 37.89 74.22 42.58h0.05"/>
<path id="path186" fill="#ffd90f" d="m436.11 149.66c-2.26-2.1-4.34-3.07-7.37-3.07-1.93 0-3.57 1.39-5.88 2.14 0.28 0.27 0.6 0.59 0.97 0.93 2.26 2.12 2.46 5.87 6.61 6.68 0 0-0.14 0-0.4 0.03 3.69 0.61 12.68-0.03 12.68-0.03-4.16-0.81-4.34-4.56-6.61-6.68"/>
<path id="path188" fill="#ffd90f" d="m460.67 149.66c-2.26-2.1-4.33-3.07-7.35-3.07-1.93 0-3.58 1.39-5.89 2.14 0.28 0.27 0.61 0.59 0.98 0.93 2.26 2.12 2.46 5.87 6.61 6.68 0 0-0.15 0-0.41 0.03 3.7 0.61 12.68-0.03 12.68-0.03-4.16-0.81-4.34-4.56-6.62-6.68"/>
<path id="path190" fill="#ffd90f" d="m477.89 146.59c-1.93 0-3.57 1.39-5.89 2.14 0.29 0.27 0.6 0.59 0.98 0.93 2.26 2.12 2.46 5.87 6.61 6.68 0 0-0.15 0-0.41 0.03 4.67 0.29 8.18 0.86 8.18-3.16s-4.45-6.33-9.47-6.6"/>
<path id="path192" fill="#ffd90f" d="m436.83 46.226c-4.16-0.441-4.85 2.983-4.85 2.983s2.78-1.142 4.62-0.442c0.46 0.173 0.92 0.205 1.34 0.334l0.49-1.658-1.59-1.217"/>
<path id="path194" fill="#ffd90f" d="m447.67 99.778s-0.54-1.238-0.69-2.541l-1.88 0.151c0.39 0.689 0.35 1.787 0.49 2.39 0 1.562 0.32 2.582-1.5 3.092-1.81 0.53-2.42 0.88-2.68 2.61 0.78-0.78 1.38-1.91 2.17-1.2 0.77 0.7 1.9 1.12 1.9 1.12s-1.21-1.56 0.52-2.09c1.73-0.52 4.76-0.44 4.76-0.44s-2.18-1-2.52-1.7c-0.34-0.69-0.58-1.392-0.58-1.392"/>
<path id="path196" fill="#ffd90f" d="m459.9 100.22s-0.23 0.93-0.69-2.779c0 0 0-0.269-0.15-0.936l-1.65 0.247c0.12 0.571-0.05 1.282 0.41 2.778 0.17 0.69-1.01 0.93-1.7 1.79 0 0 2.69-0.34 2.43 0.97-0.25 1.26 0.26 2.22 0.26 2.22s0.52-0.5 1.22-0.86c0 0 0.76 0.08 2.25 0.52 1.46 0.42 1.98 1.29 1.98 1.29s0.78-2.25-1.55-3.45c-1.99-0.95-2.68-1.47-2.68-1.47"/>
<path id="path198" fill="#ffd90f" d="m564.9 119.61c3.47-1.85 6.46-3.24 8.31-2.76 1.85 0.44 7.39 2.3 7.39 2.3s0.4-2.48-0.93-2.99c-5.31-2.08-8.76-3.01-11.77-1.16-3 1.85-0.48 0.88-3 1.85-0.92 0.34-0.86 3.29 0 2.76"/>
<path id="path200" fill="#ffd90f" d="m570.09 179.73c1.04-3.47 3.47-9 3.47-11.78 0-1.37-0.25-2.87-0.35-4.16l-7.27 0.17s-3.46-14.03-5.54-17.28l-0.19-0.35c-3.9 0.72-11.6 2.42-13.14 5.01 0 0-0.69 3.97-2.42 6.39-1.72 2.42-2.42 4.68-2.42 4.68s2.77 9-0.68 11.41c-3.47 2.42-4.5 2.93-4.5 2.93s2.25 9.53-2.08 21.63l-0.17 0.19s2.25 4.48 4.33 2.76c2.08-1.73 0.34-3.31 2.95-7.62 2.58-4.34 12.09-17.64 12.09-17.64s3.64 9.86 2.08 14.03c-1.55 4.14-2.08 6.22-0.68 7.08 2.25-2.08 4.33-2.78 9.17-3.64 0.52-0.11 0.97-0.18 1.38-0.25 0.67-2.29 3.08-10.62 3.98-13.58"/>
<path id="path202" fill="#ffd90f" d="m604.02 170.06c-2.77-1.92-3.99-4.89-5.36-9.19-1.38-4.33-2.43-5.89-3.46-7.97-1.05-2.67-7.69-4.57-11.08-5.7l-0.17-0.17 3.63 16.44-9.6 0.24h-0.14c0.19 0.79 0.32 1.83 0.23 3.23-0.34 5.2-1.04 6.92-3.12 13.14-1.91 5.72-4.09 11.74-4.45 12.66 0.79-0.02 1.75-0.02 3.24-0.02 4.67 0 7.44 0.2 10.04 1.04 2.6 0.86 3.45 1.04 3.45 1.04s0.35-0.35 1.39-1.55c1.03-1.22 6.05-2.09 6.75 2.08l1.03 2.75s0-5.69 1.05-10.39c1.03-4.66 0.33 0.36 1.55 0 1.21-0.35 1.73-2.41 2.59-5.16 0.87-2.78 2.43-3.47 3.47-6.95 1.03-3.44 1.73-3.64-1.04-5.52"/>
<path id="path204" fill="#ffd90f" d="m593.64 261.42s0.34-0.33-1.05 0.34c-1.39 0.7 0.35-2.06 0.35-2.06l-1.74 1.72v-1.72l-1.03 2.41v-3.47l-1.73 2.78v-3.11l-1.39 1.7 1.04-12.8v-0.34s0.69-0.34 2.08-10.73c1.38-10.36 2.08-21.8 2.08-31.15-1.73-2.07-6.22-4.15-10.39-4.85-4.16-0.69-2.41-1.38-8.3-1.04-5.88 0.35-10.04 0.69-13.85 1.74-3.8 1.03-6.22 3.8-6.22 3.8s-0.7 4.15-2.42 7.96c-1.74 3.8-1.74 9-3.11 21.44-1.39 12.47-0.35 18 0.69 24.94 1.03 6.9-0.69 8.31-2.08 19.7-1.39 11.42-2.08 20.11-3.47 27.7-1.39 7.61-1.73 10.05-1.03 14.87 0.69 4.86-1.39 7.27-3.47 11.08-2.08 3.8-4.15 7.61-4.15 11.41 1.73-3.78 5.18-5.52 8.31-2.77 3.11 2.77 6.56 5.21 6.56 5.21l22.51 1.37s2.76-0.35 5.87-3.11c3.12-2.76 3.46-2.42 5.54-0.35s5.53 1.02 5.53 1.02 2.08-2.41 4.5-3.43c2.44-1.05-1.73-20.43-1.73-31.85 0-11.43 1.04-40.51 2.09-47.44v-1.01"/>
<path id="path206" fill="#ffd90f" d="m339.67 115.11s-0.45-1.06-1.03-1.5c-0.58-0.46-0.35 0.81-1.27-0.09-0.93-0.93-1.15 0.44-1.5 0-1.2-1.63-1.38 0-2.18-0.93-0.81-0.93-0.93 0.8-2.08 0.23-1.14-0.6-0.35 0.57-1.62 0.12-1.27-0.48-0.8 0.45-1.94 0.32-1.16-0.11-1.04 0.26-1.74 0.26-0.69 0-1.15 0.44-1.15 0.44s-0.93 0-1.5 0.33l-0.34 1.15-0.24 1.85c2.44-1.61 4.73-3 8.77-3 4.03 0 6.35 0.46 7.84 0.8"/>
<path id="path208" fill="#ffd90f" d="m312.21 192.07s2.77 0.21 6.01-0.67c3.21-0.93 4.61-1.85 8.76 0 4.13 1.83 9.45 2.75 13.37 2.75 3.91 0 1.83 1.16 5.07-1.16 3.22-2.28 6.91-1.15 4.84 2.53 2.99 2.78 2.76 4.62 0.69 6.01 0 0 7.84 30.68 7.84 36.44-7.61-0.2-13.15 1.86-13.15 1.86l-0.47-38.78s-9 0.94-13.38 1.16c-4.36 0.25-1.84-1.37-6.68-3.68-4.84-2.3-12.69-1.16-12.69-1.16s1.38-1.36 0.23-5.3"/>
<path id="path210" fill="#ffd90f" d="m363.21 343.78c3.69-1.26 2.65-1.13 3.58-2.05 0.93-0.93 1.49-1.52 1.49-1.52l1.26 2.09 1.39 2.41 0.79-0.67 0.12-0.59 0.69-0.46 0.58 0.79 0.47-0.46 0.92 0.93-0.11 0.7 0.23 0.46-1.03 1.15-0.57-0.69-0.93 1.03 1.72 2.42s3.34-1.72 4.38-4.5c1.03-2.78 1.73-5.65-0.91-6.35-2.66-0.67-4.39-1.96-5.43 0.23-1.04 2.21-2.3 3.47-2.3 3.47l-1.39-1.98s1.5-3.55 2.89-4.48c1.38-0.93 3.93-0.69 5.77 0 1.83 0.68 5.29 1.6 4.95 4.84-0.35 3.23-0.68 6.45-2.98 8.08-2.31 1.61-3.7 2.41-3.7 2.41l0.59 0.59s0.58-1.41 4.27-1.28c3.68 0.12 5.64-0.11 7.61 1.75 1.94 1.83 3.09 2.05 2.29 5.4-0.79 3.34-2.06 6.22-3.68 6.14-1.61-0.13-5.42-0.25-5.42-0.25l-0.68-1.85s3.23 0.25 4.37 0.25 1.72-0.11 2.41-2.19c0.7-2.1 1.39-3.95 0.24-4.86-1.15-0.92-2.19-2.88-5.19-2.31-2.98 0.59-5.18 1.17-5.18 1.17l0.79 2.64 1.38-0.11v-0.57l0.93-0.35 0.58 0.46 0.46-0.22 0.59 1.5-0.59 0.33 0.24 1.15-0.81 0.24-0.46-0.59-0.92 0.59 2.07 4.48s-5.88-0.22-7.38 0.93c-1.49 1.14-1.84 1.14-1.84 1.14s-0.11-4.36-1.84-8.06c-1.74-3.7-3.23-8.9-4.73-10.62-1.49-1.74-1.96-2.78-1.96-2.78"/>
<path id="path212" fill="#ffd90f" d="m381.1 344.73c0.58 0 1.5-0.33 2.42 0.34 0.93 0.67 0.24 1.03 1.16 0.57 0.91-0.47 2.06-2.42 1.14-0.11-0.93 2.29-0.81 3.94 0.09 3.45 0.93-0.46 1.74-0.8 1.62 0.23s-0.12 0.8-1.5 1.16c-1.36 0.34-2.29-0.7-3.91-0.23-1.61 0.44-6.92 1.93-6.92 1.93l-0.45-0.9 4.26-2.99 1.73-2.54 0.35-0.93"/>
<path id="path214" fill="#ffd90f" d="m458.3 232.53c3.56-2 5.96-5.83 5.96-10.22 0-6.49-5.26-11.76-11.75-11.76-6.48 0-11.74 5.27-11.74 11.76 0 5.84 4.28 10.7 9.88 11.58"/>
<path id="path216" fill="#d18644" d="m402.56 297.78l1.9 3.45h26.32s2.41-1.39 3.8-3.45c-5.19 1.17-23.54 0.84-26.66 0.84-3.1 0-5.35-0.84-5.35-0.84"/>
<path id="path218" fill="#d18644" d="m475.13 306.06h14.88s1.84-1.02 1.15-3.58c0 0-10.73 1.06-17.07 0.81 0 0-0.35 0.94 1.03 2.77"/>
<path id="path220" fill="#d18644" d="m445.32 219.81c0.6-1.21 0.93-1.35 2.35-1.28 1.42 0.05 1.54-0.51 2.5-0.46 0.93 0.05 1.08 0.84 1.08 0.84s-0.65-0.79-1.63 0.06c-1.3 1.15-3.26 0.73-3.26 0.73l-1.18 0.6 0.14-0.49"/>
<path id="path222" fill="#d18644" d="m459.94 219.81c-0.6-1.21-0.92-1.35-2.34-1.28-1.43 0.05-1.54-0.51-2.49-0.46-0.96 0.05-1.1 0.84-1.1 0.84s0.67-0.79 1.63 0.06c1.32 1.15 3.27 0.73 3.27 0.73l1.18 0.6-0.14-0.49"/>
<path id="path224" fill="#d18644" d="m450.27 224.01c0.93 0.15 1.74 0.26 2.43 0.15 0.69-0.15 1.39-0.15 1.84-0.24 0.46-0.09 0.91 0 0.12 0.33-0.81 0.35-1.27 0.69-1.86 0.69-0.58 0-1.37-0.21-1.84-0.45-0.45-0.24-0.69-0.69-0.34-0.58"/>
<path id="path226" fill="#d18644" d="m449.34 226.79c1.85-0.11 1.61 0 2.88-0.11 1.27-0.1 3.22 0 3.22 0l0.29 0.53s-0.17 0.04-1.2 0.04c-1.04 0-2.19-0.11-3.11 0-0.93 0.13-2.29-0.02-2.29-0.02l0.2-0.42"/>
<path id="path228" fill="#d18644" d="m454.54 228.89c-1.04 0-1.96-0.49-2.77-0.49s-1.5 0.83-0.58 0.7"/>
<path id="path230" fill="#d18644" d="m449.87 222.66s-1.96 1.94-2.31 2.28c-0.34 0.37-0.12 0.25-0.12 1.41 0 1.14-0.69 1.36-0.69 1.36s1.5-3.8 2.78-4.96"/>
<path id="path232" fill="#d18644" d="m454.94 222.66s1.96 1.94 2.3 2.28c0.34 0.37 0.12 0.25 0.12 1.41 0 1.14 0.69 1.36 0.69 1.36s-1.5-3.8-2.77-4.96"/>
<path id="path234" fill="#d18644" d="m564.9 116.85c2.31-1.41 0 0 3-1.85s6.46-0.92 11.77 1.16l-0.23-0.32c-0.52-2.06-1.05-2.06-3.12-3.62-2.08-1.55-3.99-1.55-5.88-1.55-1.91 0-3.3 1.55-4.68 3.11-1.37 1.58-1.19 3.14-1.19 3.14l0.33-0.07"/>
<path id="path236" fill="#d18644" d="m579.99 127.83s-0.89-0.36-0.2 0.78c0.69 1.15 1.05 1.72 0.81 3.47-0.39 2.88-1.61 2.09-1.61 5.99 0 3.91-0.46 7.38-0.46 7.38l1.38 0.72 0.93 0.31s-0.53-0.86 1.9 0.2c1.04 0.44 3.24 1.06 5.54 1.88l0.34-0.16s-0.17 0-0.34-0.53 0.17-1.19 0.85-1.54c0.69-0.35 0.34-1.22-0.5-3.8-0.87-2.6-1.56-2.27-3.29-3.81-1.74-1.55-1.22-2.08-1.39-6.05s-1.04-5.7-2.42-9c-1.39-3.29-0.88-4.33-0.88-4.33l-0.05-0.17s-5.53-1.85-7.39-2.3c-1.83-0.48-4.83 0.91-8.3 2.76l-0.34 0.23s-0.16 1.03-1.38 1.75c-1.22 0.67-1.73 1.89-2.95 3.95-1.2 2.08-1.2 4.16-0.17 6.75 1.04 2.61-0.52 2.25-2.59 3.3-2.07 1.03-2.6 4.84-3.81 6.22-1.21 1.37 1.21 1.56 0.34 3.28-0.86 1.73-0.86 1.22-0.16 2.61l0.03 0.11c4.15-1.22 8.62-1.85 8.62-1.85l0.32-0.05 2.55-0.92s1.37-2.54 1.37-6.47c0-3.91-0.69-6.69-0.69-6.69l-1.61-0.7s2.3-1.37 2.09-2.29c-0.24-0.93-0.24-2.31-0.24-2.31v0.06c-1.9 0.15-2.08 0.15-2.08 0.15s0.39-1.11 1.04-2.59c0.69-1.54 1.04-2.77 2.08-2.58l0.34-0.37c0.46-2.52 1.39-2.28 2.09-0.9 0.69 1.37 2.99 0.22 3.47-1.62 0.45-1.83 1.84-1.15 2.07-0.22 0.23 0.91 1.61 2.98 1.61 2.98l0.29 0.13s0.68-0.72 2.08 1.02c1.36 1.75 1.72 1.9 2.25 4.34 0.5 2.41-1.91 0.36-1.91 0.36l0.37 0.52"/>
<path id="path238" fill="#d18644" d="m352.6 150.21s-3.35-0.6-7.16-1.75c-3.81-1.14-5.3-4.03-5.3-4.03l-0.35-0.35 0.35 0.91c-1.52-2.88-0.93-5.28-0.81-9.21 0.11-3.91 0.81-4.14 1.27-6.69 0.46-2.54 0.81-2.9 0.35-6.7-0.46-3.79-3.12-3.79-4.96-4.48-1.85-0.7-2.54-3.11-2.54-3.11s-2.41 1.95-4.04 2.39c-1.6 0.46-4.27 4.06-4.84 6.02-0.57 1.95-1.61 2.07-1.61 2.07s-0.23 2.07-0.1 3.9c0.1 1.85 2.07 0.95 2.07 0.95s0.1 0.69 0.23 4.04c0.12 3.31 0.24 4.34-0.34 5.98-0.59 1.63-2.55 2.65-2.55 2.65v-0.1s-4.95 2.88-8.4 3.45c-3.47 0.59-5.43 1.28-5.43 1.28 2.65-5.32 2.65-9.46 5.77-12.8 3.11-3.35 4.37-4.3 4.37-4.3s-0.57-4.14-0.22-6.11c0.33-1.96-0.11-2.3 0.33-3.56 0.46-1.27 0.12-1.62 1.95-2.31 1.84-0.7 1.96-0.7 1.96-0.7s0.69-1.04 2.65-1.83c1.96-0.82 3.23-1.04 5.07-1.28 1.85-0.23 3 0.13 5.32 0.24 2.3 0.1 4.15 0.35 5.41 2.07 1.27 1.73 4.72 7.95 2.99 13.72 2.66 3.69 2.89 5.67 3.82 8.32 0.92 2.65-0.93 1.72 1.15 2.42 0.52 0.17 0.83 1.24 1.03 1.29 0.58 0.06 0.21-0.97 1.5 2.29 1.73 4.37 1.61 5.3 1.61 5.3"/>
<path id="path240" fill="#d18644" d="m338.64 113.61c-0.58-0.46-0.35 0.81-1.27-0.09-0.93-0.93-1.15 0.44-1.5 0-1.2-1.63-1.38 0-2.18-0.93-0.81-0.93-0.93 0.8-2.08 0.23-1.15-0.6-0.36 0.57-1.62 0.12-1.27-0.48-0.8 0.45-1.94 0.32-1.15-0.11-1.03 0.26-1.74 0.26-0.68 0-1.14 0.44-1.14 0.44s-0.93 0-1.5 0.33l0.12-0.24s1.27-2.64 2.08-3.8c0.81-1.14 1.84-2.4 4.96-2.4 3.1 0 4.5-0.35 6.56 2.63 2.08 3.01 1.27 2.91 1.27 2.91v0.22"/>
<path id="path242" fill="#d18644" d="m294.25 114.92l0.13-0.08h-3.64c-2.42 0-2.59-0.7-2.59-0.7s-0.35-1.39-1.57-2.94c-0.16-1.74-1.38-4.17-1.38-4.17 0.17-0.86 0.7-3.11-0.17-4.67 1.91-0.33 2.77-1.88 3.64-3.799 0.86-1.895 0.52-1.195-1.21-1.367-1.72-0.172-5.18-0.355-5.87 3.956-1.91 1.91-2.94 3.99-2.25 6.41-1.03 3.11-0.17 3.47 0.34 4.17-0.69 1.21 0.15 2.58 0.15 2.58-1.02 2.27-0.84 3.64 0 5.19 0.1 0.2 0.19 0.28 0.26 0.36-0.02 0.04-0.04 0.1-0.06 0.17-0.86 2.08-1.04 3.64-1.22 5.53l0.34-0.21c0.08 0.4 0.45 0.63 1.04 0.57 1.38-0.17 4.33-1.06 6.05-1.75l2.08-1.19c3.98-2.76 5.7-4.85 6.22-6.4 0.29-0.88 0.42-1.6-0.3-1.66"/>
<path id="path244" fill="#d18644" d="m311.69 344.67s1.92 0.97 3.81 1.39c3.11 0.7 6.4-2.94 6.4-2.94l-2.08-2.09-3.47 1.91s-0.51-1.21 0.53-1.74c1.03-0.53 1.21-0.69 1.21-0.69l-0.69-0.7 0.86-1.03 5.87 3.81 1.21-0.51 1.39 0.7-6.39 5.17-5.55 1.06-1.02-0.2-3.64-2.58 1.04-1.72"/>
<path id="path246" fill="#d18644" d="m347.87 344s5.71 7.26 10.56 8.28c4.84 1.03 7.26-0.34 7.26-0.34l-0.34-1.74-1.56 0.33s-0.69 1.06-1.39 0.89c-0.69-0.16-0.86-0.36-0.86-0.36s-0.17 0.7-1.22 0.53c-1.03-0.17-1.2 0.33-2.75-1.22-1.55-1.58-3.63-3.79-3.63-3.79s-0.17-1.57 1.38-1.41c1.55 0.2 2.92 0.2 4.32 1.41 1.38 1.2 0.68 0.49 0.68 0.49s-0.85-0.84-0.32-1.18c0.49-0.38 1.37-0.88 1.37-0.88l-0.5-0.7-3.12-1.37s-4.67-0.16-5.36 2.59l-3.47-2.25-1.04 0.7"/>
<path id="path248" fill="#d18644" d="m574.25 347.09s2.76 2.78 5.53 3.97c2.77 1.22 3.8 1.37 6.05 1.06 2.26-0.36 4.32-0.7 4.32-0.7l-0.51-2.27-2.59 0.86s-0.86 1.05-2.08 0.36c-1.22-0.7-0.52 0.34-2.6-0.7-2.08-1.03-3.99-3.11-3.99-3.11l3.81-3.11s0.88-2.61-3.11 0.33c-3.98 2.95-4.84 3.29-4.84 3.29"/>
<path id="path250" fill="#d18644" d="m547.07 344.48l-2.25 2.44-2.42-2.61 1.38-2.25-1.21-0.84-1.56 2.56-4.49-1.36-0.33 0.86s3.81 1.73 3.28 3.28c-0.5 1.56-0.68 2.45-0.68 2.45s1.03-0.53 1.9-1.39c0.85-0.89 1.72-1.06 2.25-0.53 0.51 0.53 1.21 0.86 1.21 0.86l-3.63 3.99-1.74-1.21s-1.55 0-2.07-0.51c-0.52-0.53-1.55-2.1-1.55-2.1l-0.35-1.2 3.46-7.09s-2.6 1.56-3.46 3.14c-0.87 1.54-3.29 5.53-1.9 6.72 1.37 1.22 3.45 3.98 5.36 3.98 1.9 0 2.6-0.34 5.19-2.25s5.87-5.53 5.87-5.53l-2.25-1.41"/>
<path id="path252" fill="#b3875a" d="m459.03 96.462c-0.37-2.735-0.16-1.098 1.33-1.303 1.6-0.215 1.14-3.456 1.14-3.456s4.84-0.711 6.92-0.711c2.07 0 1.37-2.508 3.91-3.219 2.55-0.689 1.85-1.593 1.85-1.593s0.46-0.721 2.77-0.463c2.31 0.226 2.54-0.926 2.54-0.926v-1.626l2.53-0.463 0.23-2.056 3.69-0.237 0.46-1.399 3-0.442-0.23-1.389 0.92-0.463-0.92-1.83h2.77l0.23-2.53 2.07-0.689-0.92-1.389 1.61-0.463-0.7-2.314 1.39-0.442v-1.41l2.08-0.905-0.24-1.615 2.53-0.236-0.45-1.594v-0.247s2.53-0.679 3.92-3.456c1.39-2.757 3.23-3.446 3.23-3.446l-0.93-1.141 1.84-0.937 0.24-1.604s3.69-0.689 7.85-2.314c4.16-1.615 5.08-5.524 5.08-5.524s-9.46 1.594-21.47 2.983c-11.99 1.389-22.38 2.541-27.69 4.166-5.3 1.594-0.92 5.986-7.61 12.909-3.89 4.016-9.7 1.83-11.3-1.163-1.62-2.982-3.69-8.99-3.69-8.99h1.84l-1.84-3.456 1.84-0.925s-1.61-0.926-5.3-2.778c-3.69-1.82-6.46-0.915-8.77 0.926-4.15-0.442-4.84 3.014-4.84 3.014s2.77-1.162 4.62-0.463c1.84 0.689 3.45-0.699 4.15 9.69 0.69 10.368-4.39 8.538-10.15 8.312-4.84-0.7-6.01-2.089-7.16-5.997-1.15-3.93 0.24-5.997-4.62-9.464-4.83-3.467-20.52-6.223-29.75-7.838-9.24-1.625-21.92-5.071-21.92-5.071s0.22 1.852 2.99 3.683c2.75 1.851 4.37 3.692 4.37 3.692s0.24 0.237 1.61 2.294c1.38 2.088 3.68 2.777 3.68 2.777s0.92 1.626 1.85 3.004c0.92 1.367 5.07 5.749 6.69 7.149 1.62 1.367 4.61 1.367 4.61 1.367-1.15 0-1.61 0.7-1.84 2.089 1.39 1.615 3.69 2.315 3.69 2.315l-0.46 1.614 2.99 0.679-0.45 2.304 4.16 0.926-0.93 1.367 3.93 0.7-0.92 1.389 3 0.667-0.7 1.389 4.16 0.463-0.7 1.852h3.92l-0.92 1.615 3.24 0.463s6.22 4.145 10.62 5.275c4.38 1.184 2.29 2.552 7.83 0.721 5.54-1.83 3.7-1.388 3.7-1.388s2.99 0.925 2.3 2.293c-0.7 1.41 0.68 2.541 2.07 5.544 1.38 2.993 0.69 2.089 2.3 2.089 0.69 0 0.87 0.022 1.07 0.528l1.96 0.118c-0.07-0.463-0.09-0.926-0.03-1.346 0.24-1.615 1.15-1.852 1.15-1.852l2.07 1.368s-0.46-1.368-1.15-4.597c-0.69-3.22-0.24-3.919-0.24-3.919l1.86 0.441s1.37 4.63 4.62 6.944c1.83 1.303 1.92 1.701 1.99 2.444l1.74-0.441"/>
<path id="path254" fill="#b3875a" d="m556.59 183.54c0.7-1.58 0.7-1.58 0.36-3.64-0.36-2.07-0.53-2.25 0-4.14 0.51-1.92 0.69-0.7 0.34-4.15-0.34-3.47-0.17-1.74-1.56-2.61-1.39-0.86-2.08-0.7-1.04-3.46s2.6-1.92 1.56-5.03c-1.04-3.09-2.43-4.32-1.91-4.83s-0.52 1.88-0.86 4.83c-0.36 2.96 0 3.47-0.36 6.58-0.34 3.11-0.86 5.03-0.34 5.69 0.53 0.73 1.39 3.64 1.39 3.64l2.25 7.61"/>
<path id="path256" fill="#b3875a" d="m563.17 335.15c2.77-17.98 5.53-33.57 6.58-38.78 1.03-5.17 3.11-12.11 3.11-19.37s0.34-9.35 2.07-18.36c1.73-9 2.43-15.22 2.43-24.55 0-9.36-2.08-19.75-2.08-19.75s1.72-1.72 2.41 2.08c0.69 3.81 1.39 4.5 2.08 2.42 0.69-2.07 1.39-3.45 2.42-1.03 1.05 2.42 2.44 2.42 2.44 2.42l1.03-0.7 1.73 1.72 2.42-2.41 2.08-3.45s1.03 5.88-1.04 12.1c-2.07 6.24-2.07 4.85-2.07 9.35s0.35 6.25 0.35 6.25-1.04 0.64-1.39-3.81c-0.35-4.5-1.04-7.97-2.08 1.03-1.03 9-4.5 17.65-3.11 8.3 1.38-9.33 2.42-20.77 0-18.69-2.43 2.08-3.47-0.33-3.81 8.31-0.35 8.66 0.7 8.3-0.69 13.48-1.39 5.19 0 6.93-1.73 16.99-1.74 10-2.77 9.69-3.12 16.25-0.34 6.59 1.04 10.36 0.35 19.03s-1.04 9.69-2.77 10.39c-1.72 0.69-1.02 0-1.72 8.3-0.69 8.31-1.73 14.2-1.73 14.2l-4.16-0.34"/>
<path id="path258" fill="#b3875a" d="m590.86 262.81s-2.77 17.3-3.81 32.17c-1.03 14.89-0.35 24.92-2.08 31.84s-0.34 14.19-0.34 14.19-0.35 2.77-1.39-2.75c-1.04-5.53-4.5-12.81-3.1-5.53 1.38 7.25 2.06 10.72 2.06 10.72s2.44 2.78 4.5 2.08c2.08-0.69 1.03-1.05 2.76-3.8 1.73-2.78 2.78-0.36 1.04-9.71-1.73-9.35 0.35-23.87 1.04-30.12 0.7-6.22-0.35-6.9-0.35-18 0-11.07-0.34-21.11-0.34-21.11"/>
<path id="path260" fill="#b3875a" d="m558.67 335.15c2.96-7.91 5.19-19.72 5.89-26.65 0.69-6.92 0.69-15.92-1.05-6.58-1.73 9.34-3.46 17.31-4.5 25.27s-1.39 10.7-0.35 7.96"/>
<path id="path262" fill="#b3875a" d="m562.82 291.87c0.35-6.22 1.39-7.59 3.47-12.8 2.08-5.2 1.38-4.85 3.1-13.85s2.77-13.13 3.11-18.33c0.35-5.19 1.05-7.26 1.05-7.26s-0.35 1.73-3.12 11.76c-2.76 10.05-4.16 13.5-5.19 19.72s-1.03 7.64-3.11 12.81c-2.08 5.19-1.04 4.53-1.38 9-0.35 4.53 1.38 2.08 2.07-1.05"/>
<path id="path264" fill="#b3875a" d="m541.7 193.56c0.7-3.78 0.36-5.89-0.69-10.02-1.04-4.17-1.73-6.23-1.73-6.23s0.34 0.34 1.39 0c1.03-0.34 1.03-1.05 2.42 2.06 1.39 3.14 1.04 3.14 0.34 6.25-0.68 3.11-1.73 7.94-1.73 7.94"/>
<path id="path266" fill="#b3875a" d="m546.9 183.19c1.39-1.41 1.74-0.68 1.74-5.18s-1.04-4.86-0.69-6.95c0.34-2.06-0.35-3.44-1.05 0.37-0.69 3.8-0.34 4.49-0.69 6.91-0.34 2.44-0.69 5.89-0.69 5.89l1.38-1.04"/>
<path id="path268" fill="#b3875a" d="m534.93 198.24s-2.06-6.99-2.54-9.97l6.11 2.01s-0.62 5.01-3.57 7.96"/>
<path id="path270" fill="#b3875a" d="m573.39 167.42s-0.36 5.2-5.19 5.36c-4.85 0.18-7.1 0-7.1 0s3.99 1.21 6.4 1.56c2.43 0.36 4.15-0.5 4.15-0.5l1.74-5.36"/>
<path id="path272" fill="#b3875a" d="m594.57 171.25c-0.09 0.51-0.23 0.97-0.42 1.39-1.04 2.25-2.07 2.94-2.07 2.94s1.9 1.9 2.42 9.34c0.52 7.45-0.69 7.09-0.69 7.09s1.39 2.08 1.03 1.57c-0.34-0.52 0.36-6.77 1.05-10.21 0.69-3.47 1.03-5.89 1.9-7.95 0.87-2.09 2.25-2.09 2.94-2.61 0.69-0.5 0.18-1.01-1.55-0.32-1.73 0.68-1.73-0.86-1.73-0.86"/>
<path id="path274" fill="#b3875a" d="m597.18 169.3l-0.1-0.47-0.69-3.29c-1.56-4.15-1.2-5.01-1.9-7.1-0.69-2.07-2.6-4.15-1.73-1.02 0.87 3.11 0.34 5.87 1.21 7.42 0.55 0.99 0.96 2.97 0.92 4.83"/>
<path id="path276" fill="#ffe8b8" d="m446.98 97.237c-0.04-0.377-0.05-0.775 0-1.163 0.24-1.593 1.15-1.841 1.15-1.841l2.08 1.4s-0.46-1.4-1.15-4.619c-0.69-3.241-0.24-3.93-0.24-3.93s0.24-3.219-2.08-5.996c-2.3-2.778-7.61-5.76-7.85-1.142-0.23 4.63-0.82 7.214-0.82 7.214 0.84 0.387 1.97 1.098 1.52 2.002-0.7 1.389 0.69 2.541 2.08 5.534 1.38 3.004 0.69 2.078 2.31 2.078 0.56 0 0.89 0.248 1.11 0.635l1.87-0.151"/>
<path id="path278" fill="#ffe8b8" d="m459.06 96.505c-0.15-0.657-0.43-1.712-1.01-3.198-1.15-3.014-1.39-3.919-0.24-4.845 1.15-0.915 1.39-1.593 1.39-1.593s-0.93-3.004-1.39-6.481c-0.45-3.445-5.53-4.135-6.22-2.304-0.7 1.841-2.08 6.47-0.93 9.463 0 0 1.38 4.619 4.62 6.912 1.62 1.163 2.01 1.68 2.13 2.293l1.65-0.236"/>
<path id="path280" fill="#ffe8b8" d="m452.51 61.45s-1.61-0.442-1.84 3.908c-0.23 4.393-1.61 7.633-5.32 9.485l-5.53 0.689s-0.68-1.852-0.93-4.156c-0.22-2.293 1.62-2.53-5.3-1.83-6.93 0.668-9.23 0.463-16.84-7.87-7.61-8.279-5.07-9.227-15.7-12.22 0 0-11.98-3.23-19.37-5.06-7.38-1.83-11.3-2.088-14.53-5.997 0 0 12.68 3.446 21.92 5.05 9.24 1.636 24.92 4.392 29.77 7.859 4.84 3.478 3.44 5.534 4.61 9.442 1.15 3.93 2.29 5.319 7.14 6.018 5.76 0.227 10.85 2.078 10.16-8.311-0.53-7.773-1.56-8.958-2.82-9.356l0.49-1.593-1.6-1.282c2.3-1.83 5.07-2.756 8.76-0.925 3.69 1.851 5.31 2.766 5.31 2.766l-1.84 0.926 1.84 3.456h-1.84s2.08 6.008 3.69 9.001c1.61 2.982 7.43 5.168 11.3 1.152 6.7-6.912 2.31-11.294 7.62-12.909 5.3-1.626 15.68-2.778 27.68-4.166 11.99-1.389 21.46-2.983 21.46-2.983-8.54 3.446-29.08 7.375-34.38 9.001-5.3 1.593-6.45 1.593-11.76 9.463-5.31 7.838-16.15 10.132-18.24 7.128-2.08-2.993-2.08-4.834-2.08-4.834"/>
<path id="path282" fill="#9bd9f4" d="m344.58 148.06s-0.35 3.45-1.04 7.95-2.6 3.97-5.71 4.17c-1.4 0.05-7.61 0.05-12.45 0.33-3.13 0.18-2.94-0.53-4.5-4.34-1.57-3.78-3.13-11.22-3.13-11.22l4.5-2.25s2.94 8.99 3.81 10.73c0.85 1.72 0 1.55 3.46 1.38 3.46-0.19 5.53 0.17 6.91 0 1.39-0.19 1.39 1.36 2.26-2.77 0.86-4.15 1.04-7.97 1.04-7.97s2.77 3.27 4.84 3.99"/>
<path id="path284" fill="#ff3515" d="m570.44 134.63c0.92-0.93 1.15-0.93 2.54-0.93 1.38 0 1.61 0.36 2.3 0.1 0.68-0.21 1.61 0.81 1.61 0.81s-0.93 0-2.08 0.48c-1.14 0.44-1.38-0.26-2.31-0.26-0.92 0-2.07-0.22-2.07-0.22"/>
<path id="path286" fill="#ff3515" d="m601.59 251.73v6.23c0 3.11-0.34 3.46-0.34 3.46l-1.04-2.78-1.39 3.47v-2.08l-2.08 3.11-0.69-2.77-1.72 2.77-0.69-1.72s0.34-0.33-1.04 0.34 0.34-2.08 0.34-2.08l-1.72 1.74v-1.74l-1.04 2.41v-3.45l-1.73 2.78v-3.13l-1.39 1.74 1.04-12.82 5.02 2.77s2.94 2.95 4.66 2.95c1.74 0 3.81-1.22 3.81-1.22"/>
<path id="path288" fill="#ff3515" d="m546.9 151l-2.42 3.45s-1.73 1.39-3.81 2.42-2.08 3.11-2.77 7.28c-0.69 4.14-2.76 2.06-5.52 4.14-2.77 2.08-3.47 4.14-3.47 4.14s0 1.41 2.08 4.16c2.08 2.78 6.57 0.36 6.57 0.36l4.15-2.78s1.74-2.74 1.39-6.22c-0.34-3.47-1.03-5.52-1.03-5.52l3.11-5.2s1.72-3.11 1.72-6.23"/>
<path id="path290" fill="#ff3515" d="m534.79 198.59s2.25 4.5 4.33 2.78 0.34-3.31 2.95-7.61c2.59-4.34 12.09-17.65 12.09-17.65s3.64 9.84 2.08 14.03c-1.54 4.14-2.08 6.2-0.68 7.08l-2.08 7.42s-0.69 4.17-2.42 7.96c-1.74 3.82-1.74 9-3.11 21.47-1.39 12.46-0.35 18 0.69 24.91 1.04 6.92-0.69 8.31-2.08 19.72-1.39 11.45-2.08 20.11-3.47 27.7-1.39 7.62-1.73 10.05-1.03 14.88 0.69 4.85-1.39 7.26-3.47 11.07-2.08 3.82-4.16 7.61-4.16 11.43l-1.15 2.63s-8.58-0.16-13.01 0.13c0 0 1.36-1.74 3.45-3.11 2.08-1.39 2.77-1.75 3.46-4.5 0.7-2.76 1.04-3.11 3.81-6.58 2.78-3.46 3.47-7.59 3.81-14.18 0.34-6.58 1.38-34.27 1.72-44.68 0.35-10.35-0.69-55.37 0-60.23 0.69-4.83 0-5.88 0.35-7.59 0.33-1.72-1.38-5.18-1.38-5.18"/>
<path id="path292" fill="#ff3515" d="m599.69 253.28c3.12-1.03 2.42-0.69 2.08-16.28-0.35-15.55-5.19-39.1-5.19-39.1l-1.04-2.07 1.04 2.76s0-5.69 1.04-10.37 0.35 0.34 1.56 0l-0.52-0.19s0.17 1.75 0.52 5.37c0.35 3.63 2.6 4.16 5.54 1.22l0.49-0.89s5.88 50.53 6.57 54.36c0.7 3.8-2.41 0.69-2.08 4.16 0.36 3.48 3.47 5.53 0.36 7.96s-5.54 2.76-5.89 8.63c-0.33 5.89 1.04 54 2.08 61.97s1.04 9 3.81 11.78c2.76 2.78 3.81 5.19 3.81 5.19-6.01-0.46-24.58-0.36-24.58-0.36l-0.93-1.85 5.07-3.31c2.44-1.06-1.72-20.45-1.72-31.88s1.03-40.51 2.08-47.41"/>
<path id="path294" fill="#ff3515" d="m330.04 131.03c0.3-0.11 0.63-0.06 0.88-0.13 1.18-0.35 1.92-0.44 2.85-0.44 0.66 0 1.21 0.23 1.71 0.46 0.37 0.14 0.77 0.19 1.1 0.23 0 0-1.31 0.13-2.12 0.46-0.81 0.34-1.26 0.34-1.95 0-0.7-0.33-2.47-0.58-2.47-0.58"/>
<path id="path296" fill="#ff3515" d="m306.67 344.48s0.35 0-3.12 0.36c-3.46 0.33-7.61-8.62-14.19-16.26-6.58-7.61-3.12-25.29-3.12-25.29-2.07-1.34-3.46-2.75-3.46-2.75 0.35-4.5 2.08-23.54 2.08-23.54-3.11-0.67-3.45-2.06-3.45-2.06l11.41-80.3 13.83 149.87"/>
<path id="path298" fill="#ff3515" d="m361.12 344.48c-0.08 0.03-0.1 0.03-0.1 0.03s0.63 1.65 0.1-0.03"/>
<path id="path300" fill="#ff3515" d="m363.44 325.45c-1.04-10.72-0.68-26.64-1.04-39.8-0.34-13.15 1.04-34.26 2.43-50.17 1.38-15.93-0.7-50.9-0.7-50.9l-1.2-1.04s-2.6 11.1-4.16 15.22c-1.54 4.18-3.27-1.18-4.5-6.23-1.2-5-2.75-9.84-3.45-21.1-0.87 5.19-1.57 20.08-1.57 20.08l-0.34 0.31c1.71 0.08 2.69 1.41 1.39 3.72 2.99 2.78 2.77 4.62 0.69 5.99 0 0 7.85 30.68 7.85 36.46l-0.08 0.24c-0.96 0-5.48 0.02-6.73 0.34-1.39 0.35-6.23 1.72-6.23 1.72s-1.72 5.53 0.7 6.24c2.42 0.68 3.47 1.39 4.5 0.68 1.04-0.68 1.04-1.03 3.47-0.37 0.47 0.16 0.93 0.28 1.4 0.35l-0.02 0.02s1.39 3.13 0.34 8.28c-1.04 5.21-2.77 12.47-2.41 19.06 0.33 6.57 2.07 10.72 2.07 10.72s-1.04 0.35-2.07 9.69c-1.05 9.35 1.73 38.08 1.73 38.08s3.1 3.83 4.83 9c0.39 1.18 0.64 1.94 0.8 2.4 0.19-0.02 0.8-0.15 2.33-0.68 2.06-0.69 4.15-1.72 6.56-6.22 0 0-5.53-1.37-6.56-12.11"/>
<path id="path302" fill="#ff3515" d="m313.94 337.92c-1.73 0.72-3.47 3.11-5.19 5.86l-12.98-145.52c1.9 6.75 6.01 1.26 8.07-5.49 0 0 3.75-13.4 4.21-15.69 0.45-2.32 1.62-3.91 1.62-3.91s-0.24 5.76 1.15 6.89c1.38 1.16 1.05 1.06 0.46 3.48-1.39 5.52 0.92 8.53 0.92 8.53h0.46c1.15 3.94-0.23 5.3-0.23 5.3l0.11-0.32c-4.14 4.5-5.19 9.68-6.22 17.65-1.05 7.96-0.69 13.83-0.35 19.03-3.81 14.53 4.5 36.69 4.5 36.69s-1.73 10.73 1.05 22.16c-2.09 4.14-2.78 3.79-2.78 3.79s3.81 6.58 2.78 11.08c-1.05 4.5-0.7 4.85 2.07 7.61-1.38 2.09 2.75 11.09 0.33 22.83"/>
<path id="path304" fill="#ff3515" d="m364.36 353.04s4.27 9.34 4.96 10.49c0.7 1.14 2.2 3.68 2.2 1.5 0-2.19-2.89-11.43-3.93-13.97-1.03-2.54-4.62-7.02-4.62-7.02l-1.84 0.56s0.46 0.7 1.96 2.3c1.5 1.62 2.53 2.77 2.53 4.03 0 1.28 0.11 1.75-1.26 2.09"/>
<path id="path306" fill="#ff3515" d="m370.82 344.48c-0.11-0.34-1.03-1.72-1.03-1.72l1.27-2.66s8.54-0.09 7.95 1.96c-0.57 2.08-0.57 3.58-1.96 5.09-1.39 1.49-2.54 2.19-2.88 1.95-0.35-0.22-1.84-2.08-1.84-2.08l0.69-1.05 0.58 0.48 0.92-0.79-0.34-0.59 0.45-0.47-0.93-1.26-0.58 0.22-0.34-0.57-1.39 0.35 0.24 0.68-0.81 0.46"/>
<path id="path308" fill="#ff3515" d="m378.79 358.82l0.92-0.46 0.35 0.34 0.92-0.23v-1.06l0.57-0.1-0.1-1.5-0.59-0.1-0.46-0.7-1.73 0.44 0.12 0.7-0.93 0.36-1.03-2.91s1.03-0.77 3.23-0.92c2.19-0.1 4.38-0.44 4.5 0.46 0.12 0.93 1.39 3.01 0.23 4.87-1.15 1.84-3.57 3.2-4.5 3.2h-0.34l-1.15-2.41"/>
<path id="path310" fill="#d18644" d="m571.83 130.69c1.15 0.7 0.92 0.7 1.84 0.46l1.84-0.46-0.45-1.85s2.29 1.85 0.92 2.31c-1.39 0.46-2.08 0.7-2.99 0.46-0.93-0.22-1.15-0.92-1.15-0.92"/>
<path id="path312" fill="#d18644" d="m339.21 121.59c1.26 0.84-4.27-0.59-4.38 0.67-0.12 1.26 0.45 3.11 0.81 4.04 0.34 0.92 0.34 2.29-1.16 2.18-1.49-0.11-2.88 0.46-2.54-0.46 0.35-0.93 0.45-0.8 0.45-0.8s-0.33 0.7 0.24 0.8c0.58 0.11 0.7 0.11 1.27 0.11 0.58 0 1.27 0 1.38-0.69 0.12-0.7 0-1.17-0.45-2.53-0.46-1.41-0.7-2.54-0.24-3.24 0.45-0.72 1.15-1.03 2.42-0.93 1.27 0.11 1.86 0.57 2.2 0.83"/>
<path id="path314" fill="#d18644" d="m332.18 123.18c0.23-1.03 0.11-1.85-1.15-2.29-1.27-0.46-2.54-0.11-3.7 0.8 0 0 0.59 0.13 1.85-0.1 1.27-0.22 2.3 0.1 2.54 0.46 0.23 0.36 0.46 1.16 0.46 1.16"/>
<path id="path316" fill="#d18644" d="m331.94 132.65c-0.73-0.47 1.74 0.22 2.31 0.22-1.05 0.49-1.62 0.26-2.31-0.22"/>
<path id="path318" fill="#c5baad" d="m590.06 205.74c0 3.79-4.6 6.86-10.28 6.86-5.67 0-10.28-3.07-10.28-6.86 0 0 6.83-0.88 10.11-0.88 3.56 0 10.45 0.88 10.45 0.88"/>
<path id="path320" fill="#c5baad" d="m644.07 205.74c0 3.79-4.6 6.86-10.27 6.86-5.69 0-10.29-3.07-10.29-6.86 0 0 6.83-0.36 10.1-0.36 3.3 0 10.46 0.36 10.46 0.36"/>
<path id="path322" fill="#c5baad" d="m607.13 171.43l27.52 0.69v-1.39c-0.52-0.17-25.27-1.73-25.27-1.73l-1.91 0.18h-0.34l-1.91-0.18s-24.74 1.53-25.27 1.73v1.39l27.52-0.69"/>
<path id="path324" fill="#61619e" d="m362.93 183.19l-4.67-3.99 0.34-6.22 2.26-3.8 2.93-0.51 1.9 1.55-0.16-1.39s-3.81-4.33-6.57-1.89c-2.77 2.4-3.99 6.74-4.33 14.7-0.35 7.95 0 13.16 0 13.16s0.87 2.07 1.73 4.15c0.87 2.06 1.22 2.42 2.08 0 0.87-2.42 4.5-15.73 4.5-15.73"/>
<path id="path326" fill="#61619e" d="m296.46 190.98s4.67 2.08 4.15 5.03c0 0 0.52-11.45 0-14.56 0 0-0.17 6.75-4.15 9.51"/>
<path id="path328" fill="#61619e" d="m309.8 176.79s0.69 1.74 1.73 2.58c1.03 0.86 3.11 0.53 1.91 2.27-1.22 1.73-1.39 5.53-1.57 6.73-0.17 1.22-0.87 0.69-0.87 0.69s-0.51-3.11 0.36-5.52c0.86-2.42 1.03-1.92-0.17-3.12-1.22-1.22-1.22-2.94-1.22-2.94"/>
<path id="path330" fill="#61619e" d="m312.72 191.86l-0.68 0.15-0.69-2.59s0.17 0.53 3.28 0.7c3.12 0.16 3.64-0.53 5.72-0.89 2.08-0.33 4.33 0 6.56-0.33 2.26-0.32-1.21 1.22 2.77 1.57 3.99 0.34 5.71 0.17 7.61 0.17s4.15 1.89 6.74-0.86c2.61-2.77 3.81-2.59 3.47-6.08-0.33-3.44-2.08-6.03-2.76-7.59-0.7-1.57-0.87-1.92 1.03-3.99 1.9-2.06 3.64-1.54 4.15-5.18 0.52-3.63 0-4.86-0.18-6.94-0.16-2.05 0.53-9.31 0.87-5.86 0.35 3.44 2.25 3.81 1.91 8.66-0.35 4.84-0.52 3.98 1.55 2.25 2.08-1.74 6.22-4.67 2.94-0.52-3.29 4.16-4.5 6.57-5.19 10.39-0.69 3.77-0.16 3.77-0.16 3.77l-1.05-6.89-1.56 19.71s-2.58 0.71-4.84 1.9c-2.25 1.23-2.93 0.87-5.71 0.7-2.77-0.17-6.91-0.86-10.55-2.42-3.64-1.55-5.02-1.88-7.8-0.88-2.76 1.05-8.12 1.41-8.12 1.41"/>
<path id="path332" fill="#61619e" d="m304.94 176.79l-4.67-3.48c1.73 1.94 2.78 5.73 2.26 6.95l0.23-0.32c0.15 1.2 0.58 5.08 0.29 8.26-0.35 3.81 0.17 7.11 0.34 2.44 0.15-4.36 0.61-10.03 0.4-12.19l1.15-1.66"/>
<path id="path334" fill="#61619e" d="m315.67 170.53c2.86 1.44 6.4 2.28 9.01 1.41l-1.22 12.29s0 3.11 0.69 0.35c0.69-2.77 4.15-20.78 4.5-22.5 0.33-1.74 0-2.6-0.35-1.21-0.34 1.41-1.21 7.43-3.12 8.64-1.9 1.22-9 0.71-9.69 0.18-0.7-0.51-0.87 0.35 0.17 0.87"/>
<path id="path336" fill="#61619e" d="m333.68 161.06s1.37 10.72 1.73 14.17c0.34 3.46 1.38 4.67 0.86 0.69s-2.08-5.72 1.39-5.02c3.44 0.69 6.74 4.16 10.55-0.51 3.8-4.67 2.94-4.34 2.94-4.34s-1.03-6.91-1.73-3.62c-0.69 3.27-1.56 5.71-4.16 6.55-2.58 0.89-4.16 1.75-6.05 1.22s-3.11 2.25-3.46-0.33c-0.34-2.61-1.21-7.26-1.21-8.14 0-0.86-1.04-2.41-0.86-0.69"/>
<path id="path338" fill="#61619e" d="m309.8 175.23s2.42 1.05 1.56-3.8c-0.87-4.85-1.22-4.68-0.87-6.57 0.34-1.92 0.87-2.43-0.18-5.72-1.04-3.28-2.59 0.18-2.59 0.18s0.52 2.22 0.17 5.36c-0.34 3.11-0.7 1.88-1.04 3.11-0.34 1.19-0.34 4.85-0.85 8.63-0.53 3.81-1.47 12.88-0.53 9.18 0.04-0.16 0.07-0.32 0.13-0.49-0.47 3.91-0.3 3.47-0.3 9.65 0 6.41 0.51 7.28 0.7 10.91 0.16 3.64-0.35 3.64-0.18 5.03 0.18 1.37 0 2.06 0.85-0.33 0.88-2.45 2.08-9.2 3.3-10.23 1.22-1.02 1.22-0.16-0.7-1.55-1.9-1.37-2.25-3.28-1.9-5.19 0.36-1.92 0-7.26 0.36-10.56 0.17-1.74 0.12-3.58-0.11-4.44 1.12-3.3 2-5.25 2-5.25l0.17 2.1"/>
<path id="path340" fill="#61619e" d="m315.33 196.87c-1.56 4.5-1.56 5.17-1.91 7.25s0.35 2.08 1.38-0.34c1.05-2.41 3.13-6.05 3.64-6.58l-3.11-0.33"/>
<path id="path342" fill="#61619e" d="m323.98 198.59c2.43 2.27 5.59 2.61 6.47 5.7 0.85 3.13 1.19 7.98 2.07 4.36 0.85-3.64 2.59-4.87 4.32-5.03 1.73-0.2 3.75-0.88 4.1 3.64 0.34 4.5 0.85 3.8 0.16 12.27-0.68 8.47-1.73 19.54-0.68 16.11 1.03-3.47 1.55-8.5 2.26-14.72 0.67-6.24 0.67-5.91 1.19-5.03 0.53 0.86 1.39 2.6 1.39 2.6v-17.12l-15.57 1.02s-2.59-4.13-5.53-4.33"/>
<path id="path344" fill="#61619e" d="m308.98 261.99c-3.39-10.83-3.47-18.24-2.54-23.07 0.92-4.83 1.85-3.44 1.39 0.71-0.47 4.12 1.61 16.37 2.07 20.53 0.47 4.14 0.24 5.53-0.92 1.85"/>
<path id="path346" fill="#61619e" d="m330.45 229.46c-0.93 11.29-1.62 1.16-0.47 12.7 1.16 11.52 3 14.74 0.69 26.06-2.3 11.31-2.53 21.46-2.53 28.61 0 7.17 0.93 15.01 1.84 4.17 0.93-10.85 3.47-28.85 3-36.02-0.46-7.13 0.92-17.08 1.14-25.15 0.23-8.08 1.15-15.47 0.92-22.36-0.22-6.94-1.84-4.65-2.76-1.85-0.92 2.76-0.46 3.68-0.46 3.68l-1.37 10.16"/>
<path id="path348" fill="#61619e" d="m344.98 228.53c-1.39 10.16-2.3 16.41-3.69 26.78-1.39 10.38-4.16 19.38-5.31 29.08-1.15 9.69-0.93 17.3 0 9 0.93-8.31 2.99-15.93 5.07-26.78 2.08-10.83 3.93-22.86 3.93-22.86l0.68-3.88-0.68-11.32"/>
<path id="path350" fill="#61619e" d="m346.83 246.77c-0.46 9.89 0.69 8.99-2.78 24.01-3.46 15-4.15 16.15-5.53 26.76s-1.6 3.92-2.76 14.54c-1.15 10.61-3.23 11.29 0.68 15.22 3.93 3.91 8.31 5.07 8.31 5.07s-3-2.29-4.84-4.83c-1.84-2.55-2.99-4.85-2.77-6.26 0.23-1.34 2.77-0.2 2.77-0.2s-1.84-0.93-1.62-4.84c0.23-3.94 2.77-4.4 2.77-4.4s-0.24-6.69 0.93-15.22c1.15-8.56 0.92-15.23 3-18.9 2.08-3.7 3.92-7.63 4.38 0.44 0.46 8.08 1.62 25.38 1.62 34.4 0 9 0.69 16.15 2.54 19.6 1.83 3.45 4.84 5.53 4.84 5.53l-2.54-4.61s-1.61-12.46-2.07-21.68c-0.47-9.23-1.86-19.38 2.07-26.53-2.07-9.24-3.93-10.16 0-27.7 0.93-3.93 0.46-7.61 0-9.93l-3.69-1.13s-1.39 1.39-5.31 0.68"/>
<path id="path352" fill="#61619e" d="m343.13 335.86c-6.22-2.78-9.93-4.86-12.68-10.17-2.78-5.31-3.23-6.91-3.93-15.91-0.69-9-2.54-22.85-2.08-14.53 0.46 8.29-0.68 20.51-0.24 29.51 0.46 9 4.38 8.76 0.24 8.76-4.16 0-9-0.2-0.24 2.09 8.77 2.31 3.23 7.15 9.7 4.62 6.46-2.52 1.62-5.06 9.23-4.37"/>
<path id="path354" fill="#61619e" d="m312.68 289.22c0.45-0.93 5.07-10.15 5.07-10.15s0.47-2.3 0.69-5.31c0.23-2.98-1.38-2.08-2.99-0.93-1.62 1.17-2.99-1.13-3.47 4.41-0.45 5.52 0.24 8.07 0.7 11.98"/>
<path id="path356" fill="#61619e" d="m322.37 276.08c4.62-10.39 6.46-15.69 6.01-21.24-0.46-5.53 0.23-11.06-0.46-7.61-0.69 3.47-3 11.54-2.08 5.55 0.92-6.01 0.92-9 1.84-9 0.93 0 1.61 0 1.61 6.66 0 6.71 1.15 10.65-1.61 21.73-2.77 11.05-3.47 16.15-3.47 16.15s0.24-4.86-1.15-7.15c-1.38-2.34-2.08-2.34-0.69-5.09"/>
<path id="path358" fill="#61619e" d="m330.9 163.29c-0.69 7.24-0.35 13.5-1.04 19.38-0.69 5.89 1.04 6.56 1.21-0.5 0.17-7.11 0.35-15.59 0.35-18.21 0-2.57-0.18-3.62-0.52-0.65"/>
<path id="path360" fill="#fff" d="m382.02 347.09c0.53 0 0.97-0.44 0.97-0.97 0-0.55-0.44-0.99-0.97-0.99-0.54 0-0.98 0.42-0.98 0.99 0 0.53 0.44 0.97 0.98 0.97"/>
<path id="path362" fill="#fff" d="m383.87 347.42c0.54 0 0.98-0.42 0.98-0.97 0-0.51-0.44-0.96-0.98-0.96s-0.98 0.45-0.98 0.96c0 0.55 0.44 0.97 0.98 0.97"/>
<path id="path364" fill="#fff" d="m383.29 349.51c0.54 0 0.98-0.43 0.98-0.97 0-0.55-0.44-0.99-0.98-0.99s-0.97 0.44-0.97 0.99c0 0.54 0.43 0.97 0.97 0.97"/>
<path id="path366" fill="#fff" d="m381.21 349.4c0.54 0 0.98-0.44 0.98-0.99 0-0.52-0.44-0.97-0.98-0.97s-0.98 0.45-0.98 0.97c0 0.55 0.44 0.99 0.98 0.99"/>
<path id="path368" fill="#fff" d="m386.06 348.81c0.54 0 0.97-0.42 0.97-0.97s-0.44-0.99-0.97-0.99-0.98 0.44-0.98 0.99c0 0.53 0.45 0.97 0.98 0.97"/>
<path id="path370" fill="#fff" d="m388.37 351.94c0.54 0 0.97-0.44 0.97-1.01 0-0.51-0.44-0.97-0.97-0.97-0.54 0-0.98 0.46-0.98 0.97 0 0.57 0.44 1.01 0.98 1.01"/>
<path id="path372" fill="#fff" d="m390.1 353.55c0.54 0 0.97-0.43 0.97-0.97 0-0.55-0.44-0.99-0.97-0.99-0.54 0-0.98 0.44-0.98 0.99 0 0.54 0.44 0.97 0.98 0.97"/>
<path id="path374" fill="#fff" d="m390.9 355.76c0.54 0 0.98-0.45 0.98-0.97 0-0.55-0.44-0.99-0.98-0.99s-0.97 0.44-0.97 0.99c0 0.52 0.44 0.97 0.97 0.97"/>
<path id="path376" fill="#fff" d="m391.14 358.3c0.53 0 0.98-0.44 0.98-0.97 0-0.55-0.45-0.99-0.98-0.99-0.54 0-0.98 0.44-0.98 0.99 0 0.53 0.44 0.97 0.98 0.97"/>
<path id="path378" fill="#fff" d="m390.9 360.59c0.54 0 0.98-0.44 0.98-0.97 0-0.55-0.44-0.97-0.98-0.97s-0.97 0.42-0.97 0.97c0 0.53 0.44 0.97 0.97 0.97"/>
<path id="path380" fill="#fff" d="m389.87 362.78c0.53 0 0.96-0.42 0.96-0.97 0-0.53-0.43-0.97-0.96-0.97-0.54 0-0.98 0.44-0.98 0.97 0 0.55 0.44 0.97 0.98 0.97"/>
<path id="path382" fill="#fff" d="m382.71 344.44c0.53 0 0.98-0.44 0.98-0.97 0-0.55-0.45-0.97-0.98-0.97-0.54 0-0.98 0.42-0.98 0.97 0 0.53 0.44 0.97 0.98 0.97"/>
<path id="path384" fill="#fff" d="m383.05 342.35c0.54 0 0.98-0.44 0.98-0.96 0-0.55-0.44-0.97-0.98-0.97s-0.97 0.45-0.97 0.97 0.44 0.96 0.97 0.96"/>
<path id="path386" fill="#fff" d="m382.83 340.4c0.54 0 0.97-0.44 0.97-0.97 0-0.52-0.44-0.96-0.97-0.96s-0.97 0.42-0.97 0.96c0 0.53 0.44 0.97 0.97 0.97"/>
<path id="path388" fill="#fff" d="m381.33 338.55c0.54 0 0.98-0.44 0.98-0.97 0-0.52-0.44-0.97-0.98-0.97s-0.97 0.42-0.97 0.97 0.44 0.97 0.97 0.97"/>
<path id="path390" d="m437.74 45.301c2.08 0 3.47-0.216 5.31 1.13 1.85 1.41-0.69 0.258-2.53 0-1.85-0.205-2.78-1.13-2.78-1.13"/>
<path id="path392" d="m491.26 148.42l6.57 2.58 1.56-3.02-8.13 0.4"/>
<path id="path394" d="m327.91 123.31c0.8-0.23 1.38-1.16 2.07-0.59 0.69 0.59 1.05 0.71 1.05 0.71s-0.47 0.24-1.15 0.57c-0.7 0.34-0.59 0-1.05-0.22-0.45-0.22-0.92-0.45-0.92-0.45"/>
<path id="path396" d="m335.75 123.42c0.81-0.24 1.39-1.16 2.08-0.57 0.69 0.57 1.05 0.67 1.05 0.67s-0.47 0.23-1.16 0.57c-0.7 0.35-0.58 0-1.04-0.23-0.46-0.21-0.93-0.44-0.93-0.44"/>
<path id="path398" d="m286.94 101.27s-1.84 0.6-3.47 0.69c-1.61 0.11-2.65 0.81-1.15 1.27 1.5 0.47 3.47 1.38 3.47 1.05 0-0.34-0.69-1.75-0.69-1.75l1.84-1.26"/>
<path id="path400" d="m286.02 109.92c-1.84 1.39-1.95 2.06-0.92 1.85 1.03-0.24 1.5-0.46 1.5-0.46l-0.59-1.39"/>
<path id="path402" d="m279.67 111.77c1.15 0.34 2.54 0.12 2.54 0.12s-0.23-0.69-1.27-1.15c-1.04-0.47-1.73-1.39-1.85-0.47-0.11 0.93 0.58 1.5 0.58 1.5"/>
<path id="path404" d="m280.03 120.66c-0.55 1.35 1.49-0.92 3.23-2.18 1.72-1.29 2.64-1.96 2.64-1.96s0.68-1.28-1.15 0.11c-1.85 1.39-2.77 1.59-3.69 1.85-0.92 0.2-1.39 0.31-1.39 0.31s0.81 0.69 0.36 1.85"/>
<path id="path406" d="m286.35 121.53l0.02 0.26s0.23-0.24-0.02-0.26"/>
<path id="path408" d="m290.41 116.26c-2.43 0.81-3.34 2.09-5.43 3.13-2.08 1.02-1.96 1.72-1.96 1.72s-1.15 0.68-2.3 1.48c0 0-0.81 1.16-1.14 1.75-0.35 0.57 0.33 0.57 1.14-0.23 0.8-0.82 1.49-0.82 3.92-1.96 1.05-0.51 1.52-0.62 1.71-0.62l-0.1-1.12 1.73-0.93 0.24 0.93c0.1-0.09 0.18-0.19 0.26-0.27l0.09 0.06c1.48-0.46 1.37 0.58 2.41-1.26 0.79-1.41 0.78-1.83 1.04-2.29 0.62-0.2 1.26-0.42 1.72-0.72 1.04-0.69-0.91-0.47-3.33 0.33"/>
<path id="path410" d="m392.32 391.67l-0.06-0.06c-0.06-3.02-2.3-5.07-4.81-5.71-1.32-0.33-1.87-0.12-2.13 0.93l-0.79 3.13c2.06 0.48 3.74 0.42 4.83-1.42l-0.01-0.02-1.48 5.94 0.01 0.07c-0.06-2.15-1.52-3.07-3.59-3.6l-1.43 5.93c-0.26 1.06 0.09 1.5 1.43 1.83 2.87 0.71 6.04-0.46 7.42-3.09l-1.52 5.59-13.64-3.38-0.08-0.04c1.6 0.39 2.72-1.66 2.98-2.74l2.31-9.18c0.25-1.08 0-2.36-1.57-2.76l0.02-0.06 13.3 3.29-1.18 5.33"/>
<path id="path412" d="m401.26 403.46l0.17-0.84c1.48 0.28 1.77 0.15 1.85-0.18 0.08-0.44-0.06-0.72-0.24-1.21l-1.35-3.64-2.78 2.74c-0.33 0.35-0.52 0.63-0.58 0.9-0.09 0.51 0.33 0.86 1.78 1.14l-0.15 0.89-6.15-1.19-0.07-0.02c1.23 0.11 2.66-1.09 3.6-1.97l3.94-3.66-2.33-6.2c-0.34-0.91-0.68-2.89-1.91-3.09l-0.02 0.04 7.48 1.42h0.01c-1.4-0.24-1.8 0.66-1.91 1.19-0.04 0.25 0.03 0.52 0.18 0.97l1.09 3.15 2.44-2.38c0.31-0.29 0.53-0.57 0.61-0.9 0.07-0.44-0.19-1.62-1.31-1.83l0.05 0.04 5.79 1.11h-0.05c-1.75-0.23-2.53 0.99-3.78 2.13l-3.25 2.96 2.73 7.37c0.32 0.84 0.73 2.2 1.91 2.56h-0.06l-7.66-1.48"/>
<path id="path414" d="m427.07 397.53l-0.07 0.02c-0.76-3.25-2.59-5.17-5.15-5.48-2.72-0.34-4.21 1.99-4.76 6.31-0.55 4.48 0.65 7.02 3.64 7.37 2.91 0.36 5.32-1.21 5.91-4.52l0.45 0.07c-0.48 3.83-2.95 5.89-6.96 5.4-5.19-0.65-7.6-4.61-7.07-8.83 0.52-4.23 4.54-7.38 8.68-6.85 1.65 0.19 2.99 0.99 4.16 1.83l1.88-0.68h-0.04l-0.67 5.35"/>
<path id="path416" d="m444.28 398.48l0.02 0.06c-0.63-2.92-3.33-4.66-5.92-4.79-1.37-0.06-1.85 0.23-1.91 1.3l-0.09 3.29c2.12 0.09 3.8-0.42 4.5-2.47l-0.03 0.09-0.3 6.16-0.02 0.02c-0.48-2.1-2.07-2.69-4.18-2.8l-0.36 6.08c-0.06 1.09 0.39 1.43 1.75 1.52 2.96 0.14 5.88-1.63 6.73-4.47h-0.03l-0.41 5.79-14.04-0.7-0.02-0.02c1.64 0.07 2.25-1.11 2.29-2.21l0.52-10.52c0.05-1.1-0.35-2.41-1.98-2.49l-0.07 0.04 13.69 0.66-0.13 5.44"/>
<path id="path418" d="m448.06 408.32l0.03-0.02c1.65-0.04 2.1-1.29 2.08-2.39l-0.28-10.52c-0.04-1.11-0.52-2.32-2.16-2.28l-0.08-0.02 8.06-0.22 0.02 0.02c-1.64 0.04-2.16 1.28-2.13 2.39l0.29 10.5c0.02 1.05 0.43 1.36 1.54 1.32 2.22-0.06 4.84-2.4 5.34-4.94l0.03-0.02 0.03 5.84-12.78 0.34"/>
<path id="path420" d="m464.2 401.89l0.04 0.02c0.84 2.34 3.51 4.73 6.31 4.44 1.5-0.15 2.74-0.97 2.56-2.82-0.32-3.2-8.74-1.22-9.26-6.29-0.32-3.16 1.84-5.19 4.63-5.49 2.39-0.23 3.31 0.84 3.9 0.78 0.43-0.02 1.47-0.61 1.68-1.05l0.01-0.02 0.54 5.23-0.03 0.02c-0.87-2.32-3.38-4.2-5.68-3.97-1.39 0.15-2.47 1.05-2.33 2.49 0.36 3.42 8.83 0.86 9.43 6.55 0.32 3.31-2.47 5.32-4.91 5.56-2.72 0.29-3.87-0.77-4.58-0.7-0.43 0.06-1.51 0.74-1.66 1.05l-0.06 0.02-0.59-5.8"/>
<path id="path422" d="m480.22 405.95h-0.03c1.62-0.28 1.96-1.56 1.79-2.65l-1.72-10.41c-0.17-1.1-0.93-2.23-2.55-1.96h0.02l7.95-1.32-0.02 0.02c-1.61 0.26-1.91 1.56-1.73 2.65l1.71 10.41c0.18 1.09 0.87 2.2 2.49 1.96l0.02 0.02-7.95 1.28"/>
<path id="path424" d="m495.73 387.19c4.08-0.92 8.4 1.77 9.37 5.9 0.97 4.17-1.7 8.5-5.8 9.47-4.07 0.92-8.38-1.79-9.35-5.94-0.97-4.11 1.7-8.49 5.78-9.43zm3.34 14.38c2.52-0.58 2.93-3.36 1.96-7.53-0.97-4.12-2.55-6.43-5.07-5.85-2.52 0.6-2.92 3.35-1.96 7.52 0.95 4.13 2.54 6.45 5.06 5.86"/>
<path id="path426" d="m522.55 396.02c-0.93 0.31-1.38 0.49-1.38 0.49-2.15 0.66-3.35-0.24-4.27-2.67-0.94-2.56-1.23-3.2-3.62-2.82l1.36 4.43c0.36 1.2 1.08 2.45 2.84 1.87l-0.03 0.05-7.5 2.29 0.02 0.02c1.58-0.46 1.69-1.83 1.36-2.88l-3.08-10.09c-0.32-1.06-1.17-2.05-2.73-1.58l-0.03-0.05 7.42-2.25c3.6-1.08 5.86-0.22 6.61 2.23 0.84 2.78-1.7 4.32-4.06 5.07l0.03 0.07c2.69-0.47 3.7 0.73 4.63 2.03 1.29 1.88 1.6 2.74 2.11 2.6 2.07-0.64 2.34 0.49 0.32 1.19v0.02-0.02zm-9.5-5.78c2.27-0.82 3.59-1.63 2.83-4.04-0.53-1.76-1.78-2.67-3.25-2.25-0.74 0.23-1.29 0.71-0.99 1.7l1.4 4.59"/>
<path id="path428" d="m370 249.14c0 3.2 7.67 1.1 7.67 4.32m-2.46-12.8c-2.15 2.34 4.89 6.02 2.74 8.36m-0.14-11.89c-1.77 2.65 5.78 5.16 4.01 7.83m-2.03-11.71c-1.32 2.89 6.52 4.15 5.21 7.08m-3.87-11.27c-0.84 3.09 7.11 3.09 6.27 6.18m-5.6-10.49c-0.33 3.18 7.51 1.93 7.17 5.11m-7.21-9.47c0.18 3.18 7.72 0.7 7.89 3.9m-8.61-8.23c0.68 3.14 7.73-0.52 8.41 2.59m-9.8-6.73c1.16 2.99 7.53-1.72 8.7 1.24m-10.75-5.06c1.62 2.73 7.17-2.97 8.79-0.22m-11.43-3.29c2.05 2.43 6.62-4.04 8.65-1.59m-11.8-1.43c2.41 2.11 5.89-5.03 8.29-2.92m0.97-9.72c-2.94 1.23 1.96 7.47-0.98 8.73m4.99-10.8c-2.78 1.58 2.76 7.23-0.03 8.79m3.81-11.25c-2.6 1.84 3.54 6.87 0.93 8.72m2.52-11.6c-2.39 2.12 4.25 6.48 1.87 8.58m1.25-11.83c-2.14 2.36 4.93 5.98 2.78 8.34m0-11.89c-1.87 2.59 5.54 5.41 3.67 7.99m-1.3-11.81c-1.57 2.78 6.09 4.77 4.52 7.55m-2.04-12.91c-1.88 2.56 6.16 5.63 4.29 8.19m-36.76 71.52c-0.32 3.18 7.52 1.9 7.2 5.07m-7.79 2.79c0 3.2 7.67 1.14 7.67 4.32m33.2-84.37c3.19 0 1.12-7.65 4.31-7.65m1 7.65c3.2 0 1.12-7.65 4.3-7.65m1.01 7.65c3.19 0 1.12-7.65 4.31-7.65m0.99 7.65c3.2 0 1.12-7.65 4.32-7.65m0.99 7.65c3.19 0 1.11-7.65 4.31-7.65m1 7.65c3.2 0 1.12-7.65 4.31-7.65m1 7.65c3.19 0 1.12-7.65 4.31-7.65m0.99 7.65c3.2 0 1.12-7.65 4.32-7.65m0.99 7.65c3.19 0 1.11-7.65 4.31-7.65m1 7.65c3.2 0 1.12-7.65 4.31-7.65m1 7.65c3.2 0 1.12-7.65 4.31-7.65m1 7.65c3.19 0 1.12-7.65 4.31-7.65m0.99 7.65c3.19 0 1.11-7.65 4.31-7.65m1 7.65c3.2 0 1.12-7.65 4.31-7.65m1 7.65c3.2 0 1.12-7.65 4.32-7.65m0.99 7.65c3.19 0 1.12-7.65 4.31-7.65m-124.8 92.39c0 3.18 7.67 1.11 7.67 4.31m-7.67 0.37c0 3.18 7.67 1.11 7.67 4.3m-7.67 0.36c0 3.18 7.67 1.14 7.67 4.32m-7.67 0.37c0 3.18 7.67 1.09 7.67 4.29m-7.67 0.37c0 3.18 7.67 1.1 7.67 4.32m-7.67 0.36c0 3.2 7.67 1.11 7.67 4.3m-7.67 0.36c0 3.2 7.67 1.14 7.67 4.32m-7.67 0.35c0 3.18 7.67 1.12 7.67 4.31m-7.67 0.39c0 3.17 7.67 1.08 7.67 4.28m-7.67 0.38c0 3.17 7.67 1.12 7.67 4.32m-7.67 0.35c0 3.2 7.67 1.11 7.67 4.31m-7.67 0.35c0 3.18 7.67 1.12 7.67 4.32m-7.32 1.04c0 3.18 7.66 1.12 7.66 4.32m-2.35 10.55c2.76 1.63 4.81-6.05 7.56-4.46m-3.06 7.07c2.76 1.62 4.81-6.05 7.56-4.46m-3.07 7.07c2.77 1.58 4.81-6.08 7.56-4.48m-3.06 7.09c2.77 1.57 4.81-6.08 7.56-4.48m-3.07 7.04c2.77 1.63 4.81-6.05 7.56-4.46m-3.06 7.07c2.77 1.62 4.81-6.05 7.56-4.48m-3.06 7.09c2.77 1.6 4.81-6.08 7.56-4.5m-3.07 7.09c2.77 1.59 4.81-6.09 7.56-4.48m-3.06 7.08c2.77 1.6 4.81-6.08 7.56-4.45m-3.07 7.04c2.77 1.62 4.81-6.05 7.56-4.46m-3.06 7.06c2.77 1.61 4.81-6.07 7.56-4.48m-3.06 7.08c2.77 1.57 4.81-6.09 7.56-4.48m-3.07 7.08c2.77 1.6 4.81-6.08 7.56-4.48" stroke="#000" stroke-linecap="round" stroke-width="1.1507" fill="none"/>
<path id="path430" d="m434.11 363.2c2.77 1.59 4.81-6.08 7.56-4.46m-3.07 7.04c2.77 1.63 4.81-6.03 7.56-4.46m-3.74 6.6c2.76 1.61 4.8-6.07 7.55-4.5m-80.36-42.96c1.06 3.02 7.6-1.46 8.66 1.54m-6.8 3.6c2.26 2.27 6.2-4.65 8.46-2.4m-0.45-125.91c-1.07-1.92-3.42-2.12-5.32-1.92-1.92 0.2-3.2-0.44-3.2-0.44m159.46 54.21c0 3.2-7.67 1.1-7.67 4.32m2.45-12.8c2.16 2.34-4.89 6.02-2.74 8.36m0.15-11.89c1.76 2.65-5.78 5.16-4.02 7.83m2.04-11.71c1.32 2.89-6.52 4.15-5.21 7.08m3.87-11.27c0.84 3.09-7.11 3.09-6.27 6.18m5.6-10.49c0.33 3.18-7.51 1.93-7.17 5.11m7.21-9.47c-0.17 3.18-7.72 0.7-7.89 3.9m8.61-8.23c-0.68 3.14-7.73-0.52-8.41 2.59m9.81-6.73c-1.17 2.99-7.54-1.72-8.71 1.24m10.76-5.06c-1.63 2.75-7.17-2.93-8.8-0.18m11.43-3.33c-2.05 2.43-6.62-4.04-8.65-1.59m11.79-1.47c-2.39 2.11-5.88-5.02-8.29-2.92m-0.96-9.68c2.94 1.23-1.96 7.47 0.98 8.73m-4.98-10.8c2.78 1.58-2.76 7.23 0.03 8.79m-3.82-11.25c2.6 1.84-3.54 6.87-0.93 8.72m-2.52-11.6c2.39 2.12-4.25 6.48-1.87 8.58m-1.27-11.83c2.14 2.36-4.93 5.98-2.78 8.34m0.02-11.89c1.87 2.59-5.53 5.41-3.67 7.99m1.3-11.81c1.57 2.78-6.1 4.77-4.52 7.55m34.51 66.8c0.32 3.18-7.52 1.9-7.2 5.07m7.79 2.79c0 3.2-7.67 1.14-7.67 4.32m7.67 0.37c0 3.18-7.67 1.11-7.67 4.31m7.67 0.37c0 3.18-7.67 1.11-7.67 4.3m7.67 0.36c0 3.18-7.67 1.14-7.67 4.32m7.67 0.37c0 3.18-7.67 1.09-7.67 4.29m7.67 0.37c0 3.18-7.67 1.1-7.67 4.32m7.67 0.36c0 3.2-7.67 1.11-7.67 4.3m7.67 0.36c0 3.2-7.67 1.14-7.67 4.32m7.67 0.35c0 3.18-7.67 1.12-7.67 4.31m7.67 0.39c0 3.17-7.67 1.08-7.67 4.28m7.67 0.38c0 3.17-7.67 1.12-7.67 4.32m7.67 0.35c0 3.2-7.67 1.11-7.67 4.31m7.67 0.35c0 3.18-7.67 1.12-7.67 4.32m7.32 1.04c0 3.18-7.66 1.12-7.66 4.32m2.36 10.57c-2.78 1.59-4.81-6.09-7.57-4.5m3.07 7.09c-2.78 1.6-4.81-6.05-7.57-4.48m3.07 7.12c-2.77 1.55-4.81-6.11-7.56-4.51m3.06 7.09c-2.77 1.55-4.81-6.08-7.56-4.48m3.07 7.04c-2.77 1.61-4.81-6.07-7.56-4.46m3.06 7.07c-2.77 1.62-4.81-6.05-7.56-4.48m3.06 7.09c-2.77 1.57-4.81-6.1-7.56-4.5m3.07 7.09c-2.77 1.59-4.81-6.09-7.56-4.48m3.06 7.08c-2.77 1.57-4.81-6.09-7.56-4.48m3.07 7.07c-2.77 1.62-4.81-6.05-7.56-4.46m3.06 7.04c-2.77 1.6-4.81-6.05-7.56-4.48m3.06 7.1c-2.77 1.57-4.81-6.09-7.56-4.48m3.07 7.06c-2.77 1.59-4.81-6.08-7.56-4.48m3.06 7.09c-2.77 1.58-4.81-6.1-7.56-4.46m3.07 7.04c-2.77 1.63-4.81-6.05-7.56-4.46m3.74 6.6c-2.76 1.61-4.8-6.07-7.55-4.48m80.36-42.98c-1.06 3.02-7.6-1.46-8.66 1.54m6.8 3.6c-2.26 2.27-6.2-4.63-8.46-2.4m0.45-125.91c1.07-1.92 3.42-2.12 5.32-1.92 1.92 0.2 3.2-0.44 3.2-0.44m-120.66-22c1.49-0.92-0.85-6.57 0.21-7.21m84.46 8.78s5.01-5.12 5.1-6.71" stroke="#000" stroke-linecap="round" stroke-width="1.1507" fill="none"/>
<path id="path432" d="m458.3 232.53c3.56-2 5.96-5.83 5.96-10.22 0-6.49-5.26-11.76-11.75-11.76-6.48 0-11.74 5.27-11.74 11.76 0 5.84 4.28 10.7 9.88 11.58" stroke="#d18644" stroke-width=".69593" fill="none"/>
<path id="path434" d="m450.15 162.82h-49.45c-3.61 13.67-15.14 24.16-29.44 26.04l-6.11 10.99 2.44 1.63c6.97 4.53 11.56 12.4 11.56 21.33 0 7.95-3.64 15.06-9.34 19.73l-2.39 2.6v72.7c0 4.65-0.35 9.84 7.44 14.18 7.77 4.32 75.29 43.2 75.29 43.2h0.1s67.5-38.88 75.29-43.2c7.79-4.34 7.44-9.53 7.44-14.18v-72.7l-2.39-2.6c-5.69-4.67-9.34-11.78-9.34-19.73 0-8.91 4.58-16.8 11.56-21.33l2.44-1.63-6.11-10.99c-14.3-1.88-25.82-13.4-29.44-26.04h-49.45m-0.14 12.89h40.82c5.4 10.73 14.64 19.02 25.8 23.19-5.4 6.8-8.35 15.15-8.35 23.94 0 10.36 4.25 20.35 11.7 27.54-0.07 16.07 0.02 63.55 0.02 67.48v0.59c0 0.38 0 1.24-0.02 1.83-0.18 0.1-0.42 0.27-0.78 0.49-5.32 2.96-47.89 27.41-69.03 39.63h-0.14c-21.13-12.22-63.7-36.67-69.02-39.63-0.36-0.2-0.61-0.37-0.79-0.49-0.03-0.59-0.03-1.45-0.03-1.83v-0.59c0-3.93 0.11-51.41 0.03-67.48 7.45-7.19 11.71-17.18 11.71-27.54 0-8.78-2.95-17.14-8.36-23.94 11.17-4.17 20.4-12.46 25.82-23.19h40.63m0.03-10.63h-47.76c-4.26 13.61-15.68 23.56-29.7 25.83l-4.56 8.23c0.4 0.25 0.7 0.44 0.69 0.44 7.88 5.13 12.59 13.84 12.59 23.23 0 8.28-3.66 16.05-10.02 21.32l-1.71 1.87c0.04 7.99-0.01 67.51-0.01 71.84v0.57c-0.01 4.37-0.01 8.14 6.29 11.65 7.21 3.99 66.13 37.88 74.22 42.58h0.05c8.09-4.7 67.01-38.59 74.22-42.58 6.31-3.51 6.3-7.26 6.29-11.65v-0.57c0-4.33-0.05-63.85-0.01-71.84l-1.71-1.87c-6.37-5.27-10.01-13.04-10.01-21.32 0-9.39 4.7-18.08 12.58-23.23-0.01 0 0.3-0.19 0.69-0.44l-4.56-8.23c-14.02-2.25-25.43-13.26-29.7-25.83h-47.75m-0.08 8.36h42.14c5.54 11.89 15.79 20.71 28.31 24.44-6.35 6.62-10.01 15.49-10.01 24.93 0 10.2 4.25 19.77 11.72 26.61-0.08 16.35 0.03 64.49 0.03 68.42v0.59c0.01 1.01 0.01 2.56-0.15 2.96-0.03 0.02-0.37 0.53-1.82 1.35-5.67 3.13-50.3 28.78-70.15 40.24h-0.08c-19.84-11.48-64.49-37.11-70.14-40.24-1.45-0.82-1.8-1.33-1.82-1.35-0.15-0.4-0.15-1.95-0.15-2.96v-0.59c0-3.93 0.1-52.07 0.02-68.42 7.46-6.84 11.7-16.43 11.7-26.61 0-9.42-3.64-18.31-10-24.93 12.51-3.73 22.76-12.54 28.31-24.44h41.97m-69.73 118.1l0.18-0.45h22.56m32.53-0.02h36.64m2.88 0h4.5m6.58 0h33.23l0.63 0.47m-120.81 39.58c1.41-0.71 6.47-3.18 10.79-3.58 5.08-0.44 6.46 1.4 10.62 0.91 4.15-0.46 17.54-4.13 17.54-4.13 6.92-3.24-3.7-4.17-3.7-4.17l-5.07-0.46s-0.92-0.46-5.08-3.22c-4.16-2.78-5.07-1.39-10.15 0.46-0.28 0.13-0.55 0.22-0.81 0.28-0.03 0.01-0.06 0.04-0.11 0.04-0.23 0.08-0.45 0.15-0.65 0.23-0.05 0-0.08 0.02-0.12 0.02-0.2 0.07-0.39 0.11-0.56 0.17-0.02 0-0.06 0.02-0.08 0.02-0.18 0.06-0.33 0.1-0.49 0.15h-0.01c-0.15 0.02-0.29 0.06-0.43 0.08h-0.05c-0.13 0.05-0.23 0.05-0.35 0.07-0.02 0-0.05 0.02-0.07 0.02-0.11 0-0.2 0.02-0.3 0.02h-0.03-0.29v-0.02c-0.1 0-0.18-0.02-0.27-0.02-0.02 0-0.02-0.02-0.04-0.02h-0.03c-0.65-0.11-1.28-0.4-2.65-0.6-3.23-0.44-8.32 3.25-8.32 3.25s-0.92 1.38-5.98 0c-5.08-1.39-4.16-2.32-12-2.32l-0.22 0.15" stroke="#000" stroke-width=".69593" fill="none"/>
<path id="path436" d="m450.27 360.42c21.14-12.24 63.71-36.69 69.03-39.63 0.36-0.2 0.61-0.39 0.79-0.51l-1.12-0.59s-6.46 0.46-5.53-4.15-3.68 0.93-3.68 0.93-3.24-0.48-9.7-4.63c-6.46-4.16-4.16 1.83-4.16 1.83s-1.74 0.99-3.77 1.54h-0.01c-0.01 0-0.03 0-0.05 0.02-0.09 0.02-0.19 0.05-0.29 0.07-0.08 0.02-0.15 0.02-0.24 0.04-0.11 0.02-0.21 0.02-0.32 0.04-0.08 0.02-0.15 0.05-0.23 0.06-0.12 0.02-0.23 0.02-0.36 0.02-0.07 0-0.12 0.02-0.19 0.02-0.18 0.02-0.36 0.02-0.53 0.02-2.76 0-9.23 2.78-9.23 2.78s-2.29 1.83-5.52 0c-3.25-1.83-7.39-3.68-11.54-3.22-4.15 0.44-6.46 6.46-6.46 6.46s-2.3 1.85 0.46 4.61-0.93 1.85-5.07 2.76c-4.16 0.93-5.09 0-8.77 0-10.15 0.47-21.69 4.61-11.08 6 10.62 1.39 28.62 0.93 33.7 1.39 5.07 0.46-2.78 4.63-13.39 4.63-10.62 0-20.77-0.93-21.68-2.78-0.93-1.83-7.39-4.16-8.77-1.83-1.39 2.29-8.76 2.76-8.76 2.76m-11.24-41.28l1.9 3.45h26.32s2.41-1.39 3.8-3.45c-5.19 1.17-23.54 0.84-26.66 0.84-3.1 0-5.35-0.84-5.35-0.84h-0.01zm0.34 0.16l-4.84-0.88 5.36-5.52m29.08 0.52c0.17 2.41-0.7 2.59-1.22 4.16l-1.21 1.58m6.24-5.58l2.77 3.47-4.16 1.9m-17.83-23.88v3.8m-0.34 3.44l-0.17 0.89m0.17 6.75l-0.35 2.59m0 4.5l0.18 2.77m-7.62-17.13v-3.99m0.18 9.87v2.42m18.51-11.25v2.95m0 2.77v1.22m-0.34 4.5v2.06m0 4.85l0.17 1.57m-22.33-8.67l1.56-2.08m22.16 8.83l0.69 1.74m-9.17-3.13l-1.74 3.13m3.46-7.63l-4.67 7.63m3.29-10.05l-1.73 3.3m3.11 4.84c2.08-2.94 1.04-4.31 1.04-4.31l9.52-0.21 2.07 5.74c-1.9 0-3.3-0.86-3.3-0.86l-9.5 0.16-1.56 1.54m1.9-7.95c3.12-1.02 8.83-0.14 8.83-0.14s1.39-1.92 0.17-4.86l-9.34-0.68s1.89 1.04 0.32 5.7h0.01l0.01-0.02zm1.91-6.56l5.7 0.51s1.05-1.39 0.7-2.59l-6.23-0.35s0.33 0.52-0.17 2.43zm8.31 3.97l0.86 4.7 2.95-0.2-2.78-4.5h-1.03zm-12.11 7.45v-3.47l-11.43-1.53s1.04 1.37 0 6.22l11.43-1.22zm-8.83-5.36c1.39-2.27 2.08-4.86 1.04-7.78l10.38 0.33s-1.2 0.17-1.72 2.95l-0.53 2.77-9.17 1.73zm9.86-7.78c-3.98-0.86-8.66-1.39-8.66-1.39l0.18-3.11 7.26 0.53s1.04 1.36 1.21 3.97h0.01zm-9.17 5.69l-6.75-0.52s0.69-2.77-0.87-6.03l7.62 0.86m-3.63 8.14l-5.36-0.22c0.86 4.36 1.2 4.7 0 6.95l5.36-0.86v2.43" stroke="#000" stroke-width=".69593" fill="none"/>
<path id="path438" d="m475.13 306.06h14.88s1.84-1.02 1.15-3.58c0 0-10.73 1.06-17.07 0.81 0 0-0.35 0.94 1.03 2.77h0.01zm0.59-2.77l-9.01-3.56m11.77 3.45v-23.65m1.04 5.78v17.28l13.96-2.65m-2.77 0.6c-6-7.39-5.88-17.52-5.88-17.52m-7.27 19.26c-1.96-5.66-3.23-12.93-1.5-16.97 0 0-5.89 8.2-8.42 14.53l9.93 2.42-0.01 0.02zm-1.74-16.87l2.65-5.06m0.36 5.52l7.16-3.57m-105.93-24.45s1.84-1.83 5.53-3.68c3.68-1.86 5.07-2.78 7.84-0.93 2.75 1.85 5.53 2.76 5.53 2.76s3.7-2.32 6.93-4.63c3.23-2.3 2.3-3.69 6.46-2.76 4.15 0.93 14.3-1.84 18-3.69 3.69-1.83 5.53 0.48 8.76-3.68 3.23-4.15 3.23-3.71 7.85-5.54s3.68-5.06 9.69-3.24c5.99 1.85 9.22 0.93 17.99 7.87 8.76 6.91 14.31 9.23 18 12.91s7.39 6.02 7.39 6.02 3.69-1.41 7.38-3.24c3.68-1.85 5.07-3.22 7.85-1.39 2.77 1.85 5.07 2.29 5.07 2.29m-19.81 2.3s5.07 4.61 8.3 6.44c3.23 1.86 10.62 3.71 10.62 3.71m-83.33-119.71c-2.26-2.1-4.34-3.07-7.37-3.07-1.93 0-3.57 1.39-5.88 2.14 0.28 0.27 0.6 0.59 0.97 0.93 2.26 2.12 2.46 5.87 6.61 6.68 0 0-0.14 0-0.4 0.03 3.69 0.61 12.68-0.03 12.68-0.03-4.16-0.81-4.34-4.56-6.61-6.68zm-17.96 6.68s-0.15 0-0.41 0.03c3.69 0.61 12.67-0.03 12.67-0.03-4.15-0.81-4.34-4.56-6.61-6.66-2.26-2.1-4.34-3.09-7.36-3.09-3.47 0-5.24 1.85-4.89 5.12 0.34 3.29 2.95 4.63 6.23 4.63m30.6-6.68c-2.26-2.1-4.34-3.07-7.35-3.07-1.93 0-3.59 1.39-5.89 2.14 0.28 0.27 0.6 0.59 0.98 0.93 2.26 2.12 2.45 5.87 6.61 6.68 0 0-0.15 0-0.41 0.03 3.69 0.61 12.67-0.03 12.67-0.03-4.16-0.81-4.34-4.56-6.61-6.68zm12.29 0c-2.26-2.1-4.33-3.07-7.35-3.07-1.93 0-3.58 1.39-5.89 2.14 0.28 0.27 0.61 0.59 0.98 0.93 2.26 2.12 2.46 5.87 6.61 6.68 0 0-0.15 0-0.41 0.03 3.7 0.61 12.68-0.03 12.68-0.03-4.16-0.81-4.34-4.56-6.62-6.68zm12.3 0c-2.26-2.1-4.34-3.07-7.36-3.07-1.92 0-3.58 1.39-5.88 2.14 0.28 0.27 0.6 0.59 0.98 0.93 2.26 2.12 2.44 5.87 6.6 6.68 0 0-0.14 0-0.4 0.03 3.68 0.61 12.67-0.03 12.67-0.03-4.16-0.81-4.34-4.56-6.61-6.68zm4.92-3.07c-1.93 0-3.57 1.39-5.89 2.14 0.29 0.27 0.6 0.59 0.98 0.93 2.26 2.12 2.46 5.87 6.61 6.68 0 0-0.15 0-0.41 0.03 4.67 0.29 8.18 0.86 8.18-3.16s-4.45-6.33-9.47-6.6v-0.02zm-0.79-0.19c2.89-4.55 4.55-9.93 4.55-15.71 0-11.92-7.1-22.18-17.3-26.77m-5.88-1.96c-1.99-0.42-4.07-0.62-6.18-0.62-1.2 0-2.39 0.06-3.56 0.18m-3.41 0.64c-12.85 3.11-22.4 14.69-22.4 28.53 0 5.82 1.7 11.25 4.62 15.81m31.56-49.834c-0.34-2.648-0.22-1.281 1.26-1.496 1.62-0.226 1.15-3.467 1.15-3.467s4.85-0.711 6.93-0.711c2.06 0 1.36-2.508 3.89-3.219 2.55-0.678 1.85-1.593 1.85-1.593s0.46-0.721 2.77-0.463c2.31 0.226 2.54-0.926 2.54-0.926v-1.626l2.53-0.463 0.24-2.056 3.69-0.237 0.45-1.389 3-0.452-0.24-1.389 0.93-0.463-0.93-1.83h2.78l0.22-2.53 2.07-0.689-0.92-1.389 1.61-0.463-0.69-2.314 1.39-0.442v-1.41l2.07-0.905-0.23-1.615 2.53-0.236-0.45-1.594v-0.247s2.53-0.679 3.91-3.456c1.39-2.757 3.23-3.446 3.23-3.446l-0.93-1.141 1.84-0.937 0.24-1.604s3.69-0.689 7.85-2.314c4.16-1.615 5.08-5.524 5.08-5.524s-9.46 1.594-21.47 2.983c-11.99 1.389-22.38 2.541-27.69 4.166-5.31 1.615-0.92 5.986-7.61 12.909-3.89 4.016-9.7 1.83-11.3-1.163-1.62-2.982-3.69-8.99-3.69-8.99h1.85l-1.85-3.456 1.85-0.925s-1.61-0.926-5.31-2.778c-3.7-1.82-6.46-0.915-8.77 0.926-4.14-0.442-4.84 3.036-4.84 3.036s2.77-1.184 4.62-0.485c1.85 0.689 3.45-0.699 4.15 9.69 0.69 10.368-4.38 8.538-10.15 8.312-4.84-0.7-6-2.068-7.15-5.997-1.15-3.93 0.23-5.997-4.62-9.464-4.84-3.467-20.53-6.223-29.77-7.838-9.23-1.625-21.92-5.071-21.92-5.071s0.23 1.852 3 3.683c2.76 1.851 4.38 3.692 4.38 3.692s0.23 0.237 1.61 2.294c1.37 2.088 3.69 2.777 3.69 2.777s0.91 1.626 1.84 3.004c0.92 1.367 5.07 5.749 6.68 7.149 1.62 1.367 4.61 1.367 4.61 1.367-1.15 0-1.6 0.7-1.83 2.089 1.38 1.615 3.68 2.315 3.68 2.315l-0.46 1.614 2.99 0.679-0.45 2.304 4.16 0.926-0.93 1.367 3.93 0.7-0.93 1.389 3.01 0.667-0.7 1.41 4.15 0.442-0.7 1.852h3.93l-0.92 1.615 3.24 0.463s6.22 4.145 10.61 5.275c4.39 1.184 2.31 2.552 7.85 0.721 5.54-1.83 3.69-1.388 3.69-1.388s2.99 0.925 2.3 2.314c-0.7 1.389 0.69 2.541 2.08 5.523 1.38 3.015 0.69 2.089 2.3 2.089 0.56 0 0.91 0.248 1.11 0.624" stroke="#000" stroke-width=".69593" fill="none"/>
<path id="path440" d="m457.44 96.903c-0.07-0.7-0.4-1.184-2.15-2.444-3.24-2.293-4.62-6.933-4.62-6.933l-1.85-0.442s-0.45 0.689 0.24 3.908c0.69 3.241 1.15 4.608 1.15 4.608l-2.08-1.367s-0.92 0.226-1.15 1.841c-0.06 0.409-0.04 0.851 0.01 1.271m-72-51.355l2.76 0.463m2.31 4.166l3.93 0.463m-1.39 3.219l6.69 0.689m-3.23 3.704l7.39 0.204m-1.4 3.241l6.01-0.668m-2.78 5.297l5.53-1.162m-3.45 3.703l4.62-1.152m3.46 2.778l-4.38 1.13m2.77 2.541l4.38-1.593m-2.3 3.24l4.38-1.851m-0.46 3.682l3.69-2.089m-0.93 4.167l4.38-2.315m-1.84 3.93l3.69-1.852m-1.38 3.477c2.3-0.484 4.15-2.336 4.15-2.336m-1.61 3.467c2.3-0.463 3.93-1.831 3.93-1.831m-0.46 3.683c1.38-0.463 3.91-2.541 3.91-2.541m43.39 4.392l-3-0.71m6.68-1.368l-3.68-1.162m8.77-2.294l-5.32-1.152m7.86-1.388l-5.76-1.152m9.91-0.463l-9.46-2.089m12.23 0.463l-6-1.389m6-0.463l-6-1.593m9-1.411l-5.77-0.925m7.61-1.389l-5.77-0.442m5.55-1.852l-3.47-0.689m5.31-1.162l-3.92-0.463m5.77-2.283l-4.15-0.463m6.45-1.647l-4.61-0.441m8.53-3.241l-5.53 0.258m7.61-4.651l-3.92 0.463m6.23-2.519l-4.62 0.226m-58.18 46.543c0.39 0.689 0.35 1.787 0.49 2.39 0 1.542 0.32 2.582-1.5 3.112-1.81 0.51-2.42 0.86-2.68 2.59 0.78-0.76 1.38-1.36 2.17-0.7 0.77 0.7 1.9 0.6 1.9 0.6s-1.21-1.54 0.52-2.07c1.72-0.52 4.75-0.42 4.75-0.42s-2.17-1.02-2.51-1.74c-0.34-0.67-0.58-1.372-0.58-1.372s-0.54-1.238-0.69-2.541m10.45-0.485c0.12 0.593-0.05 1.282 0.41 2.8 0.16 0.668-1.01 0.928-1.7 1.768 0 0 2.68-0.34 2.43 0.97-0.25 1.28 0.25 2.22 0.25 2.22s0.51-0.5 1.21-0.86c0 0 0.77 0.08 2.25 0.52 1.47 0.42 1.99 1.31 1.99 1.31s0.78-2.25-1.56-3.47c-1.98-0.95-2.66-1.47-2.66-1.47m-0.14-0.32s-0.23 0.93-0.69-2.779c0 0 0-0.269-0.15-0.936m115.32 64.365l-6.48 0.26s-1.85-9.69-5.08-15.22l2.55-0.92s1.37-2.52 1.37-6.45c0-3.91-0.69-6.67-0.69-6.67l-1.61-0.72s2.3-1.37 2.09-2.29c-0.24-0.93-0.24-2.31-0.24-2.31s7.73 0.84 13.27 0.61c0 0 0.11 0.84 0.23 1.47 0.26 1.5 0.69 1.48 0.47 3.45-0.34 2.9-1.27 2.09-1.27 6.01 0 3.91-0.46 7.38-0.46 7.38l1.38 0.7s0.93-0.7 1.85 4.35c0.93 5.09 2.08 9.93 2.08 9.93l-5.38 0.24m-10.79-39.47s6.7 0.24 9.24 0.24c0 0-1.39-2.07-1.62-2.98-0.23-0.93-1.61-1.63-2.08 0.22-0.46 1.84-2.77 2.99-3.46 1.6-0.7-1.36-1.62-1.6-2.09 0.92h0.01zm11.07 16.15s-1.38 3.48-4.38 3.24c-3-0.22-5.08-1.41-5.08-1.41m-4.38-19.59c3.47-1.85 6.46-3.24 8.31-2.76 1.85 0.44 7.39 2.3 7.39 2.3s0.4-2.48-0.93-2.99c-5.31-2.08-8.76-3.01-11.77-1.16-3 1.85-0.48 0.88-3 1.85-0.92 0.34-0.86 3.29 0 2.76z" stroke="#000" stroke-width=".69593" fill="none"/>
<path id="path442" d="m566.29 126.59c-1.9 0.17-2.08 0.17-2.08 0.17s0.39-1.13 1.04-2.59c0.69-1.56 1.04-2.75 2.08-2.58m12.28 5.72s2.42 2.05 1.91-0.36c-0.52-2.44-0.88-2.61-2.26-4.34-1.38-1.74-2.07-1.04-2.07-1.04m-23.37 26.15c-0.7-1.41-0.7-0.88 0.18-2.61 0.86-1.72-1.56-1.91-0.35-3.28 1.21-1.38 1.74-5.17 3.81-6.22s3.63-0.69 2.6-3.3c-1.04-2.59-1.04-4.65 0.15-6.75 1.22-2.09 1.73-3.26 2.95-3.97 1.22-0.7 1.39-1.74 1.39-1.74m0.01-2.95s-0.17-1.54 1.2-3.12c1.38-1.56 2.76-3.11 4.67-3.11 1.9 0 3.81 0 5.87 1.55 2.07 1.56 2.6 1.56 3.12 3.62m1.22 3.5s-0.51 1.02 0.88 4.33c1.38 3.28 2.25 4.98 2.42 8.98 0.15 3.97-0.35 4.5 1.38 6.05 1.72 1.56 2.41 1.2 3.28 3.81 0.86 2.58 1.21 3.44 0.52 3.8-0.69 0.34-1.04 1.01-0.87 1.56 0.18 0.51 0.35 0.51 0.35 0.51m-26.12-2.4s-13.33 1.89-15.41 5.36c0 0-0.69 3.97-2.42 6.39-1.73 2.45-2.43 4.7-2.43 4.7s2.78 9-0.69 11.41c-3.45 2.42-4.5 2.93-4.5 2.93s5.88 11.34-2.07 21.61c-1.55-3.07-2.07-7.07-2.59-10.18m2.42 10.39s2.25 4.5 4.33 2.78 0.34-3.31 2.95-7.61c2.59-4.34 12.09-17.65 12.09-17.65s3.64 9.84 2.08 14.03c-1.54 4.14-2.08 6.2-0.68 7.08 2.25-2.07 4.33-2.77 9.17-3.64 4.85-0.86 4.33-0.86 8.99-0.86 4.67 0 7.44 0.18 10.03 1.04 2.61 0.88 3.47 1.04 3.47 1.04s0.35-0.35 1.39-1.57c1.03-1.2 6.04-2.07 6.75 2.08l1.03 2.75s0-5.69 1.04-10.37c1.03-4.66 0.33 0.36 1.55 0 1.2-0.33 1.73-2.41 2.59-5.16 0.86-2.78 2.43-3.47 3.47-6.95 0.73-2.45 1.3-3.26 0.57-4.17m-2.92-2.47c-1.87-1.87-2.9-4.52-4.05-8.05-1.37-4.35-2.42-5.89-3.45-7.97-1.22-3.11-10.05-5.18-12.47-6.22-2.43-1.06-1.89-0.18-1.89-0.18m3.11 0.51l3.64 16.44-9.61 0.22m-4.72 0.11l-7.31 0.16s-3.46-14.01-5.54-17.28m-6.92 57.27l2.08-7.28m40.83 0.7s4.85 23.55 5.19 39.11c0.33 15.59 1.03 15.23-2.07 16.28-3.13 1.03-5.88-3.12-5.88-3.12h-0.7c-2.77-1.72-4.85-2.77-4.85-2.77s0.69-0.34 2.08-10.73c1.38-10.36 2.08-21.8 2.08-31.15-1.74-2.07-6.22-4.15-10.39-4.85-4.16-0.69-2.41-1.38-8.3-1.04-5.88 0.35-10.04 0.69-13.85 1.74-3.81 1.03-6.22 3.8-6.22 3.8s-0.7 4.15-2.43 7.96c-1.74 3.8-1.74 9-3.1 21.44-1.39 12.47-0.35 18 0.69 24.94 1.02 6.9-0.69 8.31-2.08 19.7-1.39 11.42-2.08 20.11-3.47 27.7-1.39 7.61-1.73 10.05-1.03 14.87 0.69 4.86-1.39 7.27-3.47 11.08-2.09 3.8-4.16 7.61-4.16 11.41 1.74-3.78 5.19-5.52 8.32-2.77 3.11 2.77 6.56 5.21 6.56 5.21l22.5 1.37s2.77-0.35 5.88-3.11 3.46-2.42 5.54-0.35c2.07 2.07 5.53 1.02 5.53 1.02s2.07-2.41 4.5-3.43c2.42-1.05-1.73-20.43-1.73-31.85 0-11.43 1.04-40.51 2.09-47.44m-5.53-15.16l-1.04 12.8 1.39-1.72v3.11l1.73-2.78v3.47l1.03-2.41v1.72l1.74-1.72s-1.74 2.76-0.35 2.08c1.38-0.69 1.04-0.36 1.04-0.36l0.69 1.72 1.73-2.77 0.68 2.77 2.08-3.11v2.08l1.38-3.47 1.05 2.78s0.34-0.33 0.34-3.46v-6.23m-35.46-58.33s2.94-10.21 3.98-13.67c1.04-3.47 3.46-8.98 3.46-11.78 0-2.76-0.99-6.35 0.39-7.04l4.88-0.25c-2.53 0.84-0.43 1.15-0.77 6.27-0.35 5.19-1.05 6.91-3.11 13.13-2.08 6.25-4.5 12.84-4.5 12.84m-32.89-15.95s-4.5 2.42-6.58-0.33c-2.08-2.78-2.08-4.15-2.08-4.15s0.7-2.1 3.47-4.17c2.77-2.05 4.84 0 5.53-4.15 0.7-4.15 0.7-6.22 2.78-7.26 2.08-1.05 3.8-2.42 3.8-2.42l2.41-3.47" stroke="#000" stroke-width=".69593" fill="none"/>
<path id="path444" d="m539.05 190.47s-5.77-1.28-11.42-4.85c-5.65-3.58-20.01-23.41-22.1-25.89-2.08-2.44-1.73-0.96-5.58-1.98-3.85-0.99-3.46-1.93-3.46-1.93l0.12-0.12c-1.5 0.98-1.38 0.37-2.11-0.39-0.74-0.8 1.04-1.53 1.72-2.08 0.7-0.57 1.26-0.63 1.73-1.91 0.48-1.31 1.17-2.74 1.17-2.74s6.22 1.03 9 4.5c2.78 3.46 5.19 4.87 10.39 9.7 5.19 4.86 10.74 9.34 10.74 9.34m-31.61-21.01s-3.82-1.39-4.97-2.09c-1.15-0.69-3.23-0.46-2.54 0.93 0.7 1.39 0.58 1.96 0.58 3.48 0 1.48 0 2.74 1.27 2.85s3 0 3 0m1.5-0.67s0.58-0.33 1.5-0.8c0.93-0.46 1.84-0.92 2.78-0.92m-9.93-3.02s0.57 0.35 1.96 0.82c1.39 0.45 3.93 0.93 3.93 0.93m-5.78 0.24c1.04 0.44 2.99 0.92 4.15 0.92m-4.03 0.91s1.27 0.59 3.23 0.48m-5.46-7.03s11.52-0.16 14.27-0.08c2.78 0.08 2.78-2.35 0-2.35h-14.36c-2.76 0-3.9 2.27 0.09 2.43zm5.54 8.4s0.1 2.6 0.1 3.64 1.99 2.18 1.99 0.07c0-2.05-0.08-4.06-0.08-4.06m1.19-10.74l-1.39-72.168h-1.38l-1.39 72.168m114.76 10.39s-2.09 0-2.43-1.9c-0.35-1.88-0.35-3.46-0.35-3.46s-1.9-0.53-1.38-1.22c0.52-0.68 0.87 0.2 0.34-0.51-0.52-0.69-2.08-1.91 0-2.05 2.09-0.18 3.64-0.18 4.16-0.18 0.51 0 0.69 0 2.07 1.54 1.39 1.55 2.08 1.22 2.6 4.5 0.46 2.94 1.06 9.76-0.17 16.62m-0.51 2.41c-1.91 7.61-5.02 19.57-7.96 22.5-2.95 2.94-5.19 2.42-5.54-1.19-0.33-3.64-0.51-5.37-0.51-5.37m7.08-37.22l1.9-0.7m-2.94-1.19l2.08-0.7m-0.7 4.12l1.73-0.48m-1.56 2.23l1.56-0.34m-2.59 39.98s5.88 50.52 6.57 54.36c0.7 3.8-2.42 0.69-2.08 4.14s3.47 5.53 0.34 7.97c-3.11 2.41-5.53 2.76-5.87 8.63-0.35 5.89 1.04 54.01 2.07 61.95 1.05 7.98 1.05 9 3.81 11.78 2.77 2.76 3.81 5.2 3.81 5.2m-93.27-0.87s1.2-1.55 3.29-2.92c2.08-1.39 2.77-1.74 3.46-4.5 0.7-2.75 1.04-3.11 3.8-6.58 2.77-3.45 3.45-7.61 3.81-14.18 0.34-6.57 1.38-34.26 1.72-44.68 0.36-10.36-0.68-55.37 0-60.22 0.7-4.84 0-5.89 0.36-7.61 0.34-1.75-1.39-5.17-1.39-5.17m71.65-31.35l-1.91-0.18s-24.75 1.56-25.27 1.73v1.39l27.52-0.69m0-2.25l1.91-0.18s24.74 1.56 25.27 1.73v1.39l-27.52-0.69m-1.91-2.78l0.86-13.67m2.44 13.85l-0.18-12.99m-0.35-13.48l0.18 3.45m-2.09 0.17v-3.45m0.95 0.49c0.95 0 1.71-0.78 1.71-1.71 0-0.97-0.76-1.74-1.71-1.74s-1.71 0.77-1.71 1.74c0 0.93 0.76 1.71 1.71 1.71zm-16.97 62.72c0 3.79-4.6 6.86-10.28 6.86-5.67 0-10.28-3.07-10.28-6.86 0 0 6.83 0.86 10.11 0.86 3.29 0 10.45-0.86 10.45-0.86zm54.01 0c0 3.79-4.6 6.86-10.27 6.86-5.69 0-10.29-3.07-10.29-6.86 0 0 6.83 0.86 10.1 0.86 3.3 0 10.46-0.86 10.46-0.86zm-61.87 0.48l-2.25-34.1-10.56 33.4s9.18-0.51 20.61-0.16l-9.17-33.05m55.38 33.91l-2.25-34.1-10.56 33.4c7.61-0.51 16.26-0.16 20.59-0.16l-9.17-33.05" stroke="#000" stroke-width=".69593" fill="none"/>
<path id="path446" d="m322.24 142.8s1.96-1.04 2.54-2.65c0.58-1.59 0.47-2.65 0.35-5.98-0.11-3.35-0.23-4.04-0.23-4.04s-1.96 0.92-2.08-0.93c-0.11-1.85 0.11-3.92 0.11-3.92s1.03-0.09 1.62-2.07c0.57-1.96 3.22-5.54 4.84-6 1.61-0.46 4.04-2.41 4.04-2.41s0.67 2.41 2.52 3.11c1.84 0.69 4.5 0.69 4.96 4.5 0.45 3.8 0.11 4.14-0.34 6.68-0.46 2.55-1.16 2.78-1.27 6.69-0.1 3.93-0.71 6.33 0.8 9.25l-0.34-0.93s-0.12 4.15-0.81 7.03 0.11 3.8-2.18 3.8c-2.31 0-6.23 0.11-7.73 0.24-1.5 0.12-1.96 0.93-3.47-2.42-1.5-3.34-3.35-9.93-3.35-9.93l0.02-0.02zm17.2-10.15c-0.93 2.44-1.73 3.7-5.07 3.93s-5.19-0.93-5.19-0.93m-6.94 7.05s-4.96 2.88-8.42 3.45c-3.46 0.59-5.42 1.28-5.42 1.28 2.65-5.32 2.65-9.46 5.77-12.8 3.11-3.35 4.38-4.3 4.38-4.3s-0.58-4.14-0.24-6.09c0.35-1.96-0.11-2.32 0.35-3.58 0.46-1.27 0.12-1.6 1.96-2.31 1.84-0.7 1.96-0.7 1.96-0.7s0.69-1.04 2.64-1.83c1.95-0.8 3.22-1.04 5.06-1.28 1.86-0.23 3.01 0.13 5.32 0.24 2.31 0.1 4.16 0.35 5.42 2.07 1.27 1.73 4.73 7.95 2.99 13.72 2.66 3.69 2.89 5.67 3.81 8.32 0.93 2.65-0.92 1.72 1.15 2.42 1.05 0.34 1.24 1.18 1.4 1.45 0.16 0.23 0.27-0.06 1.13 2.11 1.74 4.39 1.62 5.32 1.62 5.32m-12.98-5.76s1.49 2.89 5.3 4.03c3.8 1.15 7.16 1.75 7.16 1.75m-12.93-35.1s-0.45-1.06-1.03-1.5c-0.58-0.46-0.35 0.81-1.27-0.09-0.93-0.93-1.15 0.44-1.5 0-1.2-1.63-1.38 0-2.18-0.93-0.81-0.93-0.93 0.8-2.08 0.23-1.14-0.6-0.35 0.57-1.62 0.12-1.27-0.48-0.8 0.45-1.94 0.32-1.16-0.11-1.04 0.26-1.74 0.26-0.69 0-1.15 0.44-1.15 0.44s-0.93 0-1.5 0.33l-0.34 1.15-0.24 1.85m0.67-3.21s1.27-2.65 2.08-3.81c0.8-1.16 1.84-2.42 4.96-2.42 3.11 0 4.5-0.35 6.57 2.63 2.07 3.04 1.26 2.91 1.26 2.91m-45.56 59.3c3.92-0.7 8.48 1.32 7.61 7.37-0.93 6.48-1.84 10.17-5.31 11.32m-4.85-27.91s-2.99-4.85-3.91-8.56c-0.93-3.67-0.24-2.29 1.84-4.83 2.07-2.54 3.93-4.17 3.93-4.17 1.38-0.67 1.15-1.37 0.23-2.06-0.92-0.71-0.23 0.45 0.68-0.46 0.93-0.92-0.92-1.61-0.92-1.61s-0.69 0.22 0.68-0.24c1.39-0.46-0.68-1.85-0.68-1.85s-0.46 0.24 0.92-0.93c1.39-1.13-2.77-2.08-4.84-1.13-2.08 0.93-1.83-0.7-1.14-3.46 0.68-2.76 0.68-2.53 1.84-4.17 1.15-1.61-1.15-0.44-2.53 1.39-1.39 1.85-1.39 4.15-2.08 5.76-0.7 1.61-1.15 5.78-2.99 8.78-1.85 3-0.24 11.32 1.37 24.23 1.62 12.92 5.32 20.07 9.7 22.37m-0.47-53.07h-3.23m3.46 2.08l-2.31-0.23m2.31 2.77l-2.54 0.22m-0.46 5.09s16.84 193.13 17.3 195.91c0.47 2.78 2.55 1.85 2.55 1.85l-18.24-199.37m72.98 21.05s2.95 1.54 3.81 5.54c5.54-3.12 14.01-7.95 18.52-11.59 4.5-3.64 3.98-2.6 6.58-4.67 2.57-2.08 3.63-2.41 7.42-3.47 3.81-1.03 5.7-1.19 7.26-1.72 1.57-0.53 2.95-0.33 2.78 0.69-0.18 1.03-0.18 0.53-0.18 0.53s2.6 1.89 3.64 2.77c1.04 0.84 2.26 3.09 0.18 1.73-2.09-1.41-3.47-2.61-3.47-2.61s-0.35 2.78-0.87 2.78c-0.5 0-0.32-2.44-0.32-2.44s-0.86-0.32-2.78 0.71c-1.9 1.03-5.36 1.18-5.36 1.18s-0.53 0.55 1.21 1.41c1.73 0.86 3.46 1.88 2.77 2.58-0.7 0.69-0.7 0.69-2.77-0.15-2.08-0.86-0.69-0.69-2.94-0.52-2.26 0.17-4.33-1.22-6.07 2.06-1.73 3.3-11.42 17.14-19.72 21.14-2.77 1.17-3.11 1.89-6.22 0.69-3.12-1.22-7.96-4-9.17-6.41 0.33-4.69 0-10.76 5.7-10.23v0.02-0.02zm46.04-14.89s-0.35-0.35-2.25 0.18m1.21 2.05l1.57-0.14m-102.47-8.27c-1.55-0.27-2.84 0.75-5.08 4.17-3.47 5.3-9.92 19.13-9.92 19.13" stroke="#000" stroke-width=".69593" fill="none"/>
<path id="path448" d="m312.21 192.07s-2.31-3.01-0.93-8.53c0.61-2.4 0.93-2.32-0.46-3.48-1.39-1.13-1.15-6.91-1.15-6.91s-1.15 1.61-1.62 3.93c-0.45 2.29-4.2 15.69-4.2 15.69-2.07 6.75-6.18 12.24-8.07 5.47m16.43-6.17s2.77 0.21 6.01-0.67c3.21-0.93 4.61-1.85 8.76 0 4.13 1.83 9.45 2.75 13.37 2.75 3.91 0 1.83 1.16 5.07-1.16 3.22-2.28 6.91-1.15 4.84 2.53 2.99 2.78 2.76 4.62 0.69 6.01 0 0 7.84 30.68 7.84 36.44-7.61-0.2-13.15 1.86-13.15 1.86l-0.47-38.78s-9 0.94-13.38 1.16c-4.36 0.25-1.84-1.37-6.68-3.68-4.84-2.3-12.69-1.16-12.69-1.16s1.38-1.36 0.23-5.3m36.59-0.56s0.7-14.89 1.57-20.08c0.69 11.24 2.25 16.1 3.46 21.1 1.21 5.03 2.94 10.41 4.5 6.23 1.55-4.12 4.15-15.22 4.15-15.22m2.95-13.34c0-2.25 0.52-3.78-2.94-7.42-3.47-3.64-6.75-12.11-9.87-12.64m-7.27 90.17s-1.74 5.53 0.7 6.22c2.41 0.7 3.46 1.39 4.5 0.7 1.04-0.7 1.04-1.05 3.46-0.34 2.42 0.7 4.85 0.7 4.85 0.7s0.32-6.23-0.36-9.36m-3.11 9s1.39 3.14 0.35 8.3c-1.05 5.19-2.78 12.47-2.42 19.06 0.34 6.56 2.07 10.72 2.07 10.72s-1.04 0.34-2.07 9.69c-1.05 9.34 1.73 38.06 1.73 38.06s3.11 3.81 4.84 9c1.74 5.2 0.69 2.42 0.69 2.42s-6.22-3.79-10.38-1.72c-4.15 2.06-13.15 4.5-19.73 1.72-6.57-2.75-13.16-7.95-16.61-6.56 2.43-11.77-2.08-20.77-0.69-22.84-2.78-2.78-3.12-3.11-2.08-7.61 1.03-4.5-2.78-11.08-2.78-11.08s0.69 0.36 2.78-3.81c-2.78-11.41-1.04-22.14-1.04-22.14s-8.32-22.16-4.5-36.69c-0.35-5.2-0.7-11.06 0.34-19.05 1.03-7.95 2.08-13.15 6.22-17.65m-19.72-2.43l-11.42 80.3s0.34 1.39 3.46 2.08c0 0-1.73 19.04-2.08 23.54 0 0 1.39 1.36 3.47 2.75 0 0-3.47 17.66 3.12 25.27 6.57 7.61 10.72 16.61 14.19 16.26 3.45-0.34 3.1-0.34 3.1-0.34m-21.81-67.5s3.81 2.09 8.31 3.83c4.5 1.72 4.84 2.77 1.38 5.87-3.45 3.11-13.84 13.5-11.08 14.88m2.78 1.73s8.66 2.77 5.88 7.29c-2.77 4.48-6.92 7.61-5.88 11.42m11.08-39.13s-2.08-12.09 1.04-29.76m10.38 90.67c1.74-2.75 3.12-5.16 4.85-5.86m-23.54-200.94l-0.86-6.92m-0.87 7.11l-0.52-5.36m1.04-2.8l-1.04-9.16-1.56 0.86 1.21 9m0.87-6.75c3.98-2.76 5.7-4.85 6.22-6.4 0.52-1.58 0.52-2.6-3.81-0.35s-8.65 5.19-10.38 6.75c-1.73 1.55-1.56 3.11-0.17 2.92 1.38-0.16 4.33-1.04 6.05-1.73m8.14-9.31h-3.64c-2.42 0-2.59-0.72-2.59-0.72s-0.35-1.39-1.57-2.92c-0.16-1.74-1.38-4.17-1.38-4.17 0.17-0.86 0.7-3.11-0.17-4.67 1.91-0.33 2.77-1.9 3.64-3.799 0.86-1.895 0.52-1.195-1.21-1.367-1.72-0.194-5.18-0.355-5.87 3.956-1.91 1.91-2.94 3.99-2.25 6.41-1.03 3.11-0.17 3.47 0.34 4.17-0.69 1.21 0.15 2.58 0.15 2.58-1.02 2.27-0.84 3.64 0 5.19 0.88 1.56 1.05-1.55 0.19 0.53s-1.04 3.64-1.21 5.53m21.81 51.39c0.18 7.95 1.38 20.42-0.87 23.36m55.21-5.53c-0.69-8.3-0.17-23.19 2.61-26.48 2.31-2.74 7.26-2.43 7.94 0.7m-20.93-21.28s-0.35 3.79-1.04 8.29-2.6 3.97-5.71 4.17c-1.4 0.05-7.61 0.05-12.45 0.33-3.13 0.18-2.94-0.53-4.5-4.34-1.57-3.78-3.13-11.22-3.13-11.22m11.25 15.23c-1.03 0.16-1.56-0.86-0.51-3.48m4.49-1.89c1.73 0.36 1.9 0.52 2.07 2.77 0.19 2.23-0.17 1.54-0.17 1.54m12.99 185.02c2.43 3.13 8.2 8.86 13.21 8.64 5-0.14 4.78-0.14 4.61-1.52-0.17-1.39 0-0.53 0-0.53l-0.68-0.53s1.55 0.36-0.7-1.89-3.29-3.8-3.29-3.8 0.35 0 2.42-0.7c2.07-0.69 4.51-1.49 6.92-5.99 0 0-5.87-1.63-6.92-12.35-1.04-10.74-0.68-26.65-1.04-39.8-0.34-13.17 1.04-34.26 2.43-50.19 1.37-15.93-0.7-50.87-0.7-50.87" stroke="#000" stroke-width=".69593" fill="none"/>
<path id="path450" d="m365.01 350.73s-0.7 0.33-1.22 0c-0.52-0.34-1.22 1.91-1.91 0.86-0.69-1.03-1.39 0.53-2.07-0.17-0.69-0.67-0.87 0.17-1.9-0.51-1.04-0.69-2.78-3.13-3.81-4.15m-0.52 1.21s-0.52-2.44 1.55-2.78c2.08-0.33 3.64 0.34 5.88 2.78 0 0-2.25-2.96-0.16-2.6m-8.66 1.39c0-1.92 1.04-2.98 2.43-3.12 1.39-0.17 3.46-0.36 3.46-0.36m5.54 7.45l-1.56-1.56m-0.69 1.89l-0.88-1.39m-1.37 1.39l-0.36-1.39m-6.39-3.97s-1.91-0.53-3.13-2.06m-22.49-0.65c-4.62 3.24-5.3 5.32-9.23 6.02-3.92 0.68-3.47 0.46-5.54-0.93-2.08-1.37-1.84-1.37-1.14-2.78 2.07 2.54 4.85 3.01 8.54 1.15 3.68-1.85 3.23-2.29 3.23-2.29s0-0.91-1.38-2.08c-1.39-1.15-1.61-0.92-3.47 0.24-1.84 1.15-1.84 1.82-1.84 1.82s-0.23-1.62 0.45-2.28c0.7-0.72 1.62-1.41 1.62-1.41s-0.42-0.53-1.3-0.33c-1.32 0.35-3.07 1.67-3.56 2.62-0.45 0.93-2.21 2.43-0.45 2.77m1-1.2c-0.34 0.4-1.15 1.35-0.7 1.61 0.88 0.47 0.4 0.24 0.4 0.24m1.12-1.59c-0.9 1.4-1.03 1.74-0.08 1.91m1.34-1.51c-1.04 1-1.47 1.46-0.69 1.46s0.13-0.12 1.42-0.22c1.31-0.15 0.79 0 2.44-0.86 1.63-0.89 2.75-1.79 2.75-1.79m2.12-0.44c-0.6-1.14-2.07-1.9-3.11-2.67-1.04-0.8-2.6-1.41-2.6-1.41l-0.78 0.69m-5.27 4.05l-1.13 1.23m223.7-1.01s-3.99 4.64-0.86 6.89c3.12 2.25 4.32 4.17 7.78 1.89 3.47-2.25 3.29-2.41 5.02-4.32 1.73-1.9 2.58-2.25 2.58-2.25m24.77 0.55c5.71 4.66 7.96 6.02 11.94 5.69 3.99-0.33 4.5-0.69 4.5-0.69l-0.7-2.07s0.53-1.05-0.86-2.05c-1.39-1.06-3.98-2.61-3.98-2.61m-2.42-1.25c-2.08 0.53-4.33 3.14-4.33 3.14s0.52 0.68 2.08 1.72c1.56 1.05 2.25 1.21 3.12 1.21 0.85 0 0.32-0.16 1.39 0.16 1.01 0.36 1.18 1.05 1.89 0.36 0.68-0.68 0.51-0.36 1.2-0.36 0.7 0 0.87 0.36 1.21-0.16 0.35-0.51 0.87-1.04 0.87-1.04m-2.93 0.86l-1.39-0.86m3.29 0.7l-1.21-0.72m-3.29 0.88l-0.69-0.66" stroke="#000" stroke-width=".69593" fill="none"/>
<path id="path452" d="m543.61 348.12c-2.77 3.47-3.64 4.66-4.33 3.64-0.69-1.03-1.39-0.85-1.39-0.85s-0.34 0.15-0.86-0.35c-0.52-0.51-1.05-0.51-1.55-1.75-0.52-1.17-1.56-1.17-0.69-2.58 0.85-1.39 1.72-2.59 1.72-2.59s3.63 1.37 2.77 3.8c-0.85 2.41-0.51 1.9-0.51 1.9s0.85-0.33 1.9-1.56c1.03-1.22 1.9-1.05 2.76-0.16m-0.51-6.42l-2.25 2.94s-1.56-1.2-3.81-1.88l1.9-2.61m5.37 2.94l-1.56 2.25s1.56 0.69 2.08 2.08 0.35 0.72 0.35 0.72 0.17-0.55 0.7-1.06c0.5-0.52 1.55-1.91 1.55-1.91m-8.82 5.86l0.52-0.5m-2.44-0.36l0.53-0.86m-2.08-1.03l0.69-0.67m-161.47 2.1c2.42-1.26 4.27-3.89 4.73-5.99 0.46-2.08 0.58-4.27-2.08-4.96-2.65-0.68-3.93-1.5-4.73 0-0.81 1.49-2.54 4.04-2.54 4.04l1.39 2.3 0.8-0.46v-0.56l0.92-0.72 0.58 0.83 0.57-0.35 0.93 1.17-0.46 0.56 0.34 0.7-1.03 0.81-0.58-0.46-0.92 0.9 1.72 2.19h0.35 0.01zm-11.08-5.17s0.34 0.47 1.96 2.41c1.61 1.96 3.35 6.59 5.19 12.02 1.85 5.41 1.5 6.8 1.5 6.8s1.72-1.28 5.41-1.61c3.69-0.31 6.95-0.09 6.95-0.09 1.44 0.22 2.93 0.31 4.06-1.43 1.15-1.74 4.24-8.05-1.28-10.68-5.51-2.65-8.1-1.03-11.12 0.31l-0.69-0.64c2.89-1.64 5.43-2.54 6.58-8.56s-5.77-7.26-7.85-7.39c-2.06-0.1-3.22 0.7-3.91 1.98m7.16 16.32c2.47-1.18 5.7-1.09 7.65-0.23s3.77 2.04 2.75 4.61c-1.01 2.54-1.12 4.05-2.81 3.8-1.69-0.23-4.75-0.36-4.75-0.36l-1.04-2.48 0.84-0.37 0.46 0.35 1.11-0.33-0.31-0.93 0.63-0.28-0.38-1.41-0.74 0.05-0.36-0.69-1.27 0.35 0.03 0.73-1.29 0.2-0.74-2.69 0.2-0.29 0.02-0.03zm-5.66 12.14s-0.58 1.13-2.42-2.65c-1.84-3.81-4.62-10.16-4.62-10.16m16.97-8.08c0.7-0.33 0.8-0.13 1.61 0.11 0.81 0.23 0.93 1.13 1.74 0.8 0.8-0.36 1.96-1.26 1.15 0.33-0.81 1.63-0.93 1.27-0.58 2.21 0.33 0.9 0.1 0.9 0.92 0.59 0.81-0.38 1.38-0.49 1.38 0.44s-0.11 1.06-1.14 1.16c-1.05 0.12-1.39-0.1-1.39-0.1m-3-3.18c0.53 0 0.97-0.44 0.97-0.97 0-0.55-0.44-0.99-0.97-0.99-0.54 0-0.98 0.42-0.98 0.99 0 0.53 0.44 0.97 0.98 0.97zm1.85 0.33c0.54 0 0.98-0.42 0.98-0.97 0-0.51-0.44-0.96-0.98-0.96s-0.98 0.45-0.98 0.96c0 0.55 0.44 0.97 0.98 0.97zm-0.58 2.09c0.54 0 0.98-0.43 0.98-0.97 0-0.55-0.44-0.99-0.98-0.99s-0.97 0.44-0.97 0.99c0 0.54 0.43 0.97 0.97 0.97zm-2.08-0.11c0.54 0 0.98-0.44 0.98-0.99 0-0.52-0.44-0.97-0.98-0.97s-0.98 0.45-0.98 0.97c0 0.55 0.44 0.99 0.98 0.99zm4.85-0.59c0.54 0 0.97-0.42 0.97-0.97s-0.44-0.99-0.97-0.99-0.98 0.44-0.98 0.99c0 0.53 0.45 0.97 0.98 0.97zm2.31 3.13c0.54 0 0.97-0.44 0.97-1.01 0-0.51-0.44-0.97-0.97-0.97-0.54 0-0.98 0.46-0.98 0.97 0 0.57 0.44 1.01 0.98 1.01z" stroke="#000" stroke-width=".69593" fill="none"/>
<path id="path454" d="m390.1 353.55c0.54 0 0.97-0.43 0.97-0.97 0-0.55-0.44-0.99-0.97-0.99-0.54 0-0.98 0.44-0.98 0.99 0 0.54 0.44 0.97 0.98 0.97zm0.8 2.21c0.54 0 0.98-0.45 0.98-0.97 0-0.55-0.44-0.99-0.98-0.99s-0.97 0.44-0.97 0.99c0 0.52 0.44 0.97 0.97 0.97zm0.24 2.54c0.53 0 0.98-0.44 0.98-0.97 0-0.55-0.45-0.99-0.98-0.99-0.54 0-0.98 0.44-0.98 0.99 0 0.53 0.44 0.97 0.98 0.97zm-0.24 2.29c0.54 0 0.98-0.44 0.98-0.97 0-0.55-0.44-0.97-0.98-0.97s-0.97 0.42-0.97 0.97c0 0.53 0.44 0.97 0.97 0.97zm-1.03 2.19c0.53 0 0.96-0.42 0.96-0.97 0-0.53-0.43-0.97-0.96-0.97-0.54 0-0.98 0.44-0.98 0.97 0 0.55 0.44 0.97 0.98 0.97zm-7.16-18.34c0.53 0 0.98-0.44 0.98-0.97 0-0.55-0.45-0.97-0.98-0.97-0.54 0-0.98 0.42-0.98 0.97 0 0.53 0.44 0.97 0.98 0.97zm0.34-2.09c0.54 0 0.98-0.44 0.98-0.96 0-0.55-0.44-0.97-0.98-0.97s-0.97 0.45-0.97 0.97 0.44 0.96 0.97 0.96zm-0.22-1.95c0.54 0 0.97-0.44 0.97-0.97 0-0.52-0.44-0.96-0.97-0.96s-0.97 0.42-0.97 0.96c0 0.53 0.44 0.97 0.97 0.97zm-1.5-1.85c0.54 0 0.98-0.44 0.98-0.97 0-0.52-0.44-0.97-0.98-0.97s-0.97 0.42-0.97 0.97 0.44 0.97 0.97 0.97zm68.42 72.96c-74.76 0-115.38-27.2-115.38-27.2l7.84-12.47-54.45-0.48s0.92 4.18 5.53 9.71c4.62 5.53-0.46 6.46-11.99 6.92l-1.85-5.56c-8.3 1.86-9.23-0.44-11.99-5.53-2.76-5.06-7.38-16.15-11.53-22.6 12.92-7.38 13.85-5.99 29.53-6.46 4.75-0.14 14.07-0.35 25.05-0.6m11.56-0.24c9.27-0.17 18.97-0.33 27.69-0.46m36.35 0.24c8.94 0.49 17.17 1.99 14.7 9.37-3.23 9.67-2.76 16.15-6.91 24.45 25.84 5.05 28.62 7.72 55.38 7.72m-179.99-7.72c-2.77-5.06-0.92-8.76 18.46-9.22m-7.84 11.52c6.92-0.44 10.15-6.46 14.77 0.92m47.07-12.44c3.69-6.48 4.16-12.93 11.54-9.7 7.39 3.22 43.39 13.4 47.54-5.53m-54 5.99c-2.78 7.39 10.62 12.48 47.08 18.46m55.84 30.91c74.77 0 115.39-27.2 115.39-27.2l-7.16-12.64 53.77-0.31s-0.93 4.18-5.54 9.71c-4.62 5.53 0.46 6.46 12 6.92l1.84-5.53c8.31 1.83 9.22-0.47 12-5.56 2.75-5.06 7.38-16.15 11.52-22.6-12.92-7.38-13.84-5.99-29.53-6.46-4.72-0.14-13.88-0.35-24.74-0.57m-56.07-0.89c-5.32-0.04-9.38 0-11.48 0.07-11.08 0.45-26.31 0-23.08 9.68 3.23 9.69 3.23 16.84 7.38 25.15-25.85 5.08-29.08 7.04-55.84 7.04m179.99-7.72c2.78-5.06 0.93-8.76-18.45-9.22m7.85 11.52c-6.93-0.44-10.16-6.46-14.78 0.92m-47.08-12.44c-3.68-6.48-4.15-12.93-11.53-9.7-7.38 3.22-43.39 13.4-47.54-5.53m54 5.99c2.77 7.39-10.84 10.63-46.62 19.16" stroke="#000" stroke-width=".69593" fill="none"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 102 KiB

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="520" height="320" viewBox="0 0 26 16">
<defs>
<g id="s">
<g id="f">
<g id="t">
<path d="M0,-4.625V-4h0.3z" transform="rotate(18,0,-4.625)" fill="#fff" id="o"/>
<use xlink:href="#o" transform="scale(-1,1)"/>
</g>
<use xlink:href="#t" transform="rotate(72,0,-4)"/>
</g>
<use xlink:href="#t" transform="rotate(-72,0,-4)"/>
<use xlink:href="#f" transform="rotate(144,0,-4)"/>
</g>
<clipPath id="c">
<path d="M0,16V0L26,3 20,8 26,13z"/>
</clipPath>
</defs>
<g fill="#fff" stroke="#c1133d" clip-path="url(#c)">
<path d="M26,3 0,0V16L26,13" stroke-width="4"/>
<path d="M0,8H26" stroke-width="2"/>
</g>
<path d="M0,0V16L16,8z" fill="#001c5a"/>
<!-- 16/(1+sqrt(5)) v -->
<g transform="translate(4.944272,8)">
<circle r="3" fill="#fff"/>
<circle r="2" fill="#c1133d"/>
<g id="g">
<use xlink:href="#s"/>
<use xlink:href="#s" transform="rotate(30)"/>
<use xlink:href="#s" transform="rotate(-60)"/>
<g id="h">
<use xlink:href="#s" transform="rotate(-30)"/>
<!-- -30deg +/- arccos(71/72) v v -->
<use xlink:href="#s" y="-2" transform="rotate(-39.560384)"/>
<use xlink:href="#s" y="-2" transform="rotate(-20.439616)"/>
</g>
</g>
<use xlink:href="#g" transform="rotate(240)"/>
<use xlink:href="#h" transform="rotate(120)"/>
<use xlink:href="#s" transform="rotate(150)"/>
<use xlink:href="#s" y="-4" transform="rotate(90)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 130 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 126 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 757 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 23 KiB

Some files were not shown because too many files have changed in this diff Show More