Skip to content

Instantly share code, notes, and snippets.

@realazthat
Last active April 13, 2016 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save realazthat/21ab404c30eb691a5e14c25b8c601d2f to your computer and use it in GitHub Desktop.
Save realazthat/21ab404c30eb691a5e14c25b8c601d2f to your computer and use it in GitHub Desktop.
Unpermutator.md
"""
Scramble/permute a frame of a video, requires numpy and opencv.
Licensed under CC0 (https://creativecommons.org/publicdomain/zero/1.0/)
"""
import argparse
import cv2
import numpy as np
def main():
parser = argparse.ArgumentParser(description='Extract and permute a frame.')
parser.add_argument('invideo', type=argparse.FileType('rb'),
help='A video to add to the MI frame')
parser.add_argument('--out', dest='outfile', type=argparse.FileType('wb'),
help='path to output frame')
parser.add_argument('--frame', type=int, default=0,
help='Frame number to extract (defaults to 0)')
parser.add_argument('--permute', action='store_true', default=False,
help='Should the output frame be permuted')
parser.add_argument('--gray', action='store_true', default=False,
help='Should the output frame be gray scale')
parser.add_argument('--binary', action='store_true', default=False,
help='Should the output frame be binary')
args = parser.parse_args()
cap = cv2.VideoCapture(args.invideo.name)
expected_frames = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
width0 = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))
height0 = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
n0 = width0*height0
ret = True
i = 0
while(ret and cap.isOpened()):
ret, frame0 = cap.read()
if not ret:
break
if i < args.frame:
i += 1
continue
frame = frame0
depth = 3
if args.gray or args.binary:
frame = cv2.cvtColor(frame0, cv2.COLOR_BGR2GRAY)
depth = 1
print (frame.dtype)
print (frame)
if args.binary:
frame >>= 7
frame *= 255
print (frame.dtype)
print (frame)
expected_size = n0*depth
expected_shape = (height0,width0,depth)
if depth == 1:
expected_shape = (height0, width0)
assert frame.size == expected_size
assert frame.shape == expected_shape, (frame.shape, expected_shape, depth)
permuted_frame = np.copy(frame)
permuted_frame = permuted_frame.reshape((height0*width0,depth))
print ('permuted_frame.shape:',permuted_frame.shape)
np.random.shuffle(permuted_frame)
permuted_frame = permuted_frame.reshape((height0,width0, depth))
print (permuted_frame.shape)
outframe = frame
if args.permute:
outframe = permuted_frame
if args.outfile is not None:
cv2.imwrite(args.outfile.name, img=outframe)
return
if __name__ == '__main__':
main()
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
<?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"
width="297mm"
height="210mm"
viewBox="0 0 1052.3622 744.09448"
id="svg4309"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="scramble2d.svg">
<defs
id="defs4311" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="545.35803"
inkscape:cy="482.9915"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1536"
inkscape:window-height="801"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata4314">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-308.26772)"
style="display:inline"
sodipodi:insensitive="true">
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4333"
d="m 39.427746,474.46898 c -0.224277,6.27662 -0.217541,12.5594 -0.301074,18.83904 -0.07117,9.85694 -0.07129,19.71404 -0.108045,29.57113 0.0257,9.85325 0.03324,19.70641 0.0716,29.55962 0.01384,9.34461 0.01431,18.68925 -0.04273,28.03377 -0.07761,12.22132 -0.135046,24.44264 -0.168011,36.66426 -0.153332,9.33822 0.280379,18.68933 -0.357682,28.01598 -0.488851,7.14562 -0.900498,9.41974 -1.841724,16.71744 -2.26966,17.30789 -3.93893,34.69944 -5.140565,52.11341 -0.912493,10.79881 -1.731624,21.6065 -2.09949,32.43896 -0.15171,5.72126 -0.20891,11.44412 -0.164424,17.16712 -0.04125,5.87466 -0.05215,11.74941 -0.03388,17.62422 0.0013,5.67337 -0.003,11.34595 0.06385,17.01926 -0.03162,5.26066 -0.03145,10.52186 -0.01574,15.7826 -0.01391,5.22974 -0.02768,10.45863 0.02397,15.68821 0.165735,4.51128 -0.07861,8.98604 -0.564582,13.4678 -0.457834,3.62278 -0.641944,7.26777 -0.736378,10.91535 -0.04859,3.20582 -0.07353,6.41209 -0.0711,9.61828 0.02442,3.23431 0.01159,6.46847 0.0052,9.70275 0.162728,3.31839 -0.06636,6.57974 -0.575632,9.85474 -0.490987,3.1942 -0.669945,6.42172 -0.772245,9.64795 -0.07701,3.17019 -0.142894,6.34599 -0.04079,9.51634 0,0 -18.8493247,9.60594 -18.8493247,9.60594 l 0,0 c 0.09505,-3.19999 0.0246,-6.40318 0.07211,-9.60411 0.09102,-3.30079 0.256201,-6.60199 0.696712,-9.87751 0.424354,-3.19737 0.997166,-6.3369 0.715467,-9.5868 -0.0093,-3.23328 -0.0279,-6.46646 -0.01059,-9.69981 -9.84e-4,-3.22301 -0.04495,-6.44638 0.04176,-9.66879 0.105603,-3.7142 0.262214,-7.43474 0.732504,-11.12329 0.5548997,-4.41792 0.9498007,-8.81582 0.7292927,-13.27762 0.05124,-5.23776 0.03829,-10.47483 0.02414,-15.71274 0.01577,-5.2553 0.01638,-10.51107 -0.01583,-15.76628 0.06531,-5.69244 0.06076,-11.38406 0.05236,-17.07655 0.0075,-5.85796 -0.0228,-11.71562 -0.07474,-17.57332 0.05593,-5.80021 0.03361,-11.60577 0.404923,-17.39719 0.670096,-10.97884 1.731186,-21.92407 2.820338,-32.8687 1.516753,-17.4607 3.22579,-34.90389 5.337728,-52.30395 1.654603,-14.73665 2.37213,-29.47753 1.885372,-44.31104 -0.0329,-12.16456 -0.09026,-24.3288 -0.168011,-36.49305 -0.05731,-9.33 -0.05642,-18.66013 -0.04273,-27.99023 0.03831,-9.87753 0.04594,-19.755 0.0716,-29.63258 -0.03676,-9.82039 -0.03673,-19.64079 -0.108044,-29.46102 -0.0833,-6.17735 -0.07459,-12.35804 -0.301075,-18.53224 0,0 18.855493,-9.60735 18.855493,-9.60735 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4335"
d="m 120.87328,478.57517 c -0.20718,5.0365 -0.1958,10.07914 -0.17212,15.11896 -0.6312,7.96019 -1.71438,15.87053 -2.31279,23.83953 -0.51193,7.43315 -0.58527,14.88274 -0.59105,22.32993 0.0634,6.33091 0.0585,12.63177 -0.42051,18.94565 -0.55775,7.13408 -0.80056,14.28499 -0.92437,21.438 -0.0266,6.60283 -0.0136,13.19134 -0.51104,19.77759 -0.67251,8.58041 -0.87577,17.18861 -1.00671,25.79147 -0.1266,8.34333 -0.11302,16.68752 -0.0627,25.03137 -0.019,7.44651 0.0321,14.89293 0.0276,22.33946 0.2396,4.67071 -0.25551,9.37637 0.002,14.04389 0.0931,1.68874 0.85249,7.02533 1.04438,8.44688 1.80609,10.01867 3.02611,20.11198 3.81047,30.25823 0.85344,9.78564 0.98022,19.63643 2.10047,29.39463 1.15927,9.19831 2.0631,18.42377 2.68823,27.67352 0.40213,6.23623 0.43736,12.48454 0.43296,18.73056 -0.005,6.35051 -0.0527,12.70015 -0.003,19.05064 0.008,5.07643 0.0526,10.15273 0.0555,15.22915 0.25185,5.46413 -2.09151,10.54914 -3.52633,15.72122 -1.68901,5.11577 -2.65641,10.40111 -3.22408,15.74574 -0.33544,3.57521 -0.36626,7.16706 -0.36318,10.75473 0.0322,3.24694 0.0156,6.49386 0.0253,9.74086 -0.0446,2.75086 -0.65105,5.39129 -1.72156,7.91021 -1.42816,2.52257 -3.73805,4.31865 -5.83336,6.25075 -1.19474,1.2 -1.77491,2.72629 -2.06298,4.36188 0,0 -19.260016,9.11764 -19.260016,9.11764 l 0,0 c 0.74134,-1.7208 0.6867,-3.72857 1.83086,-5.29899 0.94528,-1.21919 1.8822,-1.87472 3.06334,-2.82859 2.41507,-1.95036 -0.22711,-0.0252 1.99135,-2.18133 0.29091,-0.28275 0.6653,-0.46441 0.99795,-0.69662 1.28586,-2.20239 1.93689,-4.53858 2.23853,-7.07332 -0.004,-3.2492 -0.0481,-6.49813 -0.0296,-9.7474 0.0147,-3.67158 -0.009,-7.35217 0.36676,-11.00914 0.614056,-5.44784 1.500506,-10.91316 3.245236,-16.12351 0.65858,-2.42897 0.94185,-3.54268 1.67357,-5.96112 0.91208,-3.01455 2.22882,-5.96707 1.95622,-9.18975 0.004,-5.09818 0.0505,-10.19622 0.0684,-15.29437 0.0617,-6.35368 0.0375,-12.70682 0.0345,-19.06065 -0.0238,-6.23563 -0.0287,-12.47302 -0.24116,-18.70579 -0.38671,-9.25525 -1.10469,-18.49141 -2.45002,-27.66226 -1.10208,-9.79361 -1.31037,-19.6852 -2.0502,-29.51204 -0.70358,-10.09877 -1.970966,-20.11124 -3.836426,-30.06402 -0.16981,-0.98923 -1.29556,-7.36399 -1.39663,-8.61519 -0.37563,-4.6502 0.23974,-9.38582 -0.002,-14.0434 -0.009,-7.45349 0.0341,-14.90691 0.0115,-22.36037 0.0526,-8.36857 0.062,-16.7374 0.13818,-25.10573 0.14049,-8.61121 0.3905,-17.21761 0.83624,-25.81882 0.35735,-6.55663 0.50348,-13.10216 0.50608,-19.67076 0.16133,-7.18445 0.39436,-14.36943 0.91483,-21.53806 0.34202,-6.26633 0.48694,-12.52804 0.40705,-18.80563 0.10944,-7.51844 0.2188,-15.04338 0.720166,-22.54772 0.57361,-7.86623 1.56654,-15.69538 2.09705,-23.55971 0.0233,-4.98131 0.0384,-9.96571 -0.17211,-14.94356 0,0 18.88942,-9.62464 18.88942,-9.62464 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4341"
d="m 181.98386,913.29209 c 0.23214,-5.86988 0.25053,-11.74655 0.25396,-17.62034 0.19574,-6.22773 -0.40166,-12.53543 0.22811,-18.74794 0.17105,-1.68742 0.50572,-3.35422 0.75858,-5.03132 2.76072,-13.10633 4.23432,-26.38711 5.61103,-39.69103 1.35792,-12.09985 1.77267,-24.26793 2.01399,-36.43152 0.004,-10.08271 0.50821,-20.18546 -0.20575,-30.2507 -0.52545,-11.38462 -2.0654,-22.66682 -3.38268,-33.97456 -1.17423,-12.34552 -1.88556,-24.73186 -2.74257,-37.10333 -0.78087,-14.3959 -2.03353,-28.75479 -3.30584,-43.11367 -0.89622,-9.85734 -1.45105,-19.73505 -1.75627,-29.62607 0.28202,-8.24659 1.51927,-16.42616 2.1167,-24.65815 0.46387,-6.55215 0.55384,-13.11964 0.59639,-19.6852 0.0232,-4.88936 -0.0217,-9.77868 -0.0769,-14.6677 -0.002,-3.59495 -0.0341,-7.18979 -0.0518,-10.78469 -0.52967,-3.09569 -1.51609,-6.10418 -2.1038,-9.20683 -0.65859,-3.97443 -0.65811,-8.02257 -0.68502,-12.04031 -0.36267,-4.64672 0.38305,-9.14208 1.37111,-13.65386 0.72843,-5.06845 2.06546,-9.93132 3.67909,-14.78059 1.64379,-4.84271 3.20452,-9.70411 4.59999,-14.62458 0.74859,-2.99752 2.20028,-5.69943 3.56668,-8.43999 0.1487,-0.26449 0.29741,-0.52899 0.44611,-0.79348 0,0 19.57387,-8.24955 19.57387,-8.24955 l 0,0 c -0.22234,0.1554 -0.44469,0.31079 -0.66703,0.46619 -1.74445,2.413 -2.86272,5.30934 -4.02217,8.03602 -1.41102,4.98994 -2.97817,9.91941 -4.73632,14.79663 -1.59752,4.75417 -2.98103,9.49184 -3.54955,14.48913 -1.0286,4.38077 -2.10292,8.68258 -1.62979,13.23486 0.0596,3.89662 0.0727,7.81123 0.62599,11.67686 0.54932,3.24886 1.61847,6.32781 2.30759,9.52136 -0.0149,3.60812 -0.042,7.21626 -0.0319,10.82443 -0.0392,4.9267 -0.0606,9.85343 -0.0952,14.78016 -0.0763,6.64548 -0.22175,13.2955 -0.75111,19.92276 -0.68228,8.15796 -1.70747,16.28704 -2.16484,24.45975 0.0664,9.95069 0.37181,19.90263 1.08474,29.82947 1.07688,14.3868 2.5498,28.7397 3.23669,43.15537 1.09519,12.29297 2.00071,24.58938 2.9911,36.889 1.33001,11.30733 2.81638,22.57926 3.63939,33.94075 0.757,10.13589 0.18021,20.32978 0.1746,30.48619 -0.33268,12.25511 -0.93841,24.50789 -2.18778,36.70737 -1.48612,13.23937 -2.88555,26.48739 -5.24184,39.60811 -0.24615,1.58852 -0.58233,3.16568 -0.73847,4.76557 -0.60218,6.17033 0.22554,12.41803 -0.11366,18.59925 0.003,5.78748 0.0182,11.57814 0.25397,17.36154 0,0 -18.88942,9.62464 -18.88942,9.62464 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4333-6"
d="m 293.79339,473.94439 c -0.22428,6.27662 -0.21755,12.5594 -0.30108,18.83904 -0.0712,9.85694 -0.0713,19.71404 -0.10804,29.57113 0.0257,9.85325 0.0332,19.70641 0.0716,29.55962 0.0138,9.34461 0.0143,18.68925 -0.0427,28.03377 -0.0776,12.22132 -0.13505,24.44264 -0.16801,36.66426 -0.15334,9.33822 0.28037,18.68933 -0.35769,28.01598 -0.48885,7.14562 -0.90049,9.41974 -1.84172,16.71744 -2.26966,17.30789 -3.93893,34.69944 -5.14057,52.11341 -0.91249,10.79881 -1.73162,21.6065 -2.09949,32.43896 -0.15171,5.7213 -0.20891,11.4441 -0.16442,17.1671 -0.0412,5.8747 -0.0521,11.7494 -0.0339,17.6242 10e-4,5.6734 -0.003,11.346 0.0639,17.0193 -0.0316,5.2607 -0.0315,10.5219 -0.0157,15.7826 -0.0139,5.2297 -0.0277,10.4586 0.024,15.6882 0.16574,4.5113 -0.0786,8.9861 -0.56458,13.4678 -0.45784,3.6228 -0.64195,7.2678 -0.73638,10.9154 -0.0486,3.2058 -0.0735,6.4121 -0.0711,9.6182 0.0244,3.2344 0.0116,6.4685 0.005,9.7028 0.16273,3.3184 -0.0664,6.5797 -0.57563,9.8547 -0.49099,3.1942 -0.66995,6.4218 -0.77225,9.648 -0.077,3.1702 -0.14289,6.346 -0.0408,9.5163 0,0 -18.84932,9.606 -18.84932,9.606 l 0,0 c 0.095,-3.2 0.0246,-6.4032 0.0721,-9.6041 0.091,-3.3008 0.2562,-6.602 0.69671,-9.8776 0.42435,-3.1973 0.99717,-6.3369 0.71547,-9.5868 -0.009,-3.2332 -0.0279,-6.4664 -0.0106,-9.6998 -9.9e-4,-3.223 -0.045,-6.4463 0.0418,-9.6688 0.1056,-3.7142 0.26221,-7.4347 0.7325,-11.1232 0.5549,-4.418 0.9498,-8.8159 0.72929,-13.2777 0.0512,-5.2377 0.0383,-10.4748 0.0241,-15.7127 0.0158,-5.2553 0.0164,-10.5111 -0.0158,-15.7663 0.0653,-5.6924 0.0608,-11.384 0.0524,-17.0765 0.007,-5.858 -0.0228,-11.7157 -0.0747,-17.5734 0.0559,-5.8002 0.0336,-11.6057 0.40493,-17.3971 0.67009,-10.9789 1.73118,-21.92412 2.82034,-32.86875 1.51675,-17.4607 3.22579,-34.90389 5.33772,-52.30395 1.65461,-14.73665 2.37213,-29.47753 1.88538,-44.31104 -0.0329,-12.16456 -0.0903,-24.3288 -0.16802,-36.49305 -0.0573,-9.33 -0.0564,-18.66013 -0.0427,-27.99023 0.0383,-9.87753 0.0459,-19.755 0.0716,-29.63258 -0.0368,-9.82039 -0.0367,-19.64079 -0.10804,-29.46102 -0.0833,-6.17735 -0.0746,-12.35804 -0.30107,-18.53224 0,0 18.85549,-9.60735 18.85549,-9.60735 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4335-3"
d="m 375.23893,478.05058 c -0.20718,5.0365 -0.1958,10.07914 -0.17212,15.11896 -0.6312,7.96019 -1.71438,15.87053 -2.31279,23.83953 -0.51193,7.43315 -0.58527,14.88274 -0.59105,22.32993 0.0634,6.33091 0.0585,12.63177 -0.42051,18.94565 -0.55775,7.13408 -0.80056,14.28499 -0.92437,21.438 -0.0266,6.60283 -0.0136,13.19134 -0.51104,19.77759 -0.67251,8.58041 -0.87577,17.18861 -1.00671,25.79147 -0.1266,8.34333 -0.11302,16.68752 -0.0627,25.03137 -0.019,7.44651 0.0321,14.89293 0.0276,22.33946 0.2396,4.67071 -0.25551,9.37637 0.002,14.04389 0.0931,1.68874 0.85249,7.02533 1.04438,8.44688 1.80609,10.01867 3.02611,20.11198 3.81047,30.25823 0.85344,9.78564 0.98022,19.63646 2.10047,29.39466 1.15927,9.1983 2.0631,18.4237 2.68823,27.6735 0.40213,6.2362 0.43736,12.4845 0.43296,18.7306 -0.005,6.3505 -0.0527,12.7001 -0.003,19.0506 0.008,5.0764 0.0526,10.1527 0.0555,15.2291 0.25185,5.4642 -2.09151,10.5492 -3.52633,15.7213 -1.68901,5.1157 -2.65641,10.4011 -3.22408,15.7457 -0.33544,3.5752 -0.36626,7.1671 -0.36318,10.7547 0.0322,3.247 0.0156,6.4939 0.0253,9.7409 -0.0446,2.7509 -0.65105,5.3913 -1.72156,7.9102 -1.42816,2.5226 -3.73805,4.3187 -5.83336,6.2508 -1.19474,1.2 -1.77491,2.7262 -2.06298,4.3618 0,0 -19.26003,9.1177 -19.26003,9.1177 l 0,0 c 0.74134,-1.7208 0.6867,-3.7286 1.83086,-5.299 0.94528,-1.2192 1.8822,-1.8747 3.06334,-2.8286 2.41507,-1.9504 -0.22711,-0.025 1.99135,-2.1813 0.29091,-0.2828 0.6653,-0.4644 0.99795,-0.6967 1.28586,-2.2023 1.93689,-4.5385 2.23853,-7.0733 -0.004,-3.2492 -0.0481,-6.4981 -0.0296,-9.7474 0.0147,-3.6716 -0.009,-7.3521 0.36676,-11.0091 0.61406,-5.4479 1.50051,-10.9132 3.24524,-16.1235 0.65858,-2.429 0.94185,-3.5427 1.67357,-5.9611 0.91208,-3.0146 2.22882,-5.9671 1.95622,-9.1898 0.004,-5.0982 0.0505,-10.1962 0.0684,-15.2944 0.0617,-6.3536 0.0375,-12.7068 0.0345,-19.0606 -0.0238,-6.2356 -0.0287,-12.473 -0.24116,-18.7058 -0.38671,-9.2553 -1.10469,-18.4914 -2.45002,-27.6623 -1.10208,-9.7936 -1.31037,-19.6852 -2.0502,-29.51201 -0.70358,-10.09877 -1.97097,-20.11124 -3.83643,-30.06402 -0.16981,-0.98923 -1.29556,-7.36399 -1.39663,-8.61519 -0.37563,-4.6502 0.23974,-9.38582 -0.002,-14.0434 -0.009,-7.45349 0.0341,-14.90691 0.0115,-22.36037 0.0526,-8.36857 0.062,-16.7374 0.13818,-25.10573 0.14049,-8.61121 0.3905,-17.21761 0.83624,-25.81882 0.35735,-6.55663 0.50348,-13.10216 0.50608,-19.67076 0.16133,-7.18445 0.39436,-14.36943 0.91483,-21.53806 0.34202,-6.26633 0.48694,-12.52804 0.40705,-18.80563 0.10944,-7.51844 0.2188,-15.04338 0.72017,-22.54772 0.57361,-7.86623 1.56654,-15.69538 2.09705,-23.55971 0.0233,-4.98131 0.0384,-9.96571 -0.17211,-14.94356 0,0 18.88943,-9.62464 18.88943,-9.62464 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4341-3"
d="m 436.34951,912.7675 c 0.23214,-5.8699 0.25053,-11.7465 0.25396,-17.6203 0.19574,-6.2278 -0.40166,-12.5355 0.22811,-18.748 0.17105,-1.6874 0.50572,-3.3542 0.75858,-5.0313 2.76072,-13.1063 4.23432,-26.3871 5.61103,-39.691 1.35792,-12.0999 1.77267,-24.268 2.01399,-36.4315 0.004,-10.0828 0.50821,-20.1855 -0.20575,-30.2507 -0.52545,-11.3847 -2.0654,-22.6669 -3.38268,-33.97461 -1.17423,-12.34552 -1.88556,-24.73186 -2.74257,-37.10333 -0.78087,-14.3959 -2.03353,-28.75479 -3.30584,-43.11367 -0.89622,-9.85734 -1.45105,-19.73505 -1.75627,-29.62607 0.28202,-8.24659 1.51927,-16.42616 2.1167,-24.65815 0.46387,-6.55215 0.55384,-13.11964 0.59639,-19.6852 0.0232,-4.88936 -0.0217,-9.77868 -0.0769,-14.6677 -0.002,-3.59495 -0.0341,-7.18979 -0.0518,-10.78469 -0.52967,-3.09569 -1.51609,-6.10418 -2.1038,-9.20683 -0.65859,-3.97443 -0.65811,-8.02257 -0.68502,-12.04031 -0.36267,-4.64672 0.38305,-9.14208 1.37111,-13.65386 0.72843,-5.06845 2.06546,-9.93132 3.67909,-14.78059 1.64379,-4.84271 3.20452,-9.70411 4.59999,-14.62458 0.74859,-2.99752 2.20028,-5.69943 3.56668,-8.43999 0.1487,-0.26449 0.29741,-0.52899 0.44611,-0.79348 0,0 19.57387,-8.24955 19.57387,-8.24955 l 0,0 c -0.22234,0.1554 -0.44469,0.31079 -0.66703,0.46619 -1.74445,2.413 -2.86272,5.30934 -4.02217,8.03602 -1.41102,4.98994 -2.97817,9.91941 -4.73632,14.79663 -1.59752,4.75417 -2.98103,9.49184 -3.54955,14.48913 -1.0286,4.38077 -2.10292,8.68258 -1.62979,13.23486 0.0596,3.89662 0.0727,7.81123 0.62599,11.67686 0.54932,3.24886 1.61847,6.32781 2.30759,9.52136 -0.0149,3.60812 -0.042,7.21626 -0.0319,10.82443 -0.0392,4.9267 -0.0606,9.85343 -0.0952,14.78016 -0.0763,6.64548 -0.22175,13.2955 -0.75111,19.92276 -0.68228,8.15796 -1.70747,16.28704 -2.16484,24.45975 0.0664,9.95069 0.37181,19.90263 1.08474,29.82947 1.07688,14.3868 2.5498,28.7397 3.23669,43.15537 1.09519,12.29297 2.00071,24.58938 2.9911,36.889 1.33001,11.30733 2.81638,22.57922 3.63939,33.94072 0.757,10.1359 0.18021,20.3298 0.1746,30.4862 -0.33268,12.2551 -0.93841,24.5079 -2.18778,36.7074 -1.48612,13.2394 -2.88555,26.4874 -5.24184,39.6081 -0.24615,1.5885 -0.58233,3.1657 -0.73847,4.7656 -0.60218,6.1703 0.22554,12.418 -0.11366,18.5992 0.003,5.7875 0.0182,11.5782 0.25397,17.3616 0,0 -18.88942,9.6246 -18.88942,9.6246 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4333-66"
d="m 16.130147,882.89443 c 6.27662,0.2243 12.5594,0.2176 18.83904,0.3011 9.85694,0.071 19.71404,0.071 29.57113,0.108 9.85325,-0.026 19.70641,-0.033 29.559617,-0.072 9.344606,-0.014 18.689246,-0.014 28.033766,0.043 12.22132,0.078 24.44264,0.1351 36.66426,0.1681 9.33822,0.1533 18.68933,-0.2804 28.01598,0.3576 7.14562,0.4889 9.41974,0.9005 16.71744,1.8418 17.30789,2.2696 34.69944,3.9389 52.11341,5.1405 10.79885,0.9125 21.60655,1.7316 32.43895,2.0995 5.7213,0.1517 11.4441,0.2089 17.1671,0.1644 5.8747,0.041 11.7494,0.052 17.6243,0.034 5.6733,-10e-4 11.3459,0 17.0192,-0.064 5.2607,0.032 10.5219,0.032 15.7826,0.016 5.2298,0.014 10.4586,0.028 15.6882,-0.024 4.5113,-0.1657 8.9861,0.079 13.4678,0.5646 3.6228,0.4579 7.2678,0.642 10.9154,0.7364 3.2058,0.049 6.4121,0.073 9.6183,0.071 3.2343,-0.024 6.4684,-0.012 9.7027,0 3.3184,-0.1627 6.5797,0.066 9.8547,0.5756 3.1942,0.491 6.4218,0.67 9.648,0.7723 3.1702,0.077 6.346,0.1429 9.5163,0.041 0,0 9.606,18.8493 9.606,18.8493 l 0,0 c -3.2,-0.095 -6.4032,-0.025 -9.6041,-0.072 -3.3008,-0.091 -6.602,-0.2562 -9.8775,-0.6967 -3.1974,-0.4244 -6.3369,-0.9972 -9.5868,-0.7155 -3.2333,0.01 -6.4665,0.028 -9.6999,0.011 -3.223,10e-4 -6.4463,0.045 -9.6687,-0.042 -3.7142,-0.1056 -7.4348,-0.2622 -11.1233,-0.7325 -4.418,-0.5549 -8.8159,-0.9498 -13.2777,-0.7293 -5.2377,-0.051 -10.4748,-0.038 -15.7127,-0.024 -5.2553,-0.016 -10.5111,-0.016 -15.7663,0.016 -5.6924,-0.065 -11.384,-0.061 -17.0765,-0.052 -5.858,-0.01 -11.7156,0.023 -17.5733,0.075 -5.8003,-0.056 -11.6058,-0.034 -17.3972,-0.4049 -10.9789,-0.6701 -21.9241,-1.7312 -32.8687,-2.8203 -17.46074,-1.5168 -34.90393,-3.2258 -52.30399,-5.3378 -14.73665,-1.6546 -29.47753,-2.3721 -44.31104,-1.8853 -12.16456,0.033 -24.3288,0.09 -36.49305,0.168 -9.33,0.057 -18.66013,0.056 -27.99023,0.043 -9.877526,-0.038 -19.754993,-0.046 -29.632573,-0.072 -9.82039,0.037 -19.64079,0.037 -29.46102,0.108 -6.17735,0.083 -12.35804,0.075 -18.53224,0.3011 0,0 -9.60735,-18.8555 -9.60735,-18.8555 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4335-30"
d="m 20.236337,801.44893 c 5.0365,0.2072 10.07914,0.1958 15.11896,0.1721 7.96019,0.6312 15.87053,1.7144 23.83953,2.3128 7.43315,0.5119 14.88274,0.5853 22.32993,0.591 6.330907,-0.063 12.631767,-0.059 18.945643,0.4206 7.13408,0.5577 14.28499,0.8005 21.438,0.9243 6.60283,0.027 13.19134,0.014 19.77759,0.5111 8.58041,0.6725 17.18861,0.8757 25.79147,1.0067 8.34333,0.1266 16.68752,0.113 25.03137,0.063 7.44651,0.019 14.89293,-0.032 22.33946,-0.028 4.67071,-0.2396 9.37637,0.2555 14.04389,0 1.68874,-0.093 7.02533,-0.8525 8.44688,-1.0444 10.01867,-1.8061 20.11198,-3.0261 30.25828,-3.8105 9.7856,-0.8534 19.6364,-0.9802 29.3946,-2.1004 9.1983,-1.1593 18.4238,-2.0631 27.6735,-2.6883 6.2362,-0.4021 12.4845,-0.4373 18.7306,-0.4329 6.3505,0.01 12.7001,0.053 19.0506,0 5.0764,-0.01 10.1527,-0.053 15.2292,-0.055 5.4641,-0.2519 10.5491,2.0915 15.7212,3.5263 5.1157,1.689 10.4011,2.6564 15.7457,3.2241 3.5752,0.3354 7.1671,0.3662 10.7547,0.3632 3.247,-0.032 6.4939,-0.016 9.7409,-0.025 2.7509,0.045 5.3913,0.651 7.9102,1.7215 2.5226,1.4282 4.3187,3.7381 6.2508,5.8334 1.2,1.1947 2.7263,1.7749 4.3618,2.063 0,0 9.1177,19.26 9.1177,19.26 l 0,0 c -1.7208,-0.7414 -3.7286,-0.6867 -5.299,-1.8309 -1.2192,-0.9453 -1.8747,-1.8822 -2.8286,-3.0633 -1.9504,-2.4151 -0.025,0.2271 -2.1813,-1.9914 -0.2828,-0.2909 -0.4644,-0.6653 -0.6966,-0.9979 -2.2024,-1.2859 -4.5386,-1.9369 -7.0734,-2.2386 -3.2492,0 -6.4981,0.048 -9.7474,0.03 -3.6715,-0.015 -7.3521,0.01 -11.0091,-0.3667 -5.4478,-0.6141 -10.9132,-1.5005 -16.1235,-3.2453 -2.429,-0.6585 -3.5427,-0.9418 -5.9611,-1.6735 -3.0146,-0.9121 -5.9671,-2.2288 -9.1898,-1.9562 -5.0982,0 -10.1962,-0.051 -15.2944,-0.068 -6.3536,-0.062 -12.7068,-0.037 -19.0606,-0.034 -6.2356,0.024 -12.473,0.029 -18.7058,0.2411 -9.2552,0.3867 -18.4914,1.1047 -27.6623,2.45 -9.7936,1.1021 -19.6852,1.3104 -29.512,2.0502 -10.0988,0.7036 -20.11124,1.971 -30.06402,3.8365 -0.98923,0.1698 -7.36399,1.2955 -8.61519,1.3966 -4.6502,0.3756 -9.38582,-0.2397 -14.0434,0 -7.45349,0.01 -14.90691,-0.034 -22.36037,-0.012 -8.36857,-0.053 -16.7374,-0.062 -25.10573,-0.1382 -8.61121,-0.1405 -17.21761,-0.3905 -25.81882,-0.8362 -6.55663,-0.3574 -13.10216,-0.5035 -19.67076,-0.5061 -7.18445,-0.1613 -14.36943,-0.3944 -21.53806,-0.9148 -6.26633,-0.3421 -12.528036,-0.487 -18.805626,-0.4071 -7.518437,-0.1094 -15.043377,-0.2188 -22.547717,-0.7202 -7.86623,-0.5736 -15.69538,-1.5665 -23.55971,-2.097 -4.98131,-0.023 -9.96571,-0.038 -14.94356,0.1721 0,0 -9.62464,-18.8894 -9.62464,-18.8894 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4341-36"
d="m 454.95324,740.33833 c -5.8699,-0.2321 -11.7465,-0.2505 -17.6203,-0.254 -6.2278,-0.1957 -12.5355,0.4017 -18.748,-0.2281 -1.6874,-0.171 -3.3542,-0.5057 -5.0313,-0.7585 -13.1063,-2.7608 -26.3871,-4.2344 -39.691,-5.6111 -12.0999,-1.3579 -24.2679,-1.7726 -36.4315,-2.014 -10.0827,0 -20.1855,-0.5082 -30.2507,0.2058 -11.3847,0.5254 -22.6669,2.0654 -33.9746,3.3827 -12.3455,1.1742 -24.73186,1.8855 -37.10333,2.7425 -14.3959,0.7809 -28.75479,2.0336 -43.11367,3.3059 -9.85734,0.8962 -19.73505,1.451 -29.62607,1.7562 -8.24659,-0.282 -16.42616,-1.5192 -24.65815,-2.1167 -6.55215,-0.4638 -13.11964,-0.5538 -19.6852,-0.5963 -4.88936,-0.023 -9.77868,0.022 -14.6677,0.077 -3.59495,0 -7.189786,0.034 -10.784686,0.052 -3.09569,0.5296 -6.10418,1.516 -9.20683,2.1038 -3.974427,0.6585 -8.022567,0.6581 -12.040307,0.685 -4.64672,0.3626 -9.14208,-0.3831 -13.65386,-1.3711 -5.06845,-0.7285 -9.93132,-2.0655 -14.78059,-3.6791 -4.84271,-1.6438 -9.70411,-3.2045 -14.62458,-4.6 -2.99752,-0.7486 -5.69943,-2.2003 -8.43999,-3.5667 -0.26449,-0.1487 -0.52899,-0.2974 -0.79348,-0.4461 0,0 -8.24955,-19.5739 -8.24955,-19.5739 l 0,0 c 0.1554,0.2224 0.31079,0.4447 0.46619,0.6671 2.413,1.7444 5.30934,2.8627 8.03602,4.0221 4.98994,1.411 9.91941,2.9782 14.79663,4.7363 4.75417,1.5976 9.49184,2.9811 14.48913,3.5496 4.38077,1.0286 8.68258,2.1029 13.23486,1.6298 3.89662,-0.06 7.81123,-0.073 11.67686,-0.626 3.24886,-0.5493 6.32781,-1.6185 9.52136,-2.3076 3.608117,0.015 7.216257,0.042 10.824427,0.032 4.9267,0.039 9.853426,0.061 14.780156,0.095 6.64548,0.076 13.2955,0.2218 19.92276,0.7511 8.15796,0.6823 16.28704,1.7075 24.45975,2.1649 9.95069,-0.066 19.90263,-0.3719 29.82947,-1.0848 14.3868,-1.0769 28.7397,-2.5498 43.15537,-3.2367 12.29297,-1.0952 24.58938,-2.0007 36.88901,-2.9911 11.3073,-1.33 22.5793,-2.8164 33.9407,-3.6394 10.1359,-0.757 20.3298,-0.1802 30.4862,-0.1746 12.2551,0.3327 24.5079,0.9384 36.7074,2.1878 13.2394,1.4861 26.4874,2.8856 39.6081,5.2419 1.5885,0.2461 3.1657,0.5823 4.7656,0.7384 6.1703,0.6022 12.418,-0.2255 18.5992,0.1137 5.7875,0 11.5782,-0.018 17.3616,-0.254 0,0 9.6246,18.8894 9.6246,18.8894 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4333-6-8"
d="m 15.605557,628.52881 c 6.27662,0.22428 12.5594,0.21755 18.83904,0.30108 9.85694,0.0712 19.71404,0.0713 29.57113,0.10804 9.85325,-0.0257 19.70641,-0.0332 29.559617,-0.0716 9.344606,-0.0138 18.689246,-0.0143 28.033766,0.0427 12.22132,0.0776 24.44264,0.13505 36.66426,0.16801 9.33822,0.15334 18.68933,-0.28037 28.01598,0.35769 7.14562,0.48885 9.41974,0.90049 16.71744,1.84172 17.30789,2.26966 34.69944,3.93893 52.11341,5.14057 10.79884,0.91249 21.60654,1.73162 32.43894,2.09949 5.7213,0.15171 11.4441,0.20891 17.1671,0.16442 5.8747,0.0412 11.7494,0.0521 17.6242,0.0339 5.6734,-10e-4 11.346,0.003 17.0193,-0.0639 5.2607,0.0316 10.5219,0.0315 15.7826,0.0157 5.2297,0.0139 10.4586,0.0277 15.6882,-0.024 4.5113,-0.16574 8.9861,0.0786 13.4678,0.56458 3.6228,0.45784 7.2678,0.64195 10.9154,0.73638 3.2058,0.0486 6.4121,0.0735 9.6182,0.0711 3.2344,-0.0244 6.4685,-0.0116 9.7028,-0.005 3.3184,-0.16273 6.5797,0.0664 9.8547,0.57563 3.1942,0.49099 6.4218,0.66995 9.648,0.77225 3.1702,0.077 6.346,0.14289 9.5163,0.0408 0,0 9.606,18.84932 9.606,18.84932 l 0,0 c -3.2,-0.095 -6.4032,-0.0246 -9.6041,-0.0721 -3.3008,-0.091 -6.602,-0.2562 -9.8776,-0.69671 -3.1973,-0.42435 -6.3369,-0.99717 -9.5868,-0.71547 -3.2332,0.009 -6.4664,0.0279 -9.6998,0.0106 -3.223,9.9e-4 -6.4463,0.045 -9.6688,-0.0418 -3.7142,-0.1056 -7.4347,-0.26221 -11.1232,-0.7325 -4.418,-0.5549 -8.8159,-0.9498 -13.2777,-0.72929 -5.2377,-0.0512 -10.4748,-0.0383 -15.7127,-0.0241 -5.2553,-0.0158 -10.5111,-0.0164 -15.7663,0.0158 -5.6924,-0.0653 -11.384,-0.0608 -17.0765,-0.0524 -5.858,-0.007 -11.7157,0.0228 -17.5734,0.0747 -5.8002,-0.0559 -11.6057,-0.0336 -17.3971,-0.40493 -10.9789,-0.67009 -21.9241,-1.73118 -32.8687,-2.82034 -17.46073,-1.51675 -34.90392,-3.22579 -52.30398,-5.33772 -14.73665,-1.65461 -29.47753,-2.37213 -44.31104,-1.88538 -12.16456,0.0329 -24.3288,0.0903 -36.49305,0.16802 -9.33,0.0573 -18.66013,0.0564 -27.99023,0.0427 -9.877526,-0.0383 -19.754993,-0.0459 -29.632573,-0.0716 -9.82039,0.0368 -19.64079,0.0367 -29.46102,0.10804 -6.17735,0.0833 -12.35804,0.0746 -18.53224,0.30107 0,0 -9.60735,-18.85549 -9.60735,-18.85549 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4335-3-1"
d="m 19.711747,547.08327 c 5.0365,0.20718 10.07914,0.1958 15.11896,0.17212 7.96019,0.6312 15.87053,1.71438 23.83953,2.31279 7.43315,0.51193 14.88274,0.58527 22.32993,0.59105 6.330907,-0.0634 12.631767,-0.0585 18.945647,0.42051 7.134076,0.55775 14.284986,0.80056 21.437996,0.92437 6.60283,0.0266 13.19134,0.0136 19.77759,0.51104 8.58041,0.67251 17.18861,0.87577 25.79147,1.00671 8.34333,0.1266 16.68752,0.11302 25.03137,0.0627 7.44651,0.019 14.89293,-0.0321 22.33946,-0.0276 4.67071,-0.2396 9.37637,0.25551 14.04389,-0.002 1.68874,-0.0931 7.02533,-0.85249 8.44688,-1.04438 10.01867,-1.80609 20.11198,-3.02611 30.25827,-3.81047 9.7856,-0.85344 19.6364,-0.98022 29.3946,-2.10047 9.1983,-1.15927 18.4237,-2.0631 27.6735,-2.68823 6.2362,-0.40213 12.4845,-0.43736 18.7306,-0.43296 6.3505,0.005 12.7001,0.0527 19.0506,0.003 5.0764,-0.008 10.1527,-0.0526 15.2291,-0.0555 5.4642,-0.25185 10.5492,2.09151 15.7213,3.52633 5.1157,1.68901 10.4011,2.65641 15.7457,3.22408 3.5752,0.33544 7.1671,0.36626 10.7547,0.36318 3.247,-0.0322 6.4939,-0.0156 9.7409,-0.0253 2.7509,0.0446 5.3913,0.65105 7.9102,1.72156 2.5226,1.42816 4.3187,3.73805 6.2508,5.83336 1.2,1.19474 2.7262,1.77491 4.3618,2.06298 0,0 9.1177,19.26003 9.1177,19.26003 l 0,0 c -1.7208,-0.74134 -3.7286,-0.6867 -5.299,-1.83086 -1.2192,-0.94528 -1.8747,-1.8822 -2.8286,-3.06334 -1.9504,-2.41507 -0.025,0.22711 -2.1813,-1.99135 -0.2828,-0.29091 -0.4644,-0.6653 -0.6967,-0.99795 -2.2023,-1.28586 -4.5385,-1.93689 -7.0733,-2.23853 -3.2492,0.004 -6.4981,0.0481 -9.7474,0.0296 -3.6716,-0.0147 -7.3521,0.009 -11.0091,-0.36676 -5.4479,-0.61406 -10.9132,-1.50051 -16.1235,-3.24524 -2.429,-0.65858 -3.5427,-0.94185 -5.9611,-1.67357 -3.0146,-0.91208 -5.9671,-2.22882 -9.1898,-1.95622 -5.0982,-0.004 -10.1962,-0.0505 -15.2944,-0.0684 -6.3536,-0.0617 -12.7068,-0.0375 -19.0606,-0.0345 -6.2356,0.0238 -12.473,0.0287 -18.7058,0.24116 -9.2553,0.38671 -18.4914,1.10469 -27.6623,2.45002 -9.7936,1.10208 -19.6852,1.31037 -29.512,2.0502 -10.0988,0.70358 -20.11123,1.97097 -30.06401,3.83643 -0.98923,0.16981 -7.36399,1.29556 -8.61519,1.39663 -4.6502,0.37563 -9.38582,-0.23974 -14.0434,0.002 -7.45349,0.009 -14.90691,-0.0341 -22.36037,-0.0115 -8.36857,-0.0526 -16.7374,-0.062 -25.10573,-0.13818 -8.61121,-0.14049 -17.21761,-0.3905 -25.81882,-0.83624 -6.55663,-0.35735 -13.10216,-0.50348 -19.67076,-0.50608 -7.18445,-0.16133 -14.36943,-0.39436 -21.53806,-0.91483 -6.26633,-0.34202 -12.528036,-0.48694 -18.805626,-0.40705 -7.518437,-0.10944 -15.043377,-0.2188 -22.547717,-0.72017 -7.86623,-0.57361 -15.69538,-1.56654 -23.55971,-2.09705 -4.98131,-0.0233 -9.96571,-0.0384 -14.94356,0.17211 0,0 -9.62464,-18.88943 -9.62464,-18.88943 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4341-3-9"
d="m 454.42864,485.97269 c -5.8699,-0.23214 -11.7465,-0.25053 -17.6203,-0.25396 -6.2278,-0.19574 -12.5355,0.40166 -18.748,-0.22811 -1.6874,-0.17105 -3.3542,-0.50572 -5.0313,-0.75858 -13.1063,-2.76072 -26.3871,-4.23432 -39.691,-5.61103 -12.0999,-1.35792 -24.268,-1.77267 -36.4315,-2.01399 -10.0828,-0.004 -20.1855,-0.50821 -30.2507,0.20575 -11.3847,0.52545 -22.6669,2.0654 -33.9746,3.38268 -12.3455,1.17423 -24.73185,1.88556 -37.10332,2.74257 -14.3959,0.78087 -28.75479,2.03353 -43.11367,3.30584 -9.85734,0.89622 -19.73505,1.45105 -29.62607,1.75627 -8.24659,-0.28202 -16.42616,-1.51927 -24.65815,-2.1167 -6.55215,-0.46387 -13.11964,-0.55384 -19.6852,-0.59639 -4.88936,-0.0232 -9.77868,0.0217 -14.6677,0.0769 -3.59495,0.002 -7.189786,0.0341 -10.784686,0.0518 -3.09569,0.52967 -6.10418,1.51609 -9.206827,2.1038 -3.97443,0.65859 -8.02257,0.65811 -12.04031,0.68502 -4.64672,0.36267 -9.14208,-0.38305 -13.65386,-1.37111 -5.06845,-0.72843 -9.93132,-2.06546 -14.78059,-3.67909 -4.84271,-1.64379 -9.70411,-3.20452 -14.62458,-4.59999 -2.99752,-0.74859 -5.69943,-2.20028 -8.43999,-3.56668 -0.26449,-0.1487 -0.52899,-0.29741 -0.79348,-0.44611 0,0 -8.24955,-19.57387 -8.24955,-19.57387 l 0,0 c 0.1554,0.22234 0.31079,0.44469 0.46619,0.66703 2.413,1.74445 5.30934,2.86272 8.03602,4.02217 4.98994,1.41102 9.91941,2.97817 14.79663,4.73632 4.75417,1.59752 9.49184,2.98103 14.48913,3.54955 4.38077,1.0286 8.68258,2.10292 13.23486,1.62979 3.89662,-0.0596 7.81123,-0.0727 11.67686,-0.62599 3.24886,-0.54932 6.32781,-1.61847 9.52136,-2.30759 3.608117,0.0149 7.216257,0.042 10.824427,0.0319 4.9267,0.0392 9.853426,0.0606 14.780156,0.0952 6.64548,0.0763 13.2955,0.22175 19.92276,0.75111 8.15796,0.68228 16.28704,1.70747 24.45975,2.16484 9.95069,-0.0664 19.90263,-0.37181 29.82947,-1.08474 14.3868,-1.07688 28.7397,-2.5498 43.15537,-3.23669 12.29297,-1.09519 24.58938,-2.00071 36.889,-2.9911 11.3073,-1.33001 22.5792,-2.81638 33.9407,-3.63939 10.1359,-0.757 20.3298,-0.18021 30.4862,-0.1746 12.2551,0.33268 24.5079,0.93841 36.7074,2.18778 13.2394,1.48612 26.4874,2.88555 39.6081,5.24184 1.5885,0.24615 3.1657,0.58233 4.7656,0.73847 6.1703,0.60218 12.418,-0.22554 18.5992,0.11366 5.7875,-0.003 11.5782,-0.0182 17.3616,-0.25397 0,0 9.6246,18.88942 9.6246,18.88942 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4333-665"
d="m 618.03914,482.61029 c -0.22428,6.27662 -0.21754,12.5594 -0.30107,18.83904 -0.0712,9.85694 -0.0713,19.71404 -0.10805,29.57113 0.0257,9.85325 0.0332,19.70641 0.0716,29.55962 0.0138,9.34461 0.0143,18.68925 -0.0427,28.03377 -0.0776,12.22132 -0.13504,24.44264 -0.16801,36.66426 -0.15333,9.33822 0.28038,18.68933 -0.35768,28.01598 -0.48885,7.14562 -0.9005,9.41974 -1.84173,16.71744 -2.26966,17.30789 -3.93893,34.69944 -5.14056,52.11341 -0.91249,10.79881 -1.73162,21.6065 -2.09949,32.43896 -0.15171,5.72126 -0.20891,11.44412 -0.16442,17.16712 -0.0412,5.87466 -0.0521,11.74941 -0.0339,17.62422 0.001,5.67337 -0.003,11.34595 0.0639,17.01926 -0.0316,5.26066 -0.0314,10.52186 -0.0157,15.7826 -0.0139,5.22974 -0.0277,10.45863 0.024,15.68821 0.16573,4.51128 -0.0786,8.98604 -0.56459,13.4678 -0.45783,3.62278 -0.64194,7.26777 -0.73637,10.91535 -0.0486,3.20582 -0.0735,6.41209 -0.0711,9.61828 0.0244,3.23431 0.0116,6.46847 0.005,9.70275 0.16272,3.31839 -0.0664,6.57974 -0.57564,9.85474 -0.49098,3.1942 -0.66994,6.42172 -0.77224,9.64795 -0.077,3.17019 -0.1429,6.34599 -0.0408,9.51634 0,0 -18.84933,9.60594 -18.84933,9.60594 l 0,0 c 0.0951,-3.19999 0.0246,-6.40318 0.0721,-9.60411 0.091,-3.30079 0.2562,-6.60199 0.69672,-9.87751 0.42435,-3.19737 0.99716,-6.3369 0.71546,-9.5868 -0.009,-3.23328 -0.0279,-6.46646 -0.0106,-9.69981 -9.8e-4,-3.22301 -0.0449,-6.44638 0.0418,-9.66879 0.10561,-3.7142 0.26222,-7.43474 0.73251,-11.12329 0.5549,-4.41792 0.9498,-8.81582 0.72929,-13.27762 0.0512,-5.23776 0.0383,-10.47483 0.0241,-15.71274 0.0158,-5.2553 0.0164,-10.51107 -0.0158,-15.76628 0.0653,-5.69244 0.0608,-11.38406 0.0524,-17.07655 0.008,-5.85796 -0.0228,-11.71562 -0.0747,-17.57332 0.0559,-5.80021 0.0336,-11.60577 0.40492,-17.39719 0.6701,-10.97884 1.73119,-21.92407 2.82034,-32.8687 1.51675,-17.4607 3.22579,-34.90389 5.33773,-52.30395 1.6546,-14.73665 2.37213,-29.47753 1.88537,-44.31104 -0.0329,-12.16456 -0.0903,-24.3288 -0.16801,-36.49305 -0.0573,-9.33 -0.0564,-18.66013 -0.0427,-27.99023 0.0383,-9.87753 0.0459,-19.755 0.0716,-29.63258 -0.0368,-9.82039 -0.0367,-19.64079 -0.10804,-29.46102 -0.0833,-6.17735 -0.0746,-12.35804 -0.30108,-18.53224 0,0 18.85549,-9.60735 18.85549,-9.60735 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4335-32"
d="m 699.48468,486.71648 c -0.20718,5.0365 -0.1958,10.07914 -0.17212,15.11896 -0.6312,7.96019 -1.71438,15.87053 -2.31279,23.83953 -0.51193,7.43315 -0.58527,14.88274 -0.59105,22.32993 0.0634,6.33091 0.0585,12.63177 -0.42051,18.94565 -0.55775,7.13408 -0.80056,14.28499 -0.92437,21.438 -0.0266,6.60283 -0.0136,13.19134 -0.51104,19.77759 -0.67251,8.58041 -0.87577,17.18861 -1.00671,25.79147 -0.1266,8.34333 -0.11302,16.68752 -0.0627,25.03137 -0.019,7.44651 0.0321,14.89293 0.0276,22.33946 0.2396,4.67071 -0.25551,9.37637 0.002,14.04389 0.0931,1.68874 0.85249,7.02533 1.04438,8.44688 1.80609,10.01867 3.02611,20.11198 3.81047,30.25823 0.85344,9.78564 0.98022,19.63643 2.10047,29.39463 1.15927,9.19831 2.0631,18.42377 2.68823,27.67352 0.40213,6.23623 0.43736,12.48454 0.43296,18.73056 -0.005,6.35051 -0.0527,12.70015 -0.003,19.05064 0.008,5.07643 0.0526,10.15273 0.0555,15.22915 0.25185,5.46413 -2.09151,10.54914 -3.52633,15.72122 -1.68901,5.11577 -2.65641,10.40111 -3.22408,15.74574 -0.33544,3.57521 -0.36626,7.16706 -0.36318,10.75473 0.0322,3.24694 0.0156,6.49386 0.0253,9.74086 -0.0446,2.75086 -0.65105,5.39129 -1.72156,7.91021 -1.42816,2.52257 -3.73805,4.31865 -5.83336,6.25075 -1.19474,1.2 -1.77491,2.72629 -2.06298,4.36188 0,0 -19.26002,9.11764 -19.26002,9.11764 l 0,0 c 0.74134,-1.7208 0.6867,-3.72857 1.83086,-5.29899 0.94528,-1.21919 1.8822,-1.87472 3.06334,-2.82859 2.41507,-1.95036 -0.22711,-0.0252 1.99135,-2.18133 0.29091,-0.28275 0.6653,-0.46441 0.99795,-0.69662 1.28586,-2.20239 1.93689,-4.53858 2.23853,-7.07332 -0.004,-3.2492 -0.0481,-6.49813 -0.0296,-9.7474 0.0147,-3.67158 -0.009,-7.35217 0.36676,-11.00914 0.61406,-5.44784 1.50051,-10.91316 3.24524,-16.12351 0.65858,-2.42897 0.94185,-3.54268 1.67357,-5.96112 0.91208,-3.01455 2.22882,-5.96707 1.95622,-9.18975 0.004,-5.09818 0.0505,-10.19622 0.0684,-15.29437 0.0617,-6.35368 0.0375,-12.70682 0.0345,-19.06065 -0.0238,-6.23563 -0.0287,-12.47302 -0.24116,-18.70579 -0.38671,-9.25525 -1.10469,-18.49141 -2.45002,-27.66226 -1.10208,-9.79361 -1.31037,-19.6852 -2.0502,-29.51204 -0.70358,-10.09877 -1.97097,-20.11124 -3.83643,-30.06402 -0.16981,-0.98923 -1.29556,-7.36399 -1.39663,-8.61519 -0.37563,-4.6502 0.23974,-9.38582 -0.002,-14.0434 -0.009,-7.45349 0.0341,-14.90691 0.0115,-22.36037 0.0526,-8.36857 0.062,-16.7374 0.13818,-25.10573 0.14049,-8.61121 0.3905,-17.21761 0.83624,-25.81882 0.35735,-6.55663 0.50348,-13.10216 0.50608,-19.67076 0.16133,-7.18445 0.39436,-14.36943 0.91483,-21.53806 0.34202,-6.26633 0.48694,-12.52804 0.40705,-18.80563 0.10944,-7.51844 0.2188,-15.04338 0.72017,-22.54772 0.57361,-7.86623 1.56654,-15.69538 2.09705,-23.55971 0.0233,-4.98131 0.0384,-9.96571 -0.17211,-14.94356 0,0 18.88942,-9.62464 18.88942,-9.62464 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4341-32"
d="m 760.59526,921.43337 c 0.23214,-5.86985 0.25053,-11.74652 0.25396,-17.62031 0.19574,-6.22773 -0.40166,-12.53543 0.22811,-18.74794 0.17105,-1.68742 0.50572,-3.35422 0.75858,-5.03132 2.76072,-13.10633 4.23432,-26.38711 5.61103,-39.69103 1.35792,-12.09985 1.77267,-24.26793 2.01399,-36.43152 0.004,-10.08271 0.50821,-20.18546 -0.20575,-30.2507 -0.52545,-11.38462 -2.0654,-22.66682 -3.38268,-33.97456 -1.17423,-12.34552 -1.88556,-24.73186 -2.74257,-37.10333 -0.78087,-14.3959 -2.03353,-28.75479 -3.30584,-43.11367 -0.89622,-9.85734 -1.45105,-19.73505 -1.75627,-29.62607 0.28202,-8.24659 1.51927,-16.42616 2.1167,-24.65815 0.46387,-6.55215 0.55384,-13.11964 0.59639,-19.6852 0.0232,-4.88936 -0.0217,-9.77868 -0.0769,-14.6677 -0.002,-3.59495 -0.0341,-7.18979 -0.0518,-10.78469 -0.52967,-3.09569 -1.51609,-6.10418 -2.1038,-9.20683 -0.65859,-3.97443 -0.65811,-8.02257 -0.68502,-12.04031 -0.36267,-4.64672 0.38305,-9.14208 1.37111,-13.65386 0.72843,-5.06845 2.06546,-9.93132 3.67909,-14.78059 1.64379,-4.84271 3.20452,-9.70411 4.59999,-14.62458 0.74859,-2.99752 2.20028,-5.69943 3.56668,-8.43999 0.1487,-0.26449 0.29741,-0.52899 0.44611,-0.79348 0,0 19.57387,-8.24955 19.57387,-8.24955 l 0,0 c -0.22234,0.1554 -0.44469,0.31079 -0.66703,0.46619 -1.74445,2.413 -2.86272,5.30934 -4.02217,8.03602 -1.41102,4.98994 -2.97817,9.91941 -4.73632,14.79663 -1.59752,4.75417 -2.98103,9.49184 -3.54955,14.48913 -1.0286,4.38077 -2.10292,8.68258 -1.62979,13.23486 0.0596,3.89662 0.0727,7.81123 0.62599,11.67686 0.54932,3.24886 1.61847,6.32781 2.30759,9.52136 -0.0149,3.60812 -0.042,7.21626 -0.0319,10.82443 -0.0392,4.9267 -0.0606,9.85343 -0.0952,14.78016 -0.0763,6.64548 -0.22175,13.2955 -0.75111,19.92276 -0.68228,8.15796 -1.70747,16.28704 -2.16484,24.45975 0.0664,9.95069 0.37181,19.90263 1.08474,29.82947 1.07688,14.3868 2.5498,28.7397 3.23669,43.15537 1.09519,12.29297 2.00071,24.58938 2.9911,36.889 1.33001,11.30733 2.81638,22.57926 3.63939,33.94075 0.757,10.13589 0.18021,20.32978 0.1746,30.48619 -0.33268,12.25511 -0.93841,24.50789 -2.18778,36.70737 -1.48612,13.23937 -2.88555,26.48739 -5.24184,39.60811 -0.24615,1.58852 -0.58233,3.16568 -0.73847,4.76557 -0.60218,6.17033 0.22554,12.41803 -0.11366,18.59925 0.003,5.78748 0.0182,11.57814 0.25397,17.36154 0,0 -18.88942,9.62461 -18.88942,9.62461 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4333-6-0"
d="m 872.40479,482.0857 c -0.22428,6.27662 -0.21755,12.5594 -0.30108,18.83904 -0.0712,9.85694 -0.0713,19.71404 -0.10804,29.57113 0.0257,9.85325 0.0332,19.70641 0.0716,29.55962 0.0138,9.34461 0.0143,18.68925 -0.0427,28.03377 -0.0776,12.22132 -0.13505,24.44264 -0.16801,36.66426 -0.15334,9.33822 0.28037,18.68933 -0.35769,28.01598 -0.48885,7.14562 -0.90049,9.41974 -1.84172,16.71744 -2.26966,17.30789 -3.93893,34.69944 -5.14057,52.11341 -0.91249,10.79881 -1.73162,21.6065 -2.09949,32.43896 -0.15171,5.7213 -0.20891,11.4441 -0.16442,17.1671 -0.0412,5.8747 -0.0521,11.7494 -0.0339,17.6242 0.001,5.6734 -0.003,11.346 0.0639,17.0193 -0.0316,5.2607 -0.0315,10.5219 -0.0157,15.7826 -0.0139,5.2297 -0.0277,10.4586 0.024,15.6882 0.16574,4.5113 -0.0786,8.9861 -0.56458,13.4678 -0.45784,3.6228 -0.64195,7.2678 -0.73638,10.9154 -0.0486,3.2058 -0.0735,6.4121 -0.0711,9.6182 0.0244,3.2344 0.0116,6.4685 0.005,9.7028 0.16273,3.3184 -0.0664,6.5797 -0.57563,9.8547 -0.49099,3.1942 -0.66995,6.4218 -0.77225,9.648 -0.077,3.1702 -0.14289,6.346 -0.0408,9.5163 0,0 -18.84932,9.606 -18.84932,9.606 l 0,0 c 0.095,-3.2 0.0246,-6.4032 0.0721,-9.6041 0.091,-3.3008 0.2562,-6.602 0.69671,-9.8776 0.42435,-3.1973 0.99717,-6.3369 0.71547,-9.5868 -0.009,-3.2332 -0.0279,-6.4664 -0.0106,-9.6998 -9.9e-4,-3.223 -0.045,-6.4463 0.0418,-9.6688 0.1056,-3.7142 0.26221,-7.4347 0.7325,-11.1232 0.5549,-4.418 0.9498,-8.8159 0.72929,-13.2777 0.0512,-5.2377 0.0383,-10.4748 0.0241,-15.7127 0.0158,-5.2553 0.0164,-10.5111 -0.0158,-15.7663 0.0653,-5.6924 0.0608,-11.384 0.0524,-17.0765 0.007,-5.858 -0.0228,-11.7157 -0.0747,-17.5734 0.0559,-5.8002 0.0336,-11.6057 0.40493,-17.3971 0.67009,-10.9789 1.73118,-21.92412 2.82034,-32.86875 1.51675,-17.4607 3.22579,-34.90389 5.33772,-52.30395 1.65461,-14.73665 2.37213,-29.47753 1.88538,-44.31104 -0.0329,-12.16456 -0.0903,-24.3288 -0.16802,-36.49305 -0.0573,-9.33 -0.0564,-18.66013 -0.0427,-27.99023 0.0383,-9.87753 0.0459,-19.755 0.0716,-29.63258 -0.0368,-9.82039 -0.0367,-19.64079 -0.10804,-29.46102 -0.0833,-6.17735 -0.0746,-12.35804 -0.30107,-18.53224 0,0 18.85549,-9.60735 18.85549,-9.60735 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4335-3-3"
d="m 953.85033,486.19189 c -0.20718,5.0365 -0.1958,10.07914 -0.17212,15.11896 -0.6312,7.96019 -1.71438,15.87053 -2.31279,23.83953 -0.51193,7.43315 -0.58527,14.88274 -0.59105,22.32993 0.0634,6.33091 0.0585,12.63177 -0.42051,18.94565 -0.55775,7.13408 -0.80056,14.28499 -0.92437,21.438 -0.0266,6.60283 -0.0136,13.19134 -0.51104,19.77759 -0.67251,8.58041 -0.87577,17.18861 -1.00671,25.79147 -0.1266,8.34333 -0.11302,16.68752 -0.0627,25.03137 -0.019,7.44651 0.0321,14.89293 0.0276,22.33946 0.2396,4.67071 -0.25551,9.37637 0.002,14.04389 0.0931,1.68874 0.85249,7.02533 1.04438,8.44688 1.80609,10.01867 3.02611,20.11198 3.81047,30.25823 0.85344,9.78564 0.98022,19.63646 2.10047,29.39466 1.15927,9.1983 2.0631,18.4237 2.68823,27.6735 0.40213,6.2362 0.43736,12.4845 0.43296,18.7306 -0.005,6.3505 -0.0527,12.7001 -0.003,19.0506 0.008,5.0764 0.0526,10.1527 0.0555,15.2291 0.25185,5.4642 -2.09151,10.5492 -3.52633,15.7213 -1.68901,5.1157 -2.65641,10.4011 -3.22408,15.7457 -0.33544,3.5752 -0.36626,7.1671 -0.36318,10.7547 0.0322,3.247 0.0156,6.4939 0.0253,9.7409 -0.0446,2.7509 -0.65105,5.3913 -1.72156,7.9102 -1.42816,2.5226 -3.73805,4.3187 -5.83336,6.2508 -1.19474,1.2 -1.77491,2.7262 -2.06298,4.3618 0,0 -19.26003,9.11766 -19.26003,9.11766 l 0,0 c 0.74134,-1.7208 0.6867,-3.72856 1.83086,-5.29896 0.94528,-1.2192 1.8822,-1.8747 3.06334,-2.8286 2.41507,-1.9504 -0.22711,-0.025 1.99135,-2.1813 0.29091,-0.2828 0.6653,-0.4644 0.99795,-0.6967 1.28586,-2.2023 1.93689,-4.5385 2.23853,-7.0733 -0.004,-3.2492 -0.0481,-6.4981 -0.0296,-9.7474 0.0147,-3.6716 -0.009,-7.3521 0.36676,-11.0091 0.61406,-5.4479 1.50051,-10.9132 3.24524,-16.1235 0.65858,-2.429 0.94185,-3.5427 1.67357,-5.9611 0.91208,-3.0146 2.22882,-5.9671 1.95622,-9.1898 0.004,-5.0982 0.0505,-10.1962 0.0684,-15.2944 0.0617,-6.3536 0.0375,-12.7068 0.0345,-19.0606 -0.0238,-6.2356 -0.0287,-12.473 -0.24116,-18.7058 -0.38671,-9.2553 -1.10469,-18.4914 -2.45002,-27.6623 -1.10208,-9.7936 -1.31037,-19.6852 -2.0502,-29.51201 -0.70358,-10.09877 -1.97097,-20.11124 -3.83643,-30.06402 -0.16981,-0.98923 -1.29556,-7.36399 -1.39663,-8.61519 -0.37563,-4.6502 0.23974,-9.38582 -0.002,-14.0434 -0.009,-7.45349 0.0341,-14.90691 0.0115,-22.36037 0.0526,-8.36857 0.062,-16.7374 0.13818,-25.10573 0.14049,-8.61121 0.3905,-17.21761 0.83624,-25.81882 0.35735,-6.55663 0.50348,-13.10216 0.50608,-19.67076 0.16133,-7.18445 0.39436,-14.36943 0.91483,-21.53806 0.34202,-6.26633 0.48694,-12.52804 0.40705,-18.80563 0.10944,-7.51844 0.2188,-15.04338 0.72017,-22.54772 0.57361,-7.86623 1.56654,-15.69538 2.09705,-23.55971 0.0233,-4.98131 0.0384,-9.96571 -0.17211,-14.94356 0,0 18.88943,-9.62464 18.88943,-9.62464 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4341-3-2"
d="m 1014.9609,920.90881 c 0.2322,-5.8699 0.2505,-11.7465 0.254,-17.6203 0.1957,-6.2278 -0.4017,-12.5355 0.2281,-18.748 0.171,-1.6874 0.5057,-3.3542 0.7586,-5.0313 2.7607,-13.1063 4.2343,-26.3871 5.611,-39.691 1.3579,-12.0999 1.7727,-24.268 2.014,-36.4315 0,-10.0828 0.5082,-20.1855 -0.2058,-30.2507 -0.5254,-11.3847 -2.0654,-22.6669 -3.3826,-33.97461 -1.1743,-12.34552 -1.8856,-24.73186 -2.7426,-37.10333 -0.7809,-14.3959 -2.0335,-28.75479 -3.3059,-43.11367 -0.8962,-9.85734 -1.451,-19.73505 -1.7562,-29.62607 0.282,-8.24659 1.5192,-16.42616 2.1167,-24.65815 0.4638,-6.55215 0.5538,-13.11964 0.5964,-19.6852 0.023,-4.88936 -0.022,-9.77868 -0.077,-14.6677 0,-3.59495 -0.034,-7.18979 -0.052,-10.78469 -0.5297,-3.09569 -1.5161,-6.10418 -2.1038,-9.20683 -0.6586,-3.97443 -0.6581,-8.02257 -0.6851,-12.04031 -0.3626,-4.64672 0.3831,-9.14208 1.3712,-13.65386 0.7284,-5.06845 2.0654,-9.93132 3.679,-14.78059 1.6438,-4.84271 3.2046,-9.70411 4.6,-14.62458 0.7486,-2.99752 2.2003,-5.69943 3.5667,-8.43999 0.1487,-0.26449 0.2974,-0.52899 0.4461,-0.79348 0,0 19.5739,-8.24955 19.5739,-8.24955 l 0,0 c -0.2223,0.1554 -0.4447,0.31079 -0.667,0.46619 -1.7445,2.413 -2.8628,5.30934 -4.0222,8.03602 -1.411,4.98994 -2.9782,9.91941 -4.7363,14.79663 -1.5975,4.75417 -2.9811,9.49184 -3.5496,14.48913 -1.0286,4.38077 -2.1029,8.68258 -1.6298,13.23486 0.06,3.89662 0.073,7.81123 0.626,11.67686 0.5493,3.24886 1.6185,6.32781 2.3076,9.52136 -0.015,3.60812 -0.042,7.21626 -0.032,10.82443 -0.039,4.9267 -0.061,9.85343 -0.095,14.78016 -0.076,6.64548 -0.2217,13.2955 -0.7511,19.92276 -0.6823,8.15796 -1.7075,16.28704 -2.1648,24.45975 0.066,9.95069 0.3718,19.90263 1.0847,29.82947 1.0769,14.3868 2.5498,28.7397 3.2367,43.15537 1.0952,12.29297 2.0007,24.58938 2.9911,36.889 1.33,11.30733 2.8164,22.57922 3.6394,33.94072 0.757,10.1359 0.1802,20.3298 0.1746,30.4862 -0.3327,12.2551 -0.9384,24.5079 -2.1878,36.7074 -1.4861,13.2394 -2.8855,26.4874 -5.2418,39.6081 -0.2462,1.5885 -0.5824,3.1657 -0.7385,4.7656 -0.6022,6.1703 0.2255,12.418 -0.1137,18.5992 0,5.7875 0.018,11.5782 0.254,17.3616 0,0 -18.8894,9.6246 -18.8894,9.6246 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4333-66-4"
d="m 594.74154,891.03574 c 6.27662,0.2243 12.5594,0.2176 18.83904,0.3011 9.85694,0.071 19.71404,0.071 29.57113,0.108 9.85325,-0.026 19.70641,-0.033 29.55962,-0.072 9.34461,-0.014 18.68925,-0.014 28.03377,0.043 12.22132,0.078 24.44264,0.1351 36.66426,0.1681 9.33822,0.1533 18.68933,-0.2804 28.01598,0.3576 7.14562,0.4889 9.41974,0.9005 16.71744,1.8418 17.30789,2.2696 34.69944,3.9389 52.11341,5.1405 10.79885,0.9125 21.60655,1.7316 32.43895,2.0995 5.7213,0.1517 11.4441,0.2089 17.1671,0.1644 5.8747,0.041 11.7494,0.052 17.6243,0.034 5.6733,-10e-4 11.3459,0 17.0192,-0.064 5.2607,0.032 10.5219,0.032 15.7826,0.016 5.2298,0.014 10.4586,0.028 15.6882,-0.024 4.5113,-0.1657 8.9861,0.079 13.46773,0.5646 3.6228,0.4579 7.2678,0.642 10.9154,0.7364 3.2058,0.049 6.4121,0.073 9.6183,0.071 3.2343,-0.024 6.4684,-0.012 9.7027,0 3.3184,-0.1627 6.57973,0.066 9.85473,0.5756 3.1942,0.491 6.4218,0.67 9.648,0.7723 3.1702,0.077 6.346,0.1429 9.5163,0.041 0,0 9.606,18.84933 9.606,18.84933 l 0,0 c -3.2,-0.095 -6.4032,-0.025 -9.6041,-0.072 -3.3008,-0.091 -6.602,-0.2562 -9.8775,-0.6967 -3.1974,-0.4244 -6.3369,-0.99723 -9.5868,-0.71553 -3.2333,0.01 -6.46653,0.028 -9.69993,0.011 -3.223,10e-4 -6.4463,0.045 -9.6687,-0.042 -3.7142,-0.1056 -7.4348,-0.2622 -11.1233,-0.7325 -4.418,-0.5549 -8.8159,-0.9498 -13.27763,-0.7293 -5.2377,-0.051 -10.4748,-0.038 -15.7127,-0.024 -5.2553,-0.016 -10.5111,-0.016 -15.7663,0.016 -5.6924,-0.065 -11.384,-0.061 -17.0765,-0.052 -5.858,-0.01 -11.7156,0.023 -17.5733,0.075 -5.8003,-0.056 -11.6058,-0.034 -17.3972,-0.4049 -10.9789,-0.6701 -21.9241,-1.7312 -32.8687,-2.8203 -17.46074,-1.5168 -34.90393,-3.2258 -52.30399,-5.3378 -14.73665,-1.6546 -29.47753,-2.3721 -44.31104,-1.8853 -12.16456,0.033 -24.3288,0.09 -36.49305,0.168 -9.33,0.057 -18.66013,0.056 -27.99023,0.043 -9.87753,-0.038 -19.755,-0.046 -29.63258,-0.072 -9.82039,0.037 -19.64079,0.037 -29.46102,0.108 -6.17735,0.083 -12.35804,0.075 -18.53224,0.3011 0,0 -9.60735,-18.8555 -9.60735,-18.8555 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4335-30-7"
d="m 598.84773,809.59024 c 5.0365,0.2072 10.07914,0.1958 15.11896,0.1721 7.96019,0.6312 15.87053,1.7144 23.83953,2.3128 7.43315,0.5119 14.88274,0.5853 22.32993,0.591 6.33091,-0.063 12.63177,-0.059 18.94565,0.4206 7.13408,0.5577 14.28499,0.8005 21.438,0.9243 6.60283,0.027 13.19134,0.014 19.77759,0.5111 8.58041,0.6725 17.18861,0.8757 25.79147,1.0067 8.34333,0.1266 16.68752,0.113 25.03137,0.063 7.44651,0.019 14.89293,-0.032 22.33946,-0.028 4.67071,-0.2396 9.37637,0.2555 14.04389,0 1.68874,-0.093 7.02533,-0.8525 8.44688,-1.0444 10.01867,-1.8061 20.11198,-3.0261 30.25828,-3.8105 9.7856,-0.8534 19.6364,-0.9802 29.3946,-2.1004 9.1983,-1.1593 18.4238,-2.0631 27.6735,-2.6883 6.2362,-0.4021 12.4845,-0.4373 18.7306,-0.4329 6.3505,0.01 12.7001,0.053 19.0506,0 5.0764,-0.01 10.1527,-0.053 15.2292,-0.055 5.46403,-0.2519 10.54903,2.0915 15.72113,3.5263 5.1157,1.689 10.4011,2.6564 15.7457,3.2241 3.5752,0.3354 7.1671,0.3662 10.7547,0.3632 3.24703,-0.032 6.49393,-0.016 9.74093,-0.025 2.7509,0.045 5.3913,0.651 7.9102,1.7215 2.5226,1.4282 4.3187,3.7381 6.2508,5.8334 1.2,1.1947 2.7263,1.7749 4.3618,2.063 0,0 9.1177,19.26 9.1177,19.26 l 0,0 c -1.7208,-0.7414 -3.7286,-0.6867 -5.299,-1.8309 -1.2192,-0.9453 -1.8747,-1.8822 -2.8286,-3.0633 -1.9504,-2.4151 -0.025,0.2271 -2.1813,-1.9914 -0.2828,-0.2909 -0.4644,-0.6653 -0.6966,-0.9979 -2.2024,-1.2859 -4.5386,-1.9369 -7.0734,-2.2386 -3.2492,0 -6.4981,0.048 -9.7474,0.03 -3.6715,-0.015 -7.3521,0.01 -11.00913,-0.3667 -5.4478,-0.6141 -10.9132,-1.5005 -16.1235,-3.2453 -2.429,-0.6585 -3.5427,-0.9418 -5.9611,-1.6735 -3.0146,-0.9121 -5.9671,-2.2288 -9.1898,-1.9562 -5.09817,0 -10.19613,-0.051 -15.29433,-0.068 -6.3536,-0.062 -12.7068,-0.037 -19.0606,-0.034 -6.2356,0.024 -12.473,0.029 -18.7058,0.2411 -9.2552,0.3867 -18.4914,1.1047 -27.6623,2.45 -9.7936,1.1021 -19.6852,1.3104 -29.512,2.0502 -10.0988,0.7036 -20.11124,1.971 -30.06402,3.8365 -0.98923,0.1698 -7.36399,1.2955 -8.61519,1.3966 -4.6502,0.3756 -9.38582,-0.2397 -14.0434,0 -7.45349,0.01 -14.90691,-0.034 -22.36037,-0.012 -8.36857,-0.053 -16.7374,-0.062 -25.10573,-0.1382 -8.61121,-0.1405 -17.21761,-0.3905 -25.81882,-0.8362 -6.55663,-0.3574 -13.10216,-0.5035 -19.67076,-0.5061 -7.18445,-0.1613 -14.36943,-0.3944 -21.53806,-0.9148 -6.26633,-0.3421 -12.52804,-0.487 -18.80563,-0.4071 -7.51844,-0.1094 -15.04338,-0.2188 -22.54772,-0.7202 -7.86623,-0.5736 -15.69538,-1.5665 -23.55971,-2.097 -4.98131,-0.023 -9.96571,-0.038 -14.94356,0.1721 0,0 -9.62464,-18.8894 -9.62464,-18.8894 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4341-36-0"
d="m 1033.5646,748.47964 c -5.8699,-0.2321 -11.7465,-0.2505 -17.6203,-0.254 -6.2278,-0.1957 -12.5355,0.4017 -18.74803,-0.2281 -1.6874,-0.171 -3.3542,-0.5057 -5.0313,-0.7585 -13.1063,-2.7608 -26.3871,-4.2344 -39.69093,-5.6111 -12.0999,-1.3579 -24.2679,-1.7726 -36.4315,-2.014 -10.0827,0 -20.1855,-0.5082 -30.2507,0.2058 -11.3847,0.5254 -22.6669,2.0654 -33.9746,3.3827 -12.3455,1.1742 -24.73186,1.8855 -37.10333,2.7425 -14.3959,0.7809 -28.75479,2.0336 -43.11367,3.3059 -9.85734,0.8962 -19.73505,1.451 -29.62607,1.7562 -8.24659,-0.282 -16.42616,-1.5192 -24.65815,-2.1167 -6.55215,-0.4638 -13.11964,-0.5538 -19.6852,-0.5963 -4.88936,-0.023 -9.77868,0.022 -14.6677,0.077 -3.59495,0 -7.18979,0.034 -10.78469,0.052 -3.09569,0.5296 -6.10418,1.516 -9.20683,2.1038 -3.97443,0.6585 -8.02257,0.6581 -12.04031,0.685 -4.64672,0.3626 -9.14208,-0.3831 -13.65386,-1.3711 -5.06845,-0.7285 -9.93132,-2.0655 -14.78059,-3.6791 -4.84271,-1.6438 -9.70411,-3.2045 -14.62458,-4.6 -2.99752,-0.7486 -5.69943,-2.2003 -8.43999,-3.5667 -0.26449,-0.1487 -0.52899,-0.2974 -0.79348,-0.4461 0,0 -8.24955,-19.5739 -8.24955,-19.5739 l 0,0 c 0.1554,0.2224 0.31079,0.4447 0.46619,0.6671 2.413,1.7444 5.30934,2.8627 8.03602,4.0221 4.98994,1.411 9.91941,2.9782 14.79663,4.7363 4.75417,1.5976 9.49184,2.9811 14.48913,3.5496 4.38077,1.0286 8.68258,2.1029 13.23486,1.6298 3.89662,-0.06 7.81123,-0.073 11.67686,-0.626 3.24886,-0.5493 6.32781,-1.6185 9.52136,-2.3076 3.60812,0.015 7.21626,0.042 10.82443,0.032 4.9267,0.039 9.85343,0.061 14.78016,0.095 6.64548,0.076 13.2955,0.2218 19.92276,0.7511 8.15796,0.6823 16.28704,1.7075 24.45975,2.1649 9.95069,-0.066 19.90263,-0.3719 29.82947,-1.0848 14.3868,-1.0769 28.7397,-2.5498 43.15537,-3.2367 12.29297,-1.0952 24.58938,-2.0007 36.88901,-2.9911 11.3073,-1.33 22.5793,-2.8164 33.9407,-3.6394 10.1359,-0.757 20.3298,-0.1802 30.4862,-0.1746 12.2551,0.3327 24.5079,0.9384 36.7074,2.1878 13.2394,1.4861 26.48733,2.8856 39.60803,5.2419 1.5885,0.2461 3.1657,0.5823 4.7656,0.7384 6.1703,0.6022 12.41803,-0.2255 18.59923,0.1137 5.7875,0 11.5782,-0.018 17.3616,-0.254 0,0 9.6246,18.8894 9.6246,18.8894 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4333-6-8-2"
d="m 594.21695,636.67012 c 6.27662,0.22428 12.5594,0.21755 18.83904,0.30108 9.85694,0.0712 19.71404,0.0713 29.57113,0.10804 9.85325,-0.0257 19.70641,-0.0332 29.55962,-0.0716 9.34461,-0.0138 18.68925,-0.0143 28.03377,0.0427 12.22132,0.0776 24.44264,0.13505 36.66426,0.16801 9.33822,0.15334 18.68933,-0.28037 28.01598,0.35769 7.14562,0.48885 9.41974,0.90049 16.71744,1.84172 17.30789,2.26966 34.69944,3.93893 52.11341,5.14057 10.79884,0.91249 21.60654,1.73162 32.43894,2.09949 5.7213,0.15171 11.4441,0.20891 17.1671,0.16442 5.8747,0.0412 11.7494,0.0521 17.6242,0.0339 5.6734,-10e-4 11.346,0.003 17.0193,-0.0639 5.2607,0.0316 10.5219,0.0315 15.7826,0.0157 5.2297,0.0139 10.4586,0.0277 15.6882,-0.024 4.5113,-0.16574 8.9861,0.0786 13.46773,0.56458 3.6228,0.45784 7.2678,0.64195 10.9154,0.73638 3.2058,0.0486 6.4121,0.0735 9.6182,0.0711 3.2344,-0.0244 6.4685,-0.0116 9.7028,-0.005 3.3184,-0.16273 6.5797,0.0664 9.85473,0.57563 3.1942,0.49099 6.4218,0.66995 9.648,0.77225 3.1702,0.077 6.346,0.14289 9.5163,0.0408 0,0 9.606,18.84932 9.606,18.84932 l 0,0 c -3.2,-0.095 -6.4032,-0.0246 -9.6041,-0.0721 -3.3008,-0.091 -6.602,-0.2562 -9.8776,-0.69671 -3.1973,-0.42435 -6.3369,-0.99717 -9.5868,-0.71547 -3.23323,0.009 -6.46643,0.0279 -9.69983,0.0106 -3.223,9.9e-4 -6.4463,0.045 -9.6688,-0.0418 -3.7142,-0.1056 -7.4347,-0.26221 -11.1232,-0.7325 -4.418,-0.5549 -8.8159,-0.9498 -13.27763,-0.72929 -5.2377,-0.0512 -10.4748,-0.0383 -15.7127,-0.0241 -5.2553,-0.0158 -10.5111,-0.0164 -15.7663,0.0158 -5.6924,-0.0653 -11.384,-0.0608 -17.0765,-0.0524 -5.858,-0.007 -11.7157,0.0228 -17.5734,0.0747 -5.8002,-0.0559 -11.6057,-0.0336 -17.3971,-0.40493 -10.9789,-0.67009 -21.9241,-1.73118 -32.8687,-2.82034 -17.46073,-1.51675 -34.90392,-3.22579 -52.30398,-5.33772 -14.73665,-1.65461 -29.47753,-2.37213 -44.31104,-1.88538 -12.16456,0.0329 -24.3288,0.0903 -36.49305,0.16802 -9.33,0.0573 -18.66013,0.0564 -27.99023,0.0427 -9.87753,-0.0383 -19.755,-0.0459 -29.63258,-0.0716 -9.82039,0.0368 -19.64079,0.0367 -29.46102,0.10804 -6.17735,0.0833 -12.35804,0.0746 -18.53224,0.30107 0,0 -9.60735,-18.85549 -9.60735,-18.85549 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4335-3-1-1"
d="m 598.32314,555.22458 c 5.0365,0.20718 10.07914,0.1958 15.11896,0.17212 7.96019,0.6312 15.87053,1.71438 23.83953,2.31279 7.43315,0.51193 14.88274,0.58527 22.32993,0.59105 6.33091,-0.0634 12.63177,-0.0585 18.94565,0.42051 7.13408,0.55775 14.28499,0.80056 21.438,0.92437 6.60283,0.0266 13.19134,0.0136 19.77759,0.51104 8.58041,0.67251 17.18861,0.87577 25.79147,1.00671 8.34333,0.1266 16.68752,0.11302 25.03137,0.0627 7.44651,0.019 14.89293,-0.0321 22.33946,-0.0276 4.67071,-0.2396 9.37637,0.25551 14.04389,-0.002 1.68874,-0.0931 7.02533,-0.85249 8.44688,-1.04438 10.01867,-1.80609 20.11198,-3.02611 30.25827,-3.81047 9.7856,-0.85344 19.6364,-0.98022 29.3946,-2.10047 9.1983,-1.15927 18.4237,-2.0631 27.6735,-2.68823 6.2362,-0.40213 12.4845,-0.43736 18.7306,-0.43296 6.3505,0.005 12.7001,0.0527 19.0506,0.003 5.0764,-0.008 10.1527,-0.0526 15.2291,-0.0555 5.46416,-0.25185 10.54913,2.09151 15.72123,3.52633 5.1157,1.68901 10.4011,2.65641 15.7457,3.22408 3.5752,0.33544 7.1671,0.36626 10.7547,0.36318 3.24703,-0.0322 6.49393,-0.0156 9.74093,-0.0253 2.7509,0.0446 5.3913,0.65105 7.9102,1.72156 2.5226,1.42816 4.3187,3.73805 6.2508,5.83336 1.2,1.19474 2.7262,1.77491 4.3618,2.06298 0,0 9.1177,19.26003 9.1177,19.26003 l 0,0 c -1.7208,-0.74134 -3.7286,-0.6867 -5.299,-1.83086 -1.2192,-0.94528 -1.8747,-1.8822 -2.8286,-3.06334 -1.9504,-2.41507 -0.025,0.22711 -2.1813,-1.99135 -0.2828,-0.29091 -0.4644,-0.6653 -0.6967,-0.99795 -2.2023,-1.28586 -4.5385,-1.93689 -7.0733,-2.23853 -3.2492,0.004 -6.4981,0.0481 -9.7474,0.0296 -3.6716,-0.0147 -7.3521,0.009 -11.00913,-0.36676 -5.4479,-0.61406 -10.9132,-1.50051 -16.1235,-3.24524 -2.429,-0.65858 -3.5427,-0.94185 -5.9611,-1.67357 -3.0146,-0.91208 -5.9671,-2.22882 -9.1898,-1.95622 -5.09817,-0.004 -10.19613,-0.0505 -15.29433,-0.0684 -6.3536,-0.0617 -12.7068,-0.0375 -19.0606,-0.0345 -6.2356,0.0238 -12.473,0.0287 -18.7058,0.24116 -9.2553,0.38671 -18.4914,1.10469 -27.6623,2.45002 -9.7936,1.10208 -19.6852,1.31037 -29.512,2.0502 -10.0988,0.70358 -20.11123,1.97097 -30.06401,3.83643 -0.98923,0.16981 -7.36399,1.29556 -8.61519,1.39663 -4.6502,0.37563 -9.38582,-0.23974 -14.0434,0.002 -7.45349,0.009 -14.90691,-0.0341 -22.36037,-0.0115 -8.36857,-0.0526 -16.7374,-0.062 -25.10573,-0.13818 -8.61121,-0.14049 -17.21761,-0.3905 -25.81882,-0.83624 -6.55663,-0.35735 -13.10216,-0.50348 -19.67076,-0.50608 -7.18445,-0.16133 -14.36943,-0.39436 -21.53806,-0.91483 -6.26633,-0.34202 -12.52804,-0.48694 -18.80563,-0.40705 -7.51844,-0.10944 -15.04338,-0.2188 -22.54772,-0.72017 -7.86623,-0.57361 -15.69538,-1.56654 -23.55971,-2.09705 -4.98131,-0.0233 -9.96571,-0.0384 -14.94356,0.17211 0,0 -9.62464,-18.88943 -9.62464,-18.88943 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4341-3-9-7"
d="m 1033.04,494.114 c -5.8699,-0.23214 -11.7465,-0.25053 -17.6203,-0.25396 -6.2278,-0.19574 -12.5355,0.40166 -18.74803,-0.22811 -1.6874,-0.17105 -3.3542,-0.50572 -5.0313,-0.75858 -13.1063,-2.76072 -26.3871,-4.23432 -39.69093,-5.61103 -12.0999,-1.35792 -24.268,-1.77267 -36.4315,-2.01399 -10.0828,-0.004 -20.1855,-0.50821 -30.2507,0.20575 -11.3847,0.52545 -22.6669,2.0654 -33.9746,3.38268 -12.3455,1.17423 -24.73185,1.88556 -37.10332,2.74257 -14.3959,0.78087 -28.75479,2.03353 -43.11367,3.30584 -9.85734,0.89622 -19.73505,1.45105 -29.62607,1.75627 -8.24659,-0.28202 -16.42616,-1.51927 -24.65815,-2.1167 -6.55215,-0.46387 -13.11964,-0.55384 -19.6852,-0.59639 -4.88936,-0.0232 -9.77868,0.0217 -14.6677,0.0769 -3.59495,0.002 -7.18979,0.0341 -10.78469,0.0518 -3.09569,0.52967 -6.10418,1.51609 -9.20683,2.1038 -3.97443,0.65859 -8.02257,0.65811 -12.04031,0.68502 -4.64672,0.36267 -9.14208,-0.38305 -13.65386,-1.37111 -5.06845,-0.72843 -9.93132,-2.06546 -14.78059,-3.67909 -4.84271,-1.64379 -9.70411,-3.20452 -14.62458,-4.59999 -2.99752,-0.74859 -5.69943,-2.20028 -8.43999,-3.56668 -0.26449,-0.1487 -0.52899,-0.29741 -0.79348,-0.44611 0,0 -8.24955,-19.57387 -8.24955,-19.57387 l 0,0 c 0.1554,0.22234 0.31079,0.44469 0.46619,0.66703 2.413,1.74445 5.30934,2.86272 8.03602,4.02217 4.98994,1.41102 9.91941,2.97817 14.79663,4.73632 4.75417,1.59752 9.49184,2.98103 14.48913,3.54955 4.38077,1.0286 8.68258,2.10292 13.23486,1.62979 3.89662,-0.0596 7.81123,-0.0727 11.67686,-0.62599 3.24886,-0.54932 6.32781,-1.61847 9.52136,-2.30759 3.60812,0.0149 7.21626,0.042 10.82443,0.0319 4.9267,0.0392 9.85343,0.0606 14.78016,0.0952 6.64548,0.0763 13.2955,0.22175 19.92276,0.75111 8.15796,0.68228 16.28704,1.70747 24.45975,2.16484 9.95069,-0.0664 19.90263,-0.37181 29.82947,-1.08474 14.3868,-1.07688 28.7397,-2.5498 43.15537,-3.23669 12.29297,-1.09519 24.58938,-2.00071 36.889,-2.9911 11.3073,-1.33001 22.5792,-2.81638 33.9407,-3.63939 10.1359,-0.757 20.3298,-0.18021 30.4862,-0.1746 12.2551,0.33268 24.5079,0.93841 36.7074,2.18778 13.2394,1.48612 26.48733,2.88555 39.60803,5.24184 1.5885,0.24615 3.1657,0.58233 4.7656,0.73847 6.1703,0.60218 12.418,-0.22554 18.59923,0.11366 5.7875,-0.003 11.5782,-0.0182 17.3616,-0.25397 0,0 9.6246,18.88942 9.6246,18.88942 z"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Layer 2">
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4449"
d="m 72.579499,195.05811 c -0.06655,1.95698 -0.04857,3.91588 -0.05681,5.87376 0.0022,1.84658 0.01906,3.69311 0.02832,5.53967 -0.135107,1.51826 0.159015,2.99156 0.403622,4.47842 0.221259,1.41136 0.212196,2.83433 0.467568,4.24002 0.178219,1.2936 0.456583,2.5495 0.794635,3.8083 0.135192,1.45353 0.463352,2.7606 1.019463,4.10129 0.576959,1.38034 0.657804,2.88124 1.000453,4.32398 0.03623,0.17992 0.07247,0.35983 0.108702,0.53975 0,0 -9.386682,4.92916 -9.386682,4.92916 l 0,0 c -0.0049,-0.1529 -0.0099,-0.30581 -0.01478,-0.45871 -0.32833,-1.39232 -0.426658,-2.82802 -0.922733,-4.176 -0.278465,-0.68117 -0.663592,-1.39011 -0.823947,-2.11094 -0.152087,-0.68366 -0.05449,-1.42864 -0.280528,-2.1041 -0.332706,-1.28891 -0.658865,-2.56011 -0.808318,-3.88786 -0.272387,-1.41433 -0.338414,-2.83206 -0.488309,-4.26255 -0.234421,-1.54124 -0.578232,-3.06595 -0.456891,-4.63747 0.0093,-1.85618 0.02613,-3.71233 0.02833,-5.56854 -0.0082,-1.93856 0.01031,-3.87822 -0.05681,-5.81586 0,0 9.444712,-4.81232 9.444712,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4451"
d="m 146.94331,195.97921 c 1.77364,0.18067 3.44913,-0.18603 5.11655,-0.73626 1.79553,-0.43031 3.63645,-0.702 5.46353,-0.99653 1.87962,-0.16237 3.79634,-0.51777 5.67852,-0.25836 1.68988,0.41652 3.16075,1.3148 4.72793,2.02619 0.23886,0.12578 0.50596,0.20848 0.71657,0.37734 0.29011,0.23259 0.49779,0.55336 0.76578,0.81111 1.17066,1.12593 2.19572,2.16574 3.10393,3.52631 1.03017,1.90067 1.28702,4.05719 1.43986,6.17932 0.0758,2.45282 0.40838,3.40741 -1.24236,5.40259 -4.63192,4.05738 -10.60997,6.88796 -15.81026,9.88822 -2.13424,1.24871 -4.46284,2.09623 -6.6505,3.23665 -1.22504,0.63859 -2.41635,1.33991 -3.62638,2.00649 2.45342,-1.39919 9.78362,-5.6482 7.36026,-4.19756 -3.35843,2.01037 -6.76305,3.94286 -10.16593,5.87704 -0.38762,0.22032 -1.58728,0.81085 -1.20288,0.58496 14.71786,-8.64858 8.88234,-5.6441 6.34815,-3.30589 -1.56422,1.87083 -0.39699,2.45171 1.2934,3.55251 2.30672,1.15432 4.85971,1.51477 7.39964,1.71813 2.23676,0.13038 4.47834,0.0912 6.71754,0.0823 1.99609,-0.31705 3.91311,-0.95152 5.93084,-1.1848 1.93251,-0.16936 3.85031,-0.21038 5.75988,-0.55456 0.82127,-0.11636 1.64552,-0.20126 2.46665,-0.31826 0,0 -8.46387,6.31317 -8.46387,6.31317 l 0,0 c -0.81004,0.0883 -1.61876,0.18788 -2.42212,0.3261 -1.9009,0.25901 -3.82642,0.21534 -5.72427,0.51465 -2.00662,0.36215 -3.97058,1.01849 -6.02065,1.06428 -2.25917,0.006 -4.5225,0.006 -6.77579,-0.17624 -2.65072,-0.33049 -5.29841,-0.84547 -7.66282,-2.15401 -1.13629,-0.77475 -2.78984,-1.81419 -2.8401,-3.39948 -0.0166,-0.52263 0.45886,-1.29713 0.67085,-1.71107 2.62538,-3.54359 8.54764,-5.6208 11.45845,-7.28108 0.37134,-0.21181 1.50287,-0.81505 1.13465,-0.59784 -2.50304,1.4765 -10.04933,5.84253 -7.54021,4.37638 3.42103,-1.999 6.85062,-3.98329 10.27594,-5.97494 3.41149,-1.855 6.93652,-3.46733 10.34806,-5.3198 -15.41029,8.94821 -5.16215,3.28225 -1.93421,0.65597 2.00993,-1.70763 1.64402,-2.04223 1.57814,-4.59822 -0.0797,-1.95212 -0.21689,-3.95087 -1.13917,-5.71526 -1.09521,-1.68881 -2.53112,-3.26753 -4.33789,-4.19691 -1.45134,-0.72475 -2.88087,-1.51369 -4.52411,-1.70639 -1.83112,-0.0473 -3.66388,0.16255 -5.47215,0.43436 -1.81983,0.31475 -3.65879,0.58163 -5.42657,1.12891 -1.75242,0.45755 -3.54153,0.55404 -5.3485,0.53102 0,0 8.57562,-6.23055 8.57562,-6.23055 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4453"
d="m 234.16391,195.9848 c 2.42149,0.0624 4.84453,0.0526 7.26665,0.0409 2.4885,0.003 3.61892,-0.49946 5.47555,1.45299 0.14412,0.30309 0.36594,0.58029 0.43235,0.90925 0.67253,3.33154 -2.76245,6.00701 -4.93034,7.84558 -3.87759,3.0071 -8.12712,5.49438 -11.93996,8.58437 -0.61894,0.59149 -0.94354,0.80691 -1.36547,1.4693 -0.0577,0.0905 -0.15309,0.40088 -0.12114,0.29839 0.0417,-0.13372 0.03,-0.32087 0.15044,-0.39237 0.17466,-0.10366 1.71475,-0.22905 1.81695,-0.23919 2.53705,-0.22226 5.07299,-0.45212 7.61635,-0.58878 1.84496,-0.028 3.70801,-0.20798 5.5413,0.0442 2.25137,0.54944 3.9571,1.99082 5.34007,3.7954 0.94266,1.84528 2.20757,4.12791 1.91655,6.30679 -0.0633,0.47376 -0.23767,0.92591 -0.3565,1.38887 -1.16305,2.75823 -3.56663,4.56879 -6.00485,6.15236 -3.48665,0.11747 -7.79094,5.4827 -12.10494,6.53741 -1.05765,0.25858 -2.1751,0.32016 -3.25605,0.40677 -2.5571,0.29677 -5.03127,-0.16059 -7.5404,-0.56695 -2.29159,-0.31751 -4.58367,-0.52382 -6.85203,-0.98323 0,0 8.6096,-5.99164 8.6096,-5.99164 l 0,0 c 2.21527,0.46522 4.46447,0.6881 6.70265,1.0175 2.49526,0.34116 4.98158,0.61124 7.49878,0.27925 1.05985,-0.127 2.08636,-0.26742 3.10196,-0.61551 3.31766,-1.1371 8.43412,-5.1838 -5.86128,3.67997 2.38943,-1.43867 4.82319,-3.01624 6.28096,-5.46639 0.14016,-0.36888 0.32431,-0.72393 0.42048,-1.10664 0.48892,-1.94548 -0.61448,-4.05816 -1.49811,-5.69911 -1.29456,-1.5725 -2.90032,-2.76514 -4.97173,-3.03253 -1.80367,-0.10019 -3.61293,0.003 -5.4169,0.0608 -2.53208,0.12859 -5.059,0.33326 -7.5808,0.59561 -0.48715,0.0283 -1.69751,0.17788 -2.20549,-0.0778 -1.84255,-0.92734 -0.37738,-2.55305 0.57739,-3.41786 3.79806,-3.1921 8.11947,-5.66902 12.07849,-8.65168 1.61816,-1.24401 5.30101,-4.02332 5.18123,-6.4564 -0.0102,-0.20778 -0.16035,-0.38392 -0.24053,-0.57589 -1.38509,-1.25815 -3.20584,-0.72879 -4.94221,-0.82527 -2.45967,-0.0121 -4.92016,-0.0199 -7.37924,0.0409 0,0 8.56022,-6.21936 8.56022,-6.21936 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4455"
d="m 317.57102,188.7193 c -0.10994,2.51404 -0.0825,5.03149 -0.0587,7.54704 -0.013,2.43502 0.0126,4.86996 -0.01,7.30493 -0.12603,2.10801 0.12755,4.15952 0.90009,6.1262 0.85184,1.39526 2.80828,1.24354 4.25549,1.32479 2.00779,0.0584 4.01714,0.0275 6.02549,0.0159 2.19905,0.064 4.28756,-0.46741 6.33768,-1.20126 0.24336,-0.11302 0.48673,-0.22603 0.73009,-0.33905 0,0 -8.28162,6.51816 -8.28162,6.51816 l 0,0 c -0.24251,0.0838 -0.48501,0.16755 -0.72751,0.25133 -2.11892,0.64929 -4.31188,0.99827 -6.53429,0.9375 -2.02212,0.0156 -4.04661,0.0515 -6.06571,-0.0911 -1.92082,-0.17537 -3.98063,-0.37059 -4.939,-2.29595 -0.78761,-2.09391 -1.14658,-4.27361 -0.99182,-6.51242 -0.0223,-2.43172 0.004,-4.86341 -0.01,-7.29518 0.0233,-2.49556 0.0528,-4.99319 -0.0588,-7.48717 0,0 9.42775,-4.80368 9.42775,-4.80368 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4459"
d="m 337.66783,187.05179 c 0.66743,2.40647 1.23203,4.82549 1.57905,7.30044 0.27918,2.11014 0.39519,4.23585 0.44749,6.36215 0.0104,1.85019 0.008,3.70042 -0.0208,5.5504 -0.0132,1.94944 0.006,3.8989 0.0169,5.84831 -0.0386,1.70432 0.0623,3.41144 -0.0553,5.11271 -0.33176,1.79503 -0.8547,3.54251 -1.4116,5.27783 -0.26019,0.92364 -0.14348,0.46319 -0.35152,1.381 0,0 -9.49687,4.60155 -9.49687,4.60155 l 0,0 c 0.17964,-0.99032 0.0745,-0.49474 0.3168,-1.48646 0.52313,-1.69516 1.14286,-3.34755 1.50183,-5.09172 0.25533,-1.65455 0.0602,-3.34678 0.11623,-5.01578 0.0125,-1.95779 0.0344,-3.91558 0.0286,-5.87344 -0.0219,-1.83748 -0.003,-3.67498 -0.0166,-5.51253 -0.007,-2.10403 -0.0449,-4.21123 -0.28369,-6.30407 -0.31668,-2.40246 -0.80771,-4.76089 -1.65014,-7.03971 0,0 9.27961,-5.11068 9.27961,-5.11068 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4469"
d="m 404.80045,194.55063 c 2.11057,0.0572 4.22215,0.0462 6.33323,0.0367 1.81669,-0.0163 3.6334,-0.0102 5.45013,-0.0133 1.58831,-0.002 3.17662,-0.0128 4.76491,-0.003 1.61869,0.004 3.23738,-0.001 4.85607,-0.004 1.60345,-0.0835 3.25541,0.19848 4.83242,-0.14117 0,0 -8.46509,6.30932 -8.46509,6.30932 l 0,0 c -1.63174,0.0604 -3.26544,0.002 -4.89797,0.0297 -1.61527,-0.003 -3.23054,-0.008 -4.84582,-0.004 -1.58521,0.009 -3.17044,-10e-4 -4.75567,-0.003 -1.80451,-0.003 -3.609,0.003 -5.41348,-0.0133 -2.1448,-0.01 -4.29002,-0.019 -6.43434,0.0367 0,0 8.57561,-6.23056 8.57561,-6.23056 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4473"
d="m 403.2853,201.57644 c -0.10311,2.18692 0.0107,4.37736 -0.11971,6.56223 -0.0687,1.14142 -0.65566,3.04023 0.83452,3.41824 1.41994,0.25226 2.87095,0.21128 4.30717,0.19865 1.7819,-0.0999 3.4187,-0.076 5.02511,0.76026 0.21088,0.17384 0.44041,0.32726 0.63264,0.52153 0.13565,0.13708 0.73368,0.94129 0.89623,1.12356 0.46496,0.52138 1.02006,0.98941 1.52772,1.46714 1.52847,0.94294 2.37243,2.55322 3.61193,3.78244 1.06012,1.07403 1.58547,2.52903 1.52249,4.02314 -0.16517,0.57503 -0.41558,1.19451 -0.82435,1.64868 -2.68319,2.98114 -10.89089,6.70464 -11.55588,7.08732 -2.73804,1.08582 -5.57873,1.83026 -8.46868,2.37136 -2.44653,0.3998 -4.84861,0.97903 -7.2678,1.5063 -1.71752,0.34074 -3.47631,0.39078 -5.22194,0.43011 -1.57989,0.0302 -3.15991,-0.009 -4.7398,0.0149 -4.01377,0.13214 -2.61441,1.16875 8.3587,-6.24649 0.20983,-0.1418 1.30257,0.0249 1.54126,0.027 0.22568,0.001 0.45136,0.002 0.67703,0.003 0,0 -8.54483,6.20879 -8.54483,6.20879 l 0,0 c -0.22886,0.001 -0.45771,0.003 -0.68656,0.004 -0.38277,0.004 -0.80363,0.006 -1.18805,0.0162 -0.1415,0.004 -0.53594,0.1021 -0.42436,0.015 10.38878,-8.10839 4.90183,-6.42371 8.81838,-6.23752 1.56406,0.0335 3.12892,0.008 4.69285,-0.0225 1.70416,-0.0621 3.41161,-0.17205 5.07692,-0.5667 2.38919,-0.52761 4.79434,-0.95648 7.19606,-1.42299 2.85398,-0.5874 5.67891,-1.37606 8.31795,-2.63326 -2.60848,1.54052 -5.21696,3.08104 -7.82544,4.62155 0.28297,-0.19063 0.58175,-0.35969 0.84892,-0.57191 0.2158,-0.17141 0.37778,-0.40432 0.59449,-0.57458 0.13177,-0.10353 0.31944,-0.12533 0.4419,-0.23972 0.2548,-0.23801 0.32045,-0.64024 0.64596,-0.82275 0.54245,-1.10828 -0.24039,-2.33511 -0.99505,-3.1498 -1.15626,-1.28227 -2.05253,-2.78711 -3.55115,-3.73615 -0.5683,-0.51075 -1.16181,-1.0009 -1.65803,-1.58505 -0.14519,-0.17091 -0.55614,-0.74049 -0.74194,-0.90322 -0.14922,-0.1307 -0.32894,-0.22179 -0.49342,-0.33269 -1.53646,-0.57905 -3.1552,-0.39735 -4.77014,-0.38907 -1.55005,-0.0131 -3.15062,0.0123 -4.61027,-0.58121 -1.76689,-1.16152 -1.64865,-2.61052 -1.35975,-4.5545 0.2008,-2.13856 0.0932,-4.29298 0.0512,-6.43795 0,0 9.42774,-4.80368 9.42774,-4.80368 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4479"
d="m 70.2968,277.04319 c -0.379687,0.16161 -0.767236,0.30587 -1.139062,0.48483 -0.488453,0.23509 -0.964538,0.49536 -1.439683,0.75631 -0.514738,0.28268 -2.040514,1.16368 -1.529496,0.87433 12.959131,-7.33799 7.993736,-5.15846 5.356631,-2.32519 -1.883815,2.00431 -3.27546,4.02462 -4.127616,6.64245 -0.439978,1.86854 -0.668541,3.78483 -0.932236,5.68627 -0.238611,1.82353 -0.308629,3.66235 -0.364155,5.4987 -5.86e-4,2.07762 -0.425838,3.28115 1.338303,4.69895 2.544338,1.52998 5.361919,2.08619 8.259552,2.54452 2.717147,0.27723 5.483692,0.72334 8.216573,0.43519 1.327756,-0.22672 2.426042,-0.96121 3.561135,-1.62843 0.429691,-0.25258 1.733038,-0.9854 1.295306,-0.74703 -7.903729,4.30406 -9.643812,6.16182 -6.418854,3.06687 1.54415,-1.61133 2.437874,-3.53525 2.834312,-5.70306 -0.0036,-1.16644 0.679334,-3.10267 -0.38309,-3.96459 -1.418639,-0.91904 -3.254631,-1.09168 -4.906509,-0.99873 -0.283621,0.0734 -0.582408,0.1029 -0.850864,0.2202 -0.273759,0.11962 -1.01653,0.62755 -0.755738,0.48181 2.683466,-1.49962 5.327979,-3.0689 8.024944,-4.54411 0.365524,-0.19993 -0.694911,0.46106 -1.025022,0.71524 -0.957126,0.73698 -1.054966,0.8982 -1.87994,1.74978 -1.288929,1.48044 -1.975557,3.34413 -2.801295,5.10055 -0.06222,0.16807 -0.124433,0.33613 -0.186649,0.5042 0,0 -9.577746,4.49843 -9.577746,4.49843 l 0,0 c 0.06324,-0.20871 0.12649,-0.41742 0.189735,-0.62613 0.362233,-0.83052 0.85875,-1.60197 1.216067,-2.42837 0.452678,-1.04695 0.727117,-2.14324 1.544281,-3.00889 0.811857,-0.96012 1.674556,-2.05612 2.772655,-2.71444 3.400656,-2.03872 7.369003,-5.81087 11.826275,-6.11437 1.912604,0.12167 3.934883,0.37184 5.444661,1.66157 0.175503,0.2103 0.38748,0.39491 0.526508,0.63091 0.724956,1.23066 0.23338,2.87839 0.252628,4.20487 -0.276093,2.37344 -1.137654,4.51731 -2.70111,6.35818 -3.745972,4.11345 -0.765772,1.06384 -11.213957,7.43681 -1.616189,0.98581 -3.321492,1.86657 -5.23238,2.06071 -2.742178,0.0421 -5.471103,-0.35158 -8.178494,-0.7493 -3.063611,-0.53746 -6.172394,-1.09162 -8.785484,-2.89495 -1.858607,-1.77842 -1.872717,-3.04077 -1.765781,-5.49862 0.01144,-1.8733 0.08207,-3.74567 0.317846,-5.60623 0.239373,-1.96205 0.505145,-3.92357 0.892981,-5.86103 0.809799,-2.8279 1.928291,-4.90801 3.998145,-7.04018 3.992779,-5.3107 10.916807,-7.24551 16.536851,-10.50049 0,0 -8.210228,6.64246 -8.210228,6.64246 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4483"
d="m 142.6576,281.69349 c 2.05741,0.0555 4.11634,0.0398 6.17437,0.0361 1.78006,-0.004 3.56009,-0.0216 5.34015,-0.0139 1.6324,0.002 3.2648,-0.003 4.89719,-0.006 1.64744,0.0109 3.29493,0.004 4.94238,10e-4 5.60386,-0.53879 -5.8915,4.51091 -8.87314,6.85521 16.17673,-9.64054 5.67105,-3.34493 2.24856,-0.58132 -2.18071,1.7203 -3.75556,3.92144 -5.22545,6.24081 -1.32735,2.18914 -2.50666,4.48323 -3.29991,6.92135 -0.50362,1.61975 -0.48198,3.32394 -0.84292,4.97009 -0.43966,1.29584 -0.67799,2.66401 -1.43147,3.82314 0,0 -9.70964,4.22765 -9.70964,4.22765 l 0,0 c 0.21537,-0.29166 0.4931,-0.53586 0.69299,-0.83833 0.5268,-0.79713 0.4687,-1.85878 0.93094,-2.69133 0.58576,-1.61717 0.37235,-3.36937 0.88329,-5.01628 0.75273,-2.54215 1.95599,-4.90199 3.26915,-7.19772 1.44726,-2.39819 2.9068,-4.74932 5.11141,-6.5444 4.58683,-4.10536 10.41002,-6.7723 15.58715,-9.90944 5.45691,-1.84945 -3.99806,6.68159 -7.86796,5.9358 -1.64872,-0.003 -3.29748,-0.009 -4.94619,0.001 -1.62695,-0.003 -3.25391,-0.008 -4.88087,-0.006 -1.76727,0.008 -3.53451,-0.01 -5.30178,-0.0139 -2.09122,-0.004 -4.18323,-0.0183 -6.27387,0.0361 0,0 8.57562,-6.23055 8.57562,-6.23055 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4493"
d="m 255.93184,279.63012 c -1.477,1.95518 -2.70355,4.06802 -3.64845,6.32606 -0.66358,1.887 -1.1181,4.12045 0.13876,5.89107 0.30384,0.42803 0.70975,0.77355 1.06462,1.16033 0.44864,0.45899 0.86988,0.94646 1.34591,1.37697 0.48748,0.44087 1.07143,0.77069 1.53928,1.23233 1.6494,1.6275 2.46556,3.69526 2.94203,5.90599 0.65635,3.5956 -0.90344,5.61913 -3.61762,7.76347 -9.09605,5.66559 -10.14623,6.72908 -18.9295,7.13914 -2.58356,-0.0829 -5.24032,0.85097 -7.71523,-0.14869 -0.13325,-0.37371 -0.46218,-0.72931 -0.39975,-1.12112 0.21551,-1.35258 1.82165,-2.79617 2.81049,-3.41338 3.77088,-2.35369 7.6755,-4.48644 11.53993,-6.68317 1.05307,-0.59862 6.47605,-3.42327 7.39436,-3.90377 1.34933,-0.77515 5.46131,-2.97668 4.048,-2.32545 -1.48566,0.68458 -2.69172,1.98104 -4.26588,2.42584 -1.34065,0.37883 2.39178,-1.43272 3.54055,-2.22088 2.96501,-2.03426 5.61643,-4.37113 8.16551,-6.89043 2.35989,-2.54453 4.22815,-5.50276 5.23775,-8.82875 0.70394,-2.78444 -0.67684,-2.71921 -3.09747,-3.62385 -4.34055,-1.49732 -8.91843,-2.04869 -13.4743,-2.38362 -3.30456,-0.20157 -6.61644,-0.2068 -9.92564,-0.17725 -0.99936,0.23083 -2.18859,-0.23078 -3.17677,0.033 -0.31521,0.0841 -1.13307,0.64737 -0.84849,0.48783 8.36371,-4.68863 10.53218,-6.50505 7.28654,-3.89713 -1.04232,1.31383 -0.55086,0.60496 -1.45673,2.13875 0,0 -9.49397,4.25553 -9.49397,4.25553 l 0,0 c 0.82586,-1.64836 0.39862,-0.85287 1.27638,-2.38933 2.87039,-3.48361 7.19846,-6.31192 11.72136,-6.76636 1.033,-0.1038 2.09295,0.0818 3.1274,0.0102 3.27596,0.0368 6.55515,0.0779 9.82143,0.35795 4.63069,0.44015 9.25684,1.11389 13.69114,2.575 2.7151,1.01374 4.76492,1.60799 4.00877,4.89067 -0.98946,3.5713 -2.98167,6.74624 -5.45546,9.48816 -2.57199,2.61168 -5.28679,5.07139 -8.29783,7.18299 -1.16723,0.81857 -2.38998,1.55656 -3.6168,2.28277 -7.09984,4.20275 -10.34681,6.02959 -16.3959,9.46477 -1.32139,0.70169 -2.64677,1.39589 -3.96416,2.10506 -1.20342,0.64782 -4.72124,2.74466 -3.59815,1.96583 1.79785,-1.24672 3.68505,-2.37176 5.62954,-3.37452 0.69888,-0.3604 -1.25535,0.94759 -1.87128,1.43642 -0.34365,0.27274 -0.66382,0.57418 -1.00679,0.84776 -0.0685,0.0547 -0.15033,0.0901 -0.2255,0.13523 2.38829,0.61467 4.88552,-0.18024 7.3124,-0.0527 1.76321,-0.10568 3.52512,-0.2045 5.25756,-0.58021 3.63034,-0.7873 9.5683,-4.61834 -4.2664,3.33773 0.48492,-0.28955 1.00732,-0.52402 1.45476,-0.86866 1.88128,-1.44906 2.97138,-3.41665 2.57975,-5.78024 -0.28437,-2.00444 -0.95945,-3.8835 -2.43961,-5.34642 -0.49317,-0.48742 -1.09391,-0.85403 -1.61094,-1.31606 -0.49116,-0.43891 -0.94033,-0.92266 -1.41049,-1.38398 -0.42332,-0.45508 -0.90303,-0.86358 -1.26997,-1.36522 -1.45403,-1.98785 -1.22706,-4.45727 -0.56173,-6.67589 0.87704,-2.28555 1.98518,-4.46589 3.41653,-6.45996 0,0 9.69006,-4.23973 9.69006,-4.23973 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4501"
d="m 326.55038,283.63273 c -2.07648,-0.11622 -4.13061,-0.017 -6.1924,0.2118 -0.33477,0.0837 -0.6701,0.16512 -1.0043,0.25102 -0.55874,0.1436 -1.25428,0.29606 -1.76946,0.5805 -0.26868,0.14835 -1.01385,0.68923 -0.7454,0.54048 7.86522,-4.35813 10.76003,-6.62623 7.34559,-4.02118 -4.33005,4.45027 -10.26688,5.4089 -15.3579,8.274 21.21038,-11.1883 7.68828,-6.10093 7.06273,-3.21709 -0.10319,0.47573 0.12891,0.60633 0.39351,0.99956 2.06317,1.72182 4.70381,2.39652 7.30162,2.80712 3.02355,0.46771 5.98648,0.28832 8.95195,-0.38757 0.48614,-0.1563 0.99296,-0.25891 1.45844,-0.4689 0.45753,-0.2064 1.73147,-1.01597 1.29271,-0.7722 -2.56488,1.42502 -5.07781,2.94459 -7.67162,4.31625 -0.40472,0.21403 0.73951,-0.54114 1.08998,-0.83573 0.82897,-0.6968 0.90899,-0.84972 1.58575,-1.63609 1.1182,-1.40365 1.35471,-3.08482 1.46384,-4.81598 0.0379,-3.71485 -2.38475,0.50757 9.1243,-5.29433 0.12131,-0.0611 -0.24606,0.13162 -0.33123,0.23745 -0.11442,0.14217 -0.16755,0.32427 -0.25132,0.48641 -0.48363,1.37048 -0.52287,2.8383 -0.58782,4.27524 0.0767,2.40141 -0.98785,4.53711 -1.96768,6.6574 -1.76684,3.33749 -3.24935,6.81736 -4.61593,10.3351 -1.12599,2.91689 -1.59015,6.00635 -2.12382,9.06797 -0.10553,1.28031 -0.57672,2.59911 -0.42329,3.89711 0.0568,0.48058 0.28895,0.92851 0.47562,1.36343 0.34276,0.85044 0.90489,1.57121 1.30656,2.39188 0,0 -9.23117,5.19914 -9.23117,5.19914 l 0,0 c -0.33016,-0.85752 -0.94323,-1.5582 -1.25539,-2.42839 -0.21421,-0.48618 -0.56675,-1.21482 -0.6597,-1.73655 -0.2424,-1.36062 0.27243,-2.77914 0.4067,-4.11772 0.59446,-3.13628 1.08592,-6.30472 2.1979,-9.31355 1.31105,-3.51876 2.74118,-7.01293 4.48292,-10.3417 0.87496,-1.99378 2.05427,-3.98117 2.01203,-6.22049 0.0179,-1.52423 0.0784,-3.05694 0.39518,-4.55312 0.0509,-0.21281 0.10238,-0.42549 0.1528,-0.63842 0.047,-0.19863 -0.037,-0.49385 0.13956,-0.59625 0.74804,-0.4338 10.47012,-9.00376 10.15763,-3.40041 -0.0793,1.88441 -0.19935,3.78897 -1.24481,5.42553 -0.72655,1.00397 -1.55235,2.13218 -2.62918,2.79676 -4.1452,2.55827 -8.19946,5.76891 -13.00559,6.97899 -3.05773,0.56493 -6.15171,0.60912 -9.22887,0.0992 -2.82778,-0.57048 -5.63995,-1.49417 -7.83174,-3.44951 -0.4688,-0.67393 -0.81637,-0.94804 -0.86624,-1.78119 -0.26632,-4.44914 12.91557,-7.31746 10.65749,-7.89399 3.78886,-1.79072 13.36066,-6.23199 -2.55477,2.18393 4.19161,-3.37849 8.89456,-6.72575 14.30101,-7.48025 2.11542,-0.20643 4.23075,-0.16196 6.35402,-0.19498 0,0 -8.56021,6.21936 -8.56021,6.21936 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4503"
d="m 397.48078,285.92687 c -1.1796,2.31714 -2.24352,4.68107 -3.24965,7.07942 -0.88963,1.7988 -1.78406,3.5919 -2.43735,5.49226 -0.61375,1.44885 -1.0247,2.92393 -1.23635,4.48057 -0.0979,1.77617 -0.75484,3.45675 -1.24048,5.15463 -0.45044,1.68562 -1.31294,3.203 -1.98307,4.80094 -0.31389,0.77566 -0.62024,1.55434 -0.93004,2.33165 0,0 -9.58381,4.39255 -9.58381,4.39255 l 0,0 c 0.36552,-0.75557 0.68094,-1.52692 0.94807,-2.32364 0.21662,-0.50606 0.38023,-1.03395 0.60184,-1.53784 0.46623,-1.06007 1.19103,-2.00255 1.47538,-3.15017 0.22449,-0.87189 0.43581,-1.74479 0.70969,-2.60291 0.16034,-0.50236 0.42487,-0.97447 0.52587,-1.49205 0.0573,-0.29372 0.0338,-0.59757 0.0507,-0.89636 0.12917,-1.6203 0.38072,-3.22495 1.15198,-4.67974 0.59638,-1.96928 1.43745,-3.8469 2.47154,-5.62697 1.06249,-2.29949 1.89466,-4.70387 3.13668,-6.91897 0,0 9.58904,-4.50337 9.58904,-4.50337 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4505"
d="m 400.91383,295.58654 c 15.64319,-8.75242 6.80366,-4.07728 3.57602,-1.70658 -1.27999,0.94015 -1.29159,1.03622 -2.36899,2.13195 -1.52712,1.70251 -2.14228,3.7896 -2.4038,6.00651 -0.0131,1.55646 -0.40563,3.28045 0.21698,4.75574 0.92717,1.10609 2.46064,1.46597 3.8242,1.72058 1.11271,0.0605 2.31451,0.45606 3.43321,0.19371 2.03351,-0.47689 14.45781,-7.84516 -5.68928,3.48446 2.93059,-1.74518 5.87391,-3.51196 8.34615,-5.87714 2.13122,-2.2984 3.21137,-5.14481 3.80198,-8.1681 0.29476,-1.79375 0.29569,-3.61546 0.28305,-5.42768 -0.0909,-1.77807 -0.87687,-1.70259 -2.41213,-1.87498 -1.87325,-0.40992 -3.77693,-0.61244 -5.68849,-0.71783 -0.87672,0.0168 -1.79256,-0.18188 -2.65775,0.0587 -0.64821,0.18026 -1.24811,0.50511 -1.8859,0.71938 0,0 8.26563,-6.41786 8.26563,-6.41786 l 0,0 c 1.59566,-0.51825 3.14078,-0.71185 4.81705,-0.47747 1.93238,0.15173 3.843,0.43862 5.74833,0.79469 1.95534,0.39802 3.00773,1.00739 3.18507,3.13271 0.0107,1.88401 0.0481,3.77704 -0.25977,5.64349 -0.5871,3.17117 -1.60909,6.23425 -3.68252,8.76852 -0.40778,0.46551 -0.77155,0.9736 -1.22334,1.39654 -1.9374,1.81373 -4.71401,3.21606 -6.92546,4.69229 -0.69427,0.39793 -8.38172,6.14522 -12.48127,6.4207 -1.19962,0.0806 -2.40503,-0.21887 -3.58549,-0.36284 -1.70707,-0.41167 -3.38972,-0.98894 -4.4048,-2.52232 -0.12399,-0.26875 -0.28621,-0.52297 -0.37197,-0.80625 -0.42685,-1.41001 0.0487,-3.01941 -0.0688,-4.456 0.22553,-2.38902 0.75771,-4.72989 2.26011,-6.66991 1.65852,-1.94425 3.08241,-2.95536 5.24023,-4.28142 0.42816,-0.26313 0.84117,-0.55015 1.26176,-0.82522 3.36127,-1.97157 6.72255,-3.94313 10.08383,-5.91469 0,0 -8.23386,6.5863 -8.23386,6.5863 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4507"
d="m 63.293784,360.7724 c 0.162805,2.47024 -0.8274,4.66861 -1.804092,6.87551 -0.970429,2.42011 -1.854218,4.8738 -2.801542,7.30366 -0.88271,2.5037 -1.645472,5.05756 -2.335241,7.62216 -0.31395,1.25558 -0.512179,2.53453 -0.758161,3.80417 0,0 -9.403597,4.54752 -9.403597,4.54752 l 0,0 c 0.294039,-1.28534 0.504876,-2.58132 0.778223,-3.87128 0.668696,-2.58859 1.431977,-5.14846 2.236397,-7.69661 0.912464,-2.46956 1.999364,-4.87468 2.812163,-7.38198 0.627191,-1.34404 1.648023,-3.23545 1.871965,-4.69467 0.02061,-0.13429 -0.03373,-1.4976 -0.04083,-1.69616 0,0 9.444711,-4.81232 9.444711,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4511"
d="m 85.986409,365.97819 c -1.791376,1.65733 -3.066829,3.65606 -4.102283,5.84456 -0.929695,2.22492 -1.817884,4.43808 -2.513753,6.74705 -0.585811,1.59677 -0.905527,3.24419 -1.041959,4.93378 -0.07177,1.17125 -0.05171,2.34359 -0.129689,3.51412 0,0 -9.451657,4.67538 -9.451657,4.67538 l 0,0 c 0.20547,-1.1516 0.128939,-2.31497 0.192559,-3.48134 0.08582,-1.77525 0.25993,-3.5188 0.947206,-5.18247 0.393057,-1.10678 0.626941,-2.26371 1.053365,-3.35778 0.215546,-0.55302 0.818201,-1.69053 1.035858,-2.22614 0.172011,-0.42328 0.302247,-0.86235 0.45337,-1.29353 0.5294,-1.26612 1.085411,-2.64379 1.849743,-3.7924 0.550879,-0.82784 1.392927,-1.46147 1.908038,-2.32226 0,0 9.799202,-4.05897 9.799202,-4.05897 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4513"
d="m 144.72236,368.62954 c -0.0577,2.21364 -0.009,4.41735 -0.32104,6.6137 -0.55334,3.31498 -1.83792,6.3712 -3.19391,9.41922 -1.19001,2.3765 -2.22772,4.81809 -3.1423,7.31177 0,0 -9.36785,4.36144 -9.36785,4.36144 l 0,0 c 0.94253,-2.51545 1.98449,-4.99131 3.18286,-7.39728 1.28383,-2.96003 2.59455,-5.90397 3.14091,-9.11064 0.41364,-2.11364 0.352,-4.2409 0.25661,-6.38589 0,0 9.44472,-4.81232 9.44472,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4517"
d="m 164.03351,367.25243 c 2.28154,-0.29212 4.58337,-0.36084 6.87971,-0.44194 2.37843,0.49709 4.78002,1.06984 6.90541,2.28137 1.14562,0.89942 1.92314,2.18869 1.57219,3.69561 -0.10527,0.45203 -0.33819,0.86446 -0.50729,1.29668 -1.98495,2.94671 -5.32381,4.47579 -8.19955,6.40642 -2.34748,1.69559 -4.88011,3.14376 -7.12801,4.97367 -1.10168,1.18819 -2.10119,2.59429 -2.62178,4.14503 -0.003,0.0454 -0.0907,0.41541 0.0925,0.45167 0.15967,0.0316 0.3253,-0.0356 0.48771,-0.0246 1.10845,0.0748 2.20562,0.21624 3.31977,0.26642 3.34478,0.29751 6.29939,-1.3115 9.12435,-2.88453 1.05118,-0.62792 2.16779,-1.11008 3.30684,-1.54801 0,0 -8.23427,6.48959 -8.23427,6.48959 l 0,0 c -1.07214,0.47479 -2.12753,0.98182 -3.1498,1.55844 -2.97518,1.54024 -6.08993,2.80737 -9.51538,2.46765 -1.42944,-0.0894 -3.35789,0.0358 -4.52101,-0.98649 -0.36072,-0.31706 -0.369,-0.78226 -0.44434,-1.20414 0.28515,-1.79135 1.48029,-3.30089 2.47837,-4.76496 2.05068,-2.15377 4.90994,-3.36069 7.23948,-5.18345 1.57662,-1.10034 1.59512,-1.14302 3.20949,-2.15326 1.78252,-1.11547 3.66702,-2.06166 5.0582,-3.69349 0.94102,-1.58066 1.19448,-2.36913 -0.38466,-3.55709 -2.00623,-1.06164 -4.23087,-1.71261 -6.49663,-1.87525 -2.32265,0.0919 -4.6547,0.21004 -6.94156,0.65503 0,0 8.4703,-6.37037 8.4703,-6.37037 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4519"
d="m 226.15093,367.20097 c -0.0715,1.84713 -0.0366,3.69619 -0.0449,5.54421 0.002,2.1314 -0.0146,4.2624 -0.0232,6.39366 -0.003,2.69709 -0.0243,5.3939 -0.0228,8.091 -0.0957,2.44096 -0.86891,4.7592 -1.49119,7.09739 -0.11729,0.40663 -0.7374,3.05862 0.0129,3.14275 -0.34356,-4.33928 -11.38412,7.91207 -8.89012,4.38857 0,0 9.59758,-4.55208 9.59758,-4.55208 l 0,0 c -0.30752,3.92911 -6.9246,8.72321 -9.78519,5.73336 -0.92819,-1.26248 -0.81209,-2.73999 -0.41573,-4.18804 0.60828,-2.29501 1.49962,-4.515 1.70867,-6.90217 0.002,-2.68937 -0.02,-5.37845 -0.0228,-8.06779 -0.009,-2.1234 -0.0255,-4.24653 -0.0231,-6.37007 -0.008,-1.83277 0.0271,-3.66663 -0.0449,-5.49847 0,0 9.44471,-4.81232 9.44471,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4523"
d="m 248.53784,362.29884 c 2.33168,1.30008 4.98011,1.7125 7.59089,2.04721 0.95903,0.17857 3.17398,0.5962 3.16339,2.01184 -0.01,1.31442 -0.80726,1.67632 -1.67808,2.51845 -4.19363,2.91724 -8.66801,5.40113 -12.96307,8.16556 0.3527,0.30256 -2.4778,1.12493 -1.91696,1.83965 0.83379,1.06257 2.57212,1.58264 3.72846,2.13837 2.2084,1.08079 4.39426,2.22274 6.02915,4.0887 1.08668,1.79095 1.30076,3.85456 1.42492,5.89874 0.0335,1.08822 0.19219,2.25956 -0.38975,3.25857 -0.50721,0.87072 -1.34088,1.49031 -2.19787,1.97131 -3.4723,1.94885 -6.98737,3.8205 -10.48105,5.73075 -4.16559,1.17938 -8.51318,1.35588 -12.81269,1.52296 -2.80571,0.0618 -1.40639,0.0389 -4.19796,0.0688 0,0 8.28495,-6.03515 8.28495,-6.03515 l 0,0 c 2.77535,-0.0394 1.38552,-0.0116 4.16949,-0.0836 4.2684,-0.17979 8.61306,-0.40162 12.66714,-1.87417 -2.44085,1.46763 -4.90437,2.89817 -7.32253,4.40288 -0.40953,0.25484 0.87311,-0.41239 1.29249,-0.65066 1.66798,-0.94766 1.80307,-1.67075 1.67523,-3.49963 -0.0961,-1.80028 -0.17603,-3.67745 -1.12879,-5.26459 -1.52862,-1.72993 -3.57345,-2.82982 -5.61759,-3.85652 -1.27995,-0.62151 -5.03725,-2.04167 -4.76238,-3.9855 0.11159,-0.78916 1.59382,-1.64434 2.01653,-1.95358 4.24707,-2.76256 8.6584,-5.2611 12.92124,-7.99891 0.41998,-0.31421 0.82125,-0.65513 1.25995,-0.94261 0.22536,-0.14768 0.52079,-0.18185 0.72471,-0.35794 0.6435,-0.55569 -2.47751,-1.14045 -2.39914,-1.11697 -2.75071,-0.44899 -5.51221,-0.99727 -7.98821,-2.34065 0,0 8.90753,-5.70339 8.90753,-5.70339 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4525"
d="m 308.29378,370.05811 c -0.10397,2.35634 -0.0645,4.71592 -0.0806,7.0738 0.009,2.47055 -0.0599,4.93384 0.24609,7.38857 0.26661,2.98076 0.99094,5.8638 1.75517,8.74545 0,0 -9.17451,4.96298 -9.17451,4.96298 l 0,0 c -0.69731,-2.93299 -1.44371,-5.84742 -1.77864,-8.85225 -0.41699,-2.49551 -0.38787,-4.9895 -0.33155,-7.5146 -0.0161,-2.33048 0.0244,-4.66277 -0.0806,-6.99163 0,0 9.44471,-4.81232 9.44471,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4527"
d="m 328.21633,368.00874 c -0.78404,1.85216 -1.05989,3.87148 -1.42753,5.83664 -0.2411,1.99438 -0.79737,4.05455 -0.39134,6.05755 1.11266,1.57981 3.11126,2.1183 4.87449,2.6253 2.2178,0.30935 4.5672,0.86801 6.8207,0.53551 0.44561,-0.0657 0.87324,-0.22143 1.30986,-0.33214 4.79282,-2.66137 -4.27526,2.48765 -6.48682,3.59092 -0.39191,0.19551 0.66222,-0.57609 0.95898,-0.8982 0.77339,-0.83944 1.22345,-1.76398 1.64204,-2.80703 0.27697,-0.89212 0.50536,-1.81117 0.0888,-2.68577 0,0 9.24346,-5.19543 9.24346,-5.19543 l 0,0 c 0.46488,1.14158 0.51076,2.24199 0.15074,3.43879 -1.77956,6.04633 -8.17792,8.86639 -13.89877,10.8316 -2.83371,0.37888 -5.67842,0.0654 -8.45347,-0.60123 -2.10134,-0.70197 -4.40685,-1.46052 -5.53667,-3.51933 -0.48439,-2.1459 0.003,-4.31881 0.30084,-6.46485 0.32308,-1.99596 0.6248,-4.00981 1.17316,-5.95787 0,0 9.63157,-4.45446 9.63157,-4.45446 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4533"
d="m 344.72236,366.48668 c -0.12274,1.22579 0.077,2.47907 -0.10859,3.70006 -0.12314,0.80996 -0.37766,1.5417 -0.61589,2.32089 -0.64016,1.80027 -1.07815,3.64892 -1.31518,5.54213 -0.0965,1.88529 -0.192,3.75494 -0.45134,5.62631 -0.24276,1.71008 -0.30862,3.43606 -0.38227,5.15934 -0.0453,1.8143 -0.0277,3.62941 -0.0184,5.44405 -10e-4,1.65547 -9.5e-4,3.31093 0.005,4.96643 0.003,0.98581 -0.0249,0.52174 0.0676,1.39313 0,0 -9.34998,4.91325 -9.34998,4.91325 l 0,0 c -0.14324,-0.99876 -0.10686,-0.49116 -0.10416,-1.52314 0.004,-1.65573 0.002,-3.3114 -0.003,-4.96709 0.007,-1.82623 0.0197,-3.65241 0.0324,-5.4786 0.004,-1.75807 0.11067,-3.51407 0.3282,-5.25933 0.23182,-1.86431 0.50346,-3.70862 0.45708,-5.59637 0.16233,-1.97483 0.60015,-3.89977 1.27806,-5.76435 0.0778,-0.2336 0.61214,-1.81076 0.67368,-2.09313 0.25477,-1.16888 0.0449,-2.39032 0.0623,-3.57126 0,0 9.44472,-4.81232 9.44472,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4535"
d="m 392.5795,370.05811 c -0.0619,2.2506 10e-4,4.48235 -0.33529,6.71336 -0.97494,3.28234 -1.6938,6.62587 -2.40481,9.97284 -0.50237,2.39638 -0.73607,4.83133 -0.83669,7.2738 -0.0469,1.17135 -0.0615,2.34386 -0.0283,3.51563 0,0 -9.40908,4.79234 -9.40908,4.79234 l 0,0 c 0.0362,-1.19502 0.0299,-2.39068 0.0643,-3.58582 0.1254,-2.51431 0.35959,-5.02396 0.89514,-7.48861 0.67924,-3.31967 1.40894,-6.64326 2.36766,-9.89352 0.33797,-2.15422 0.37935,-4.31002 0.24236,-6.4877 0,0 9.44471,-4.81232 9.44471,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4537"
d="m 409.121,370.59791 c 1.81491,0.68803 3.7777,0.85468 5.69772,1.00935 2.14723,0.33459 4.13521,-0.33877 6.16806,-0.92696 2.2999,-0.63647 4.66833,-0.92821 7.04654,-1.03185 1.65231,-0.0718 3.30637,-0.0656 4.95949,-0.10028 0,0 -8.53848,6.20702 -8.53848,6.20702 l 0,0 c -1.61445,-0.0273 -3.23037,0.003 -4.84262,0.093 -2.33119,0.19145 -4.64926,0.50927 -6.89444,1.19386 -2.12908,0.58185 -4.22551,1.03619 -6.43955,0.64682 -2.01821,-0.22407 -4.05491,-0.48468 -5.97288,-1.18459 0,0 8.81616,-5.90633 8.81616,-5.90633 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4543"
d="m 410.8635,377.54133 c -1.35747,1.51679 -2.26897,3.31104 -2.85874,5.24411 -0.51374,1.45876 -0.85595,2.94818 -1.03355,4.48246 0.003,0.19601 -0.0409,0.76819 0.12396,0.97727 0.29406,0.37297 2.21837,0.50136 2.65997,0.54981 1.85119,-0.18743 3.63721,-0.77156 5.47452,-1.08635 1.72703,-0.27609 3.43037,-0.38211 5.11901,0.1082 2.0091,1.02994 2.78412,3.21425 3.2975,5.27821 0.2758,1.45067 0.92846,2.96516 0.78907,4.47178 -0.032,0.3462 -0.15086,0.67879 -0.22629,1.01818 -0.26254,0.35026 -0.47106,0.74848 -0.78763,1.05079 -0.34621,0.33062 -0.76016,0.58716 -1.17597,0.82438 -8.22524,4.69265 -9.19873,6.01066 -16.60453,7.31471 -3.82188,0.53391 -7.6827,0.72565 -11.53717,0.83322 -1.63315,0.16544 -3.25695,-0.0944 -4.88074,-0.10484 0,0 8.57074,-6.1587 8.57074,-6.1587 l 0,0 c 1.57076,0.15601 3.14445,0.14125 4.7218,0.12507 3.77142,-0.0516 7.5548,-0.20203 11.2769,-0.85963 1.78204,-0.37916 2.45865,-0.46912 4.16976,-1.03991 0.64286,-0.21444 2.46353,-1.0997 1.90002,-0.72327 -2.36178,1.57775 -4.91001,2.85795 -7.32747,4.34898 -0.38422,0.23698 0.82551,-0.36788 1.22218,-0.58337 0.32005,-0.17387 0.61622,-0.38847 0.92434,-0.58271 0.12909,-0.22534 0.31822,-0.42568 0.38729,-0.67603 0.34636,-1.2554 -0.49361,-3.03476 -0.67318,-4.27924 -0.35468,-1.70249 -0.86264,-3.66136 -2.69748,-4.26329 -1.62356,-0.25488 -3.25503,-0.0522 -4.865,0.23522 -1.8691,0.36979 -3.74134,1.00169 -5.66577,0.80309 -1.74816,-0.30645 -3.65806,-0.75126 -3.64107,-2.88892 0.14008,-1.58577 0.36112,-3.1826 0.98717,-4.65993 0.51943,-2.03378 1.36287,-3.93715 2.62609,-5.62769 0,0 9.72427,-4.1316 9.72427,-4.1316 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4545"
d="m 63.099976,445.29805 c -1.104172,1.61118 -2.149697,3.26565 -3.229346,4.89924 -1.11606,1.86497 -1.299003,4.02667 -1.61654,6.12431 -0.180294,2.41032 -1.205102,4.58911 -1.974699,6.84248 -0.579557,1.75874 -0.759004,3.60145 -0.848463,5.43988 -0.05221,1.61361 -0.04714,3.22819 -0.03798,4.84239 0.06314,1.10556 -0.06929,2.18996 -0.426299,3.23595 0,0 -9.604599,4.5193 -9.604599,4.5193 l 0,0 c 0.305386,-0.98169 0.819041,-1.88064 0.649464,-2.97074 -0.003,-1.62914 -0.03174,-3.25873 0.01271,-4.88747 0.08118,-1.93004 0.255507,-3.86124 0.775644,-5.73 0.733116,-2.21878 1.89097,-4.31424 2.038626,-6.68106 0.369728,-2.18662 0.494338,-4.44938 1.448132,-6.49167 0.501424,-0.90447 1.114598,-1.62602 1.689092,-2.47464 0.68795,-1.01622 0.377196,-0.72771 0.953722,-1.81201 0.127806,-0.24037 0.286608,-0.46293 0.429912,-0.6944 0,0 9.740622,-4.16156 9.740622,-4.16156 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4553"
d="m 92.447723,443.80204 c -2.616228,3.08098 -5.557353,5.85703 -8.12141,8.98458 -2.767706,3.63655 -4.77848,7.76468 -6.787966,11.84855 -1.069055,2.37379 -2.109103,4.75307 -2.588767,7.32081 -0.216343,1.91344 0.692686,3.73162 2.295209,4.76096 2.5033,0.87504 5.159637,0.83365 7.733305,0.3668 1.635702,-0.53499 3.359114,-0.79398 4.9458,-1.48238 0.460776,-0.19991 0.894453,-0.45784 1.332019,-0.70444 0.424166,-0.23906 1.676412,-0.99103 1.252222,-0.75201 -2.5819,1.45479 -5.150508,2.93306 -7.725763,4.39958 1.554748,-1.0305 2.809483,-2.32771 3.139524,-4.20326 -0.03013,-1.76837 -1.325731,-1.78783 -2.763325,-2.02053 -1.970141,-0.21152 -3.955588,-0.18506 -5.934028,-0.17002 -0.28653,0.0451 -0.583805,0.0453 -0.85959,0.13514 -0.272028,0.0886 -0.508554,0.26226 -0.762831,0.39339 2.780183,-1.56316 5.543852,-3.15607 8.340549,-4.68949 0.219531,-0.12037 -0.418803,0.27813 -0.603419,0.44724 -0.444055,0.40676 -0.508949,0.61027 -0.800956,1.12046 -0.533534,1.3433 -0.709692,2.82274 -0.366536,4.23015 0.245947,0.54067 0.578829,1.00154 0.975693,1.43683 0,0 -9.059977,5.45414 -9.059977,5.45414 l 0,0 c -0.466528,-0.57566 -0.882238,-1.16779 -1.183357,-1.85154 -0.478476,-1.60119 -0.370667,-3.26768 0.04091,-4.88113 1.732651,-4.90855 7.735394,-7.6418 12.777544,-7.97002 2.024475,0.0135 4.064129,-0.002 6.066054,0.33994 2.002766,0.49771 3.295701,1.11249 3.576145,3.33869 -0.111791,2.16322 -1.143464,3.81793 -2.88825,5.1087 -1.463847,0.8614 -8.787414,5.76434 -12.728045,7.18477 -1.632975,0.58862 -3.348056,0.93795 -5.033793,1.33104 -2.805858,0.34519 -5.76195,0.37508 -8.34653,-0.93356 -1.733145,-1.4008 -2.925904,-3.52385 -2.821922,-5.79649 0.112764,-0.72712 0.226563,-1.59641 0.423237,-2.30631 0.517098,-1.86645 1.523714,-3.56005 2.207704,-5.36175 2.505334,-5.16497 -0.881159,1.72891 1.893332,-3.62279 1.503402,-2.8999 2.922333,-5.87099 4.922261,-8.47896 0.513944,-0.67037 0.999781,-1.36326 1.541832,-2.01112 1.667423,-1.9929 1.477814,-1.50237 3.180187,-3.34107 1.019129,-1.10074 1.882922,-2.35634 3.039137,-3.32846 0,0 9.693806,-4.29644 9.693806,-4.29644 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4557"
d="m 146.14244,449.43359 c -3.2e-4,2.37984 -0.0187,4.70084 -0.69278,6.99616 -1.18229,2.77982 -2.02226,5.6662 -2.55082,8.63587 -0.23976,1.54497 -0.29928,3.13564 -0.86692,4.60858 -0.26687,0.69248 -0.62158,1.34783 -0.93299,2.02146 -0.62813,1.67178 -1.37257,3.29642 -1.80167,5.03415 -0.15718,1.57662 -0.45924,3.07505 -0.99752,4.56431 -0.26804,0.76156 -0.65085,1.47003 -1.10618,2.13338 0,0 -9.70656,4.24101 -9.70656,4.24101 l 0,0 c 0.42285,-0.63857 0.91753,-1.20158 1.24594,-1.90449 0.5332,-1.52537 1.11917,-2.7641 1.06465,-4.45012 0.3599,-1.84303 1.14005,-3.50599 1.79745,-5.2537 0.14465,-0.35988 0.26903,-0.7286 0.43396,-1.07966 0.17358,-0.36944 0.83961,-1.44468 0.9663,-1.8405 0.35564,-1.11108 0.29379,-2.36866 0.5401,-3.50148 0.4939,-3.00905 1.3291,-5.94967 2.47663,-8.77694 0.8152,-2.15073 0.87359,-4.34341 0.70267,-6.62436 0,0 9.42774,-4.80367 9.42774,-4.80367 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4565"
d="m 161.22903,450.97921 c 2.53358,0.0742 5.06873,0.0603 7.60312,0.0614 2.36412,-0.004 4.72818,-0.0188 7.09225,-0.0335 1.69744,-0.0114 3.39489,-0.004 5.09235,-0.007 1.63281,0.0306 3.27363,-0.1072 4.89262,0.13 1.11608,0.20345 1.77056,1.61012 0.5775,2.29152 -9.22188,5.26691 -6.64978,4.29013 -11.33268,5.93865 -3.74608,1.74996 -2.28012,1.09998 6.85305,-3.99002 0.38464,-0.21436 -0.75109,0.45997 -1.12208,0.69718 -1.26794,0.81073 -2.4099,1.67902 -3.53563,2.67694 -2.42138,2.5343 -4.3543,5.49262 -6.00084,8.57471 -1.02824,1.86412 -2.19284,3.64065 -3.62,5.22174 -0.98231,1.10447 -1.31097,2.56989 -1.96783,3.86454 -0.62892,1.25062 -0.91037,2.6372 -1.27254,3.9814 -0.34648,0.96994 -0.16741,0.5195 -0.52667,1.35547 0,0 -9.60219,4.41513 -9.60219,4.41513 l 0,0 c 0.34987,-0.82868 0.14861,-0.42411 0.60581,-1.2127 0.33681,-1.41134 0.7073,-2.81863 1.17319,-4.18802 0.10295,-0.20697 0.20591,-0.41393 0.30886,-0.6209 0.11321,-0.19183 0.23837,-0.3771 0.33964,-0.57551 0.48479,-0.94986 0.56397,-2.06867 1.23106,-2.93846 0.38306,-0.42492 0.81224,-0.8068 1.19392,-1.23296 1.04141,-1.16277 1.77659,-2.56624 2.69105,-3.8216 1.64456,-3.14712 3.57517,-6.15898 5.86216,-8.88084 1.35577,-1.38164 2.81723,-2.57177 4.49632,-3.54906 9.9429,-5.78714 6.46155,-4.33899 11.11581,-6.19209 4.23971,-1.5246 0.67182,-0.32901 -6.72302,4.29622 -0.197,0.12322 0.43903,-0.19805 0.67118,-0.18826 0.17913,0.008 0.32369,0.15445 0.48289,0.23689 0.037,0.0192 0.14649,0.0728 0.10515,0.0676 -0.19667,-0.0247 -0.38724,-0.0848 -0.58086,-0.12726 -1.61006,-0.084 -3.22316,-0.0154 -4.83491,-0.0409 -1.69069,-0.003 -3.38137,0.004 -5.07203,-0.007 -2.33332,-0.0148 -4.66662,-0.0301 -7,-0.0335 -2.59079,10e-4 -5.18223,-0.011 -7.77227,0.0615 0,0 8.57562,-6.23055 8.57562,-6.23055 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4567"
d="m 231.99908,449.13087 c 1.43834,3.06126 1.28505,4.35787 0.54183,7.65724 -1.00552,3.38046 -1.92332,6.77914 -2.49608,10.26126 -0.32253,1.84254 -0.29508,3.71547 -0.42912,5.57356 -0.15861,1.38481 -0.38783,2.73197 -0.94041,4.01443 -0.94734,1.59693 -1.84623,3.25323 -3.17577,4.56666 -3.18973,1.84353 -6.37947,3.68707 -9.56921,5.5306 0,0 8.26713,-6.60137 8.26713,-6.60137 l 0,0 c -2.82727,1.66614 -5.65454,3.33229 -8.48181,4.99843 1.56238,-0.99789 2.39404,-2.61051 3.33833,-4.16144 0.72,-1.12355 0.90636,-2.37233 1.11464,-3.67463 0.32205,-1.86829 0.0689,-3.8114 0.51386,-5.67482 0.62785,-3.51058 1.55749,-6.95069 2.58761,-10.3634 0.64715,-2.9083 1.02761,-4.20794 -0.4708,-6.88829 0,0 9.1998,-5.23823 9.1998,-5.23823 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4573"
d="m 247.48078,448.78401 c -0.41424,1.68801 -1.3173,3.7086 -0.72843,5.46503 0.1505,0.44891 0.40865,0.85422 0.61298,1.28132 2.2444,3.30845 4.46371,6.63399 6.65073,9.98494 1.5627,2.55164 3.21544,5.09989 4.32425,7.89148 0.8941,2.81829 0.56108,3.8784 -1.60188,5.91388 -3.97181,2.76331 -2.55708,1.82737 -11.0466,6.36236 -0.52135,0.2785 -2.74455,0.75031 -3.32627,0.5583 -0.4495,-0.14836 -0.79477,-0.51436 -1.19216,-0.77154 -1.75441,-1.39879 -3.39439,-3.33306 -3.07519,-5.74849 0.25156,-1.90368 1.02985,-2.71658 2.03889,-4.31974 3.97119,-5.07273 8.73735,-9.44749 13.21625,-14.05968 2.35778,-2.42518 4.55292,-5.04591 5.24703,-8.426 0.2218,-1.94011 -0.0503,-2.72922 -1.33596,-4.14279 -1.72141,-1.45727 -3.90634,-2.26911 -5.99056,-3.06651 0,0 8.59591,-5.76606 8.59591,-5.76606 l 0,0 c 2.22852,0.89973 4.59285,1.74833 6.39575,3.38936 1.5141,1.73679 1.92119,2.63225 1.73703,4.99575 -0.53242,3.69091 -2.78873,6.58186 -5.37505,9.1614 -4.45953,4.54958 -9.16414,8.88826 -13.18181,13.84752 -1.01439,1.39842 -2.65322,3.2352 -2.23996,5.18641 0.29162,1.37683 1.61957,2.47574 2.70388,3.20693 1.23034,0.39062 1.66111,0.26963 2.89831,-0.14278 0.36006,-0.12002 1.38322,-0.61429 1.06036,-0.41477 -4.86195,3.00449 -11.03654,6.34678 -6.80549,4.04585 0.57957,-0.40749 2.1048,-1.50338 2.39864,-2.19126 0.31965,-0.7483 -0.22015,-1.79197 -0.29863,-2.52362 -0.95094,-2.77099 -2.47447,-5.31962 -3.97652,-7.81951 -2.23199,-3.36893 -4.47112,-6.72548 -6.82227,-10.0102 -0.274,-0.49826 -0.6091,-0.96751 -0.822,-1.49478 -0.77116,-1.90983 0.11436,-3.96596 0.34973,-5.88943 0,0 9.58904,-4.50337 9.58904,-4.50337 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4575"
d="m 305.37572,445.92958 c -0.41483,2.37212 -0.54295,4.78296 -0.63387,7.18569 -0.17434,1.83269 -0.31486,3.68654 -0.76609,5.47614 -0.62174,1.99482 -1.21589,3.99961 -1.77301,6.01355 -0.69277,2.65466 -1.43304,5.3023 -2.22569,7.93039 -0.39635,1.55762 -0.87843,3.08472 -1.3956,4.60563 -0.45184,1.2456 -0.74905,2.53974 -0.86567,3.85922 0,0 -9.56321,4.65958 -9.56321,4.65958 l 0,0 c 0.36278,-1.32895 0.36239,-2.74678 0.87752,-4.04247 0.5288,-1.5345 1.08317,-3.05202 1.49179,-4.62386 0.8624,-2.60345 1.61561,-5.24682 2.2782,-7.90257 0.51388,-1.99685 1.03492,-3.99356 1.63823,-5.96498 0.53925,-1.72819 0.757,-3.51054 0.98056,-5.30745 0.1026,-2.41021 0.25094,-4.81683 0.46309,-7.22004 0,0 9.49375,-4.66883 9.49375,-4.66883 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4581"
d="m 333.05669,449.35261 c -2.42504,-0.1836 -4.66461,0.7738 -6.89627,1.56323 -0.71158,0.36377 -1.53461,0.38962 -2.26787,0.68196 -0.30563,0.12185 -1.15017,0.6396 -0.86402,0.47722 14.39261,-8.16725 9.94615,-6.17138 7.18146,-3.81671 -0.82034,0.95156 -1.97927,1.44223 -2.72043,2.46223 -1.17911,2.2868 0.74625,2.92431 2.58966,3.73362 2.88953,0.96035 5.94735,1.56835 9.00016,1.43259 0.34003,-0.075 0.68207,-0.1415 1.0201,-0.2251 0.3071,-0.076 0.62398,-0.12845 0.91462,-0.2534 0.27947,-0.12015 1.04474,-0.62349 0.77932,-0.47486 -13.53075,7.57687 -9.36262,5.98792 -6.57042,3.19206 1.31336,-1.3441 1.87548,-2.96162 2.12604,-4.78016 0.32962,-4.77686 -1.08199,-1.837 9.51995,-5.84452 0.29071,-0.10989 -0.221,0.58168 -0.35458,0.86229 -0.15498,0.32554 -0.34,0.6359 -0.51001,0.95385 -1.08312,2.69499 -2.048,5.45926 -2.85804,8.25113 -0.80803,3.83836 -2.89888,7.15644 -4.63153,10.6165 -1.08616,2.06998 -2.25186,4.10503 -2.84499,6.37959 0,0 -9.49186,4.56374 -9.49186,4.56374 l 0,0 c 0.51561,-2.43718 1.71151,-4.58988 2.98421,-6.71422 1.71527,-3.401 3.78165,-6.66274 4.67766,-10.40811 0.70806,-2.84444 1.72333,-5.58281 2.61863,-8.37161 0.0524,-0.1116 0.56234,-1.34856 0.84558,-1.50815 11.07418,-6.23952 9.8762,-8.40994 9.44737,-3.43946 -0.17563,1.98364 -0.5336,3.82159 -1.86295,5.39606 -3.60641,4.13352 -8.74254,7.5204 -14.25888,7.94202 -3.13317,-0.14403 -6.23811,-0.7308 -9.17461,-1.85283 -1.56185,-0.74009 -3.58154,-1.60099 -3.87756,-3.57409 -0.0279,-0.1857 0.22255,-1.35575 0.25999,-1.54249 0.34135,-0.85703 0.74442,-1.54774 1.56728,-2.0277 0.18741,-0.10932 0.41022,-0.15377 0.58947,-0.27601 0.17679,-0.12056 0.30979,-0.29526 0.46469,-0.4429 3.4288,-4.11473 8.87867,-6.22981 13.92275,-7.80009 2.34703,-0.81601 4.73861,-1.46657 7.2507,-1.38623 0,0 -8.57562,6.23055 -8.57562,6.23055 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4587"
d="m 391.94331,446.69349 c 1.90471,0.0424 3.81038,0.0368 5.71549,0.0319 1.5992,0.23163 3.7522,0.84896 5.04121,1.89079 0.30574,0.2471 0.53949,0.57192 0.80923,0.85789 1.88094,2.43858 1.28592,4.30942 0.32303,6.99158 -1.31343,3.51139 -3.1635,6.68314 -5.53633,9.57139 -4.38908,4.63227 -10.33379,7.25475 -16.41787,8.75735 -2.815,0.37634 -5.6868,1.27495 -8.55536,1.15632 -1.44359,-0.0597 -1.9403,-0.33726 -3.2355,-0.7987 -0.59746,-0.36064 -1.53839,-0.73741 -1.76345,-1.53488 -0.4086,-1.44781 1.07298,-2.19916 2.06832,-2.77512 3.44948,-1.99607 6.92364,-3.94916 10.38547,-5.92374 2.8826,-1.44913 5.79842,-2.79756 8.95787,-3.50274 2.75424,-0.46628 4.03088,-0.35135 5.41552,2.20322 0.57781,0.9224 0.69605,2.0279 1.07296,3.01948 0.37473,0.98584 1.04468,1.8479 1.69698,2.65834 1.06659,1.52417 2.05911,3.09684 3.13053,4.61756 0,0 -9.07402,5.32869 -9.07402,5.32869 l 0,0 c -1.00958,-1.53532 -2.05767,-3.04266 -3.05571,-4.5837 -0.70444,-0.93257 -1.46605,-1.93463 -1.91079,-3.02716 -0.36539,-0.8976 -0.39591,-1.9534 -0.96746,-2.78194 -1.14322,-2.05455 -2.55858,-1.47273 -4.59416,-1.10076 -3.05779,0.83872 -5.92059,2.17351 -8.72566,3.64105 2.45098,-1.44051 4.89045,-2.90077 7.35293,-4.32152 0.40065,-0.23117 -0.75533,0.53962 -1.16623,0.75204 -0.27912,0.14429 -0.58835,0.22257 -0.8899,0.31089 -0.2069,0.0606 -0.54511,-0.062 -0.63255,0.13502 -0.22553,0.50828 1.5045,0.97613 1.2981,1.0478 0.42898,0.12923 0.84641,0.30607 1.28693,0.38769 3.27626,0.60695 6.89184,-0.60546 10.08661,-1.19319 1.07524,-0.3232 1.96593,-0.5777 3.01064,-0.934 0.39688,-0.13536 1.53691,-0.65192 1.18368,-0.42594 -14.2856,9.1392 -8.20455,5.24769 -5.48183,2.91356 2.47324,-2.71434 4.39089,-5.76581 5.67864,-9.21964 0.40111,-1.10225 1.31339,-3.07669 1.00587,-4.30668 -0.14352,-0.57403 -0.5662,-1.11113 -0.8858,-1.58632 -1.44215,-1.34408 -3.44126,-2.00849 -5.39976,-2.05784 -1.93437,-0.005 -3.86925,-0.01 -5.80325,0.0319 0,0 8.57562,-6.23055 8.57562,-6.23055 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4589"
d="m 409.89103,456.44511 c -4.99583,2.83313 3.45075,-2.07405 5.23204,-3.00938 0.71999,-0.37805 -1.36008,0.8932 -2.0157,1.37432 -1.74676,1.28188 -2.9941,2.65503 -4.24018,4.40665 -1.45313,2.20486 -1.94006,4.67807 -2.11314,7.25979 -0.24822,2.17951 0.56415,3.42039 1.94791,4.99214 0.95898,1.0501 1.73536,2.31641 2.95181,3.10264 0.83128,0.53728 1.54893,0.7698 2.46344,1.13375 1.78091,0.42655 3.69936,1.16407 5.54091,0.62504 0.82234,-0.2407 2.21203,-1.02498 2.94279,-1.41045 -13.69205,8.03037 -6.80008,4.30311 -4.35207,1.34444 1.22923,-1.48565 2.02154,-3.10195 2.77036,-4.85983 1.14915,-3.16248 1.39663,-6.52062 1.49613,-9.85381 -0.052,-1.28134 0.15343,-2.59628 0.0202,-3.87591 -0.10139,-0.97399 -0.54969,-1.89222 -0.91995,-2.78312 -0.69769,-1.59704 -2.21259,-1.8372 -3.68805,-2.43798 -3.073,-0.89513 -5.93529,-2.45212 -9.07657,-3.09805 -0.68545,-0.003 -1.46502,-0.08 -2.12502,0.1987 -0.32743,0.13825 -1.19238,0.77225 -0.88183,0.5994 2.73744,-1.52372 5.44386,-3.10253 8.16579,-4.65379 0,0 -9.79598,3.7777 -9.79598,3.7777 l 0,0 c 3.27428,-1.88164 6.51007,-3.8319 9.82284,-5.64491 0.334,-0.1828 0.71806,-0.26732 1.0937,-0.3295 0.85589,-0.14168 1.46514,0.0104 2.31325,0.12697 3.09934,0.91782 6.00939,2.39209 9.15233,3.18986 1.8143,0.6297 3.40309,1.23256 4.181,3.14719 0.4029,1.00473 0.92855,2.07818 1.06583,3.16313 0.16314,1.28934 -0.15724,2.6394 -0.0393,3.93226 -0.15923,3.44224 -0.3691,6.92496 -1.45913,10.22131 -3.01525,8.36981 -7.5267,9.54899 -15.81889,14.27855 -1.18471,0.52525 -1.92325,0.95289 -3.2208,1.13923 -1.98538,0.28513 -3.96958,-0.48634 -5.83565,-1.02743 -1.03877,-0.46443 -1.70887,-0.70836 -2.65651,-1.35873 -1.24918,-0.85731 -2.09442,-2.1242 -3.10453,-3.22512 -1.58794,-1.87113 -2.49515,-3.15716 -2.29191,-5.71812 0.11034,-2.76411 0.54539,-5.43308 2.02213,-7.83885 0.83482,-1.28848 1.35055,-2.22333 2.45816,-3.33228 0.62149,-0.62226 3.01082,-2.46765 3.72025,-2.89707 6.88283,-4.16626 7.8082,-4.65404 12.44169,-7.19185 0,0 -8.16736,6.53311 -8.16736,6.53311 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615"
d="m 31.753273,536.62362 c 0.44035,-2.02806 1.753668,-3.70978 3.012756,-5.30781 1.644173,-1.78032 3.526321,-3.26083 5.585627,-4.52553 3.214825,-1.43826 9.525455,-7.42833 14.618507,-6.11299 1.797909,0.4367 2.839276,1.86722 3.502061,3.49329 0.783123,2.06767 -0.199636,3.23366 -1.278775,4.92792 -1.174432,1.89139 -1.801424,4.01149 -2.393357,6.13644 -0.640306,1.7505 -0.943122,3.60501 -1.573489,5.35428 -1.265629,2.46281 -3.096464,4.65679 -5.139066,6.51273 -2.384495,1.80494 -4.886478,3.3978 -6.836727,5.69501 -0.929038,1.27029 -1.490014,2.79121 -1.783407,4.33089 -0.01953,1.07987 1.275858,0.94786 2.064026,0.99622 2.141384,0.0956 4.286269,0.0673 6.429238,0.0656 2.073984,-0.0169 4.147893,-0.0312 6.221926,-0.0374 2.174647,-0.006 4.349046,0.0126 6.523672,0.0185 1.019684,0.0308 2.011121,0.0174 3.013716,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.000537,0.0374 -1.997766,0.0138 -2.999137,0.0121 -2.193084,0.006 -4.385953,0.0236 -6.579048,0.024 -2.057845,10e-4 -4.115687,0.002 -6.173535,0.005 -2.191794,0.0145 -4.387964,0.0521 -6.575564,-0.11135 -1.459493,-0.23096 -2.761235,-0.75964 -2.946038,-2.41411 0.131456,-1.71313 0.83567,-3.41101 1.655795,-4.90206 1.845701,-2.47952 4.28883,-4.23567 6.850235,-5.92324 1.126004,-0.88505 1.455379,-1.05277 2.384161,-2.13751 0.456478,-0.53313 1.199409,-1.692 1.631721,-2.25153 1.123041,-1.45353 0.402695,-0.25091 1.137968,-1.60192 0.839537,-1.66134 0.940694,-3.55357 1.715255,-5.25195 0.552248,-2.20408 1.165284,-4.38994 2.235159,-6.40793 0.398842,-0.65442 0.648653,-1.09625 1.099836,-1.71272 0.5839,-0.7978 0.925114,-1.29589 0.556502,-2.31229 -0.514512,-1.39653 -1.369554,-2.36846 -2.917831,-2.57852 -4.135855,-0.27485 -11.69978,5.45401 3.753948,-3.67707 -1.106111,0.60091 -2.294618,1.22434 -3.282528,2.01271 -0.831878,0.66385 -1.442867,1.59154 -2.359399,2.15984 -0.943791,0.98998 -2.415461,2.79024 -2.984311,4.00844 -0.107552,0.23033 -0.128759,0.49183 -0.193138,0.73774 0,0 -9.521479,4.655 -9.521479,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615-6"
d="m 122.85676,537.58718 c 0.44035,-2.02806 1.75366,-3.70978 3.01275,-5.30781 1.64417,-1.78032 3.52632,-3.26083 5.58563,-4.52553 3.21482,-1.43826 9.52545,-7.42833 14.61851,-6.11299 1.79791,0.4367 2.83927,1.86722 3.50206,3.49329 0.78312,2.06767 -0.19964,3.23366 -1.27878,4.92792 -1.17443,1.89139 -1.80142,4.01149 -2.39335,6.13644 -0.64031,1.7505 -0.94313,3.60501 -1.57349,5.35428 -1.26563,2.46281 -3.09647,4.65679 -5.13907,6.51273 -2.38449,1.80494 -4.88648,3.3978 -6.83673,5.69501 -0.92903,1.27029 -1.49001,2.79121 -1.7834,4.33089 -0.0195,1.07987 1.27585,0.94786 2.06402,0.99622 2.14139,0.0956 4.28627,0.0673 6.42924,0.0656 2.07398,-0.0169 4.14789,-0.0312 6.22193,-0.0374 2.17464,-0.006 4.34904,0.0126 6.52367,0.0185 1.01968,0.0308 2.01112,0.0174 3.01371,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.00053,0.0374 -1.99776,0.0138 -2.99913,0.0121 -2.19309,0.006 -4.38596,0.0236 -6.57905,0.024 -2.05785,10e-4 -4.11569,0.002 -6.17354,0.005 -2.19179,0.0145 -4.38796,0.0521 -6.57556,-0.11135 -1.45949,-0.23096 -2.76124,-0.75964 -2.94604,-2.41411 0.13146,-1.71313 0.83567,-3.41101 1.6558,-4.90206 1.8457,-2.47952 4.28883,-4.23567 6.85023,-5.92324 1.12601,-0.88505 1.45538,-1.05277 2.38416,-2.13751 0.45648,-0.53313 1.19941,-1.692 1.63172,-2.25153 1.12305,-1.45353 0.4027,-0.25091 1.13797,-1.60192 0.83954,-1.66134 0.9407,-3.55357 1.71526,-5.25195 0.55225,-2.20408 1.16528,-4.38994 2.23516,-6.40793 0.39884,-0.65442 0.64865,-1.09625 1.09983,-1.71272 0.5839,-0.7978 0.92512,-1.29589 0.5565,-2.31229 -0.51451,-1.39653 -1.36955,-2.36846 -2.91783,-2.57852 -4.13585,-0.27485 -11.69978,5.45401 3.75395,-3.67707 -1.10611,0.60091 -2.29462,1.22434 -3.28253,2.01271 -0.83187,0.66385 -1.44286,1.59154 -2.3594,2.15984 -0.94379,0.98998 -2.41546,2.79024 -2.98431,4.00844 -0.10755,0.23033 -0.12876,0.49183 -0.19313,0.73774 0,0 -9.52148,4.655 -9.52148,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615-4"
d="m 209.28533,539.73003 c 0.44035,-2.02806 1.75367,-3.70978 3.01275,-5.30781 1.64418,-1.78032 3.52633,-3.26083 5.58563,-4.52553 3.21483,-1.43826 9.52546,-7.42833 14.61851,-6.11299 1.79791,0.4367 2.83927,1.86722 3.50206,3.49329 0.78312,2.06767 -0.19964,3.23366 -1.27878,4.92792 -1.17443,1.89139 -1.80142,4.01149 -2.39335,6.13644 -0.64031,1.7505 -0.94312,3.60501 -1.57349,5.35428 -1.26563,2.46281 -3.09647,4.65679 -5.13907,6.51273 -2.38449,1.80494 -4.88648,3.3978 -6.83672,5.69501 -0.92904,1.27029 -1.49002,2.79121 -1.78341,4.33089 -0.0195,1.07987 1.27586,0.94786 2.06402,0.99622 2.14139,0.0956 4.28627,0.0673 6.42924,0.0656 2.07399,-0.0169 4.1479,-0.0312 6.22193,-0.0374 2.17465,-0.006 4.34904,0.0126 6.52367,0.0185 1.01968,0.0308 2.01112,0.0174 3.01372,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.00054,0.0374 -1.99777,0.0138 -2.99914,0.0121 -2.19308,0.006 -4.38595,0.0236 -6.57905,0.024 -2.05784,10e-4 -4.11569,0.002 -6.17353,0.005 -2.1918,0.0145 -4.38797,0.0521 -6.57557,-0.11135 -1.45949,-0.23096 -2.76123,-0.75964 -2.94604,-2.41411 0.13146,-1.71313 0.83567,-3.41101 1.6558,-4.90206 1.8457,-2.47952 4.28883,-4.23567 6.85023,-5.92324 1.12601,-0.88505 1.45538,-1.05277 2.38417,-2.13751 0.45647,-0.53313 1.1994,-1.692 1.63172,-2.25153 1.12304,-1.45353 0.40269,-0.25091 1.13796,-1.60192 0.83954,-1.66134 0.9407,-3.55357 1.71526,-5.25195 0.55225,-2.20408 1.16528,-4.38994 2.23516,-6.40793 0.39884,-0.65442 0.64865,-1.09625 1.09983,-1.71272 0.5839,-0.7978 0.92512,-1.29589 0.55651,-2.31229 -0.51452,-1.39653 -1.36956,-2.36846 -2.91783,-2.57852 -4.13586,-0.27485 -11.69978,5.45401 3.75394,-3.67707 -1.10611,0.60091 -2.29461,1.22434 -3.28252,2.01271 -0.83188,0.66385 -1.44287,1.59154 -2.3594,2.15984 -0.94379,0.98998 -2.41546,2.79024 -2.98431,4.00844 -0.10756,0.23033 -0.12876,0.49183 -0.19314,0.73774 0,0 -9.52148,4.655 -9.52148,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615-5"
d="m 287.14247,543.30146 c 0.44035,-2.02806 1.75367,-3.70978 3.01275,-5.30781 1.64418,-1.78032 3.52633,-3.26083 5.58563,-4.52553 3.21483,-1.43826 9.52546,-7.42833 14.61851,-6.11299 1.79791,0.4367 2.83928,1.86722 3.50206,3.49329 0.78312,2.06767 -0.19964,3.23366 -1.27877,4.92792 -1.17444,1.89139 -1.80143,4.01149 -2.39336,6.13644 -0.64031,1.7505 -0.94312,3.60501 -1.57349,5.35428 -1.26563,2.46281 -3.09646,4.65679 -5.13907,6.51273 -2.38449,1.80494 -4.88647,3.3978 -6.83672,5.69501 -0.92904,1.27029 -1.49002,2.79121 -1.78341,4.33089 -0.0195,1.07987 1.27586,0.94786 2.06403,0.99622 2.14138,0.0956 4.28626,0.0673 6.42923,0.0656 2.07399,-0.0169 4.1479,-0.0312 6.22193,-0.0374 2.17465,-0.006 4.34905,0.0126 6.52367,0.0185 1.01969,0.0308 2.01112,0.0174 3.01372,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.00054,0.0374 -1.99777,0.0138 -2.99914,0.0121 -2.19308,0.006 -4.38595,0.0236 -6.57905,0.024 -2.05784,0.001 -4.11568,0.002 -6.17353,0.005 -2.1918,0.0145 -4.38797,0.0521 -6.57557,-0.11135 -1.45949,-0.23096 -2.76123,-0.75964 -2.94604,-2.41411 0.13146,-1.71313 0.83567,-3.41101 1.6558,-4.90206 1.8457,-2.47952 4.28883,-4.23567 6.85023,-5.92324 1.12601,-0.88505 1.45538,-1.05277 2.38417,-2.13751 0.45647,-0.53313 1.19941,-1.692 1.63172,-2.25153 1.12304,-1.45353 0.40269,-0.25091 1.13797,-1.60192 0.83953,-1.66134 0.94069,-3.55357 1.71525,-5.25195 0.55225,-2.20408 1.16528,-4.38994 2.23516,-6.40793 0.39884,-0.65442 0.64865,-1.09625 1.09984,-1.71272 0.5839,-0.7978 0.92511,-1.29589 0.5565,-2.31229 -0.51451,-1.39653 -1.36956,-2.36846 -2.91783,-2.57852 -4.13586,-0.27485 -11.69978,5.45401 3.75394,-3.67707 -1.10611,0.60091 -2.29461,1.22434 -3.28252,2.01271 -0.83188,0.66385 -1.44287,1.59154 -2.3594,2.15984 -0.94379,0.98998 -2.41546,2.79024 -2.98431,4.00844 -0.10756,0.23033 -0.12876,0.49183 -0.19314,0.73774 0,0 -9.52148,4.655 -9.52148,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615-9"
d="m 374.28532,541.87289 c 0.44035,-2.02806 1.75367,-3.70978 3.01276,-5.30781 1.64417,-1.78032 3.52632,-3.26083 5.58562,-4.52553 3.21483,-1.43826 9.52546,-7.42833 14.61851,-6.11299 1.79791,0.4367 2.83928,1.86722 3.50206,3.49329 0.78313,2.06767 -0.19963,3.23366 -1.27877,4.92792 -1.17443,1.89139 -1.80143,4.01149 -2.39336,6.13644 -0.64031,1.7505 -0.94312,3.60501 -1.57349,5.35428 -1.26563,2.46281 -3.09646,4.65679 -5.13906,6.51273 -2.3845,1.80494 -4.88648,3.3978 -6.83673,5.69501 -0.92904,1.27029 -1.49002,2.79121 -1.78341,4.33089 -0.0195,1.07987 1.27586,0.94786 2.06403,0.99622 2.14138,0.0956 4.28627,0.0673 6.42924,0.0656 2.07398,-0.0169 4.14789,-0.0312 6.22192,-0.0374 2.17465,-0.006 4.34905,0.0126 6.52367,0.0185 1.01969,0.0308 2.01112,0.0174 3.01372,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.00054,0.0374 -1.99777,0.0138 -2.99914,0.0121 -2.19308,0.006 -4.38595,0.0236 -6.57905,0.024 -2.05784,10e-4 -4.11568,0.002 -6.17353,0.005 -2.19179,0.0145 -4.38796,0.0521 -6.57556,-0.11135 -1.4595,-0.23096 -2.76124,-0.75964 -2.94604,-2.41411 0.13145,-1.71313 0.83567,-3.41101 1.65579,-4.90206 1.8457,-2.47952 4.28883,-4.23567 6.85024,-5.92324 1.126,-0.88505 1.45538,-1.05277 2.38416,-2.13751 0.45648,-0.53313 1.19941,-1.692 1.63172,-2.25153 1.12304,-1.45353 0.40269,-0.25091 1.13797,-1.60192 0.83953,-1.66134 0.94069,-3.55357 1.71525,-5.25195 0.55225,-2.20408 1.16529,-4.38994 2.23516,-6.40793 0.39884,-0.65442 0.64865,-1.09625 1.09984,-1.71272 0.5839,-0.7978 0.92511,-1.29589 0.5565,-2.31229 -0.51451,-1.39653 -1.36955,-2.36846 -2.91783,-2.57852 -4.13586,-0.27485 -11.69978,5.45401 3.75395,-3.67707 -1.10611,0.60091 -2.29462,1.22434 -3.28253,2.01271 -0.83188,0.66385 -1.44287,1.59154 -2.3594,2.15984 -0.94379,0.98998 -2.41546,2.79024 -2.98431,4.00844 -0.10755,0.23033 -0.12876,0.49183 -0.19314,0.73774 0,0 -9.52148,4.655 -9.52148,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4469-4"
d="m 423.68783,526.69061 c 2.11057,0.0572 4.22215,0.0462 6.33323,0.0367 1.81669,-0.0163 3.6334,-0.0102 5.45013,-0.0133 1.58831,-0.002 3.17662,-0.0128 4.76491,-0.003 1.61869,0.004 3.23738,-10e-4 4.85607,-0.004 1.60345,-0.0835 3.25541,0.19848 4.83242,-0.14117 0,0 -8.46509,6.30932 -8.46509,6.30932 l 0,0 c -1.63174,0.0604 -3.26544,0.002 -4.89797,0.0297 -1.61527,-0.003 -3.23054,-0.008 -4.84582,-0.004 -1.58521,0.009 -3.17044,-10e-4 -4.75567,-0.003 -1.80451,-0.003 -3.609,0.003 -5.41348,-0.0133 -2.1448,-0.01 -4.29002,-0.019 -6.43434,0.0367 0,0 8.57561,-6.23056 8.57561,-6.23056 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4473-0"
d="m 422.17268,533.71642 c -0.10311,2.18692 0.0107,4.37736 -0.11971,6.56223 -0.0687,1.14142 -0.65566,3.04023 0.83452,3.41824 1.41994,0.25226 2.87095,0.21128 4.30717,0.19865 1.7819,-0.0999 3.4187,-0.076 5.02511,0.76026 0.21088,0.17384 0.44041,0.32726 0.63264,0.52153 0.13565,0.13708 0.73368,0.94129 0.89623,1.12356 0.46496,0.52138 1.02006,0.98941 1.52772,1.46714 1.52847,0.94294 2.37243,2.55322 3.61193,3.78244 1.06012,1.07403 1.58547,2.52903 1.52249,4.02314 -0.16517,0.57503 -0.41558,1.19451 -0.82435,1.64868 -2.68319,2.98114 -10.89089,6.70464 -11.55588,7.08732 -2.73804,1.08582 -5.57873,1.83026 -8.46868,2.37136 -2.44653,0.3998 -4.84861,0.97903 -7.2678,1.5063 -1.71752,0.34074 -3.47631,0.39078 -5.22194,0.43011 -1.57989,0.0302 -3.15991,-0.009 -4.7398,0.0149 -4.01377,0.13214 -2.61441,1.16875 8.3587,-6.24649 0.20983,-0.1418 1.30257,0.0249 1.54126,0.027 0.22568,10e-4 0.45136,0.002 0.67703,0.003 0,0 -8.54483,6.20879 -8.54483,6.20879 l 0,0 c -0.22886,10e-4 -0.45771,0.003 -0.68656,0.004 -0.38277,0.004 -0.80363,0.006 -1.18805,0.0162 -0.1415,0.004 -0.53594,0.1021 -0.42436,0.015 10.38878,-8.10839 4.90183,-6.42371 8.81838,-6.23752 1.56406,0.0335 3.12892,0.008 4.69285,-0.0225 1.70416,-0.0621 3.41161,-0.17205 5.07692,-0.5667 2.38919,-0.52761 4.79434,-0.95648 7.19606,-1.42299 2.85398,-0.5874 5.67891,-1.37606 8.31795,-2.63326 -2.60848,1.54052 -5.21696,3.08104 -7.82544,4.62155 0.28297,-0.19063 0.58175,-0.35969 0.84892,-0.57191 0.2158,-0.17141 0.37778,-0.40432 0.59449,-0.57458 0.13177,-0.10353 0.31944,-0.12533 0.4419,-0.23972 0.2548,-0.23801 0.32045,-0.64024 0.64596,-0.82275 0.54245,-1.10828 -0.24039,-2.33511 -0.99505,-3.1498 -1.15626,-1.28227 -2.05253,-2.78711 -3.55115,-3.73615 -0.5683,-0.51075 -1.16181,-1.0009 -1.65803,-1.58505 -0.14519,-0.17091 -0.55614,-0.74049 -0.74194,-0.90322 -0.14922,-0.1307 -0.32894,-0.22179 -0.49342,-0.33269 -1.53646,-0.57905 -3.1552,-0.39735 -4.77014,-0.38907 -1.55005,-0.0131 -3.15062,0.0123 -4.61027,-0.58121 -1.76689,-1.16152 -1.64865,-2.61052 -1.35975,-4.5545 0.2008,-2.13856 0.0932,-4.29298 0.0512,-6.43795 0,0 9.42774,-4.80368 9.42774,-4.80368 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4455-1"
d="m 326.51391,532.18766 c -0.10994,2.51404 -0.0825,5.03149 -0.0587,7.54704 -0.013,2.43502 0.0126,4.86996 -0.01,7.30493 -0.12603,2.10801 0.12755,4.15952 0.90009,6.1262 0.85184,1.39526 2.80828,1.24354 4.25549,1.32479 2.00779,0.0584 4.01714,0.0275 6.02549,0.0159 2.19905,0.064 4.28756,-0.46741 6.33768,-1.20126 0.24336,-0.11302 0.48673,-0.22603 0.73009,-0.33905 0,0 -8.28162,6.51816 -8.28162,6.51816 l 0,0 c -0.24251,0.0838 -0.48501,0.16755 -0.72751,0.25133 -2.11892,0.64929 -4.31188,0.99827 -6.53429,0.9375 -2.02212,0.0156 -4.04661,0.0515 -6.06571,-0.0911 -1.92082,-0.17537 -3.98063,-0.37059 -4.939,-2.29595 -0.78761,-2.09391 -1.14658,-4.27361 -0.99182,-6.51242 -0.0223,-2.43172 0.004,-4.86341 -0.01,-7.29518 0.0233,-2.49556 0.0528,-4.99319 -0.0588,-7.48717 0,0 9.42775,-4.80368 9.42775,-4.80368 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4459-1"
d="m 346.61072,530.52015 c 0.66743,2.40647 1.23203,4.82549 1.57905,7.30044 0.27918,2.11014 0.39519,4.23585 0.44749,6.36215 0.0104,1.85019 0.008,3.70042 -0.0208,5.5504 -0.0132,1.94944 0.006,3.8989 0.0169,5.84831 -0.0386,1.70432 0.0623,3.41144 -0.0553,5.11271 -0.33176,1.79503 -0.8547,3.54251 -1.4116,5.27783 -0.26019,0.92364 -0.14348,0.46319 -0.35152,1.381 0,0 -9.49687,4.60155 -9.49687,4.60155 l 0,0 c 0.17964,-0.99032 0.0745,-0.49474 0.3168,-1.48646 0.52313,-1.69516 1.14286,-3.34755 1.50183,-5.09172 0.25533,-1.65455 0.0602,-3.34678 0.11623,-5.01578 0.0125,-1.95779 0.0344,-3.91558 0.0286,-5.87344 -0.0219,-1.83748 -0.003,-3.67498 -0.0166,-5.51253 -0.007,-2.10403 -0.0449,-4.21123 -0.28369,-6.30407 -0.31668,-2.40246 -0.80771,-4.76089 -1.65014,-7.03971 0,0 9.27961,-5.11068 9.27961,-5.11068 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4523-5"
d="m 253.931,525.8055 c 2.33168,1.30008 4.98011,1.7125 7.59089,2.04721 0.95903,0.17857 3.17398,0.5962 3.16339,2.01184 -0.01,1.31442 -0.80726,1.67632 -1.67808,2.51845 -4.19363,2.91724 -8.66801,5.40113 -12.96307,8.16556 0.3527,0.30256 -2.4778,1.12493 -1.91696,1.83965 0.83379,1.06257 2.57212,1.58264 3.72846,2.13837 2.2084,1.08079 4.39426,2.22274 6.02915,4.0887 1.08668,1.79095 1.30076,3.85456 1.42492,5.89874 0.0335,1.08822 0.19219,2.25956 -0.38975,3.25857 -0.50721,0.87072 -1.34088,1.49031 -2.19787,1.97131 -3.4723,1.94885 -6.98737,3.8205 -10.48105,5.73075 -4.16559,1.17938 -8.51318,1.35588 -12.81269,1.52296 -2.80571,0.0618 -1.40639,0.0389 -4.19796,0.0688 0,0 8.28495,-6.03515 8.28495,-6.03515 l 0,0 c 2.77535,-0.0394 1.38552,-0.0116 4.16949,-0.0836 4.2684,-0.17979 8.61306,-0.40162 12.66714,-1.87417 -2.44085,1.46763 -4.90437,2.89817 -7.32253,4.40288 -0.40953,0.25484 0.87311,-0.41239 1.29249,-0.65066 1.66798,-0.94766 1.80307,-1.67075 1.67523,-3.49963 -0.0961,-1.80028 -0.17603,-3.67745 -1.12879,-5.26459 -1.52862,-1.72993 -3.57345,-2.82982 -5.61759,-3.85652 -1.27995,-0.62151 -5.03725,-2.04167 -4.76238,-3.9855 0.11159,-0.78916 1.59382,-1.64434 2.01653,-1.95358 4.24707,-2.76256 8.6584,-5.2611 12.92124,-7.99891 0.41998,-0.31421 0.82125,-0.65513 1.25995,-0.94261 0.22536,-0.14768 0.52079,-0.18185 0.72471,-0.35794 0.6435,-0.55569 -2.47751,-1.14045 -2.39914,-1.11697 -2.75071,-0.44899 -5.51221,-0.99727 -7.98821,-2.34065 0,0 8.90753,-5.70339 8.90753,-5.70339 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615-6-5"
d="m 151.42819,537.58717 c 0.44035,-2.02806 1.75366,-3.70978 3.01275,-5.30781 1.64417,-1.78032 3.52632,-3.26083 5.58563,-4.52553 3.21482,-1.43826 9.52545,-7.42833 14.61851,-6.11299 1.79791,0.4367 2.83927,1.86722 3.50206,3.49329 0.78312,2.06767 -0.19964,3.23366 -1.27878,4.92792 -1.17443,1.89139 -1.80142,4.01149 -2.39335,6.13644 -0.64031,1.7505 -0.94313,3.60501 -1.57349,5.35428 -1.26563,2.46281 -3.09647,4.65679 -5.13907,6.51273 -2.38449,1.80494 -4.88648,3.3978 -6.83673,5.69501 -0.92903,1.27029 -1.49001,2.79121 -1.7834,4.33089 -0.0195,1.07987 1.27585,0.94786 2.06402,0.99622 2.14139,0.0956 4.28627,0.0673 6.42924,0.0656 2.07398,-0.0169 4.14789,-0.0312 6.22193,-0.0374 2.17464,-0.006 4.34904,0.0126 6.52367,0.0185 1.01968,0.0308 2.01112,0.0174 3.01371,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.00053,0.0374 -1.99776,0.0138 -2.99913,0.0121 -2.19309,0.006 -4.38596,0.0236 -6.57905,0.024 -2.05785,10e-4 -4.11569,0.002 -6.17354,0.005 -2.19179,0.0145 -4.38796,0.0521 -6.57556,-0.11135 -1.45949,-0.23096 -2.76124,-0.75964 -2.94604,-2.41411 0.13146,-1.71313 0.83567,-3.41101 1.6558,-4.90206 1.8457,-2.47952 4.28883,-4.23567 6.85023,-5.92324 1.12601,-0.88505 1.45538,-1.05277 2.38416,-2.13751 0.45648,-0.53313 1.19941,-1.692 1.63172,-2.25153 1.12305,-1.45353 0.4027,-0.25091 1.13797,-1.60192 0.83954,-1.66134 0.9407,-3.55357 1.71526,-5.25195 0.55225,-2.20408 1.16528,-4.38994 2.23516,-6.40793 0.39884,-0.65442 0.64865,-1.09625 1.09983,-1.71272 0.5839,-0.7978 0.92512,-1.29589 0.5565,-2.31229 -0.51451,-1.39653 -1.36955,-2.36846 -2.91783,-2.57852 -4.13585,-0.27485 -11.69978,5.45401 3.75395,-3.67707 -1.10611,0.60091 -2.29462,1.22434 -3.28253,2.01271 -0.83187,0.66385 -1.44286,1.59154 -2.3594,2.15984 -0.94379,0.98998 -2.41546,2.79024 -2.98431,4.00844 -0.10755,0.23033 -0.12876,0.49183 -0.19313,0.73774 0,0 -9.52148,4.655 -9.52148,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4507-5"
d="m 65.748905,356.30581 c 0.162805,2.47024 -0.8274,4.66861 -1.804092,6.87551 -0.970429,2.42011 -1.854218,4.8738 -2.801542,7.30366 -0.88271,2.5037 -1.645472,5.05756 -2.335241,7.62216 -0.31395,1.25558 -0.512179,2.53453 -0.758161,3.80417 0,0 -9.403597,4.54752 -9.403597,4.54752 l 0,0 c 0.294039,-1.28534 0.504876,-2.58132 0.778223,-3.87128 0.668696,-2.58859 1.431977,-5.14846 2.236397,-7.69661 0.912464,-2.46956 1.999364,-4.87468 2.812163,-7.38198 0.627191,-1.34404 1.648023,-3.23545 1.871965,-4.69467 0.02061,-0.13429 -0.03373,-1.4976 -0.04083,-1.69616 0,0 9.444711,-4.81232 9.444711,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4557-3"
d="m 86.685914,523.70644 c -3.2e-4,2.37984 -0.0187,4.70084 -0.69278,6.99616 -1.18229,2.77982 -2.02226,5.6662 -2.55082,8.63587 -0.23976,1.54497 -0.29928,3.13564 -0.86692,4.60858 -0.26687,0.69248 -0.62158,1.34783 -0.93299,2.02146 -0.62813,1.67178 -1.37257,3.29642 -1.80167,5.03415 -0.15718,1.57662 -0.45924,3.07505 -0.99752,4.56431 -0.26804,0.76156 -0.65085,1.47003 -1.10618,2.13338 0,0 -9.70656,4.24101 -9.70656,4.24101 l 0,0 c 0.42285,-0.63857 0.91753,-1.20158 1.24594,-1.90449 0.5332,-1.52537 1.11917,-2.7641 1.06465,-4.45012 0.3599,-1.84303 1.14005,-3.50599 1.79745,-5.2537 0.14465,-0.35988 0.26903,-0.7286 0.43396,-1.07966 0.17358,-0.36944 0.83961,-1.44468 0.9663,-1.8405 0.35564,-1.11108 0.29379,-2.36866 0.5401,-3.50148 0.4939,-3.00905 1.3291,-5.94967 2.47663,-8.77694 0.8152,-2.15073 0.87359,-4.34341 0.70267,-6.62436 0,0 9.42774,-4.80367 9.42774,-4.80367 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4449-5"
d="m 648.30017,362.69778 c -0.0666,1.95698 -0.0486,3.91588 -0.0568,5.87376 0.002,1.84658 0.0191,3.69311 0.0283,5.53967 -0.13511,1.51826 0.15901,2.99156 0.40362,4.47842 0.22126,1.41136 0.21219,2.83433 0.46757,4.24002 0.17821,1.2936 0.45658,2.5495 0.79463,3.8083 0.13519,1.45353 0.46335,2.7606 1.01946,4.10129 0.57696,1.38034 0.65781,2.88124 1.00046,4.32398 0.0362,0.17992 0.0725,0.35983 0.1087,0.53975 0,0 -9.38668,4.92916 -9.38668,4.92916 l 0,0 c -0.005,-0.1529 -0.01,-0.30581 -0.0148,-0.45871 -0.32833,-1.39232 -0.42666,-2.82802 -0.92274,-4.176 -0.27846,-0.68117 -0.66359,-1.39011 -0.82394,-2.11094 -0.15209,-0.68366 -0.0545,-1.42864 -0.28053,-2.1041 -0.33271,-1.28891 -0.65887,-2.56011 -0.80832,-3.88786 -0.27239,-1.41433 -0.33841,-2.83206 -0.48831,-4.26255 -0.23442,-1.54124 -0.57823,-3.06595 -0.45689,-4.63747 0.009,-1.85618 0.0261,-3.71233 0.0283,-5.56854 -0.008,-1.93856 0.0103,-3.87822 -0.0568,-5.81586 0,0 9.44471,-4.81232 9.44471,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4453-8"
d="m 985.0975,196.77005 c 2.42149,0.0624 4.84453,0.0526 7.26665,0.0409 2.4885,0.003 3.61892,-0.49946 5.47555,1.45299 0.14412,0.30309 0.36594,0.58029 0.43235,0.90925 0.67253,3.33154 -2.76245,6.00701 -4.93034,7.84558 -3.87759,3.0071 -8.12712,5.49438 -11.93996,8.58437 -0.61894,0.59149 -0.94354,0.80691 -1.36547,1.4693 -0.0577,0.0905 -0.15309,0.40088 -0.12114,0.29839 0.0417,-0.13372 0.03,-0.32087 0.15044,-0.39237 0.17466,-0.10366 1.71475,-0.22905 1.81695,-0.23919 2.53705,-0.22226 5.07299,-0.45212 7.61635,-0.58878 1.84496,-0.028 3.70801,-0.20798 5.5413,0.0442 2.25137,0.54944 3.9571,1.99082 5.34012,3.7954 0.9426,1.84528 2.2075,4.12791 1.9165,6.30679 -0.063,0.47376 -0.2377,0.92591 -0.3565,1.38887 -1.163,2.75823 -3.56663,4.56879 -6.00485,6.15236 -3.48665,0.11747 -7.79094,5.4827 -12.10494,6.53741 -1.05765,0.25858 -2.1751,0.32016 -3.25605,0.40677 -2.5571,0.29677 -5.03127,-0.16059 -7.5404,-0.56695 -2.29159,-0.31751 -4.58367,-0.52382 -6.85203,-0.98323 0,0 8.6096,-5.99164 8.6096,-5.99164 l 0,0 c 2.21527,0.46522 4.46447,0.6881 6.70265,1.0175 2.49526,0.34116 4.98158,0.61124 7.49878,0.27925 1.05985,-0.127 2.08636,-0.26742 3.10196,-0.61551 3.31766,-1.1371 8.43408,-5.1838 -5.86128,3.67997 2.38943,-1.43867 4.82319,-3.01624 6.28096,-5.46639 0.14016,-0.36888 0.32431,-0.72393 0.42048,-1.10664 0.48892,-1.94548 -0.61448,-4.05816 -1.49811,-5.69911 -1.29456,-1.5725 -2.90032,-2.76514 -4.97173,-3.03253 -1.80367,-0.10019 -3.61293,0.003 -5.4169,0.0608 -2.53208,0.12859 -5.059,0.33326 -7.5808,0.59561 -0.48715,0.0283 -1.69751,0.17788 -2.20549,-0.0778 -1.84255,-0.92734 -0.37738,-2.55305 0.57739,-3.41786 3.79806,-3.1921 8.11947,-5.66902 12.07849,-8.65168 1.61816,-1.24401 5.30101,-4.02332 5.18123,-6.4564 -0.0102,-0.20778 -0.16035,-0.38392 -0.24053,-0.57589 -1.38509,-1.25815 -3.20584,-0.72879 -4.94221,-0.82527 -2.45967,-0.0121 -4.92016,-0.0199 -7.37924,0.0409 0,0 8.56022,-6.21936 8.56022,-6.21936 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4503-7"
d="m 729.92365,450.45389 c -1.1796,2.31714 -2.24352,4.68107 -3.24965,7.07942 -0.88963,1.7988 -1.78406,3.5919 -2.43735,5.49226 -0.61375,1.44885 -1.0247,2.92393 -1.23635,4.48057 -0.0979,1.77617 -0.75484,3.45675 -1.24048,5.15463 -0.45044,1.68562 -1.31294,3.203 -1.98307,4.80094 -0.31389,0.77566 -0.62024,1.55434 -0.93004,2.33165 0,0 -9.58381,4.39255 -9.58381,4.39255 l 0,0 c 0.36552,-0.75557 0.68094,-1.52692 0.94807,-2.32364 0.21662,-0.50606 0.38023,-1.03395 0.60184,-1.53784 0.46623,-1.06007 1.19103,-2.00255 1.47538,-3.15017 0.22449,-0.87189 0.43581,-1.74479 0.70969,-2.60291 0.16034,-0.50236 0.42487,-0.97447 0.52587,-1.49205 0.0573,-0.29372 0.0338,-0.59757 0.0507,-0.89636 0.12917,-1.6203 0.38072,-3.22495 1.15198,-4.67974 0.59638,-1.96928 1.43745,-3.8469 2.47154,-5.62697 1.06249,-2.29949 1.89466,-4.70387 3.13668,-6.91897 0,0 9.58904,-4.50337 9.58904,-4.50337 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4505-3"
d="m 733.3567,460.11356 c 15.64319,-8.75242 6.80366,-4.07728 3.57602,-1.70658 -1.27999,0.94015 -1.29159,1.03622 -2.36899,2.13195 -1.52712,1.70251 -2.14228,3.7896 -2.4038,6.00651 -0.0131,1.55646 -0.40563,3.28045 0.21698,4.75574 0.92717,1.10609 2.46064,1.46597 3.8242,1.72058 1.11271,0.0605 2.31451,0.45606 3.43321,0.19371 2.03351,-0.47689 14.45781,-7.84516 -5.68928,3.48446 2.93059,-1.74518 5.87391,-3.51196 8.34615,-5.87714 2.13122,-2.2984 3.21137,-5.14481 3.80198,-8.1681 0.29476,-1.79375 0.29569,-3.61546 0.28305,-5.42768 -0.0909,-1.77807 -0.87687,-1.70259 -2.41213,-1.87498 -1.87325,-0.40992 -3.77693,-0.61244 -5.68849,-0.71783 -0.87672,0.0168 -1.79256,-0.18188 -2.65775,0.0587 -0.64821,0.18026 -1.24811,0.50511 -1.8859,0.71938 0,0 8.26563,-6.41786 8.26563,-6.41786 l 0,0 c 1.59566,-0.51825 3.14078,-0.71185 4.81705,-0.47747 1.93238,0.15173 3.843,0.43862 5.74833,0.79469 1.95534,0.39802 3.00773,1.00739 3.18507,3.13271 0.0107,1.88401 0.0481,3.77704 -0.25977,5.64349 -0.5871,3.17117 -1.60909,6.23425 -3.68252,8.76852 -0.40778,0.46551 -0.77155,0.9736 -1.22334,1.39654 -1.9374,1.81373 -4.71401,3.21606 -6.92546,4.69229 -0.69427,0.39793 -8.38172,6.14522 -12.48127,6.4207 -1.19962,0.0806 -2.40503,-0.21887 -3.58549,-0.36284 -1.70707,-0.41167 -3.38972,-0.98894 -4.4048,-2.52232 -0.12399,-0.26875 -0.28621,-0.52297 -0.37197,-0.80625 -0.42685,-1.41001 0.0487,-3.01941 -0.0688,-4.456 0.22553,-2.38902 0.75771,-4.72989 2.26011,-6.66991 1.65852,-1.94425 3.08241,-2.95536 5.24023,-4.28142 0.42816,-0.26313 0.84117,-0.55015 1.26176,-0.82522 3.36127,-1.97157 6.72255,-3.94313 10.08383,-5.91469 0,0 -8.23386,6.5863 -8.23386,6.5863 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4451-4"
d="m 979.04866,532.2394 c 1.77364,0.18067 3.44913,-0.18603 5.11655,-0.73626 1.79553,-0.43031 3.63645,-0.702 5.46353,-0.99653 1.87962,-0.16237 3.79634,-0.51777 5.67852,-0.25836 1.68988,0.41652 3.16075,1.3148 4.72794,2.02619 0.2389,0.12578 0.506,0.20848 0.7166,0.37734 0.2901,0.23259 0.4978,0.55336 0.7657,0.81111 1.1707,1.12593 2.1958,2.16574 3.104,3.52631 1.0301,1.90067 1.287,4.05719 1.4398,6.17932 0.076,2.45282 0.4084,3.40741 -1.2423,5.40259 -4.6319,4.05738 -10.61,6.88796 -15.81029,9.88822 -2.13424,1.24871 -4.46284,2.09623 -6.6505,3.23665 -1.22504,0.63859 -2.41635,1.33991 -3.62638,2.00649 2.45342,-1.39919 9.78362,-5.6482 7.36026,-4.19756 -3.35843,2.01037 -6.76305,3.94286 -10.16593,5.87704 -0.38762,0.22032 -1.58728,0.81085 -1.20288,0.58496 14.71786,-8.64858 8.88234,-5.6441 6.34815,-3.30589 -1.56422,1.87083 -0.39699,2.45171 1.2934,3.55251 2.30672,1.15432 4.85971,1.51477 7.39964,1.71813 2.23676,0.13038 4.47834,0.0912 6.71754,0.0823 1.99609,-0.31705 3.91309,-0.95152 5.93089,-1.1848 1.9325,-0.16936 3.8503,-0.21038 5.7598,-0.55456 0.8213,-0.11636 1.6456,-0.20126 2.4667,-0.31826 0,0 -8.4639,6.31317 -8.4639,6.31317 l 0,0 c -0.81,0.0883 -1.6187,0.18788 -2.42211,0.3261 -1.9009,0.25901 -3.82642,0.21534 -5.72427,0.51465 -2.00662,0.36215 -3.97058,1.01849 -6.02065,1.06428 -2.25917,0.006 -4.5225,0.006 -6.77579,-0.17624 -2.65072,-0.33049 -5.29841,-0.84547 -7.66282,-2.15401 -1.13629,-0.77475 -2.78984,-1.81419 -2.8401,-3.39948 -0.0166,-0.52263 0.45886,-1.29713 0.67085,-1.71107 2.62538,-3.54359 8.54764,-5.6208 11.45845,-7.28108 0.37134,-0.21181 1.50287,-0.81505 1.13465,-0.59784 -2.50304,1.4765 -10.04933,5.84253 -7.54021,4.37638 3.42103,-1.999 6.85062,-3.98329 10.27594,-5.97494 3.41149,-1.855 6.93652,-3.46733 10.34806,-5.3198 -15.41029,8.94821 -5.16215,3.28225 -1.93421,0.65597 2.00993,-1.70763 1.64402,-2.04223 1.57814,-4.59822 -0.0797,-1.95212 -0.21689,-3.95087 -1.13917,-5.71526 -1.09521,-1.68881 -2.53112,-3.26753 -4.33789,-4.19691 -1.45134,-0.72475 -2.88087,-1.51369 -4.52411,-1.70639 -1.83112,-0.0473 -3.66388,0.16255 -5.47215,0.43436 -1.81983,0.31475 -3.65879,0.58163 -5.42657,1.12891 -1.75242,0.45755 -3.54153,0.55404 -5.3485,0.53102 0,0 8.57562,-6.23055 8.57562,-6.23055 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4455-7"
d="m 887.64176,441.19194 c -0.10994,2.51404 -0.0825,5.03149 -0.0587,7.54704 -0.013,2.43502 0.0126,4.86996 -0.01,7.30493 -0.12603,2.10801 0.12755,4.15952 0.90009,6.1262 0.85184,1.39526 2.80828,1.24354 4.25549,1.32479 2.00779,0.0584 4.01714,0.0275 6.02549,0.0159 2.19905,0.064 4.28756,-0.46741 6.33768,-1.20126 0.24336,-0.11302 0.48673,-0.22603 0.73009,-0.33905 0,0 -8.28162,6.51816 -8.28162,6.51816 l 0,0 c -0.24251,0.0838 -0.48501,0.16755 -0.72751,0.25133 -2.11892,0.64929 -4.31188,0.99827 -6.53429,0.9375 -2.02212,0.0156 -4.04661,0.0515 -6.06571,-0.0911 -1.92082,-0.17537 -3.98063,-0.37059 -4.939,-2.29595 -0.78761,-2.09391 -1.14658,-4.27361 -0.99182,-6.51242 -0.0223,-2.43172 0.004,-4.86341 -0.01,-7.29518 0.0233,-2.49556 0.0528,-4.99319 -0.0588,-7.48717 0,0 9.42775,-4.80368 9.42775,-4.80368 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4459-5"
d="m 907.73857,439.52443 c 0.66743,2.40647 1.23203,4.82549 1.57905,7.30044 0.27918,2.11014 0.39519,4.23585 0.44749,6.36215 0.0104,1.85019 0.008,3.70042 -0.0208,5.5504 -0.0132,1.94944 0.006,3.8989 0.0169,5.84831 -0.0386,1.70432 0.0623,3.41144 -0.0553,5.11271 -0.33176,1.79503 -0.8547,3.54251 -1.4116,5.27783 -0.26019,0.92364 -0.14348,0.46319 -0.35152,1.381 0,0 -9.49687,4.60155 -9.49687,4.60155 l 0,0 c 0.17964,-0.99032 0.0745,-0.49474 0.3168,-1.48646 0.52313,-1.69516 1.14286,-3.34755 1.50183,-5.09172 0.25533,-1.65455 0.0602,-3.34678 0.11623,-5.01578 0.0125,-1.95779 0.0344,-3.91558 0.0286,-5.87344 -0.0219,-1.83748 -0.003,-3.67498 -0.0166,-5.51253 -0.007,-2.10403 -0.0449,-4.21123 -0.28369,-6.30407 -0.31668,-2.40246 -0.80771,-4.76089 -1.65014,-7.03971 0,0 9.27961,-5.11068 9.27961,-5.11068 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4469-3"
d="m 652.25651,196.82971 c 2.11057,0.0572 4.22215,0.0462 6.33323,0.0367 1.81669,-0.0163 3.6334,-0.0102 5.45013,-0.0133 1.58831,-0.002 3.17662,-0.0128 4.76491,-0.003 1.61869,0.004 3.23738,-0.001 4.85607,-0.004 1.60345,-0.0835 3.25541,0.19848 4.83242,-0.14117 0,0 -8.46509,6.30932 -8.46509,6.30932 l 0,0 c -1.63174,0.0604 -3.26544,0.002 -4.89797,0.0297 -1.61527,-0.003 -3.23054,-0.008 -4.84582,-0.004 -1.58521,0.009 -3.17044,-0.001 -4.75567,-0.003 -1.80451,-0.003 -3.609,0.003 -5.41348,-0.0133 -2.1448,-0.01 -4.29002,-0.019 -6.43434,0.0367 0,0 8.57561,-6.23056 8.57561,-6.23056 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#00c580;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4473-05"
d="m 650.74136,203.85552 c -0.10311,2.18692 0.0107,4.37736 -0.11971,6.56223 -0.0687,1.14142 -0.65566,3.04023 0.83452,3.41824 1.41994,0.25226 2.87095,0.21128 4.30717,0.19865 1.7819,-0.0999 3.4187,-0.076 5.02511,0.76026 0.21088,0.17384 0.44041,0.32726 0.63264,0.52153 0.13565,0.13708 0.73368,0.94129 0.89623,1.12356 0.46496,0.52138 1.02006,0.98941 1.52772,1.46714 1.52847,0.94294 2.37243,2.55322 3.61193,3.78244 1.06012,1.07403 1.58547,2.52903 1.52249,4.02314 -0.16517,0.57503 -0.41558,1.19451 -0.82435,1.64868 -2.68319,2.98114 -10.89089,6.70464 -11.55588,7.08732 -2.73804,1.08582 -5.57873,1.83026 -8.46868,2.37136 -2.44653,0.3998 -4.84861,0.97903 -7.2678,1.5063 -1.71752,0.34074 -3.47631,0.39078 -5.22194,0.43011 -1.57989,0.0302 -3.15991,-0.009 -4.7398,0.0149 -4.01377,0.13214 -2.61441,1.16875 8.3587,-6.24649 0.20983,-0.1418 1.30257,0.0249 1.54126,0.027 0.22568,0.001 0.45136,0.002 0.67703,0.003 0,0 -8.54483,6.20879 -8.54483,6.20879 l 0,0 c -0.22886,0.001 -0.45771,0.003 -0.68656,0.004 -0.38277,0.004 -0.80363,0.006 -1.18805,0.0162 -0.1415,0.004 -0.53594,0.1021 -0.42436,0.015 10.38878,-8.10839 4.90183,-6.42371 8.81838,-6.23752 1.56406,0.0335 3.12892,0.008 4.69285,-0.0225 1.70416,-0.0621 3.41161,-0.17205 5.07692,-0.5667 2.38919,-0.52761 4.79434,-0.95648 7.19606,-1.42299 2.85398,-0.5874 5.67891,-1.37606 8.31795,-2.63326 -2.60848,1.54052 -5.21696,3.08104 -7.82544,4.62155 0.28297,-0.19063 0.58175,-0.35969 0.84892,-0.57191 0.2158,-0.17141 0.37778,-0.40432 0.59449,-0.57458 0.13177,-0.10353 0.31944,-0.12533 0.4419,-0.23972 0.2548,-0.23801 0.32045,-0.64024 0.64596,-0.82275 0.54245,-1.10828 -0.24039,-2.33511 -0.99505,-3.1498 -1.15626,-1.28227 -2.05253,-2.78711 -3.55115,-3.73615 -0.5683,-0.51075 -1.16181,-1.0009 -1.65803,-1.58505 -0.14519,-0.17091 -0.55614,-0.74049 -0.74194,-0.90322 -0.14922,-0.1307 -0.32894,-0.22179 -0.49342,-0.33269 -1.53646,-0.57905 -3.1552,-0.39735 -4.77014,-0.38907 -1.55005,-0.0131 -3.15062,0.0123 -4.61027,-0.58121 -1.76689,-1.16152 -1.64865,-2.61052 -1.35975,-4.5545 0.2008,-2.13856 0.0932,-4.29298 0.0512,-6.43795 0,0 9.42774,-4.80368 9.42774,-4.80368 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4479-4"
d="m 626.88786,458.88514 c -0.37969,0.16161 -0.76723,0.30587 -1.13906,0.48483 -0.48845,0.23509 -0.96454,0.49536 -1.43968,0.75631 -0.51474,0.28268 -2.04052,1.16368 -1.5295,0.87433 12.95913,-7.33799 7.99374,-5.15846 5.35663,-2.32519 -1.88381,2.00431 -3.27546,4.02462 -4.12761,6.64245 -0.43998,1.86854 -0.66855,3.78483 -0.93224,5.68627 -0.23861,1.82353 -0.30863,3.66235 -0.36416,5.4987 -5.8e-4,2.07762 -0.42583,3.28115 1.33831,4.69895 2.54434,1.52998 5.36192,2.08619 8.25955,2.54452 2.71715,0.27723 5.48369,0.72334 8.21657,0.43519 1.32776,-0.22672 2.42604,-0.96121 3.56114,-1.62843 0.42969,-0.25258 1.73304,-0.9854 1.2953,-0.74703 -7.90373,4.30406 -9.64381,6.16182 -6.41885,3.06687 1.54415,-1.61133 2.43787,-3.53525 2.83431,-5.70306 -0.004,-1.16644 0.67934,-3.10267 -0.38309,-3.96459 -1.41864,-0.91904 -3.25463,-1.09168 -4.90651,-0.99873 -0.28362,0.0734 -0.58241,0.1029 -0.85086,0.2202 -0.27376,0.11962 -1.01653,0.62755 -0.75574,0.48181 2.68347,-1.49962 5.32798,-3.0689 8.02494,-4.54411 0.36553,-0.19993 -0.69491,0.46106 -1.02502,0.71524 -0.95712,0.73698 -1.05496,0.8982 -1.87994,1.74978 -1.28893,1.48044 -1.97555,3.34413 -2.80129,5.10055 -0.0622,0.16807 -0.12444,0.33613 -0.18665,0.5042 0,0 -9.57775,4.49843 -9.57775,4.49843 l 0,0 c 0.0632,-0.20871 0.12649,-0.41742 0.18974,-0.62613 0.36223,-0.83052 0.85875,-1.60197 1.21606,-2.42837 0.45268,-1.04695 0.72712,-2.14324 1.54429,-3.00889 0.81185,-0.96012 1.67455,-2.05612 2.77265,-2.71444 3.40066,-2.03872 7.369,-5.81087 11.82628,-6.11437 1.9126,0.12167 3.93488,0.37184 5.44466,1.66157 0.1755,0.2103 0.38748,0.39491 0.5265,0.63091 0.72496,1.23066 0.23338,2.87839 0.25263,4.20487 -0.27609,2.37344 -1.13765,4.51731 -2.70111,6.35818 -3.74597,4.11345 -0.76577,1.06384 -11.21395,7.43681 -1.61619,0.98581 -3.3215,1.86657 -5.23238,2.06071 -2.74218,0.0421 -5.47111,-0.35158 -8.1785,-0.7493 -3.06361,-0.53746 -6.17239,-1.09162 -8.78548,-2.89495 -1.85861,-1.77842 -1.87272,-3.04077 -1.76578,-5.49862 0.0114,-1.8733 0.0821,-3.74567 0.31784,-5.60623 0.23938,-1.96205 0.50515,-3.92357 0.89298,-5.86103 0.8098,-2.8279 1.92829,-4.90801 3.99815,-7.04018 3.99278,-5.3107 10.91681,-7.24551 16.53685,-10.50049 0,0 -8.21023,6.64246 -8.21023,6.64246 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4483-4"
d="m 807.58256,285.65172 c 2.05741,0.0555 4.11634,0.0398 6.17437,0.0361 1.78006,-0.004 3.56009,-0.0216 5.34015,-0.0139 1.6324,0.002 3.2648,-0.003 4.89719,-0.006 1.64744,0.0109 3.29493,0.004 4.94238,0.001 5.60386,-0.53879 -5.8915,4.51091 -8.87314,6.85521 16.17673,-9.64054 5.67105,-3.34493 2.24856,-0.58132 -2.18071,1.7203 -3.75556,3.92144 -5.22545,6.24081 -1.32735,2.18914 -2.50666,4.48323 -3.29991,6.92135 -0.50362,1.61975 -0.48198,3.32394 -0.84292,4.97009 -0.43966,1.29584 -0.67799,2.66401 -1.43147,3.82314 0,0 -9.70964,4.22765 -9.70964,4.22765 l 0,0 c 0.21537,-0.29166 0.4931,-0.53586 0.69299,-0.83833 0.5268,-0.79713 0.4687,-1.85878 0.93094,-2.69133 0.58576,-1.61717 0.37235,-3.36937 0.88329,-5.01628 0.75273,-2.54215 1.95599,-4.90199 3.26915,-7.19772 1.44726,-2.39819 2.9068,-4.74932 5.11141,-6.5444 4.58683,-4.10536 10.41002,-6.7723 15.58715,-9.90944 5.45691,-1.84945 -3.99806,6.68159 -7.86796,5.9358 -1.64872,-0.003 -3.29748,-0.009 -4.94619,0.001 -1.62695,-0.003 -3.25391,-0.008 -4.88087,-0.006 -1.76727,0.008 -3.53451,-0.01 -5.30178,-0.0139 -2.09122,-0.004 -4.18323,-0.0183 -6.27387,0.0361 0,0 8.57562,-6.23055 8.57562,-6.23055 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4493-8"
d="m 978.04218,373.28336 c -1.477,1.95518 -2.70355,4.06802 -3.64845,6.32606 -0.66358,1.887 -1.1181,4.12045 0.13876,5.89107 0.30384,0.42803 0.70975,0.77355 1.06462,1.16033 0.44864,0.45899 0.86988,0.94646 1.34591,1.37697 0.48748,0.44087 1.07143,0.77069 1.53928,1.23233 1.6494,1.6275 2.46556,3.69526 2.94203,5.90599 0.65635,3.5956 -0.90344,5.61913 -3.61762,7.76347 -9.09605,5.66559 -10.14623,6.72908 -18.9295,7.13914 -2.58356,-0.0829 -5.24032,0.85097 -7.71523,-0.14869 -0.13325,-0.37371 -0.46218,-0.72931 -0.39975,-1.12112 0.21551,-1.35258 1.82165,-2.79617 2.81049,-3.41338 3.77088,-2.35369 7.6755,-4.48644 11.53993,-6.68317 1.05307,-0.59862 6.47605,-3.42327 7.39436,-3.90377 1.34933,-0.77515 5.46131,-2.97668 4.048,-2.32545 -1.48566,0.68458 -2.69172,1.98104 -4.26588,2.42584 -1.34065,0.37883 2.39178,-1.43272 3.54055,-2.22088 2.96501,-2.03426 5.61643,-4.37113 8.16551,-6.89043 2.35989,-2.54453 4.22815,-5.50276 5.23775,-8.82875 0.70394,-2.78444 -0.67684,-2.71921 -3.09747,-3.62385 -4.34055,-1.49732 -8.91843,-2.04869 -13.4743,-2.38362 -3.30456,-0.20157 -6.61644,-0.2068 -9.92564,-0.17725 -0.99936,0.23083 -2.18859,-0.23078 -3.17677,0.033 -0.31521,0.0841 -1.13307,0.64737 -0.84849,0.48783 8.36371,-4.68863 10.53218,-6.50505 7.28654,-3.89713 -1.04232,1.31383 -0.55086,0.60496 -1.45673,2.13875 0,0 -9.49397,4.25553 -9.49397,4.25553 l 0,0 c 0.82586,-1.64836 0.39862,-0.85287 1.27638,-2.38933 2.87039,-3.48361 7.19846,-6.31192 11.72136,-6.76636 1.033,-0.1038 2.09295,0.0818 3.1274,0.0102 3.27596,0.0368 6.55515,0.0779 9.82143,0.35795 4.63069,0.44015 9.25684,1.11389 13.69114,2.575 2.7151,1.01374 4.76492,1.60799 4.00877,4.89067 -0.98946,3.5713 -2.98167,6.74624 -5.45546,9.48816 -2.57199,2.61168 -5.28679,5.07139 -8.29783,7.18299 -1.16723,0.81857 -2.38998,1.55656 -3.6168,2.28277 -7.09984,4.20275 -10.34681,6.02959 -16.3959,9.46477 -1.32139,0.70169 -2.64677,1.39589 -3.96416,2.10506 -1.20342,0.64782 -4.72124,2.74466 -3.59815,1.96583 1.79785,-1.24672 3.68505,-2.37176 5.62954,-3.37452 0.69888,-0.3604 -1.25535,0.94759 -1.87128,1.43642 -0.34365,0.27274 -0.66382,0.57418 -1.00679,0.84776 -0.0685,0.0547 -0.15033,0.0901 -0.2255,0.13523 2.38829,0.61467 4.88552,-0.18024 7.3124,-0.0527 1.76321,-0.10568 3.52512,-0.2045 5.25756,-0.58021 3.63034,-0.7873 9.5683,-4.61834 -4.2664,3.33773 0.48492,-0.28955 1.00732,-0.52402 1.45476,-0.86866 1.88128,-1.44906 2.97138,-3.41665 2.57975,-5.78024 -0.28437,-2.00444 -0.95945,-3.8835 -2.43961,-5.34642 -0.49317,-0.48742 -1.09391,-0.85403 -1.61094,-1.31606 -0.49116,-0.43891 -0.94033,-0.92266 -1.41049,-1.38398 -0.42332,-0.45508 -0.90303,-0.86358 -1.26997,-1.36522 -1.45403,-1.98785 -1.22706,-4.45727 -0.56173,-6.67589 0.87704,-2.28555 1.98518,-4.46589 3.41653,-6.45996 0,0 9.69006,-4.23973 9.69006,-4.23973 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#0080ca;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4501-3"
d="m 979.61008,278.48728 c -2.07648,-0.11622 -4.13061,-0.017 -6.1924,0.2118 -0.33477,0.0837 -0.6701,0.16512 -1.0043,0.25102 -0.55874,0.1436 -1.25428,0.29606 -1.76946,0.5805 -0.26868,0.14835 -1.01385,0.68923 -0.7454,0.54048 7.86522,-4.35813 10.76003,-6.62623 7.34559,-4.02118 -4.33005,4.45027 -10.26688,5.4089 -15.3579,8.274 21.21038,-11.1883 7.68828,-6.10093 7.06273,-3.21709 -0.10319,0.47573 0.12891,0.60633 0.39351,0.99956 2.06317,1.72182 4.70381,2.39652 7.30162,2.80712 3.02355,0.46771 5.98648,0.28832 8.95195,-0.38757 0.48614,-0.1563 0.99296,-0.25891 1.45844,-0.4689 0.45753,-0.2064 1.73147,-1.01597 1.29271,-0.7722 -2.56488,1.42502 -5.07781,2.94459 -7.67162,4.31625 -0.40472,0.21403 0.73951,-0.54114 1.08998,-0.83573 0.82897,-0.6968 0.90899,-0.84972 1.58575,-1.63609 1.1182,-1.40365 1.35471,-3.08482 1.46384,-4.81598 0.0379,-3.71485 -2.38475,0.50757 9.1243,-5.29433 0.12131,-0.0611 -0.24606,0.13162 -0.33123,0.23745 -0.11442,0.14217 -0.16755,0.32427 -0.25132,0.48641 -0.48363,1.37048 -0.52287,2.8383 -0.58782,4.27524 0.0767,2.40141 -0.98785,4.53711 -1.96768,6.6574 -1.76684,3.33749 -3.24935,6.81736 -4.61593,10.3351 -1.12599,2.91689 -1.59015,6.00635 -2.12382,9.06797 -0.10553,1.28031 -0.57672,2.59911 -0.42329,3.89711 0.0568,0.48058 0.28895,0.92851 0.47562,1.36343 0.34276,0.85044 0.90489,1.57121 1.30656,2.39188 0,0 -9.23117,5.19914 -9.23117,5.19914 l 0,0 c -0.33016,-0.85752 -0.94323,-1.5582 -1.25539,-2.42839 -0.21421,-0.48618 -0.56675,-1.21482 -0.6597,-1.73655 -0.2424,-1.36062 0.27243,-2.77914 0.4067,-4.11772 0.59446,-3.13628 1.08592,-6.30472 2.1979,-9.31355 1.31105,-3.51876 2.74118,-7.01293 4.48292,-10.3417 0.87496,-1.99378 2.05427,-3.98117 2.01203,-6.22049 0.0179,-1.52423 0.0784,-3.05694 0.39518,-4.55312 0.0509,-0.21281 0.10238,-0.42549 0.1528,-0.63842 0.047,-0.19863 -0.037,-0.49385 0.13956,-0.59625 0.74804,-0.4338 10.47012,-9.00376 10.15763,-3.40041 -0.0793,1.88441 -0.19935,3.78897 -1.24481,5.42553 -0.72655,1.00397 -1.55235,2.13218 -2.62918,2.79676 -4.1452,2.55827 -8.19946,5.76891 -13.00559,6.97899 -3.05773,0.56493 -6.15171,0.60912 -9.22887,0.0992 -2.82778,-0.57048 -5.63995,-1.49417 -7.83174,-3.44951 -0.4688,-0.67393 -0.81637,-0.94804 -0.86624,-1.78119 -0.26632,-4.44914 12.91557,-7.31746 10.65749,-7.89399 3.78886,-1.79072 13.36066,-6.23199 -2.55477,2.18393 4.19161,-3.37849 8.89456,-6.72575 14.30101,-7.48025 2.11542,-0.20643 4.23075,-0.16196 6.35402,-0.19498 0,0 -8.56021,6.21936 -8.56021,6.21936 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4507-3"
d="m 719.60794,285.53515 c 0.16281,2.47024 -0.8274,4.66861 -1.80409,6.87551 -0.97043,2.42011 -1.85422,4.8738 -2.80154,7.30366 -0.88271,2.5037 -1.64548,5.05756 -2.33524,7.62216 -0.31395,1.25558 -0.51218,2.53453 -0.75817,3.80417 0,0 -9.40359,4.54752 -9.40359,4.54752 l 0,0 c 0.29404,-1.28534 0.50487,-2.58132 0.77822,-3.87128 0.6687,-2.58859 1.43198,-5.14846 2.2364,-7.69661 0.91246,-2.46956 1.99936,-4.87468 2.81216,-7.38198 0.62719,-1.34404 1.64802,-3.23545 1.87197,-4.69467 0.0206,-0.13429 -0.0337,-1.4976 -0.0408,-1.69616 0,0 9.44471,-4.81232 9.44471,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4511-1"
d="m 742.30057,290.74094 c -1.79138,1.65733 -3.06683,3.65606 -4.10229,5.84456 -0.92969,2.22492 -1.81788,4.43808 -2.51375,6.74705 -0.58581,1.59677 -0.90553,3.24419 -1.04196,4.93378 -0.0718,1.17125 -0.0517,2.34359 -0.12969,3.51412 0,0 -9.45166,4.67538 -9.45166,4.67538 l 0,0 c 0.20547,-1.1516 0.12894,-2.31497 0.19256,-3.48134 0.0858,-1.77525 0.25993,-3.5188 0.94721,-5.18247 0.39306,-1.10678 0.62694,-2.26371 1.05336,-3.35778 0.21555,-0.55302 0.81821,-1.69053 1.03586,-2.22614 0.17201,-0.42328 0.30225,-0.86235 0.45337,-1.29353 0.5294,-1.26612 1.08541,-2.64379 1.84975,-3.7924 0.55087,-0.82784 1.39292,-1.46147 1.90803,-2.32226 0,0 9.79921,-4.05897 9.79921,-4.05897 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4507-5-1"
d="m 722.06306,281.06856 c 0.16281,2.47024 -0.8274,4.66861 -1.80409,6.87551 -0.97043,2.42011 -1.85422,4.8738 -2.80154,7.30366 -0.88271,2.5037 -1.64547,5.05756 -2.33524,7.62216 -0.31395,1.25558 -0.51218,2.53453 -0.75816,3.80417 0,0 -9.4036,4.54752 -9.4036,4.54752 l 0,0 c 0.29404,-1.28534 0.50488,-2.58132 0.77822,-3.87128 0.6687,-2.58859 1.43198,-5.14846 2.2364,-7.69661 0.91246,-2.46956 1.99936,-4.87468 2.81216,-7.38198 0.62719,-1.34404 1.64802,-3.23545 1.87197,-4.69467 0.0206,-0.13429 -0.0337,-1.4976 -0.0408,-1.69616 0,0 9.44471,-4.81232 9.44471,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4513-4"
d="m 800.88968,363.40338 c -0.0577,2.21364 -0.009,4.41735 -0.32104,6.6137 -0.55334,3.31498 -1.83792,6.3712 -3.19391,9.41922 -1.19001,2.3765 -2.22772,4.81809 -3.1423,7.31177 0,0 -9.36785,4.36144 -9.36785,4.36144 l 0,0 c 0.94253,-2.51545 1.98449,-4.99131 3.18286,-7.39728 1.28383,-2.96003 2.59455,-5.90397 3.14091,-9.11064 0.41364,-2.11364 0.352,-4.2409 0.25661,-6.38589 0,0 9.44472,-4.81232 9.44472,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4517-1"
d="m 820.20083,362.02627 c 2.28154,-0.29212 4.58337,-0.36084 6.87971,-0.44194 2.37843,0.49709 4.78002,1.06984 6.90541,2.28137 1.14562,0.89942 1.92314,2.18869 1.57219,3.69561 -0.10527,0.45203 -0.33819,0.86446 -0.50729,1.29668 -1.98495,2.94671 -5.32381,4.47579 -8.19955,6.40642 -2.34748,1.69559 -4.88011,3.14376 -7.12801,4.97367 -1.10168,1.18819 -2.10119,2.59429 -2.62178,4.14503 -0.003,0.0454 -0.0907,0.41541 0.0925,0.45167 0.15967,0.0316 0.3253,-0.0356 0.48771,-0.0246 1.10845,0.0748 2.20562,0.21624 3.31977,0.26642 3.34478,0.29751 6.29939,-1.3115 9.12435,-2.88453 1.05118,-0.62792 2.16779,-1.11008 3.30684,-1.54801 0,0 -8.23427,6.48959 -8.23427,6.48959 l 0,0 c -1.07214,0.47479 -2.12753,0.98182 -3.1498,1.55844 -2.97518,1.54024 -6.08993,2.80737 -9.51538,2.46765 -1.42944,-0.0894 -3.35789,0.0358 -4.52101,-0.98649 -0.36072,-0.31706 -0.369,-0.78226 -0.44434,-1.20414 0.28515,-1.79135 1.48029,-3.30089 2.47837,-4.76496 2.05068,-2.15377 4.90994,-3.36069 7.23948,-5.18345 1.57662,-1.10034 1.59512,-1.14302 3.20949,-2.15326 1.78252,-1.11547 3.66702,-2.06166 5.0582,-3.69349 0.94102,-1.58066 1.19448,-2.36913 -0.38466,-3.55709 -2.00623,-1.06164 -4.23087,-1.71261 -6.49663,-1.87525 -2.32265,0.0919 -4.6547,0.21004 -6.94156,0.65503 0,0 8.4703,-6.37037 8.4703,-6.37037 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4519-5"
d="m 718.43658,203.08658 c -0.0715,1.84713 -0.0366,3.69619 -0.0449,5.54421 0.002,2.1314 -0.0146,4.2624 -0.0232,6.39366 -0.003,2.69709 -0.0243,5.3939 -0.0228,8.091 -0.0957,2.44096 -0.86891,4.7592 -1.49119,7.09739 -0.11729,0.40663 -0.7374,3.05862 0.0129,3.14275 -0.34356,-4.33928 -11.38412,7.91207 -8.89012,4.38857 0,0 9.59758,-4.55208 9.59758,-4.55208 l 0,0 c -0.30752,3.92911 -6.9246,8.72321 -9.78519,5.73336 -0.92819,-1.26248 -0.81209,-2.73999 -0.41573,-4.18804 0.60828,-2.29501 1.49962,-4.515 1.70867,-6.90217 0.002,-2.68937 -0.02,-5.37845 -0.0228,-8.06779 -0.009,-2.1234 -0.0255,-4.24653 -0.0231,-6.37007 -0.008,-1.83277 0.0271,-3.66663 -0.0449,-5.49847 0,0 9.44471,-4.81232 9.44471,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4523-7"
d="m 740.82349,198.18445 c 2.33168,1.30008 4.98011,1.7125 7.59089,2.04721 0.95903,0.17857 3.17398,0.5962 3.16339,2.01184 -0.01,1.31442 -0.80726,1.67632 -1.67808,2.51845 -4.19363,2.91724 -8.66801,5.40113 -12.96307,8.16556 0.3527,0.30256 -2.4778,1.12493 -1.91696,1.83965 0.83379,1.06257 2.57212,1.58264 3.72846,2.13837 2.2084,1.08079 4.39426,2.22274 6.02915,4.0887 1.08668,1.79095 1.30076,3.85456 1.42492,5.89874 0.0335,1.08822 0.19219,2.25956 -0.38975,3.25857 -0.50721,0.87072 -1.34088,1.49031 -2.19787,1.97131 -3.4723,1.94885 -6.98737,3.8205 -10.48105,5.73075 -4.16559,1.17938 -8.51318,1.35588 -12.81269,1.52296 -2.80571,0.0618 -1.40639,0.0389 -4.19796,0.0688 0,0 8.28495,-6.03515 8.28495,-6.03515 l 0,0 c 2.77535,-0.0394 1.38552,-0.0116 4.16949,-0.0836 4.2684,-0.17979 8.61306,-0.40162 12.66714,-1.87417 -2.44085,1.46763 -4.90437,2.89817 -7.32253,4.40288 -0.40953,0.25484 0.87311,-0.41239 1.29249,-0.65066 1.66798,-0.94766 1.80307,-1.67075 1.67523,-3.49963 -0.0961,-1.80028 -0.17603,-3.67745 -1.12879,-5.26459 -1.52862,-1.72993 -3.57345,-2.82982 -5.61759,-3.85652 -1.27995,-0.62151 -5.03725,-2.04167 -4.76238,-3.9855 0.11159,-0.78916 1.59382,-1.64434 2.01653,-1.95358 4.24707,-2.76256 8.6584,-5.2611 12.92124,-7.99891 0.41998,-0.31421 0.82125,-0.65513 1.25995,-0.94261 0.22536,-0.14768 0.52079,-0.18185 0.72471,-0.35794 0.6435,-0.55569 -2.47751,-1.14045 -2.39914,-1.11697 -2.75071,-0.44899 -5.51221,-0.99727 -7.98821,-2.34065 0,0 8.90753,-5.70339 8.90753,-5.70339 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4525-9"
d="m 715.58922,526.10262 c -0.10397,2.35634 -0.0645,4.71592 -0.0806,7.0738 0.009,2.47055 -0.0599,4.93384 0.24609,7.38857 0.26661,2.98076 0.99094,5.8638 1.75517,8.74545 0,0 -9.17451,4.96298 -9.17451,4.96298 l 0,0 c -0.69731,-2.93299 -1.44371,-5.84742 -1.77864,-8.85225 -0.41699,-2.49551 -0.38787,-4.9895 -0.33155,-7.5146 -0.0161,-2.33048 0.0244,-4.66277 -0.0806,-6.99163 0,0 9.44471,-4.81232 9.44471,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4527-6"
d="m 735.51177,524.05325 c -0.78404,1.85216 -1.05989,3.87148 -1.42753,5.83664 -0.2411,1.99438 -0.79737,4.05455 -0.39134,6.05755 1.11266,1.57981 3.11126,2.1183 4.87449,2.6253 2.2178,0.30935 4.5672,0.86801 6.8207,0.53551 0.44561,-0.0657 0.87324,-0.22143 1.30986,-0.33214 4.79282,-2.66137 -4.27526,2.48765 -6.48682,3.59092 -0.39191,0.19551 0.66222,-0.57609 0.95898,-0.8982 0.77339,-0.83944 1.22345,-1.76398 1.64204,-2.80703 0.27697,-0.89212 0.50536,-1.81117 0.0888,-2.68577 0,0 9.24346,-5.19543 9.24346,-5.19543 l 0,0 c 0.46488,1.14158 0.51076,2.24199 0.15074,3.43879 -1.77956,6.04633 -8.17792,8.86639 -13.89877,10.8316 -2.83371,0.37888 -5.67842,0.0654 -8.45347,-0.60123 -2.10134,-0.70197 -4.40685,-1.46052 -5.53667,-3.51933 -0.48439,-2.1459 0.003,-4.31881 0.30084,-6.46485 0.32308,-1.99596 0.6248,-4.00981 1.17316,-5.95787 0,0 9.63157,-4.45446 9.63157,-4.45446 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4533-6"
d="m 752.0178,522.53119 c -0.12274,1.22579 0.077,2.47907 -0.10859,3.70006 -0.12314,0.80996 -0.37766,1.5417 -0.61589,2.32089 -0.64016,1.80027 -1.07815,3.64892 -1.31518,5.54213 -0.0965,1.88529 -0.192,3.75494 -0.45134,5.62631 -0.24276,1.71008 -0.30862,3.43606 -0.38227,5.15934 -0.0453,1.8143 -0.0277,3.62941 -0.0184,5.44405 -10e-4,1.65547 -9.5e-4,3.31093 0.005,4.96643 0.003,0.98581 -0.0249,0.52174 0.0676,1.39313 0,0 -9.34998,4.91325 -9.34998,4.91325 l 0,0 c -0.14324,-0.99876 -0.10686,-0.49116 -0.10416,-1.52314 0.004,-1.65573 0.002,-3.3114 -0.003,-4.96709 0.007,-1.82623 0.0197,-3.65241 0.0324,-5.4786 0.004,-1.75807 0.11067,-3.51407 0.3282,-5.25933 0.23182,-1.86431 0.50346,-3.70862 0.45708,-5.59637 0.16233,-1.97483 0.60015,-3.89977 1.27806,-5.76435 0.0778,-0.2336 0.61214,-1.81076 0.67368,-2.09313 0.25477,-1.16888 0.0449,-2.39032 0.0623,-3.57126 0,0 9.44472,-4.81232 9.44472,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4535-7"
d="m 972.68515,444.24055 c -0.0619,2.2506 10e-4,4.48235 -0.33529,6.71336 -0.97494,3.28234 -1.6938,6.62587 -2.40481,9.97284 -0.50237,2.39638 -0.73607,4.83133 -0.83669,7.2738 -0.0469,1.17135 -0.0615,2.34386 -0.0283,3.51563 0,0 -9.40908,4.79234 -9.40908,4.79234 l 0,0 c 0.0362,-1.19502 0.0299,-2.39068 0.0643,-3.58582 0.1254,-2.51431 0.35959,-5.02396 0.89514,-7.48861 0.67924,-3.31967 1.40894,-6.64326 2.36766,-9.89352 0.33797,-2.15422 0.37935,-4.31002 0.24236,-6.4877 0,0 9.44471,-4.81232 9.44471,-4.81232 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4537-0"
d="m 989.22665,444.78035 c 1.81491,0.68803 3.7777,0.85468 5.69772,1.00935 2.14723,0.33459 4.13521,-0.33877 6.16803,-0.92696 2.2999,-0.63647 4.6684,-0.92821 7.0466,-1.03185 1.6523,-0.0718 3.3063,-0.0656 4.9595,-0.10028 0,0 -8.5385,6.20702 -8.5385,6.20702 l 0,0 c -1.6145,-0.0273 -3.2304,0.003 -4.84264,0.093 -2.33119,0.19145 -4.64926,0.50927 -6.89444,1.19386 -2.12908,0.58185 -4.22551,1.03619 -6.43955,0.64682 -2.01821,-0.22407 -4.05491,-0.48468 -5.97288,-1.18459 0,0 8.81616,-5.90633 8.81616,-5.90633 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#d18080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4543-1"
d="m 990.96915,451.72377 c -1.35747,1.51679 -2.26897,3.31104 -2.85874,5.24411 -0.51374,1.45876 -0.85595,2.94818 -1.03355,4.48246 0.003,0.19601 -0.0409,0.76819 0.12396,0.97727 0.29406,0.37297 2.21837,0.50136 2.65997,0.54981 1.85119,-0.18743 3.63721,-0.77156 5.47452,-1.08635 1.72703,-0.27609 3.43037,-0.38211 5.11899,0.1082 2.0091,1.02994 2.7841,3.21425 3.2975,5.27821 0.2758,1.45067 0.9285,2.96516 0.7891,4.47178 -0.032,0.3462 -0.1509,0.67879 -0.2263,1.01818 -0.2625,0.35026 -0.4711,0.74848 -0.7876,1.05079 -0.3462,0.33062 -0.7602,0.58716 -1.176,0.82438 -8.22524,4.69265 -9.19873,6.01066 -16.60453,7.31471 -3.82188,0.53391 -7.6827,0.72565 -11.53717,0.83322 -1.63315,0.16544 -3.25695,-0.0944 -4.88074,-0.10484 0,0 8.57074,-6.1587 8.57074,-6.1587 l 0,0 c 1.57076,0.15601 3.14445,0.14125 4.7218,0.12507 3.77142,-0.0516 7.5548,-0.20203 11.2769,-0.85963 1.78204,-0.37916 2.45865,-0.46912 4.16976,-1.03991 0.64286,-0.21444 2.46354,-1.0997 1.90002,-0.72327 -2.36178,1.57775 -4.91001,2.85795 -7.32747,4.34898 -0.38422,0.23698 0.82551,-0.36788 1.22218,-0.58337 0.32005,-0.17387 0.61622,-0.38847 0.92434,-0.58271 0.12909,-0.22534 0.31822,-0.42568 0.38729,-0.67603 0.34636,-1.2554 -0.49361,-3.03476 -0.67318,-4.27924 -0.35468,-1.70249 -0.86264,-3.66136 -2.69748,-4.26329 -1.62356,-0.25488 -3.25503,-0.0522 -4.865,0.23522 -1.8691,0.36979 -3.74134,1.00169 -5.66577,0.80309 -1.74816,-0.30645 -3.65806,-0.75126 -3.64107,-2.88892 0.14008,-1.58577 0.36112,-3.1826 0.98717,-4.65993 0.51943,-2.03378 1.36287,-3.93715 2.62609,-5.62769 0,0 9.72427,-4.1316 9.72427,-4.1316 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4545-3"
d="m 886.82049,192.36811 c -1.10417,1.61118 -2.1497,3.26565 -3.22934,4.89924 -1.11606,1.86497 -1.29901,4.02667 -1.61654,6.12431 -0.1803,2.41032 -1.20511,4.58911 -1.9747,6.84248 -0.57956,1.75874 -0.75901,3.60145 -0.84847,5.43988 -0.0522,1.61361 -0.0471,3.22819 -0.038,4.84239 0.0631,1.10556 -0.0693,2.18996 -0.4263,3.23595 0,0 -9.60459,4.5193 -9.60459,4.5193 l 0,0 c 0.30539,-0.98169 0.81904,-1.88064 0.64946,-2.97074 -0.003,-1.62914 -0.0317,-3.25873 0.0127,-4.88747 0.0812,-1.93004 0.25551,-3.86124 0.77565,-5.73 0.73311,-2.21878 1.89097,-4.31424 2.03862,-6.68106 0.36973,-2.18662 0.49434,-4.44938 1.44814,-6.49167 0.50142,-0.90447 1.11459,-1.62602 1.68909,-2.47464 0.68794,-1.01622 0.37719,-0.72771 0.95372,-1.81201 0.1278,-0.24037 0.2866,-0.46293 0.42991,-0.6944 0,0 9.74062,-4.16156 9.74062,-4.16156 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4553-1"
d="m 916.16824,190.8721 c -2.61623,3.08098 -5.55735,5.85703 -8.12141,8.98458 -2.76771,3.63655 -4.77848,7.76468 -6.78797,11.84855 -1.06905,2.37379 -2.1091,4.75307 -2.58876,7.32081 -0.21635,1.91344 0.69268,3.73162 2.2952,4.76096 2.5033,0.87504 5.15964,0.83365 7.73331,0.3668 1.6357,-0.53499 3.35911,-0.79398 4.9458,-1.48238 0.46078,-0.19991 0.89445,-0.45784 1.33202,-0.70444 0.42416,-0.23906 1.67641,-0.99103 1.25222,-0.75201 -2.5819,1.45479 -5.15051,2.93306 -7.72576,4.39958 1.55475,-1.0305 2.80948,-2.32771 3.13952,-4.20326 -0.0301,-1.76837 -1.32573,-1.78783 -2.76332,-2.02053 -1.97014,-0.21152 -3.95559,-0.18506 -5.93403,-0.17002 -0.28653,0.0451 -0.58381,0.0453 -0.85959,0.13514 -0.27203,0.0886 -0.50856,0.26226 -0.76283,0.39339 2.78018,-1.56316 5.54385,-3.15607 8.34055,-4.68949 0.21953,-0.12037 -0.41881,0.27813 -0.60342,0.44724 -0.44406,0.40676 -0.50895,0.61027 -0.80096,1.12046 -0.53353,1.3433 -0.70969,2.82274 -0.36653,4.23015 0.24594,0.54067 0.57882,1.00154 0.97569,1.43683 0,0 -9.05998,5.45414 -9.05998,5.45414 l 0,0 c -0.46653,-0.57566 -0.88224,-1.16779 -1.18336,-1.85154 -0.47847,-1.60119 -0.37066,-3.26768 0.0409,-4.88113 1.73266,-4.90855 7.7354,-7.6418 12.77755,-7.97002 2.02447,0.0135 4.06413,-0.002 6.06605,0.33994 2.00277,0.49771 3.2957,1.11249 3.57615,3.33869 -0.11179,2.16322 -1.14347,3.81793 -2.88825,5.1087 -1.46385,0.8614 -8.78742,5.76434 -12.72805,7.18477 -1.63297,0.58862 -3.34805,0.93795 -5.03379,1.33104 -2.80586,0.34519 -5.76195,0.37508 -8.34653,-0.93356 -1.73315,-1.4008 -2.9259,-3.52385 -2.82192,-5.79649 0.11276,-0.72712 0.22656,-1.59641 0.42323,-2.30631 0.5171,-1.86645 1.52372,-3.56005 2.20771,-5.36175 2.50533,-5.16497 -0.88116,1.72891 1.89333,-3.62279 1.5034,-2.8999 2.92233,-5.87099 4.92226,-8.47896 0.51395,-0.67037 0.99978,-1.36326 1.54183,-2.01112 1.66743,-1.9929 1.47782,-1.50237 3.18019,-3.34107 1.01913,-1.10074 1.88292,-2.35634 3.03914,-3.32846 0,0 9.6938,-4.29644 9.6938,-4.29644 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4557-7"
d="m 888.09402,533.20604 c -3.2e-4,2.37984 -0.0187,4.70084 -0.69278,6.99616 -1.18229,2.77982 -2.02226,5.6662 -2.55082,8.63587 -0.23976,1.54497 -0.29928,3.13564 -0.86692,4.60858 -0.26687,0.69248 -0.62158,1.34783 -0.93299,2.02146 -0.62813,1.67178 -1.37257,3.29642 -1.80167,5.03415 -0.15718,1.57662 -0.45924,3.07505 -0.99752,4.56431 -0.26804,0.76156 -0.65085,1.47003 -1.10618,2.13338 0,0 -9.70656,4.24101 -9.70656,4.24101 l 0,0 c 0.42285,-0.63857 0.91753,-1.20158 1.24594,-1.90449 0.5332,-1.52537 1.11917,-2.7641 1.06465,-4.45012 0.3599,-1.84303 1.14005,-3.50599 1.79745,-5.2537 0.14465,-0.35988 0.26903,-0.7286 0.43396,-1.07966 0.17358,-0.36944 0.83961,-1.44468 0.9663,-1.8405 0.35564,-1.11108 0.29379,-2.36866 0.5401,-3.50148 0.4939,-3.00905 1.3291,-5.94967 2.47663,-8.77694 0.8152,-2.15073 0.87359,-4.34341 0.70267,-6.62436 0,0 9.42774,-4.80367 9.42774,-4.80367 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4565-7"
d="m 903.18061,534.75166 c 2.53358,0.0742 5.06873,0.0603 7.60312,0.0614 2.36412,-0.004 4.72818,-0.0188 7.09225,-0.0335 1.69744,-0.0114 3.39489,-0.004 5.09235,-0.007 1.63281,0.0306 3.27363,-0.1072 4.89262,0.13 1.11608,0.20345 1.77056,1.61012 0.5775,2.29152 -9.22188,5.26691 -6.64978,4.29013 -11.33268,5.93865 -3.74608,1.74996 -2.28012,1.09998 6.85305,-3.99002 0.38464,-0.21436 -0.75109,0.45997 -1.12208,0.69718 -1.26794,0.81073 -2.4099,1.67902 -3.53563,2.67694 -2.42138,2.5343 -4.3543,5.49262 -6.00084,8.57471 -1.02824,1.86412 -2.19284,3.64065 -3.62,5.22174 -0.98231,1.10447 -1.31097,2.56989 -1.96783,3.86454 -0.62892,1.25062 -0.91037,2.6372 -1.27254,3.9814 -0.34648,0.96994 -0.16741,0.5195 -0.52667,1.35547 0,0 -9.60219,4.41513 -9.60219,4.41513 l 0,0 c 0.34987,-0.82868 0.14861,-0.42411 0.60581,-1.2127 0.33681,-1.41134 0.7073,-2.81863 1.17319,-4.18802 0.10295,-0.20697 0.20591,-0.41393 0.30886,-0.6209 0.11321,-0.19183 0.23837,-0.3771 0.33964,-0.57551 0.48479,-0.94986 0.56397,-2.06867 1.23106,-2.93846 0.38306,-0.42492 0.81224,-0.8068 1.19392,-1.23296 1.04141,-1.16277 1.77659,-2.56624 2.69105,-3.8216 1.64456,-3.14712 3.57517,-6.15898 5.86216,-8.88084 1.35577,-1.38164 2.81723,-2.57177 4.49632,-3.54906 9.9429,-5.78714 6.46155,-4.33899 11.11581,-6.19209 4.23971,-1.5246 0.67182,-0.32901 -6.72302,4.29622 -0.197,0.12322 0.43903,-0.19805 0.67118,-0.18826 0.17913,0.008 0.32369,0.15445 0.48289,0.23689 0.037,0.0192 0.14649,0.0728 0.10515,0.0676 -0.19667,-0.0247 -0.38724,-0.0848 -0.58086,-0.12726 -1.61006,-0.084 -3.22316,-0.0154 -4.83491,-0.0409 -1.69069,-0.003 -3.38137,0.004 -5.07203,-0.007 -2.33332,-0.0148 -4.66662,-0.0301 -7,-0.0335 -2.59079,10e-4 -5.18223,-0.011 -7.77227,0.0615 0,0 8.57562,-6.23055 8.57562,-6.23055 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4567-7"
d="m 892.07263,370.28886 c 1.43834,3.06126 1.28505,4.35787 0.54183,7.65724 -1.00552,3.38046 -1.92332,6.77914 -2.49608,10.26126 -0.32253,1.84254 -0.29508,3.71547 -0.42912,5.57356 -0.15861,1.38481 -0.38783,2.73197 -0.94041,4.01443 -0.94734,1.59693 -1.84623,3.25323 -3.17577,4.56666 -3.18973,1.84353 -6.37947,3.68707 -9.56921,5.5306 0,0 8.26713,-6.60137 8.26713,-6.60137 l 0,0 c -2.82727,1.66614 -5.65454,3.33229 -8.48181,4.99843 1.56238,-0.99789 2.39404,-2.61051 3.33833,-4.16144 0.72,-1.12355 0.90636,-2.37233 1.11464,-3.67463 0.32205,-1.86829 0.0689,-3.8114 0.51386,-5.67482 0.62785,-3.51058 1.55749,-6.95069 2.58761,-10.3634 0.64715,-2.9083 1.02761,-4.20794 -0.4708,-6.88829 0,0 9.1998,-5.23823 9.1998,-5.23823 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4573-3"
d="m 907.55433,369.942 c -0.41424,1.68801 -1.3173,3.7086 -0.72843,5.46503 0.1505,0.44891 0.40865,0.85422 0.61298,1.28132 2.2444,3.30845 4.46371,6.63399 6.65073,9.98494 1.5627,2.55164 3.21544,5.09989 4.32425,7.89148 0.8941,2.81829 0.56108,3.8784 -1.60188,5.91388 -3.97181,2.76331 -2.55708,1.82737 -11.0466,6.36236 -0.52135,0.2785 -2.74455,0.75031 -3.32627,0.5583 -0.4495,-0.14836 -0.79477,-0.51436 -1.19216,-0.77154 -1.75441,-1.39879 -3.39439,-3.33306 -3.07519,-5.74849 0.25156,-1.90368 1.02985,-2.71658 2.03889,-4.31974 3.97119,-5.07273 8.73735,-9.44749 13.21625,-14.05968 2.35778,-2.42518 4.55292,-5.04591 5.24703,-8.426 0.2218,-1.94011 -0.0503,-2.72922 -1.33596,-4.14279 -1.72141,-1.45727 -3.90634,-2.26911 -5.99056,-3.06651 0,0 8.59591,-5.76606 8.59591,-5.76606 l 0,0 c 2.22852,0.89973 4.59285,1.74833 6.39575,3.38936 1.5141,1.73679 1.92119,2.63225 1.73703,4.99575 -0.53242,3.69091 -2.78873,6.58186 -5.37505,9.1614 -4.45953,4.54958 -9.16414,8.88826 -13.18181,13.84752 -1.01439,1.39842 -2.65322,3.2352 -2.23996,5.18641 0.29162,1.37683 1.61957,2.47574 2.70388,3.20693 1.23034,0.39062 1.66111,0.26963 2.89831,-0.14278 0.36006,-0.12002 1.38322,-0.61429 1.06036,-0.41477 -4.86195,3.00449 -11.03654,6.34678 -6.80549,4.04585 0.57957,-0.40749 2.1048,-1.50338 2.39864,-2.19126 0.31965,-0.7483 -0.22015,-1.79197 -0.29863,-2.52362 -0.95094,-2.77099 -2.47447,-5.31962 -3.97652,-7.81951 -2.23199,-3.36893 -4.47112,-6.72548 -6.82227,-10.0102 -0.274,-0.49826 -0.6091,-0.96751 -0.822,-1.49478 -0.77116,-1.90983 0.11436,-3.96596 0.34973,-5.88943 0,0 9.58904,-4.50337 9.58904,-4.50337 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4575-2"
d="m 632.3474,282.17956 c -0.41483,2.37212 -0.54295,4.78296 -0.63387,7.18569 -0.17434,1.83269 -0.31486,3.68654 -0.76609,5.47614 -0.62174,1.99482 -1.21589,3.99961 -1.77301,6.01355 -0.69277,2.65466 -1.43304,5.3023 -2.22569,7.93039 -0.39635,1.55762 -0.87843,3.08472 -1.3956,4.60563 -0.45184,1.2456 -0.74905,2.53974 -0.86567,3.85922 0,0 -9.56321,4.65958 -9.56321,4.65958 l 0,0 c 0.36278,-1.32895 0.36239,-2.74678 0.87752,-4.04247 0.5288,-1.5345 1.08317,-3.05202 1.49179,-4.62386 0.8624,-2.60345 1.61561,-5.24682 2.2782,-7.90257 0.51388,-1.99685 1.03492,-3.99356 1.63823,-5.96498 0.53925,-1.72819 0.757,-3.51054 0.98056,-5.30745 0.1026,-2.41021 0.25094,-4.81683 0.46309,-7.22004 0,0 9.49375,-4.66883 9.49375,-4.66883 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4581-1"
d="m 660.02837,285.60259 c -2.42504,-0.1836 -4.66461,0.7738 -6.89627,1.56323 -0.71158,0.36377 -1.53461,0.38962 -2.26787,0.68196 -0.30563,0.12185 -1.15017,0.6396 -0.86402,0.47722 14.39261,-8.16725 9.94615,-6.17138 7.18146,-3.81671 -0.82034,0.95156 -1.97927,1.44223 -2.72043,2.46223 -1.17911,2.2868 0.74625,2.92431 2.58966,3.73362 2.88953,0.96035 5.94735,1.56835 9.00016,1.43259 0.34003,-0.075 0.68207,-0.1415 1.0201,-0.2251 0.3071,-0.076 0.62398,-0.12845 0.91462,-0.2534 0.27947,-0.12015 1.04474,-0.62349 0.77932,-0.47486 -13.53075,7.57687 -9.36262,5.98792 -6.57042,3.19206 1.31336,-1.3441 1.87548,-2.96162 2.12604,-4.78016 0.32962,-4.77686 -1.08199,-1.837 9.51995,-5.84452 0.29071,-0.10989 -0.221,0.58168 -0.35458,0.86229 -0.15498,0.32554 -0.34,0.6359 -0.51001,0.95385 -1.08312,2.69499 -2.048,5.45926 -2.85804,8.25113 -0.80803,3.83836 -2.89888,7.15644 -4.63153,10.6165 -1.08616,2.06998 -2.25186,4.10503 -2.84499,6.37959 0,0 -9.49186,4.56374 -9.49186,4.56374 l 0,0 c 0.51561,-2.43718 1.71151,-4.58988 2.98421,-6.71422 1.71527,-3.401 3.78165,-6.66274 4.67766,-10.40811 0.70806,-2.84444 1.72333,-5.58281 2.61863,-8.37161 0.0524,-0.1116 0.56234,-1.34856 0.84558,-1.50815 11.07418,-6.23952 9.8762,-8.40994 9.44737,-3.43946 -0.17563,1.98364 -0.5336,3.82159 -1.86295,5.39606 -3.60641,4.13352 -8.74254,7.5204 -14.25888,7.94202 -3.13317,-0.14403 -6.23811,-0.7308 -9.17461,-1.85283 -1.56185,-0.74009 -3.58154,-1.60099 -3.87756,-3.57409 -0.0279,-0.1857 0.22255,-1.35575 0.25999,-1.54249 0.34135,-0.85703 0.74442,-1.54774 1.56728,-2.0277 0.18741,-0.10932 0.41022,-0.15377 0.58947,-0.27601 0.17679,-0.12056 0.30979,-0.29526 0.46469,-0.4429 3.4288,-4.11473 8.87867,-6.22981 13.92275,-7.80009 2.34703,-0.81601 4.73861,-1.46657 7.2507,-1.38623 0,0 -8.57562,6.23055 -8.57562,6.23055 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4587-0"
d="m 808.0692,198.56296 c 1.90471,0.0424 3.81038,0.0368 5.71549,0.0319 1.5992,0.23163 3.7522,0.84896 5.04121,1.89079 0.30574,0.2471 0.53949,0.57192 0.80923,0.85789 1.88094,2.43858 1.28592,4.30942 0.32303,6.99158 -1.31343,3.51139 -3.1635,6.68314 -5.53633,9.57139 -4.38908,4.63227 -10.33379,7.25475 -16.41787,8.75735 -2.815,0.37634 -5.6868,1.27495 -8.55536,1.15632 -1.44359,-0.0597 -1.9403,-0.33726 -3.2355,-0.7987 -0.59746,-0.36064 -1.53839,-0.73741 -1.76345,-1.53488 -0.4086,-1.44781 1.07298,-2.19916 2.06832,-2.77512 3.44948,-1.99607 6.92364,-3.94916 10.38547,-5.92374 2.8826,-1.44913 5.79842,-2.79756 8.95787,-3.50274 2.75424,-0.46628 4.03088,-0.35135 5.41552,2.20322 0.57781,0.9224 0.69605,2.0279 1.07296,3.01948 0.37473,0.98584 1.04468,1.8479 1.69698,2.65834 1.06659,1.52417 2.05911,3.09684 3.13053,4.61756 0,0 -9.07402,5.32869 -9.07402,5.32869 l 0,0 c -1.00958,-1.53532 -2.05767,-3.04266 -3.05571,-4.5837 -0.70444,-0.93257 -1.46605,-1.93463 -1.91079,-3.02716 -0.36539,-0.8976 -0.39591,-1.9534 -0.96746,-2.78194 -1.14322,-2.05455 -2.55858,-1.47273 -4.59416,-1.10076 -3.05779,0.83872 -5.92059,2.17351 -8.72566,3.64105 2.45098,-1.44051 4.89045,-2.90077 7.35293,-4.32152 0.40065,-0.23117 -0.75533,0.53962 -1.16623,0.75204 -0.27912,0.14429 -0.58835,0.22257 -0.8899,0.31089 -0.2069,0.0606 -0.54511,-0.062 -0.63255,0.13502 -0.22553,0.50828 1.5045,0.97613 1.2981,1.0478 0.42898,0.12923 0.84641,0.30607 1.28693,0.38769 3.27626,0.60695 6.89184,-0.60546 10.08661,-1.19319 1.07524,-0.3232 1.96593,-0.5777 3.01064,-0.934 0.39688,-0.13536 1.53691,-0.65192 1.18368,-0.42594 -14.2856,9.1392 -8.20455,5.24769 -5.48183,2.91356 2.47324,-2.71434 4.39089,-5.76581 5.67864,-9.21964 0.40111,-1.10225 1.31339,-3.07669 1.00587,-4.30668 -0.14352,-0.57403 -0.5662,-1.11113 -0.8858,-1.58632 -1.44215,-1.34408 -3.44126,-2.00849 -5.39976,-2.05784 -1.93437,-0.005 -3.86925,-0.01 -5.80325,0.0319 0,0 8.57562,-6.23055 8.57562,-6.23055 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#008021;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4589-7"
d="m 826.01692,208.31458 c -4.99583,2.83313 3.45075,-2.07405 5.23204,-3.00938 0.71999,-0.37805 -1.36008,0.8932 -2.0157,1.37432 -1.74676,1.28188 -2.9941,2.65503 -4.24018,4.40665 -1.45313,2.20486 -1.94006,4.67807 -2.11314,7.25979 -0.24822,2.17951 0.56415,3.42039 1.94791,4.99214 0.95898,1.0501 1.73536,2.31641 2.95181,3.10264 0.83128,0.53728 1.54893,0.7698 2.46344,1.13375 1.78091,0.42655 3.69936,1.16407 5.54091,0.62504 0.82234,-0.2407 2.21203,-1.02498 2.94279,-1.41045 -13.69205,8.03037 -6.80008,4.30311 -4.35207,1.34444 1.22923,-1.48565 2.02154,-3.10195 2.77036,-4.85983 1.14915,-3.16248 1.39663,-6.52062 1.49613,-9.85381 -0.052,-1.28134 0.15343,-2.59628 0.0202,-3.87591 -0.10139,-0.97399 -0.54969,-1.89222 -0.91995,-2.78312 -0.69769,-1.59704 -2.21259,-1.8372 -3.68805,-2.43798 -3.073,-0.89513 -5.93529,-2.45212 -9.07657,-3.09805 -0.68545,-0.003 -1.46502,-0.08 -2.12502,0.1987 -0.32743,0.13825 -1.19238,0.77225 -0.88183,0.5994 2.73744,-1.52372 5.44386,-3.10253 8.16579,-4.65379 0,0 -9.79598,3.7777 -9.79598,3.7777 l 0,0 c 3.27428,-1.88164 6.51007,-3.8319 9.82284,-5.64491 0.334,-0.1828 0.71806,-0.26732 1.0937,-0.3295 0.85589,-0.14168 1.46514,0.0104 2.31325,0.12697 3.09934,0.91782 6.00939,2.39209 9.15233,3.18986 1.8143,0.6297 3.40309,1.23256 4.181,3.14719 0.4029,1.00473 0.92855,2.07818 1.06583,3.16313 0.16314,1.28934 -0.15724,2.6394 -0.0393,3.93226 -0.15923,3.44224 -0.3691,6.92496 -1.45913,10.22131 -3.01525,8.36981 -7.5267,9.54899 -15.81889,14.27855 -1.18471,0.52525 -1.92325,0.95289 -3.2208,1.13923 -1.98538,0.28513 -3.96958,-0.48634 -5.83565,-1.02743 -1.03877,-0.46443 -1.70887,-0.70836 -2.65651,-1.35873 -1.24918,-0.85731 -2.09442,-2.1242 -3.10453,-3.22512 -1.58794,-1.87113 -2.49515,-3.15716 -2.29191,-5.71812 0.11034,-2.76411 0.54539,-5.43308 2.02213,-7.83885 0.83482,-1.28848 1.35055,-2.22333 2.45816,-3.33228 0.62149,-0.62226 3.01082,-2.46765 3.72025,-2.89707 6.88283,-4.16626 7.8082,-4.65404 12.44169,-7.19185 0,0 -8.16736,6.53311 -8.16736,6.53311 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615-1"
d="m 700.72547,377.677 c 0.44035,-2.02806 1.75367,-3.70978 3.01276,-5.30781 1.64417,-1.78032 3.52632,-3.26083 5.58563,-4.52553 3.21482,-1.43826 9.52546,-7.42833 14.61851,-6.11299 1.79791,0.4367 2.83927,1.86722 3.50206,3.49329 0.78312,2.06767 -0.19964,3.23366 -1.27878,4.92792 -1.17443,1.89139 -1.80142,4.01149 -2.39335,6.13644 -0.64031,1.7505 -0.94312,3.60501 -1.57349,5.35428 -1.26563,2.46281 -3.09647,4.65679 -5.13907,6.51273 -2.38449,1.80494 -4.88648,3.3978 -6.83673,5.69501 -0.92904,1.27029 -1.49001,2.79121 -1.78341,4.33089 -0.0195,1.07987 1.27586,0.94786 2.06403,0.99622 2.14138,0.0956 4.28627,0.0673 6.42924,0.0656 2.07399,-0.0169 4.1479,-0.0312 6.22193,-0.0374 2.17465,-0.006 4.34904,0.0126 6.52367,0.0185 1.01968,0.0308 2.01112,0.0174 3.01372,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.00054,0.0374 -1.99777,0.0138 -2.99914,0.0121 -2.19308,0.006 -4.38595,0.0236 -6.57905,0.024 -2.05785,10e-4 -4.11569,0.002 -6.17354,0.005 -2.19179,0.0145 -4.38796,0.0521 -6.57556,-0.11135 -1.4595,-0.23096 -2.76124,-0.75964 -2.94604,-2.41411 0.13146,-1.71313 0.83567,-3.41101 1.65579,-4.90206 1.84571,-2.47952 4.28883,-4.23567 6.85024,-5.92324 1.126,-0.88505 1.45538,-1.05277 2.38416,-2.13751 0.45648,-0.53313 1.19941,-1.692 1.63172,-2.25153 1.12304,-1.45353 0.4027,-0.25091 1.13797,-1.60192 0.83954,-1.66134 0.9407,-3.55357 1.71526,-5.25195 0.55225,-2.20408 1.16528,-4.38994 2.23516,-6.40793 0.39884,-0.65442 0.64865,-1.09625 1.09983,-1.71272 0.5839,-0.7978 0.92512,-1.29589 0.55651,-2.31229 -0.51452,-1.39653 -1.36956,-2.36846 -2.91783,-2.57852 -4.13586,-0.27485 -11.69979,5.45401 3.75394,-3.67707 -1.10611,0.60091 -2.29461,1.22434 -3.28252,2.01271 -0.83188,0.66385 -1.44287,1.59154 -2.3594,2.15984 -0.9438,0.98998 -2.41547,2.79024 -2.98432,4.00844 -0.10755,0.23033 -0.12876,0.49183 -0.19314,0.73774 0,0 -9.52148,4.655 -9.52148,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4557-3-1"
d="m 755.65812,364.75982 c -3.2e-4,2.37984 -0.0187,4.70084 -0.69278,6.99616 -1.18229,2.77982 -2.02226,5.6662 -2.55082,8.63587 -0.23976,1.54497 -0.29928,3.13564 -0.86692,4.60858 -0.26687,0.69248 -0.62158,1.34783 -0.93299,2.02146 -0.62813,1.67178 -1.37257,3.29642 -1.80167,5.03415 -0.15718,1.57662 -0.45924,3.07505 -0.99752,4.56431 -0.26804,0.76156 -0.65085,1.47003 -1.10618,2.13338 0,0 -9.70656,4.24101 -9.70656,4.24101 l 0,0 c 0.42285,-0.63857 0.91753,-1.20158 1.24594,-1.90449 0.5332,-1.52537 1.11917,-2.7641 1.06465,-4.45012 0.3599,-1.84303 1.14005,-3.50599 1.79745,-5.2537 0.14465,-0.35988 0.26903,-0.7286 0.43396,-1.07966 0.17358,-0.36944 0.83961,-1.44468 0.9663,-1.8405 0.35564,-1.11108 0.29379,-2.36866 0.5401,-3.50148 0.4939,-3.00905 1.3291,-5.94967 2.47663,-8.77694 0.8152,-2.15073 0.87359,-4.34341 0.70267,-6.62436 0,0 9.42774,-4.80367 9.42774,-4.80367 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615-6-1"
d="m 784.89685,459.49937 c 0.44035,-2.02806 1.75366,-3.70978 3.01275,-5.30781 1.64417,-1.78032 3.52632,-3.26083 5.58563,-4.52553 3.21482,-1.43826 9.52545,-7.42833 14.61851,-6.11299 1.79791,0.4367 2.83927,1.86722 3.50206,3.49329 0.78312,2.06767 -0.19964,3.23366 -1.27878,4.92792 -1.17443,1.89139 -1.80142,4.01149 -2.39335,6.13644 -0.64031,1.7505 -0.94313,3.60501 -1.57349,5.35428 -1.26563,2.46281 -3.09647,4.65679 -5.13907,6.51273 -2.38449,1.80494 -4.88648,3.3978 -6.83673,5.69501 -0.92903,1.27029 -1.49001,2.79121 -1.7834,4.33089 -0.0195,1.07987 1.27585,0.94786 2.06402,0.99622 2.14139,0.0956 4.28627,0.0673 6.42924,0.0656 2.07398,-0.0169 4.14789,-0.0312 6.22193,-0.0374 2.17464,-0.006 4.34904,0.0126 6.52367,0.0185 1.01968,0.0308 2.01112,0.0174 3.01371,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.00053,0.0374 -1.99776,0.0138 -2.99913,0.0121 -2.19309,0.006 -4.38596,0.0236 -6.57905,0.024 -2.05785,0.001 -4.11569,0.002 -6.17354,0.005 -2.19179,0.0145 -4.38796,0.0521 -6.57556,-0.11135 -1.45949,-0.23096 -2.76124,-0.75964 -2.94604,-2.41411 0.13146,-1.71313 0.83567,-3.41101 1.6558,-4.90206 1.8457,-2.47952 4.28883,-4.23567 6.85023,-5.92324 1.12601,-0.88505 1.45538,-1.05277 2.38416,-2.13751 0.45648,-0.53313 1.19941,-1.692 1.63172,-2.25153 1.12305,-1.45353 0.4027,-0.25091 1.13797,-1.60192 0.83954,-1.66134 0.9407,-3.55357 1.71526,-5.25195 0.55225,-2.20408 1.16528,-4.38994 2.23516,-6.40793 0.39884,-0.65442 0.64865,-1.09625 1.09983,-1.71272 0.5839,-0.7978 0.92512,-1.29589 0.5565,-2.31229 -0.51451,-1.39653 -1.36955,-2.36846 -2.91783,-2.57852 -4.13585,-0.27485 -11.69978,5.45401 3.75395,-3.67707 -1.10611,0.60091 -2.29462,1.22434 -3.28253,2.01271 -0.83187,0.66385 -1.44286,1.59154 -2.3594,2.15984 -0.94379,0.98998 -2.41546,2.79024 -2.98431,4.00844 -0.10755,0.23033 -0.12876,0.49183 -0.19313,0.73774 0,0 -9.52148,4.655 -9.52148,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615-6-5-7"
d="m 813.46828,459.49936 c 0.44035,-2.02806 1.75366,-3.70978 3.01275,-5.30781 1.64417,-1.78032 3.52632,-3.26083 5.58563,-4.52553 3.21482,-1.43826 9.52545,-7.42833 14.61851,-6.11299 1.79791,0.4367 2.83927,1.86722 3.50206,3.49329 0.78312,2.06767 -0.19964,3.23366 -1.27878,4.92792 -1.17443,1.89139 -1.80142,4.01149 -2.39335,6.13644 -0.64031,1.7505 -0.94313,3.60501 -1.57349,5.35428 -1.26563,2.46281 -3.09647,4.65679 -5.13907,6.51273 -2.38449,1.80494 -4.88648,3.3978 -6.83673,5.69501 -0.92903,1.27029 -1.49001,2.79121 -1.7834,4.33089 -0.0195,1.07987 1.27585,0.94786 2.06402,0.99622 2.14139,0.0956 4.28627,0.0673 6.42924,0.0656 2.07398,-0.0169 4.14789,-0.0312 6.22193,-0.0374 2.17464,-0.006 4.34904,0.0126 6.52367,0.0185 1.01968,0.0308 2.01112,0.0174 3.01371,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.00053,0.0374 -1.99776,0.0138 -2.99913,0.0121 -2.19309,0.006 -4.38596,0.0236 -6.57905,0.024 -2.05785,10e-4 -4.11569,0.002 -6.17354,0.005 -2.19179,0.0145 -4.38796,0.0521 -6.57556,-0.11135 -1.45949,-0.23096 -2.76124,-0.75964 -2.94604,-2.41411 0.13146,-1.71313 0.83567,-3.41101 1.6558,-4.90206 1.8457,-2.47952 4.28883,-4.23567 6.85023,-5.92324 1.12601,-0.88505 1.45538,-1.05277 2.38416,-2.13751 0.45648,-0.53313 1.19941,-1.692 1.63172,-2.25153 1.12305,-1.45353 0.4027,-0.25091 1.13797,-1.60192 0.83954,-1.66134 0.9407,-3.55357 1.71526,-5.25195 0.55225,-2.20408 1.16528,-4.38994 2.23516,-6.40793 0.39884,-0.65442 0.64865,-1.09625 1.09983,-1.71272 0.5839,-0.7978 0.92512,-1.29589 0.5565,-2.31229 -0.51451,-1.39653 -1.36955,-2.36846 -2.91783,-2.57852 -4.13585,-0.27485 -11.69978,5.45401 3.75395,-3.67707 -1.10611,0.60091 -2.29462,1.22434 -3.28253,2.01271 -0.83187,0.66385 -1.44286,1.59154 -2.3594,2.15984 -0.94379,0.98998 -2.41546,2.79024 -2.98431,4.00844 -0.10755,0.23033 -0.12876,0.49183 -0.19313,0.73774 0,0 -9.52148,4.655 -9.52148,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615-4-0"
d="m 875.24825,287.77342 c 0.44035,-2.02806 1.75367,-3.70978 3.01275,-5.30781 1.64418,-1.78032 3.52633,-3.26083 5.58563,-4.52553 3.21483,-1.43826 9.52546,-7.42833 14.61851,-6.11299 1.79791,0.4367 2.83927,1.86722 3.50206,3.49329 0.78312,2.06767 -0.19964,3.23366 -1.27878,4.92792 -1.17443,1.89139 -1.80142,4.01149 -2.39335,6.13644 -0.64031,1.7505 -0.94312,3.60501 -1.57349,5.35428 -1.26563,2.46281 -3.09647,4.65679 -5.13907,6.51273 -2.38449,1.80494 -4.88648,3.3978 -6.83672,5.69501 -0.92904,1.27029 -1.49002,2.79121 -1.78341,4.33089 -0.0195,1.07987 1.27586,0.94786 2.06402,0.99622 2.14139,0.0956 4.28627,0.0673 6.42924,0.0656 2.07399,-0.0169 4.1479,-0.0312 6.22193,-0.0374 2.17465,-0.006 4.34904,0.0126 6.52367,0.0185 1.01968,0.0308 2.01112,0.0174 3.01372,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.00054,0.0374 -1.99777,0.0138 -2.99914,0.0121 -2.19308,0.006 -4.38595,0.0236 -6.57905,0.024 -2.05784,10e-4 -4.11569,0.002 -6.17353,0.005 -2.1918,0.0145 -4.38797,0.0521 -6.57557,-0.11135 -1.45949,-0.23096 -2.76123,-0.75964 -2.94604,-2.41411 0.13146,-1.71313 0.83567,-3.41101 1.6558,-4.90206 1.8457,-2.47952 4.28883,-4.23567 6.85023,-5.92324 1.12601,-0.88505 1.45538,-1.05277 2.38417,-2.13751 0.45647,-0.53313 1.1994,-1.692 1.63172,-2.25153 1.12304,-1.45353 0.40269,-0.25091 1.13796,-1.60192 0.83954,-1.66134 0.9407,-3.55357 1.71526,-5.25195 0.55225,-2.20408 1.16528,-4.38994 2.23516,-6.40793 0.39884,-0.65442 0.64865,-1.09625 1.09983,-1.71272 0.5839,-0.7978 0.92512,-1.29589 0.55651,-2.31229 -0.51452,-1.39653 -1.36956,-2.36846 -2.91783,-2.57852 -4.13586,-0.27485 -11.69978,5.45401 3.75394,-3.67707 -1.10611,0.60091 -2.29461,1.22434 -3.28252,2.01271 -0.83188,0.66385 -1.44287,1.59154 -2.3594,2.15984 -0.94379,0.98998 -2.41546,2.79024 -2.98431,4.00844 -0.10756,0.23033 -0.12876,0.49183 -0.19314,0.73774 0,0 -9.52148,4.655 -9.52148,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4523-5-4"
d="m 919.89392,273.84889 c 2.33168,1.30008 4.98011,1.7125 7.59089,2.04721 0.95903,0.17857 3.17398,0.5962 3.16339,2.01184 -0.01,1.31442 -0.80726,1.67632 -1.67808,2.51845 -4.19363,2.91724 -8.66801,5.40113 -12.96307,8.16556 0.3527,0.30256 -2.4778,1.12493 -1.91696,1.83965 0.83379,1.06257 2.57212,1.58264 3.72846,2.13837 2.2084,1.08079 4.39426,2.22274 6.02915,4.0887 1.08668,1.79095 1.30076,3.85456 1.42492,5.89874 0.0335,1.08822 0.19219,2.25956 -0.38975,3.25857 -0.50721,0.87072 -1.34088,1.49031 -2.19787,1.97131 -3.4723,1.94885 -6.98737,3.8205 -10.48105,5.73075 -4.16559,1.17938 -8.51318,1.35588 -12.81269,1.52296 -2.80571,0.0618 -1.40639,0.0389 -4.19796,0.0688 0,0 8.28495,-6.03515 8.28495,-6.03515 l 0,0 c 2.77535,-0.0394 1.38552,-0.0116 4.16949,-0.0836 4.2684,-0.17979 8.61306,-0.40162 12.66714,-1.87417 -2.44085,1.46763 -4.90437,2.89817 -7.32253,4.40288 -0.40953,0.25484 0.87311,-0.41239 1.29249,-0.65066 1.66798,-0.94766 1.80307,-1.67075 1.67523,-3.49963 -0.0961,-1.80028 -0.17603,-3.67745 -1.12879,-5.26459 -1.52862,-1.72993 -3.57345,-2.82982 -5.61759,-3.85652 -1.27995,-0.62151 -5.03725,-2.04167 -4.76238,-3.9855 0.11159,-0.78916 1.59382,-1.64434 2.01653,-1.95358 4.24707,-2.76256 8.6584,-5.2611 12.92124,-7.99891 0.41998,-0.31421 0.82125,-0.65513 1.25995,-0.94261 0.22536,-0.14768 0.52079,-0.18185 0.72471,-0.35794 0.6435,-0.55569 -2.47751,-1.14045 -2.39914,-1.11697 -2.75071,-0.44899 -5.51221,-0.99727 -7.98821,-2.34065 0,0 8.90753,-5.70339 8.90753,-5.70339 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615-5-7"
d="m 783.3046,548.93795 c 0.44035,-2.02806 1.75367,-3.70978 3.01275,-5.30781 1.64418,-1.78032 3.52633,-3.26083 5.58563,-4.52553 3.21483,-1.43826 9.52546,-7.42833 14.61851,-6.11299 1.79791,0.4367 2.83928,1.86722 3.50206,3.49329 0.78312,2.06767 -0.19964,3.23366 -1.27877,4.92792 -1.17444,1.89139 -1.80143,4.01149 -2.39336,6.13644 -0.64031,1.7505 -0.94312,3.60501 -1.57349,5.35428 -1.26563,2.46281 -3.09646,4.65679 -5.13907,6.51273 -2.38449,1.80494 -4.88647,3.3978 -6.83672,5.69501 -0.92904,1.27029 -1.49002,2.79121 -1.78341,4.33089 -0.0195,1.07987 1.27586,0.94786 2.06403,0.99622 2.14138,0.0956 4.28626,0.0673 6.42923,0.0656 2.07399,-0.0169 4.1479,-0.0312 6.22193,-0.0374 2.17465,-0.006 4.34905,0.0126 6.52367,0.0185 1.01969,0.0308 2.01112,0.0174 3.01372,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.00054,0.0374 -1.99777,0.0138 -2.99914,0.0121 -2.19308,0.006 -4.38595,0.0236 -6.57905,0.024 -2.05784,10e-4 -4.11568,0.002 -6.17353,0.005 -2.1918,0.0145 -4.38797,0.0521 -6.57557,-0.11135 -1.45949,-0.23096 -2.76123,-0.75964 -2.94604,-2.41411 0.13146,-1.71313 0.83567,-3.41101 1.6558,-4.90206 1.8457,-2.47952 4.28883,-4.23567 6.85023,-5.92324 1.12601,-0.88505 1.45538,-1.05277 2.38417,-2.13751 0.45647,-0.53313 1.19941,-1.692 1.63172,-2.25153 1.12304,-1.45353 0.40269,-0.25091 1.13797,-1.60192 0.83953,-1.66134 0.94069,-3.55357 1.71525,-5.25195 0.55225,-2.20408 1.16528,-4.38994 2.23516,-6.40793 0.39884,-0.65442 0.64865,-1.09625 1.09984,-1.71272 0.5839,-0.7978 0.92511,-1.29589 0.5565,-2.31229 -0.51451,-1.39653 -1.36956,-2.36846 -2.91783,-2.57852 -4.13586,-0.27485 -11.69978,5.45401 3.75394,-3.67707 -1.10611,0.60091 -2.29461,1.22434 -3.28252,2.01271 -0.83188,0.66385 -1.44287,1.59154 -2.3594,2.15984 -0.94379,0.98998 -2.41546,2.79024 -2.98431,4.00844 -0.10756,0.23033 -0.12876,0.49183 -0.19314,0.73774 0,0 -9.52148,4.655 -9.52148,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4455-1-5"
d="m 822.67604,537.82415 c -0.10994,2.51404 -0.0825,5.03149 -0.0587,7.54704 -0.013,2.43502 0.0126,4.86996 -0.01,7.30493 -0.12603,2.10801 0.12755,4.15952 0.90009,6.1262 0.85184,1.39526 2.80828,1.24354 4.25549,1.32479 2.00779,0.0584 4.01714,0.0275 6.02549,0.0159 2.19905,0.064 4.28756,-0.46741 6.33768,-1.20126 0.24336,-0.11302 0.48673,-0.22603 0.73009,-0.33905 0,0 -8.28162,6.51816 -8.28162,6.51816 l 0,0 c -0.24251,0.0838 -0.48501,0.16755 -0.72751,0.25133 -2.11892,0.64929 -4.31188,0.99827 -6.53429,0.9375 -2.02212,0.0156 -4.04661,0.0515 -6.06571,-0.0911 -1.92082,-0.17537 -3.98063,-0.37059 -4.939,-2.29595 -0.78761,-2.09391 -1.14658,-4.27361 -0.99182,-6.51242 -0.0223,-2.43172 0.004,-4.86341 -0.01,-7.29518 0.0233,-2.49556 0.0528,-4.99319 -0.0588,-7.48717 0,0 9.42775,-4.80368 9.42775,-4.80368 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4459-1-8"
d="m 842.77285,536.15664 c 0.66743,2.40647 1.23203,4.82549 1.57905,7.30044 0.27918,2.11014 0.39519,4.23585 0.44749,6.36215 0.0104,1.85019 0.008,3.70042 -0.0208,5.5504 -0.0132,1.94944 0.006,3.8989 0.0169,5.84831 -0.0386,1.70432 0.0623,3.41144 -0.0553,5.11271 -0.33176,1.79503 -0.8547,3.54251 -1.4116,5.27783 -0.26019,0.92364 -0.14348,0.46319 -0.35152,1.381 0,0 -9.49687,4.60155 -9.49687,4.60155 l 0,0 c 0.17964,-0.99032 0.0745,-0.49474 0.3168,-1.48646 0.52313,-1.69516 1.14286,-3.34755 1.50183,-5.09172 0.25533,-1.65455 0.0602,-3.34678 0.11623,-5.01578 0.0125,-1.95779 0.0344,-3.91558 0.0286,-5.87344 -0.0219,-1.83748 -0.003,-3.67498 -0.0166,-5.51253 -0.007,-2.10403 -0.0449,-4.21123 -0.28369,-6.30407 -0.31668,-2.40246 -0.80771,-4.76089 -1.65014,-7.03971 0,0 9.27961,-5.11068 9.27961,-5.11068 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4615-9-0"
d="m 609.66061,543.34202 c 0.44035,-2.02806 1.75367,-3.70978 3.01276,-5.30781 1.64417,-1.78032 3.52632,-3.26083 5.58562,-4.52553 3.21483,-1.43826 9.52546,-7.42833 14.61851,-6.11299 1.79791,0.4367 2.83928,1.86722 3.50206,3.49329 0.78313,2.06767 -0.19963,3.23366 -1.27877,4.92792 -1.17443,1.89139 -1.80143,4.01149 -2.39336,6.13644 -0.64031,1.7505 -0.94312,3.60501 -1.57349,5.35428 -1.26563,2.46281 -3.09646,4.65679 -5.13906,6.51273 -2.3845,1.80494 -4.88648,3.3978 -6.83673,5.69501 -0.92904,1.27029 -1.49002,2.79121 -1.78341,4.33089 -0.0195,1.07987 1.27586,0.94786 2.06403,0.99622 2.14138,0.0956 4.28627,0.0673 6.42924,0.0656 2.07398,-0.0169 4.14789,-0.0312 6.22192,-0.0374 2.17465,-0.006 4.34905,0.0126 6.52367,0.0185 1.01969,0.0308 2.01112,0.0174 3.01372,-0.15867 0,0 -8.45528,6.27916 -8.45528,6.27916 l 0,0 c -1.00054,0.0374 -1.99777,0.0138 -2.99914,0.0121 -2.19308,0.006 -4.38595,0.0236 -6.57905,0.024 -2.05784,10e-4 -4.11568,0.002 -6.17353,0.005 -2.19179,0.0145 -4.38796,0.0521 -6.57556,-0.11135 -1.4595,-0.23096 -2.76124,-0.75964 -2.94604,-2.41411 0.13145,-1.71313 0.83567,-3.41101 1.65579,-4.90206 1.8457,-2.47952 4.28883,-4.23567 6.85024,-5.92324 1.126,-0.88505 1.45538,-1.05277 2.38416,-2.13751 0.45648,-0.53313 1.19941,-1.692 1.63172,-2.25153 1.12304,-1.45353 0.40269,-0.25091 1.13797,-1.60192 0.83953,-1.66134 0.94069,-3.55357 1.71525,-5.25195 0.55225,-2.20408 1.16529,-4.38994 2.23516,-6.40793 0.39884,-0.65442 0.64865,-1.09625 1.09984,-1.71272 0.5839,-0.7978 0.92511,-1.29589 0.5565,-2.31229 -0.51451,-1.39653 -1.36955,-2.36846 -2.91783,-2.57852 -4.13586,-0.27485 -11.69978,5.45401 3.75395,-3.67707 -1.10611,0.60091 -2.29462,1.22434 -3.28253,2.01271 -0.83188,0.66385 -1.44287,1.59154 -2.3594,2.15984 -0.94379,0.98998 -2.41546,2.79024 -2.98431,4.00844 -0.10755,0.23033 -0.12876,0.49183 -0.19314,0.73774 0,0 -9.52148,4.655 -9.52148,4.655 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4469-4-8"
d="m 659.06312,528.15974 c 2.11057,0.0572 4.22215,0.0462 6.33323,0.0367 1.81669,-0.0163 3.6334,-0.0102 5.45013,-0.0133 1.58831,-0.002 3.17662,-0.0128 4.76491,-0.003 1.61869,0.004 3.23738,-0.001 4.85607,-0.004 1.60345,-0.0835 3.25541,0.19848 4.83242,-0.14117 0,0 -8.46509,6.30932 -8.46509,6.30932 l 0,0 c -1.63174,0.0604 -3.26544,0.002 -4.89797,0.0297 -1.61527,-0.003 -3.23054,-0.008 -4.84582,-0.004 -1.58521,0.009 -3.17044,-10e-4 -4.75567,-0.003 -1.80451,-0.003 -3.609,0.003 -5.41348,-0.0133 -2.1448,-0.01 -4.29002,-0.019 -6.43434,0.0367 0,0 8.57561,-6.23056 8.57561,-6.23056 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#872cfa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4473-0-3"
d="m 657.54797,535.18555 c -0.10311,2.18692 0.0107,4.37736 -0.11971,6.56223 -0.0687,1.14142 -0.65566,3.04023 0.83452,3.41824 1.41994,0.25226 2.87095,0.21128 4.30717,0.19865 1.7819,-0.0999 3.4187,-0.076 5.02511,0.76026 0.21088,0.17384 0.44041,0.32726 0.63264,0.52153 0.13565,0.13708 0.73368,0.94129 0.89623,1.12356 0.46496,0.52138 1.02006,0.98941 1.52772,1.46714 1.52847,0.94294 2.37243,2.55322 3.61193,3.78244 1.06012,1.07403 1.58547,2.52903 1.52249,4.02314 -0.16517,0.57503 -0.41558,1.19451 -0.82435,1.64868 -2.68319,2.98114 -10.89089,6.70464 -11.55588,7.08732 -2.73804,1.08582 -5.57873,1.83026 -8.46868,2.37136 -2.44653,0.3998 -4.84861,0.97903 -7.2678,1.5063 -1.71752,0.34074 -3.47631,0.39078 -5.22194,0.43011 -1.57989,0.0302 -3.15991,-0.009 -4.7398,0.0149 -4.01377,0.13214 -2.61441,1.16875 8.3587,-6.24649 0.20983,-0.1418 1.30257,0.0249 1.54126,0.027 0.22568,10e-4 0.45136,0.002 0.67703,0.003 0,0 -8.54483,6.20879 -8.54483,6.20879 l 0,0 c -0.22886,10e-4 -0.45771,0.003 -0.68656,0.004 -0.38277,0.004 -0.80363,0.006 -1.18805,0.0162 -0.1415,0.004 -0.53594,0.1021 -0.42436,0.015 10.38878,-8.10839 4.90183,-6.42371 8.81838,-6.23752 1.56406,0.0335 3.12892,0.008 4.69285,-0.0225 1.70416,-0.0621 3.41161,-0.17205 5.07692,-0.5667 2.38919,-0.52761 4.79434,-0.95648 7.19606,-1.42299 2.85398,-0.5874 5.67891,-1.37606 8.31795,-2.63326 -2.60848,1.54052 -5.21696,3.08104 -7.82544,4.62155 0.28297,-0.19063 0.58175,-0.35969 0.84892,-0.57191 0.2158,-0.17141 0.37778,-0.40432 0.59449,-0.57458 0.13177,-0.10353 0.31944,-0.12533 0.4419,-0.23972 0.2548,-0.23801 0.32045,-0.64024 0.64596,-0.82275 0.54245,-1.10828 -0.24039,-2.33511 -0.99505,-3.1498 -1.15626,-1.28227 -2.05253,-2.78711 -3.55115,-3.73615 -0.5683,-0.51075 -1.16181,-1.0009 -1.65803,-1.58505 -0.14519,-0.17091 -0.55614,-0.74049 -0.74194,-0.90322 -0.14922,-0.1307 -0.32894,-0.22179 -0.49342,-0.33269 -1.53646,-0.57905 -3.1552,-0.39735 -4.77014,-0.38907 -1.55005,-0.0131 -3.15062,0.0123 -4.61027,-0.58121 -1.76689,-1.16152 -1.64865,-2.61052 -1.35975,-4.5545 0.2008,-2.13856 0.0932,-4.29298 0.0512,-6.43795 0,0 9.42774,-4.80368 9.42774,-4.80368 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5812"
d="m 475.49965,364.92222 c 2.81876,0.0833 5.63968,0.0522 8.45929,0.0402 3.08449,0.0682 6.13028,-0.42577 9.20967,-0.60552 6.35683,-0.23515 12.72202,-0.21727 19.08277,-0.24375 5.70408,-0.0222 11.40805,-0.0625 17.11185,-0.12293 2.96872,-0.0487 5.93754,-0.0372 8.90647,-0.0269 3.69451,0.0382 7.38928,0.0323 11.0839,0.0168 2.56504,0.0779 4.78027,-1.05437 7.14125,-1.82798 1.29768,-0.4252 2.64962,-0.74766 3.9714,-1.0854 3.30214,-0.66593 6.76991,-1.43353 10.12109,-0.80475 0.41902,0.0597 0.83804,0.11935 1.25706,0.17903 0,0 -12.16148,8.56659 -12.16148,8.56659 l 0,0 c -0.39942,-0.061 -0.79885,-0.12206 -1.19827,-0.18309 -3.2642,-0.18713 -6.52261,0.41474 -9.68363,1.19225 -3.76124,1.05123 -7.40414,2.73119 -11.38818,2.63882 -3.70968,-0.0158 -7.41951,-0.0209 -11.1291,0.0156 -2.94,0.009 -5.8799,0.0178 -8.8196,-0.0367 -5.6032,-0.0675 -11.20686,-0.10962 -16.81049,-0.0853 -6.43868,0.0439 -12.88486,0.0567 -19.30978,0.53282 -3.13111,0.27888 -6.24855,0.76174 -9.40205,0.61142 -2.85652,-0.0123 -5.71419,-0.0415 -8.56993,0.0402 0,0 12.12776,-8.81133 12.12776,-8.81133 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5816"
d="m 579.10343,395.30596 c -2.69449,1.92892 -5.37923,3.88424 -8.18815,5.64484 -5.35924,3.15355 -7.34354,4.32952 -15.35212,8.78028 -3.90329,2.16924 15.44779,-8.96649 11.6224,-6.66266 -5.83142,3.51195 -9.96981,7.30869 -16.07193,8.56043 -1.4748,0.80189 -3.2605,0.63789 -4.80444,1.1395 -0.685,0.22255 -1.27155,0.67694 -1.91038,1.00958 -2.38897,1.39471 -5.11698,1.87304 -7.83381,2.09743 -4.56927,0.12189 -9.12495,0.39544 -13.68877,0.66107 -5.15042,0.28914 -10.30683,0.43465 -15.4642,0.5198 -5.37931,0.0108 -10.75861,-0.0137 -16.13793,-0.0314 -4.25191,0.005 -8.50349,0.0612 -12.75517,0.0996 -2.71132,0.006 -5.42261,0.018 -8.13386,-0.006 -3.52386,-0.0518 -7.04207,0.21075 -10.50794,-0.5231 -0.4181,-0.12409 -0.8362,-0.24817 -1.2543,-0.37226 0,0 12.27583,-8.40764 12.27583,-8.40764 l 0,0 c 0.36812,0.10033 0.73624,0.20065 1.10436,0.30097 3.43333,0.52181 6.90625,0.26273 10.368,0.29375 2.71618,-0.0233 5.43237,-0.0122 8.14861,-0.004 4.15497,0.0415 8.30981,0.10331 12.46505,0.11105 5.42783,-0.0145 10.85575,-0.0177 16.28314,-0.0991 5.103,-0.0533 10.20663,-0.16109 15.30072,-0.48695 4.6202,-0.30013 9.2436,-0.55331 13.85913,-0.8949 2.69296,-0.4318 5.25537,-1.1909 7.64661,-2.53963 2.1973,-0.89568 4.60041,-1.1035 6.8274,-1.93782 0.38463,-0.14072 0.77848,-0.25843 1.15389,-0.42217 0.34422,-0.15014 1.3249,-0.7071 1.00069,-0.51759 -3.90489,2.28253 -15.67982,9.02593 -11.74391,6.79733 46.14061,-26.12577 -8.59521,4.54238 3.81943,-2.15789 2.83422,-1.58018 5.37579,-3.57415 8.06946,-5.3734 0,0 13.90219,-5.57905 13.90219,-5.57905 z"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5810"
d="m 502.89736,308.51078 c 2.08497,2.90528 5.39603,4.31666 8.18807,6.3834 0.80669,0.59714 1.56141,1.26146 2.34212,1.8922 3.80842,3.49705 7.4445,7.18582 11.74519,10.09652 1.93179,1.30743 3.9628,2.46219 5.92616,3.72171 7.71834,4.21289 14.66522,9.61531 21.71893,14.81989 6.98785,5.06468 14.24655,9.81902 20.42286,15.88533 3.34391,3.29874 6.16949,7.04828 8.39867,11.17646 1.42414,2.79156 2.46309,5.80941 3.14356,8.86886 0.65481,2.25131 1.3259,4.48519 1.39842,6.83895 -0.56734,4.66872 -4.93196,7.91738 -8.26734,10.75677 -8.04949,5.93276 -17.10581,10.5809 -25.75286,15.48347 -1.9548,1.1083 -3.93902,2.16389 -5.90717,3.24831 -2.03592,1.12176 -3.97237,2.44552 -6.10502,3.37024 -1.90468,0.82588 3.61175,-2.04812 5.41763,-3.07218 -2.0283,1.18442 -4.05659,2.36884 -6.08489,3.55326 -5.81616,3.35727 -11.64403,6.69434 -17.44848,10.07181 -2.0817,1.2113 4.09045,-2.56998 6.28005,-3.57317 1.74003,-0.79721 -3.29811,1.94368 -4.92477,2.95224 -3.56151,2.20819 -4.354,2.81164 -7.65049,5.09073 -2.2405,1.54763 -4.12563,3.48531 -5.96918,5.46536 0,0 -13.55909,5.66544 -13.55909,5.66544 l 0,0 c 1.99099,-2.09911 3.93991,-4.24866 6.31573,-5.93487 9.68893,-6.70707 19.91542,-12.34469 30.12534,-18.26102 1.94935,-1.12958 -7.75821,4.58388 -5.84414,3.39549 2.00293,-1.24355 4.07387,-2.37403 6.11081,-3.56105 5.93723,-3.44238 11.85713,-6.91484 17.8117,-10.32714 2.02875,-1.16259 4.0929,-2.26227 6.13736,-3.397 2.00233,-1.11134 7.63344,-4.9493 6.00299,-3.3412 -1.77348,1.74916 -4.29774,2.51965 -6.44689,3.77901 -2.79625,1.63854 10.24299,-5.82438 8.18927,-5.24123 3.14004,-2.54042 6.92863,-5.40448 8.287,-9.36765 0.12136,-2.25933 -0.62893,-4.41889 -1.18326,-6.58711 -0.59956,-2.95152 -1.55518,-5.84525 -2.90959,-8.53825 -2.04909,-4.05721 -4.65718,-7.73456 -7.86017,-10.9758 -6.02102,-6.0688 -12.99573,-10.99397 -19.94538,-15.93327 -7.10738,-5.19832 -14.27575,-10.29619 -22.01328,-14.53464 -3.08199,-2.02369 -6.16765,-3.97705 -9.04911,-6.28787 -4.01976,-3.22369 -2.29182,-2.00232 -6.0171,-5.2714 -0.90135,-0.79098 -1.83699,-1.54202 -2.75549,-2.31303 -3.70338,-2.79344 -7.93157,-4.89853 -11.12643,-8.31242 0,0 12.85827,-7.68515 12.85827,-7.68515 z"
inkscape:connector-curvature="0" />
</g>
</svg>

#Question

##Reconstructing a screen of permuted pixels

###Summary

Given a video with the pixel locations randomly permuted (once, for the entire video), can we (efficiently) reconstruct the original picture?

###Details

  • You are given an LCD screen with $n = w \times h$ pixels, that has been altered so that the pixel locations are permuted, once, in some random manner.
  • Watching a video on this LCD screen would obviously result in quite a garbled picture.
  • The permutation is mapped by some unknown function, we shall call $\text{permute}\left(x_0,y_0\right) \implies (x,y)$
  • Each pixel on the screen has a permuted location $(x,y)$ and some unknown original location $(x_0,y_0)$ (such that $\text{permute}\left(x_0,y_0\right)=(x,y)$).
  • You (and your computer) are given to watch a particular video of an average film of average length, with $m$ frames, and having the same resolution as the LCD screen; however for simplicity, assume the video will be in grayscale (for example, each pixel is a single color in the range $[0,256)$).
  • As a frame of reference, you are also informed which pixel is the lowest location in the original non-permuted screen (i.e you are given the values $x$ and $y$, such that $(x_0,y_0) =(0,0)$, and $\text{permute}\left(0,0\right)=(x,y)$).

###Goal

  • Algorithm to (efficiently) compute the mapping of the pixels to their original locations.
  • Can this be done in $o\left(n^2\right)$ space (i.e in better than $\mathcal O\left(n^2\right)$ space?)
  • Can this be done in $o\left(n^2f(m)\right)$ time?
    • I'm not sure how to ask this question correctly, but I am mostly wondering about reducing the $n^2$ factor.
  • Is this a known problem, or similar to any known problems?

PS. What about same question but for the case of binary images for each frame instead of grayscale.

###Appendix

 

Figure 1 Example permuted "LCD screen", side view

Figure 2 Example permuted "LCD screen", front view

 

Figure 3 Example video frame (color)

Figure 4 Example permuted video frame (color)

 

Figure 5 Example video frame (grayscale)

Figure 6 Example permuted video frame (grayscale)

 

Figure 7 Example video frame (binary, using most-significant-bitplane)

Figure 8 Example permuted video frame (binary)

###Related source codes are on gist.github.com

###Credits:

tags: reference-request, information-theory, algorithms, data-structures, probability

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment