Skip to content

Instantly share code, notes, and snippets.

@louisswarren
Last active August 28, 2021 01:01
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 louisswarren/bc87c89b818005fd5599a2c96d758700 to your computer and use it in GitHub Desktop.
Save louisswarren/bc87c89b818005fd5599a2c96d758700 to your computer and use it in GitHub Desktop.
3D SVG renderer for menger sponges
import numpy as np
from svg import *
compose = lambda f: lambda g: lambda *a, **k: f(g(*a, **k))
PURPLE = '#6a1eb0'
ORANGE = '#ff824a'
BLUE = '#75c1ff'
VP_WIDTH = 2.0
VP_HEIGHT = 2.0
VP_EYE = -np.array((11.90, 11, 27))
VP_DIR = -np.array((-2.00, -1, -3))
VP_FOC = 2.5
# I don't know numpy, there is probably a builtin thing for doing this
B3 = -VP_DIR; B3 = B3 / np.linalg.norm(B3)
B2 = (0, 1, 0) - B3[2] * B3; B2 = B2 / np.linalg.norm(B2)
B1 = np.cross(B2, B3); B1 = B1 / np.linalg.norm(B1)
B = np.matrix((B1, B2, B3)).transpose()
VIEWBASIS = B.I
def zcoordinate(u):
x = VIEWBASIS * np.matrix(u - (VP_EYE + VP_DIR)).transpose()
return np.ndarray.item(x[2]), np.ndarray.item(VP_FOC*x[0]/(1-x[2]), 0), np.ndarray.item(VP_FOC*x[1]/(1-x[2]), 0)
class View:
def __init__(self, position, direction):
self.pos = position
self.dir = direction
bz = -self.dir / np.linalg.norm(self.dir)
by = (0, 1, 0) - bz[2] * bz
by = by / np.linalg.norm(by)
bx = np.cross(by, bz)
self.basis = bx, by, bz
self.invbasis = np.matrix(self.basis).transpose().I
def global_to_view(self, v):
v = v - (self.pos + self.dir)
return self.invbasis * v.transpose()
# Basic header
svg_header()
svg_open(width=1024, height=1024,
x_bias=-VP_WIDTH/2, y_bias=-VP_HEIGHT/2,
xw=VP_WIDTH, yh=VP_HEIGHT)
class Poly:
def __init__(self, *points, **opts):
self.points = [np.array(p) for p in points]
self.opts = opts
centre = sum(self.points[:-1]) / len(points)
zcoords = [zcoordinate(point) for point in self.points]
self.projpoints = tuple((x, y) for _, x, y in zcoords)
self.z = zcoordinate(centre)[0]
def draw(self):
svg_polygon(*self.projpoints, **self.opts)
def __lt__(self, other):
return self.z < other.z
class Cube:
def __init__(self, x, y, z, w=1):
self.faces = [
Poly((x,y,z), (x+w,y,z), (x+w,y+w,z), (x,y+w,z), fill=PURPLE, stroke=PURPLE, stroke_width="0.001"),
Poly((x,y,z), (x,y,z+w), (x,y+w,z+w), (x,y+w,z), fill=ORANGE, stroke=ORANGE, stroke_width="0.001"),
Poly((x,y,z), (x+w,y,z), (x+w,y,z+w), (x,y,z+w), fill=BLUE, stroke=BLUE, stroke_width="0.001"),
]
def projections(self):
yield from self.faces
class Level:
def __init__(self, x, y, z, n=1):
if n == 1:
f = Cube
else:
f = lambda *a, **k: Level(*a, **k, n=n-1)
self.cubes = [
# Back
f(x+3**(n-1)*2, y+3**(n-1)*2, z+3**(n-1)*2), f(x+3**(n-1)*1, y+3**(n-1)*2, z+3**(n-1)*2), f(x+3**(n-1)*0, y+3**(n-1)*2, z+3**(n-1)*2),
f(x+3**(n-1)*0, y+3**(n-1)*1, z+3**(n-1)*2), f(x+3**(n-1)*2, y+3**(n-1)*1, z+3**(n-1)*2),
f(x+3**(n-1)*2, y+3**(n-1)*0, z+3**(n-1)*2), f(x+3**(n-1)*1, y+3**(n-1)*0, z+3**(n-1)*2), f(x+3**(n-1)*0, y+3**(n-1)*0, z+3**(n-1)*2),
# Mid
f(x+3**(n-1)*2, y+3**(n-1)*2, z+3**(n-1)*1), f(x+3**(n-1)*0, y+3**(n-1)*2, z+3**(n-1)*1),
f(x+3**(n-1)*2, y+3**(n-1)*0, z+3**(n-1)*1), f(x+3**(n-1)*0, y+3**(n-1)*0, z+3**(n-1)*1),
# Front
f(x+3**(n-1)*2, y+3**(n-1)*2, z+3**(n-1)*0), f(x+3**(n-1)*1, y+3**(n-1)*2, z+3**(n-1)*0), f(x+3**(n-1)*0, y+3**(n-1)*2, z+3**(n-1)*0),
f(x+3**(n-1)*0, y+3**(n-1)*1, z+3**(n-1)*0), f(x+3**(n-1)*2, y+3**(n-1)*1, z+3**(n-1)*0),
f(x+3**(n-1)*2, y+3**(n-1)*0, z+3**(n-1)*0), f(x+3**(n-1)*1, y+3**(n-1)*0, z+3**(n-1)*0), f(x+3**(n-1)*0, y+3**(n-1)*0, z+3**(n-1)*0),
]
def projections(self):
for cube in self.cubes:
yield from cube.projections()
def draw(obj):
polygons = sorted(obj.projections())
for polygon in polygons:
polygon.draw()
draw(Level(0, 0, 0, n=2))
# Footer
svg_close()
Display the source blob
Display the rendered blob
Raw
<svg width="1024" height="1024" viewBox="-1.0 -1.0 2.0 2.0" xmlns="http://www.w3.org/2000/svg">
<polyline points="0.1578712658285697,0.47874640853189815 0.18574033460026504,0.4578271578101701 0.18255262970106895,0.508937679830411 0.15512192888863732,0.530245775909619 0.1578712658285697,0.47874640853189815" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.1578712658285697,0.47874640853189815 0.11078174855442338,0.4647312146693385 0.10887124673260494,0.5159712812825978 0.15512192888863732,0.530245775909619 0.1578712658285697,0.47874640853189815" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1578712658285697,0.47874640853189815 0.11078174855442338,0.4647312146693385 0.1390679571800539,0.4442210744896094 0.18574033460026504,0.4578271578101701 0.1578712658285697,0.47874640853189815" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2059118936633093,0.49304468023562226 0.23334133010227792,0.47170395489532474 0.22929754061125532,0.5230736422332137 0.20229034888470912,0.5448035148750149 0.2059118936633093,0.49304468023562226" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2059118936633093,0.49304468023562226 0.1578712658285697,0.47874640853189815 0.15512192888863732,0.530245775909619 0.20229034888470912,0.5448035148750149 0.2059118936633093,0.49304468023562226" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.12915356584820228,0.5003026639978438 0.1578712658285697,0.47874640853189815 0.15512192888863732,0.530245775909619 0.12687070951006488,0.5521912486479819 0.12915356584820228,0.5003026639978438" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2059118936633093,0.49304468023562226 0.1578712658285697,0.47874640853189815 0.18574033460026504,0.4578271578101701 0.23334133010227792,0.47170395489532474 0.2059118936633093,0.49304468023562226" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.16071981816561,0.4253885820795642 0.1890413444004676,0.404899945468515 0.18574033460026504,0.4578271578101701 0.1578712658285697,0.47874640853189815 0.16071981816561,0.4253885820795642" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2549327417264256,0.5076346936543598 0.28189893657474036,0.48585962632305074 0.27696541765609944,0.5374887155450869 0.25040409602172975,0.5596530131521698 0.2549327417264256,0.5076346936543598" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.12915356584820228,0.5003026639978438 0.08164286141235637,0.4858596263230506 0.0802140280643347,0.5374887155450869 0.12687070951006488,0.5521912486479819 0.12915356584820228,0.5003026639978438" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.16071981816561,0.4253885820795642 0.11276050003576346,0.41166067762140945 0.11078174855442338,0.4647312146693385 0.1578712658285697,0.47874640853189815 0.16071981816561,0.4253885820795642" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.12915356584820228,0.5003026639978438 0.08164286141235637,0.4858596263230506 0.11078174855442338,0.4647312146693385 0.1578712658285697,0.47874640853189815 0.12915356584820228,0.5003026639978438" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2549327417264256,0.5076346936543598 0.2059118936633093,0.49304468023562226 0.20229034888470912,0.5448035148750149 0.25040409602172975,0.5596530131521698 0.2549327417264256,0.5076346936543598" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.16071981816561,0.4253885820795642 0.11276050003576346,0.41166067762140945 0.14151496524112434,0.3915797985955678 0.1890413444004676,0.404899945468515 0.16071981816561,0.4253885820795642" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2549327417264256,0.5076346936543598 0.2059118936633093,0.49304468023562226 0.23334133010227792,0.47170395489532474 0.28189893657474036,0.48585962632305074 0.2549327417264256,0.5076346936543598" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.0995478733143584,0.5225254698611991 0.12915356584820228,0.5003026639978438 0.12687070951006488,0.5521912486479819 0.09776159704373359,0.574803130475367 0.0995478733143584,0.5225254698611991" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.30496411983605015,0.5225254698611991 0.33144228344177246,0.5003026639978438 0.3255838689836608,0.552191248647982 0.2994918766577869,0.574803130475367 0.30496411983605015,0.5225254698611991" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.22712839389795556,0.530086565320855 0.2549327417264256,0.5076346936543598 0.25040409602172975,0.5596530131521698 0.22303209479646516,0.5824937885326079 0.22712839389795556,0.530086565320855" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.0995478733143584,0.5225254698611991 0.051612150165472694,0.5076346936543596 0.050695307783540415,0.5596530131521699 0.09776159704373359,0.574803130475367 0.0995478733143584,0.5225254698611991" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.30496411983605015,0.5225254698611991 0.2549327417264256,0.5076346936543598 0.25040409602172975,0.5596530131521698 0.2994918766577869,0.574803130475367 0.30496411983605015,0.5225254698611991" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.16367305516767908,0.37006984863732006 0.1924618094301058,0.3500574306357036 0.1890413444004676,0.404899945468515 0.16071981816561,0.4253885820795642 0.16367305516767908,0.37006984863732006" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.0995478733143584,0.5225254698611991 0.051612150165472694,0.5076346936543596 0.08164286141235637,0.4858596263230506 0.12915356584820228,0.5003026639978438 0.0995478733143584,0.5225254698611991" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2596282087375365,0.45370018009280305 0.28701140222009647,0.4323578663619485 0.28189893657474036,0.48585962632305074 0.2549327417264256,0.5076346936543598 0.2596282087375365,0.45370018009280305" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.30496411983605015,0.5225254698611991 0.2549327417264256,0.5076346936543598 0.28189893657474036,0.48585962632305074 0.33144228344177246,0.5003026639978438 0.30496411983605015,0.5225254698611991" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.22712839389795556,0.530086565320855 0.17763864826188097,0.5150419081383258 0.17446717073033052,0.5671899267576883 0.22303209479646516,0.5824937885326079 0.22712839389795556,0.530086565320855" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.14848204862042533,0.5377264057287083 0.17763864826188097,0.5150419081383258 0.17446717073033052,0.5671899267576883 0.14579045799511298,0.5902630889668969 0.14848204862042533,0.5377264057287083" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3560376004554283,0.5377264057287083 0.38200169493484165,0.515041908138326 0.37518161493336594,0.5671899267576882 0.3495835713216149,0.5902630889668968 0.3560376004554283,0.5377264057287083" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.16367305516767908,0.37006984863732006 0.11481122485479159,0.35665980029565575 0.11276050003576346,0.41166067762140945 0.16071981816561,0.4253885820795642 0.16367305516767908,0.37006984863732006" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2596282087375365,0.45370018009280305 0.2096654731279028,0.4393988161939229 0.2059118936633093,0.49304468023562226 0.2549327417264256,0.5076346936543598 0.2596282087375365,0.45370018009280305" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.22712839389795556,0.530086565320855 0.17763864826188097,0.5150419081383258 0.2059118936633093,0.49304468023562226 0.2549327417264256,0.5076346936543598 0.22712839389795556,0.530086565320855" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.16367305516767908,0.37006984863732006 0.11481122485479159,0.35665980029565575 0.14404962967538731,0.33705281443660173 0.1924618094301058,0.3500574306357036 0.16367305516767908,0.37006984863732006" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.14848204862042533,0.5377264057287083 0.0995478733143584,0.5225254698611991 0.09776159704373359,0.574803130475367 0.14579045799511298,0.5902630889668969 0.14848204862042533,0.5377264057287083" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3560376004554283,0.5377264057287083 0.30496411983605015,0.5225254698611991 0.2994918766577869,0.574803130475367 0.3495835713216149,0.5902630889668968 0.3560376004554283,0.5377264057287083" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.27765435622637785,0.5454462276565287 0.30496411983605015,0.5225254698611991 0.2994918766577869,0.574803130475367 0.27259534402727204,0.5981122442376196 0.27765435622637785,0.5454462276565287" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.0690123544377702,0.5454462276565285 0.0995478733143584,0.5225254698611991 0.09776159704373359,0.574803130475367 0.06775491209926414,0.5981122442376194 0.0690123544377702,0.5454462276565285" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2596282087375365,0.45370018009280305 0.2096654731279028,0.4393988161939229 0.23753030903735084,0.41848987472685284 0.28701140222009647,0.4323578663619485 0.2596282087375365,0.45370018009280305" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.21355844195031579,0.38376081035557824 0.24187243974615955,0.36333025343921216 0.23753030903735084,0.41848987472685284 0.2096654731279028,0.4393988161939229 0.21355844195031579,0.38376081035557824" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.14848204862042533,0.5377264057287083 0.0995478733143584,0.5225254698611991 0.12915356584820228,0.5003026639978438 0.17763864826188097,0.5150419081383258 0.14848204862042533,0.5377264057287083" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.10140064132242764,0.4683018434740255 0.13152008095287104,0.4465125426997942 0.12915356584820228,0.5003026639978438 0.0995478733143584,0.5225254698611991 0.10140064132242764,0.4683018434740255" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3560376004554283,0.5377264057287083 0.30496411983605015,0.5225254698611991 0.33144228344177246,0.5003026639978438 0.38200169493484165,0.515041908138326 0.3560376004554283,0.5377264057287083" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.31064005992426236,0.4683018434740255 0.33751538846941637,0.4465125426997942 0.33144228344177246,0.5003026639978438 0.30496411983605015,0.5225254698611991 0.31064005992426236,0.4683018434740255" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.1984461994919693,0.5532472937036762 0.22712839389795556,0.530086565320855 0.22303209479646516,0.5824937885326079 0.1948117246247804,0.6060424918568398 0.1984461994919693,0.5532472937036762" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.27765435622637785,0.5454462276565287 0.22712839389795556,0.530086565320855 0.22303209479646516,0.5824937885326079 0.27259534402727204,0.5981122442376196 0.27765435622637785,0.5454462276565287" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.0690123544377702,0.5454462276565285 0.020648035808905014,0.5300865653208549 0.020275644981496796,0.5824937885326079 0.06775491209926414,0.5981122442376194 0.0690123544377702,0.5454462276565285" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.40818608513388793,0.5532472937036761 0.4336087519870063,0.5300865653208549 0.4257885446114338,0.5824937885326081 0.4007102953664181,0.6060424918568399 0.40818608513388793,0.5532472937036761" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.21355844195031579,0.38376081035557824 0.16367305516767908,0.37006984863732006 0.16071981816561,0.4253885820795642 0.2096654731279028,0.4393988161939229 0.21355844195031579,0.38376081035557824" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.13397493936559499,0.39071440664333984 0.16367305516767908,0.37006984863732006 0.16071981816561,0.4253885820795642 0.13152008095287104,0.4465125426997942 0.13397493936559499,0.39071440664333984" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.10140064132242764,0.4683018434740255 0.052562766186127055,0.45370018009280294 0.051612150165472694,0.5076346936543596 0.0995478733143584,0.5225254698611991 0.10140064132242764,0.4683018434740255" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.31064005992426236,0.4683018434740255 0.2596282087375365,0.45370018009280305 0.2549327417264256,0.5076346936543598 0.30496411983605015,0.5225254698611991 0.31064005992426236,0.4683018434740255" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.27765435622637785,0.5454462276565287 0.22712839389795556,0.530086565320855 0.2549327417264256,0.5076346936543598 0.30496411983605015,0.5225254698611991 0.27765435622637785,0.5454462276565287" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.0690123544377702,0.5454462276565285 0.020648035808905014,0.5300865653208549 0.051612150165472694,0.5076346936543596 0.0995478733143584,0.5225254698611991 0.0690123544377702,0.5454462276565285" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.21355844195031579,0.38376081035557824 0.16367305516767908,0.37006984863732006 0.1924618094301058,0.3500574306357036 0.24187243974615955,0.36333025343921216 0.21355844195031579,0.38376081035557824" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.16673685562020857,0.3126800893884143 0.19600833334987133,0.29319373257437953 0.1924618094301058,0.3500574306357036 0.16367305516767908,0.37006984863732006 0.16673685562020857,0.3126800893884143" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.1984461994919693,0.5532472937036762 0.14848204862042533,0.5377264057287083 0.14579045799511298,0.5902630889668969 0.1948117246247804,0.6060424918568398 0.1984461994919693,0.5532472937036762" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.40818608513388793,0.5532472937036761 0.3560376004554283,0.5377264057287083 0.3495835713216149,0.5902630889668968 0.4007102953664181,0.6060424918568399 0.40818608513388793,0.5532472937036761" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.11840003918324242,0.5611308931855166 0.14848204862042533,0.5377264057287083 0.14579045799511298,0.5902630889668969 0.11622032290227911,0.6140550950397293 0.11840003918324242,0.5611308931855166" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2644998877896196,0.39774160573153766 0.2923127304560783,0.3768796665203218 0.28701140222009647,0.4323578663619485 0.2596282087375365,0.45370018009280305 0.2644998877896196,0.39774160573153766" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.13397493936559499,0.39071440664333984 0.08465887821951981,0.3768796665203216 0.08312352086155787,0.43235786636194834 0.13152008095287104,0.4465125426997942 0.13397493936559499,0.39071440664333984" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.10140064132242764,0.4683018434740255 0.052562766186127055,0.45370018009280294 0.08312352086155787,0.43235786636194834 0.13152008095287104,0.4465125426997942 0.10140064132242764,0.4683018434740255" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.31064005992426236,0.4683018434740255 0.2596282087375365,0.45370018009280305 0.28701140222009647,0.4323578663619485 0.33751538846941637,0.4465125426997942 0.31064005992426236,0.4683018434740255" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1984461994919693,0.5532472937036762 0.14848204862042533,0.5377264057287083 0.17763864826188097,0.5150419081383258 0.22712839389795556,0.530086565320855 0.1984461994919693,0.5532472937036762" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.40818608513388793,0.5532472937036761 0.3560376004554283,0.5377264057287083 0.38200169493484165,0.515041908138326 0.4336087519870063,0.5300865653208549 0.40818608513388793,0.5532472937036761" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.13397493936559499,0.39071440664333984 0.08465887821951981,0.3768796665203216 0.11481122485479159,0.35665980029565575 0.16367305516767908,0.37006984863732006 0.13397493936559499,0.39071440664333984" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.16673685562020857,0.3126800893884143 0.11693792259084794,0.29962131312055623 0.11481122485479159,0.35665980029565575 0.16367305516767908,0.37006984863732006 0.16673685562020857,0.3126800893884143" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2494731904725651,0.5690983428438021 0.27765435622637785,0.5454462276565287 0.27259534402727204,0.5981122442376196 0.24485647669145583,0.6221513433753659 0.2494731904725651,0.5690983428438021" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4614438751878164,0.569098342843802 0.4862963580149857,0.5454462276565286 0.47743577595528025,0.5981122442376194 0.4529044634227581,0.6221513433753658 0.4614438751878164,0.569098342843802" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.11840003918324242,0.5611308931855166 0.0690123544377702,0.5454462276565285 0.06775491209926414,0.5981122442376194 0.11622032290227911,0.6140550950397293 0.11840003918324242,0.5611308931855166" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.03750250575731369,0.569098342843802 0.0690123544377702,0.5454462276565285 0.06775491209926414,0.5981122442376194 0.03680848996015348,0.6221513433753658 0.03750250575731369,0.569098342843802" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2644998877896196,0.39774160573153766 0.21355844195031579,0.38376081035557824 0.2096654731279028,0.4393988161939229 0.2596282087375365,0.45370018009280305 0.2644998877896196,0.39774160573153766" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.16673685562020857,0.3126800893884143 0.11693792259084794,0.29962131312055623 0.14667674640334968,0.2805369497434451 0.19600833334987133,0.29319373257437953 0.16673685562020857,0.3126800893884143" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.11840003918324242,0.5611308931855166 0.0690123544377702,0.5454462276565285 0.0995478733143584,0.5225254698611991 0.14848204862042533,0.5377264057287083 0.11840003918324242,0.5611308931855166" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07031735230704626,0.49078842163479347 0.10140064132242764,0.4683018434740255 0.0995478733143584,0.5225254698611991 0.0690123544377702,0.5454462276565285 0.07031735230704626,0.49078842163479347" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2644998877896196,0.39774160573153766 0.21355844195031579,0.38376081035557824 0.24187243974615955,0.36333025343921216 0.2923127304560783,0.3768796665203218 0.2644998877896196,0.39774160573153766" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.21759871136863135,0.3260175959248519 0.24637627761548997,0.3061164089298275 0.24187243974615955,0.36333025343921216 0.21355844195031579,0.38376081035557824 0.21759871136863135,0.3260175959248519" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.38194789279692526,0.577150987579839 0.40818608513388793,0.5532472937036761 0.4007102953664181,0.6060424918568399 0.3748425347451817,0.6303325535186528 0.38194789279692526,0.577150987579839" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2494731904725651,0.5690983428438021 0.1984461994919693,0.5532472937036762 0.1948117246247804,0.6060424918568398 0.24485647669145583,0.6221513433753659 0.2494731904725651,0.5690983428438021" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4614438751878164,0.569098342843802 0.40818608513388793,0.5532472937036761 0.4007102953664181,0.6060424918568399 0.4529044634227581,0.6221513433753658 0.4614438751878164,0.569098342843802" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.16884391827503564,0.577150987579839 0.1984461994919693,0.5532472937036762 0.1948117246247804,0.6060424918568398 0.1657029230847799,0.6303325535186527 0.16884391827503564,0.577150987579839" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.03750250575731369,0.569098342843802 -0.011293686149949482,0.553247293703676 -0.011086846116857434,0.6060424918568399 0.03680848996015348,0.6221513433753658 0.03750250575731369,0.569098342843802" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.10332368407519293,0.41202153676624237 0.13397493936559499,0.39071440664333984 0.13152008095287104,0.4465125426997942 0.10140064132242764,0.4683018434740255 0.10332368407519293,0.41202153676624237" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.31653128613511466,0.4120215367662422 0.34381520584182845,0.39071440664333973 0.33751538846941637,0.4465125426997942 0.31064005992426236,0.4683018434740255 0.31653128613511466,0.4120215367662422" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.20221886452118817,0.4984447142220414 0.23137797689964698,0.4757182588547859 0.22712839389795556,0.530086565320855 0.1984461994919693,0.5532472937036762 0.20221886452118817,0.4984447142220414" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.41594611970618367,0.49844471422204123 0.4417215922629628,0.47571825885478586 0.4336087519870063,0.5300865653208549 0.40818608513388793,0.5532472937036761 0.41594611970618367,0.49844471422204123" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2494731904725651,0.5690983428438021 0.1984461994919693,0.5532472937036762 0.22712839389795556,0.530086565320855 0.27765435622637785,0.5454462276565287 0.2494731904725651,0.5690983428438021" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4614438751878164,0.569098342843802 0.40818608513388793,0.5532472937036761 0.4336087519870063,0.5300865653208549 0.4862963580149857,0.5454462276565286 0.4614438751878164,0.569098342843802" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07031735230704626,0.49078842163479347 0.021034361536331505,0.4757182588547857 0.020648035808905014,0.5300865653208549 0.0690123544377702,0.5454462276565285 0.07031735230704626,0.49078842163479347" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.03750250575731369,0.569098342843802 -0.011293686149949482,0.553247293703676 0.020648035808905014,0.5300865653208549 0.0690123544377702,0.5454462276565285 0.03750250575731369,0.569098342843802" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.21759871136863135,0.3260175959248519 0.16673685562020857,0.3126800893884143 0.16367305516767908,0.37006984863732006 0.21355844195031579,0.38376081035557824 0.21759871136863135,0.3260175959248519" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.13652318203331684,0.33279367673833904 0.16673685562020857,0.3126800893884143 0.16367305516767908,0.37006984863732006 0.13397493936559499,0.39071440664333984 0.13652318203331684,0.33279367673833904" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.38194789279692526,0.577150987579839 0.32924942403011254,0.5611308931855168 0.3231880212214063,0.6140550950397292 0.3748425347451817,0.6303325535186528 0.38194789279692526,0.577150987579839" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.30159729932955665,0.5852902012113012 0.32924942403011254,0.5611308931855168 0.3231880212214063,0.6140550950397292 0.2959571054357239,0.6386000699041338 0.30159729932955665,0.5852902012113012" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5158467469407171,0.5852902012113009 0.5400988088769828,0.5611308931855166 0.5301557195405336,0.6140550950397292 0.5061998579310468,0.6386000699041336 0.5158467469407171,0.5852902012113009" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.16884391827503564,0.577150987579839 0.11840003918324242,0.5611308931855166 0.11622032290227911,0.6140550950397293 0.1657029230847799,0.6303325535186527 0.16884391827503564,0.577150987579839" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.23578961169635335,0.41927669445935256 0.2644998877896196,0.39774160573153766 0.2596282087375365,0.45370018009280305 0.23137797689964698,0.4757182588547859 0.23578961169635335,0.41927669445935256" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.10332368407519293,0.41202153676624237 0.05354905703716228,0.39774160573153766 0.052562766186127055,0.45370018009280294 0.10140064132242764,0.4683018434740255 0.10332368407519293,0.41202153676624237" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.31653128613511466,0.4120215367662422 0.2644998877896196,0.39774160573153766 0.2596282087375365,0.45370018009280305 0.31064005992426236,0.4683018434740255 0.31653128613511466,0.4120215367662422" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.07031735230704626,0.49078842163479347 0.021034361536331505,0.4757182588547857 0.052562766186127055,0.45370018009280294 0.10140064132242764,0.4683018434740255 0.07031735230704626,0.49078842163479347" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.21759871136863135,0.3260175959248519 0.16673685562020857,0.3126800893884143 0.19600833334987133,0.29319373257437953 0.24637627761548997,0.3061164089298275 0.21759871136863135,0.3260175959248519" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.16991754688615435,0.2531007829596874 0.19968801570495878,0.23419501971215123 0.19600833334987133,0.29319373257437953 0.16673685562020857,0.3126800893884143 0.16991754688615435,0.2531007829596874" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.41594611970618367,0.49844471422204123 0.36273442122877547,0.48321336521127645 0.3560376004554283,0.5377264057287083 0.40818608513388793,0.5532472937036761 0.41594611970618367,0.49844471422204123" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.38194789279692526,0.577150987579839 0.32924942403011254,0.5611308931855168 0.3560376004554283,0.5377264057287083 0.40818608513388793,0.5532472937036761 0.38194789279692526,0.577150987579839" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.20221886452118817,0.4984447142220414 0.1512748931581889,0.48321336521127645 0.14848204862042533,0.5377264057287083 0.1984461994919693,0.5532472937036762 0.20221886452118817,0.4984447142220414" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.16884391827503564,0.577150987579839 0.11840003918324242,0.5611308931855166 0.14848204862042533,0.5377264057287083 0.1984461994919693,0.5532472937036762 0.16884391827503564,0.577150987579839" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.10332368407519293,0.41202153676624237 0.05354905703716228,0.39774160573153766 0.08465887821951981,0.3768796665203216 0.13397493936559499,0.39071440664333984 0.10332368407519293,0.41202153676624237" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.13652318203331684,0.33279367673833904 0.08625202146492963,0.31931344658667343 0.08465887821951981,0.3768796665203216 0.13397493936559499,0.39071440664333984 0.13652318203331684,0.33279367673833904" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.31653128613511466,0.4120215367662422 0.2644998877896196,0.39774160573153766 0.2923127304560783,0.3768796665203218 0.34381520584182845,0.39071440664333973 0.31653128613511466,0.4120215367662422" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2695578879288661,0.33964285294315366 0.29781358354871973,0.3193134465866735 0.2923127304560783,0.3768796665203218 0.2644998877896196,0.39774160573153766 0.2695578879288661,0.33964285294315366" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.30159729932955665,0.5852902012113012 0.2494731904725651,0.5690983428438021 0.24485647669145583,0.6221513433753659 0.2959571054357239,0.6386000699041338 0.30159729932955665,0.5852902012113012" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5158467469407171,0.5852902012113009 0.4614438751878164,0.569098342843802 0.4529044634227581,0.6221513433753658 0.5061998579310468,0.6386000699041336 0.5158467469407171,0.5852902012113009" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4357855407409856,0.5935173872535858 0.4614438751878164,0.569098342843802 0.4529044634227581,0.6221513433753658 0.42759266776201926,0.6469552654825176 0.4357855407409856,0.5935173872535858" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.004970937727083403,0.5935173872535858 0.03750250575731369,0.569098342843802 0.03680848996015348,0.6221513433753658 0.0048774829022282746,0.6469552654825175 0.004970937727083403,0.5935173872535858" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.23578961169635335,0.41927669445935256 0.1843405618376463,0.40484358245020213 0.18092756330216622,0.4609628862779863 0.23137797689964698,0.4757182588547859 0.23578961169635335,0.41927669445935256" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.20221886452118817,0.4984447142220414 0.1512748931581889,0.48321336521127645 0.18092756330216622,0.4609628862779863 0.23137797689964698,0.4757182588547859 0.20221886452118817,0.4984447142220414" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.15417481468441202,0.42661030781984743 0.1843405618376463,0.40484358245020213 0.18092756330216622,0.4609628862779863 0.1512748931581889,0.48321336521127645 0.15417481468441202,0.42661030781984743" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.41594611970618367,0.49844471422204123 0.36273442122877547,0.48321336521127645 0.38907431754359667,0.4609628862779864 0.4417215922629628,0.47571825885478586 0.41594611970618367,0.49844471422204123" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3696879965013319,0.4266103078198474 0.39641377457122196,0.40484358245020224 0.38907431754359667,0.4609628862779864 0.36273442122877547,0.48321336521127645 0.3696879965013319,0.4266103078198474" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.16991754688615435,0.2531007829596874 0.11914489475989334,0.24042984851998375 0.11693792259084794,0.29962131312055623 0.16673685562020857,0.3126800893884143 0.16991754688615435,0.2531007829596874" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.13652318203331684,0.33279367673833904 0.08625202146492963,0.31931344658667343 0.11693792259084794,0.29962131312055623 0.16673685562020857,0.3126800893884143 0.13652318203331684,0.33279367673833904" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.30159729932955665,0.5852902012113012 0.2494731904725651,0.5690983428438021 0.27765435622637785,0.5454462276565287 0.32924942403011254,0.5611308931855168 0.30159729932955665,0.5852902012113012" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2542673440403149,0.5140062916928401 0.28290469649113964,0.49078842163479347 0.27765435622637785,0.5454462276565287 0.2494731904725651,0.5690983428438021 0.2542673440403149,0.5140062916928401" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5158467469407171,0.5852902012113009 0.4614438751878164,0.569098342843802 0.4862963580149857,0.5454462276565286 0.5400988088769828,0.5611308931855166 0.5158467469407171,0.5852902012113009" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.47031149257130134,0.5140062916928401 0.4954920406752333,0.49078842163479347 0.4862963580149857,0.5454462276565286 0.4614438751878164,0.569098342843802 0.47031149257130134,0.5140062916928401" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.23578961169635335,0.41927669445935256 0.1843405618376463,0.40484358245020213 0.21355844195031579,0.38376081035557824 0.2644998877896196,0.39774160573153766 0.23578961169635335,0.41927669445935256" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2695578879288661,0.33964285294315366 0.21759871136863135,0.3260175959248519 0.21355844195031579,0.38376081035557824 0.2644998877896196,0.39774160573153766 0.2695578879288661,0.33964285294315366" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.16991754688615435,0.2531007829596874 0.11914489475989334,0.24042984851998375 0.14940146770866686,0.22192136598242213 0.19968801570495878,0.23419501971215123 0.16991754688615435,0.2531007829596874" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.35485429384294437,0.6018339797266392 0.38194789279692526,0.577150987579839 0.3748425347451817,0.6303325535186528 0.34814738349381713,0.6553995424807646 0.35485429384294437,0.6018339797266392" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5714320318691545,0.6018339797266391 0.5950518673188152,0.5771509875798388 0.5839821464055838,0.6303325535186527 0.5606317020581185,0.6553995424807645 0.5714320318691545,0.6018339797266391" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4357855407409856,0.5935173872535858 0.38194789279692526,0.577150987579839 0.3748425347451817,0.6303325535186528 0.42759266776201926,0.6469552654825176 0.4357855407409856,0.5935173872535858" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.13827655581673418,0.6018339797266393 0.16884391827503564,0.577150987579839 0.1657029230847799,0.6303325535186527 0.13566306492951555,0.6553995424807645 0.13827655581673418,0.6018339797266393" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.004970937727083403,0.5935173872535858 -0.044260056246854106,0.5771509875798388 -0.043436688575622016,0.6303325535186527 0.0048774829022282746,0.6469552654825175 0.004970937727083403,0.5935173872535858" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.15417481468441202,0.42661030781984743 0.10332368407519293,0.41202153676624237 0.10140064132242764,0.4683018434740255 0.1512748931581889,0.48321336521127645 0.15417481468441202,0.42661030781984743" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3696879965013319,0.4266103078198474 0.31653128613511466,0.4120215367662422 0.31064005992426236,0.4683018434740255 0.36273442122877547,0.48321336521127645 0.3696879965013319,0.4266103078198474" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2883574278461978,0.434023656369257 0.31653128613511466,0.4120215367662422 0.31064005992426236,0.4683018434740255 0.28290469649113964,0.49078842163479347 0.2883574278461978,0.434023656369257" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.07167265547622255,0.4340236563692571 0.10332368407519293,0.41202153676624237 0.10140064132242764,0.4683018434740255 0.07031735230704626,0.49078842163479347 0.07167265547622255,0.4340236563692571" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2695578879288661,0.33964285294315366 0.21759871136863135,0.3260175959248519 0.24637627761548997,0.3061164089298275 0.29781358354871973,0.3193134465866735 0.2695578879288661,0.33964285294315366" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.004970937727083403,0.5935173872535858 -0.044260056246854106,0.5771509875798388 -0.011293686149949482,0.553247293703676 0.03750250575731369,0.569098342843802 0.004970937727083403,0.5935173872535858" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2542673440403149,0.5140062916928401 0.20221886452118817,0.4984447142220414 0.1984461994919693,0.5532472937036762 0.2494731904725651,0.5690983428438021 0.2542673440403149,0.5140062916928401" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.47031149257130134,0.5140062916928401 0.41594611970618367,0.49844471422204123 0.40818608513388793,0.5532472937036761 0.4614438751878164,0.569098342843802 0.47031149257130134,0.5140062916928401" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4357855407409856,0.5935173872535858 0.38194789279692526,0.577150987579839 0.40818608513388793,0.5532472937036761 0.4614438751878164,0.569098342843802 0.4357855407409856,0.5935173872535858" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.17210629306398323,0.5219142904674766 0.20221886452118817,0.4984447142220414 0.1984461994919693,0.5532472937036762 0.16884391827503564,0.577150987579839 0.17210629306398323,0.5219142904674766" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.15417481468441202,0.42661030781984743 0.10332368407519293,0.41202153676624237 0.13397493936559499,0.39071440664333984 0.1843405618376463,0.40484358245020213 0.15417481468441202,0.42661030781984743" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3696879965013319,0.4266103078198474 0.31653128613511466,0.4120215367662422 0.34381520584182845,0.39071440664333973 0.39641377457122196,0.40484358245020224 0.3696879965013319,0.4266103078198474" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.10532107710344002,0.3535652741147295 0.13652318203331684,0.33279367673833904 0.13397493936559499,0.39071440664333984 0.10332368407519293,0.41202153676624237 0.10532107710344002,0.3535652741147295" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.35485429384294437,0.6018339797266392 0.30159729932955665,0.5852902012113012 0.2959571054357239,0.6386000699041338 0.34814738349381713,0.6553995424807646 0.35485429384294437,0.6018339797266392" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5714320318691545,0.6018339797266391 0.5158467469407171,0.5852902012113009 0.5061998579310468,0.6386000699041336 0.5606317020581185,0.6553995424807645 0.5714320318691545,0.6018339797266391" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.13827655581673418,0.6018339797266393 0.08734785171839617,0.5852902012113009 0.08571435294040089,0.6386000699041338 0.13566306492951555,0.6553995424807645 0.13827655581673418,0.6018339797266393" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.055277783015962964,0.6102414439882321 0.08734785171839617,0.5852902012113009 0.08571435294040089,0.6386000699041338 0.054227407894783704,0.6639343331866107 0.055277783015962964,0.6102414439882321" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.20613775385831795,0.44151804760455693 0.23578961169635335,0.41927669445935256 0.23137797689964698,0.4757182588547859 0.20221886452118817,0.4984447142220414 0.20613775385831795,0.44151804760455693" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2883574278461978,0.434023656369257 0.23578961169635335,0.41927669445935256 0.23137797689964698,0.4757182588547859 0.28290469649113964,0.49078842163479347 0.2883574278461978,0.434023656369257" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2542673440403149,0.5140062916928401 0.20221886452118817,0.4984447142220414 0.23137797689964698,0.4757182588547859 0.28290469649113964,0.49078842163479347 0.2542673440403149,0.5140062916928401" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07167265547622255,0.4340236563692571 0.021435419245122992,0.4192766944593525 0.021034361536331505,0.4757182588547857 0.07031735230704626,0.49078842163479347 0.07167265547622255,0.4340236563692571" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.42400692460288153,0.44151804760455693 0.4501438041475839,0.41927669445935256 0.4417215922629628,0.47571825885478586 0.41594611970618367,0.49844471422204123 0.42400692460288153,0.44151804760455693" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.47031149257130134,0.5140062916928401 0.41594611970618367,0.49844471422204123 0.4417215922629628,0.47571825885478586 0.4954920406752333,0.49078842163479347 0.47031149257130134,0.5140062916928401" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.35485429384294437,0.6018339797266392 0.30159729932955665,0.5852902012113012 0.32924942403011254,0.5611308931855168 0.38194789279692526,0.577150987579839 0.35485429384294437,0.6018339797266392" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5714320318691545,0.6018339797266391 0.5158467469407171,0.5852902012113009 0.5400988088769828,0.5611308931855166 0.5950518673188152,0.5771509875798388 0.5714320318691545,0.6018339797266391" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.17210629306398323,0.5219142904674766 0.12066307952229802,0.5061835568030625 0.11840003918324242,0.5611308931855166 0.16884391827503564,0.577150987579839 0.17210629306398323,0.5219142904674766" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.13827655581673418,0.6018339797266393 0.08734785171839617,0.5852902012113009 0.11840003918324242,0.5611308931855166 0.16884391827503564,0.577150987579839 0.13827655581673418,0.6018339797266393" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2883574278461978,0.434023656369257 0.23578961169635335,0.41927669445935256 0.2644998877896196,0.39774160573153766 0.31653128613511466,0.4120215367662422 0.2883574278461978,0.434023656369257" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.24037274788308238,0.3606409759249369 0.2695578879288661,0.33964285294315366 0.2644998877896196,0.39774160573153766 0.23578961169635335,0.41927669445935256 0.24037274788308238,0.3606409759249369" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.10532107710344002,0.3535652741147295 0.05457306933529194,0.33964285294315366 0.05354905703716228,0.39774160573153766 0.10332368407519293,0.41202153676624237 0.10532107710344002,0.3535652741147295" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.07167265547622255,0.4340236563692571 0.021435419245122992,0.4192766944593525 0.05354905703716228,0.39774160573153766 0.10332368407519293,0.41202153676624237 0.07167265547622255,0.4340236563692571" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1732219485236316,0.19120418839526562 0.20350849936202908,0.1729387490542527 0.19968801570495878,0.23419501971215123 0.16991754688615435,0.2531007829596874 0.1732219485236316,0.19120418839526562" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4092815136561602,0.6187412775946989 0.4357855407409856,0.5935173872535858 0.42759266776201926,0.6469552654825176 0.4014625393320378,0.6725611007584579 0.4092815136561602,0.6187412775946989" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.055277783015962964,0.6102414439882321 0.004970937727083403,0.5935173872535858 0.0048774829022282746,0.6469552654825175 0.054227407894783704,0.6639343331866107 0.055277783015962964,0.6102414439882321" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.028632863095286978,0.6187412775946989 0.004970937727083403,0.5935173872535858 0.0048774829022282746,0.6469552654825175 -0.02808585666108911,0.6725611007584579 -0.028632863095286978,0.6187412775946989" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.20613775385831795,0.44151804760455693 0.15417481468441202,0.42661030781984743 0.1512748931581889,0.48321336521127645 0.20221886452118817,0.4984447142220414 0.20613775385831795,0.44151804760455693" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.42400692460288153,0.44151804760455693 0.3696879965013319,0.4266103078198474 0.36273442122877547,0.48321336521127645 0.41594611970618367,0.49844471422204123 0.42400692460288153,0.44151804760455693" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.17210629306398323,0.5219142904674766 0.12066307952229802,0.5061835568030625 0.1512748931581889,0.48321336521127645 0.20221886452118817,0.4984447142220414 0.17210629306398323,0.5219142904674766" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.12301431486599745,0.4490948177669375 0.15417481468441202,0.42661030781984743 0.1512748931581889,0.48321336521127645 0.12066307952229802,0.5061835568030625 0.12301431486599745,0.4490948177669375" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2748131065330284,0.2792787489244416 0.3035254417435556,0.2595390662249099 0.29781358354871973,0.3193134465866735 0.2695578879288661,0.33964285294315366 0.2748131065330284,0.2792787489244416" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.10532107710344002,0.3535652741147295 0.05457306933529194,0.33964285294315366 0.08625202146492963,0.31931344658667343 0.13652318203331684,0.33279367673833904 0.10532107710344002,0.3535652741147295" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.055277783015962964,0.6102414439882321 0.004970937727083403,0.5935173872535858 0.03750250575731369,0.569098342843802 0.08734785171839617,0.5852902012113009 0.055277783015962964,0.6102414439882321" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.005068043786482914,0.5379917171180246 0.038223195509328366,0.5140062916928401 0.03750250575731369,0.569098342843802 0.004970937727083403,0.5935173872535858 0.005068043786482914,0.5379917171180246" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.20613775385831795,0.44151804760455693 0.15417481468441202,0.42661030781984743 0.1843405618376463,0.40484358245020213 0.23578961169635335,0.41927669445935256 0.20613775385831795,0.44151804760455693" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.42400692460288153,0.44151804760455693 0.3696879965013319,0.4266103078198474 0.39641377457122196,0.40484358245020224 0.4501438041475839,0.41927669445935256 0.42400692460288153,0.44151804760455693" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.24037274788308238,0.3606409759249369 0.1878848009732259,0.34656631370243385 0.1843405618376463,0.40484358245020213 0.23578961169635335,0.41927669445935256 0.24037274788308238,0.3606409759249369" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1571880915126211,0.3677946882587473 0.1878848009732259,0.34656631370243385 0.1843405618376463,0.40484358245020213 0.15417481468441202,0.42661030781984743 0.1571880915126211,0.3677946882587473" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.1732219485236316,0.19120418839526562 0.12143677385487343,0.17896116204443807 0.11914489475989334,0.24042984851998375 0.16991754688615435,0.2531007829596874 0.1732219485236316,0.19120418839526562" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5470293920520811,0.6273350111902039 0.5714320318691545,0.6018339797266391 0.5606317020581185,0.6553995424807645 0.5365222457952659,0.6812813400615905 0.5470293920520811,0.6273350111902039" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.10669613529189194,0.6273350111902041 0.13827655581673418,0.6018339797266393 0.13566306492951555,0.6553995424807645 0.10464675382384436,0.6812813400615905 0.10669613529189194,0.6273350111902041" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.028632863095286978,0.6187412775946989 -0.07830118220947603,0.6018339797266391 -0.07682125363478597,0.6553995424807645 -0.02808585666108911,0.6725611007584579 -0.028632863095286978,0.6187412775946989" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4092815136561602,0.6187412775946989 0.35485429384294437,0.6018339797266392 0.34814738349381713,0.6553995424807646 0.4014625393320378,0.6725611007584579 0.4092815136561602,0.6187412775946989" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2592493674699205,0.4567553326360666 0.2883574278461978,0.434023656369257 0.28290469649113964,0.49078842163479347 0.2542673440403149,0.5140062916928401 0.2592493674699205,0.4567553326360666" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.47952660780383977,0.4567553326360666 0.5050422002161732,0.4340236563692571 0.4954920406752333,0.49078842163479347 0.47031149257130134,0.5140062916928401 0.47952660780383977,0.4567553326360666" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.12301431486599745,0.4490948177669375 0.07167265547622255,0.4340236563692571 0.07031735230704626,0.49078842163479347 0.12066307952229802,0.5061835568030625 0.12301431486599745,0.4490948177669375" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.03897212713600111,0.4567553326360667 0.07167265547622255,0.4340236563692571 0.07031735230704626,0.49078842163479347 0.038223195509328366,0.5140062916928401 0.03897212713600111,0.4567553326360667" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2748131065330284,0.2792787489244416 0.22179480285025824,0.2660473847562261 0.21759871136863135,0.3260175959248519 0.2695578879288661,0.33964285294315366 0.2748131065330284,0.2792787489244416" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.24037274788308238,0.3606409759249369 0.1878848009732259,0.34656631370243385 0.21759871136863135,0.3260175959248519 0.2695578879288661,0.33964285294315366 0.24037274788308238,0.3606409759249369" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1732219485236316,0.19120418839526562 0.12143677385487343,0.17896116204443807 0.15222933596431823,0.1610868328208818 0.20350849936202908,0.1729387490542527 0.1732219485236316,0.19120418839526562" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.361824691680927,0.5461640418005631 0.38932782799910765,0.5219142904674766 0.38194789279692526,0.577150987579839 0.35485429384294437,0.6018339797266392 0.361824691680927,0.5461640418005631" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.58265666312938,0.5461640418005629 0.6065493629342323,0.5219142904674765 0.5950518673188152,0.5771509875798388 0.5714320318691545,0.6018339797266391 0.58265666312938,0.5461640418005629" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4092815136561602,0.6187412775946989 0.35485429384294437,0.6018339797266392 0.38194789279692526,0.577150987579839 0.4357855407409856,0.5935173872535858 0.4092815136561602,0.6187412775946989" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.005068043786482914,0.5379917171180246 -0.04511524187114133,0.5219142904674765 -0.044260056246854106,0.5771509875798388 0.004970937727083403,0.5935173872535858 0.005068043786482914,0.5379917171180246" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.028632863095286978,0.6187412775946989 -0.07830118220947603,0.6018339797266391 -0.044260056246854106,0.5771509875798388 0.004970937727083403,0.5935173872535858 -0.028632863095286978,0.6187412775946989" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1571880915126211,0.3677946882587473 0.10532107710344002,0.3535652741147295 0.10332368407519293,0.41202153676624237 0.15417481468441202,0.42661030781984743 0.1571880915126211,0.3677946882587473" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.12301431486599745,0.4490948177669375 0.07167265547622255,0.4340236563692571 0.10332368407519293,0.41202153676624237 0.15417481468441202,0.42661030781984743 0.12301431486599745,0.4490948177669375" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2748131065330284,0.2792787489244416 0.22179480285025824,0.2660473847562261 0.25105102735263135,0.2467314105482465 0.3035254417435556,0.2595390662249099 0.2748131065330284,0.2792787489244416" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.22615590808599462,0.20371880992393704 0.2559066057779215,0.1850492814202338 0.25105102735263135,0.2467314105482465 0.22179480285025824,0.2660473847562261 0.22615590808599462,0.20371880992393704" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5470293920520811,0.6273350111902039 0.49079970980839904,0.6102414439882321 0.48147365191429237,0.6639343331866105 0.5365222457952659,0.6812813400615905 0.5470293920520811,0.6273350111902039" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4649179575823445,0.6360242094256425 0.49079970980839904,0.6102414439882321 0.48147365191429237,0.6639343331866105 0.45593933654655666,0.6900965785317187 0.4649179575823445,0.6360242094256425" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.10669613529189194,0.6273350111902041 0.055277783015962964,0.6102414439882321 0.054227407894783704,0.6639343331866107 0.10464675382384436,0.6812813400615905 0.10669613529189194,0.6273350111902041" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.02213895036106397,0.6360242094256425 0.055277783015962964,0.6102414439882321 0.054227407894783704,0.6639343331866107 0.021711396978407408,0.6900965785317188 0.02213895036106397,0.6360242094256425" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3969985699426791,0.4645009883508344 0.42400692460288153,0.44151804760455693 0.41594611970618367,0.49844471422204123 0.38932782799910765,0.5219142904674766 0.3969985699426791,0.4645009883508344" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2592493674699205,0.4567553326360666 0.20613775385831795,0.44151804760455693 0.20221886452118817,0.4984447142220414 0.2542673440403149,0.5140062916928401 0.2592493674699205,0.4567553326360666" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.47952660780383977,0.4567553326360666 0.42400692460288153,0.44151804760455693 0.41594611970618367,0.49844471422204123 0.47031149257130134,0.5140062916928401 0.47952660780383977,0.4567553326360666" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1754972219059912,0.4645009883508344 0.20613775385831795,0.44151804760455693 0.20221886452118817,0.4984447142220414 0.17210629306398323,0.5219142904674766 0.1754972219059912,0.4645009883508344" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.03897212713600111,0.4567553326360667 -0.011731416886245748,0.4415180476045568 -0.01150839066380747,0.49844471422204123 0.038223195509328366,0.5140062916928401 0.03897212713600111,0.4567553326360667" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.005068043786482914,0.5379917171180246 -0.04511524187114133,0.5219142904674765 -0.01150839066380747,0.49844471422204123 0.038223195509328366,0.5140062916928401 0.005068043786482914,0.5379917171180246" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1571880915126211,0.3677946882587473 0.10532107710344002,0.3535652741147295 0.13652318203331684,0.33279367673833904 0.1878848009732259,0.34656631370243385 0.1571880915126211,0.3677946882587473" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.10739721729331851,0.29280437502047113 0.13917024086026275,0.27262688756230863 0.13652318203331684,0.33279367673833904 0.10532107710344002,0.3535652741147295 0.10739721729331851,0.29280437502047113" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.361824691680927,0.5461640418005631 0.30745664536985645,0.5299089547658921 0.30159729932955665,0.5852902012113012 0.35485429384294437,0.6018339797266392 0.361824691680927,0.5461640418005631" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.58265666312938,0.5461640418005629 0.5258684699495358,0.5299089547658921 0.5158467469407171,0.5852902012113009 0.5714320318691545,0.6018339797266391 0.58265666312938,0.5461640418005629" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5470293920520811,0.6273350111902039 0.49079970980839904,0.6102414439882321 0.5158467469407171,0.5852902012113009 0.5714320318691545,0.6018339797266391 0.5470293920520811,0.6273350111902039" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.10669613529189194,0.6273350111902041 0.055277783015962964,0.6102414439882321 0.08734785171839617,0.5852902012113009 0.13827655581673418,0.6018339797266393 0.10669613529189194,0.6273350111902041" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2592493674699205,0.4567553326360666 0.20613775385831795,0.44151804760455693 0.23578961169635335,0.41927669445935256 0.2883574278461978,0.434023656369257 0.2592493674699205,0.4567553326360666" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.47952660780383977,0.4567553326360666 0.42400692460288153,0.44151804760455693 0.4501438041475839,0.41927669445935256 0.5050422002161732,0.4340236563692571 0.47952660780383977,0.4567553326360666" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2102115367462151,0.3823413624825464 0.24037274788308238,0.3606409759249369 0.23578961169635335,0.41927669445935256 0.20613775385831795,0.44151804760455693 0.2102115367462151,0.3823413624825464" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.03897212713600111,0.4567553326360667 -0.011731416886245748,0.4415180476045568 0.021435419245122992,0.4192766944593525 0.07167265547622255,0.4340236563692571 0.03897212713600111,0.4567553326360667" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.22615590808599462,0.20371880992393704 0.1732219485236316,0.19120418839526562 0.16991754688615435,0.2531007829596874 0.22179480285025824,0.2660473847562261 0.22615590808599462,0.20371880992393704" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.14192197735885762,0.21008080883765748 0.1732219485236316,0.19120418839526562 0.16991754688615435,0.2531007829596874 0.13917024086026275,0.27262688756230863 0.14192197735885762,0.21008080883765748" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4649179575823445,0.6360242094256425 0.4092815136561602,0.6187412775946989 0.4014625393320378,0.6725611007584579 0.45593933654655666,0.6900965785317187 0.4649179575823445,0.6360242094256425" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.381889282607563,0.644810471908337 0.4092815136561602,0.6187412775946989 0.4014625393320378,0.6725611007584579 0.3744737409149761,0.6990083770669014 0.381889282607563,0.644810471908337" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.02213895036106397,0.6360242094256425 -0.028632863095286978,0.6187412775946989 -0.02808585666108911,0.6725611007584579 0.021711396978407408,0.6900965785317188 0.02213895036106397,0.6360242094256425" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.06336279576896788,0.644810471908337 -0.028632863095286978,0.6187412775946989 -0.02808585666108911,0.6725611007584579 -0.062132414411901885,0.6990083770669014 -0.06336279576896788,0.644810471908337" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3969985699426791,0.4645009883508344 0.34208090298352717,0.44909481776693755 0.3355425362058424,0.5061835568030625 0.38932782799910765,0.5219142904674766 0.3969985699426791,0.4645009883508344" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.361824691680927,0.5461640418005631 0.30745664536985645,0.5299089547658921 0.3355425362058424,0.5061835568030625 0.38932782799910765,0.5219142904674766 0.361824691680927,0.5461640418005631" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.31354816949645264,0.47233321225761615 0.34208090298352717,0.44909481776693755 0.3355425362058424,0.5061835568030625 0.30745664536985645,0.5299089547658921 0.31354816949645264,0.47233321225761615" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.58265666312938,0.5461640418005629 0.5258684699495358,0.5299089547658921 0.5504219928893871,0.5061835568030625 0.6065493629342323,0.5219142904674765 0.58265666312938,0.5461640418005629" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5362873062972113,0.472333212257616 0.5611474911010571,0.4490948177669375 0.5504219928893871,0.5061835568030625 0.5258684699495358,0.5299089547658921 0.5362873062972113,0.472333212257616" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.1754972219059912,0.4645009883508344 0.12301431486599745,0.4490948177669375 0.12066307952229802,0.5061835568030625 0.17210629306398323,0.5219142904674766 0.1754972219059912,0.4645009883508344" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.10739721729331851,0.29280437502047113 0.055637009298097805,0.2792787489244417 0.05457306933529194,0.33964285294315366 0.10532107710344002,0.3535652741147295 0.10739721729331851,0.29280437502047113" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.22615590808599462,0.20371880992393704 0.1732219485236316,0.19120418839526562 0.20350849936202908,0.1729387490542527 0.2559066057779215,0.1850492814202338 0.22615590808599462,0.20371880992393704" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.17665742109390306,0.12685243090684192 0.20747802349784886,0.1092928165826303 0.20350849936202908,0.1729387490542527 0.1732219485236316,0.19120418839526562 0.17665742109390306,0.12685243090684192" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4649179575823445,0.6360242094256425 0.4092815136561602,0.6187412775946989 0.4357855407409856,0.5935173872535858 0.49079970980839904,0.6102414439882321 0.4649179575823445,0.6360242094256425" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4174111058331621,0.5627833993331118 0.4442985052816762,0.5379917171180246 0.4357855407409856,0.5935173872535858 0.4092815136561602,0.6187412775946989 0.4174111058331621,0.5627833993331118" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.02213895036106397,0.6360242094256425 -0.028632863095286978,0.6187412775946989 0.004970937727083403,0.5935173872535858 0.055277783015962964,0.6102414439882321 0.02213895036106397,0.6360242094256425" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.029201599996558716,0.5627833993331118 0.005068043786482914,0.5379917171180246 0.004970937727083403,0.5935173872535858 -0.028632863095286978,0.6187412775946989 -0.029201599996558716,0.5627833993331118" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3969985699426791,0.4645009883508344 0.34208090298352717,0.44909481776693755 0.3696879965013319,0.4266103078198474 0.42400692460288153,0.44151804760455693 0.3969985699426791,0.4645009883508344" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2102115367462151,0.3823413624825464 0.1571880915126211,0.3677946882587473 0.15417481468441202,0.42661030781984743 0.20613775385831795,0.44151804760455693 0.2102115367462151,0.3823413624825464" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1754972219059912,0.4645009883508344 0.12301431486599745,0.4490948177669375 0.15417481468441202,0.42661030781984743 0.20613775385831795,0.44151804760455693 0.1754972219059912,0.4645009883508344" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.14192197735885762,0.21008080883765748 0.08962522520091412,0.19742698803615194 0.08790627547764164,0.25953906622490996 0.13917024086026275,0.27262688756230863 0.14192197735885762,0.21008080883765748" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.10739721729331851,0.29280437502047113 0.055637009298097805,0.2792787489244417 0.08790627547764164,0.25953906622490996 0.13917024086026275,0.27262688756230863 0.10739721729331851,0.29280437502047113" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2802773076847229,0.2165141654609079 0.3094606832408926,0.19742698803615186 0.3035254417435556,0.2595390662249099 0.2748131065330284,0.2792787489244416 0.2802773076847229,0.2165141654609079" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5218043767951115,0.6536954341837373 0.5470293920520811,0.6273350111902039 0.5365222457952659,0.6812813400615905 0.5116161584037016,0.7080183309489396 0.5218043767951115,0.6536954341837373" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.381889282607563,0.644810471908337 0.32686276367198663,0.627335011190204 0.32058449980955517,0.6812813400615905 0.3744737409149761,0.6990083770669014 0.381889282607563,0.644810471908337" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.07405144621184746,0.6536954341837374 0.10669613529189194,0.6273350111902041 0.10464675382384436,0.6812813400615905 0.07260559343682887,0.7080183309489395 0.07405144621184746,0.6536954341837374" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.06336279576896788,0.644810471908337 -0.11347049308820263,0.6273350111902039 -0.11129099216186633,0.6812813400615905 -0.062132414411901885,0.6990083770669014 -0.06336279576896788,0.644810471908337" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.31354816949645264,0.47233321225761615 0.2592493674699205,0.4567553326360666 0.2542673440403149,0.5140062916928401 0.30745664536985645,0.5299089547658921 0.31354816949645264,0.47233321225761615" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5362873062972113,0.472333212257616 0.47952660780383977,0.4567553326360666 0.47031149257130134,0.5140062916928401 0.5258684699495358,0.5299089547658921 0.5362873062972113,0.472333212257616" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4531506938648529,0.48025346378713774 0.47952660780383977,0.4567553326360666 0.47031149257130134,0.5140062916928401 0.4442985052816762,0.5379917171180246 0.4531506938648529,0.48025346378713774" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005169019321652229,0.4802534637871378 0.03897212713600111,0.4567553326360667 0.038223195509328366,0.5140062916928401 0.005068043786482914,0.5379917171180246 0.005169019321652229,0.4802534637871378" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2102115367462151,0.3823413624825464 0.1571880915126211,0.3677946882587473 0.1878848009732259,0.34656631370243385 0.24037274788308238,0.3606409759249369 0.2102115367462151,0.3823413624825464" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.14192197735885762,0.21008080883765748 0.08962522520091412,0.19742698803615194 0.12143677385487343,0.17896116204443807 0.1732219485236316,0.19120418839526562 0.14192197735885762,0.21008080883765748" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.17665742109390306,0.12685243090684192 0.12381855580355598,0.11508126184492337 0.12143677385487343,0.17896116204443807 0.1732219485236316,0.19120418839526562 0.17665742109390306,0.12685243090684192" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4174111058331621,0.5627833993331118 0.361824691680927,0.5461640418005631 0.35485429384294437,0.6018339797266392 0.4092815136561602,0.6187412775946989 0.4174111058331621,0.5627833993331118" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1088273895078499,0.5712335275790877 0.14099272023247386,0.5461640418005632 0.13827655581673418,0.6018339797266393 0.10669613529189194,0.6273350111902041 0.1088273895078499,0.5712335275790877" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.381889282607563,0.644810471908337 0.32686276367198663,0.627335011190204 0.35485429384294437,0.6018339797266392 0.4092815136561602,0.6187412775946989 0.381889282607563,0.644810471908337" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.029201599996558716,0.5627833993331118 -0.07983925121597923,0.5461640418005629 -0.07830118220947603,0.6018339797266391 -0.028632863095286978,0.6187412775946989 -0.029201599996558716,0.5627833993331118" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.06336279576896788,0.644810471908337 -0.11347049308820263,0.6273350111902039 -0.07830118220947603,0.6018339797266391 -0.028632863095286978,0.6187412775946989 -0.06336279576896788,0.644810471908337" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.31354816949645264,0.47233321225761615 0.2592493674699205,0.4567553326360666 0.2883574278461978,0.434023656369257 0.34208090298352717,0.44909481776693755 0.31354816949645264,0.47233321225761615" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5362873062972113,0.472333212257616 0.47952660780383977,0.4567553326360666 0.5050422002161732,0.4340236563692571 0.5611474911010571,0.4490948177669375 0.5362873062972113,0.472333212257616" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.489110055354403,0.3972160268873222 0.5149677361171194,0.3750277083815216 0.5050422002161732,0.4340236563692571 0.47952660780383977,0.4567553326360666 0.489110055354403,0.3972160268873222" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2802773076847229,0.2165141654609079 0.22615590808599462,0.20371880992393704 0.22179480285025824,0.2660473847562261 0.2748131065330284,0.2792787489244416 0.2802773076847229,0.2165141654609079" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.17665742109390306,0.12685243090684192 0.12381855580355598,0.11508126184492337 0.1551663212628909,0.09790491860549692 0.20747802349784886,0.1092928165826303 0.17665742109390306,0.12685243090684192" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5218043767951115,0.6536954341837373 0.4649179575823445,0.6360242094256425 0.45593933654655666,0.6900965785317187 0.5116161584037016,0.7080183309489396 0.5218043767951115,0.6536954341837373" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.43815905674538336,0.6626807687503918 0.4649179575823445,0.6360242094256425 0.45593933654655666,0.6900965785317187 0.4295566373853785,0.7171280707953831 0.43815905674538336,0.6626807687503918" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.07405144621184746,0.6536954341837374 0.02213895036106397,0.6360242094256425 0.021711396978407408,0.6900965785317188 0.07260559343682887,0.7080183309489395 0.07405144621184746,0.6536954341837374" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3690744151593184,0.48826323536107324 0.3969985699426791,0.4645009883508344 0.38932782799910765,0.5219142904674766 0.361824691680927,0.5461640418005631 0.3690744151593184,0.48826323536107324" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5943311004678226,0.48826323536107313 0.6184999179793673,0.4645009883508344 0.6065493629342323,0.5219142904674765 0.58265666312938,0.5461640418005629 0.5943311004678226,0.48826323536107313" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4531506938648529,0.48025346378713774 0.3969985699426791,0.4645009883508344 0.38932782799910765,0.5219142904674766 0.4442985052816762,0.5379917171180246 0.4531506938648529,0.48025346378713774" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4174111058331621,0.5627833993331118 0.361824691680927,0.5461640418005631 0.38932782799910765,0.5219142904674766 0.4442985052816762,0.5379917171180246 0.4174111058331621,0.5627833993331118" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.14381772985081417,0.48826323536107324 0.1754972219059912,0.4645009883508344 0.17210629306398323,0.5219142904674766 0.14099272023247386,0.5461640418005632 0.14381772985081417,0.48826323536107324" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005169019321652229,0.4802534637871378 -0.04600412613069683,0.4645009883508344 -0.04511524187114133,0.5219142904674765 0.005068043786482914,0.5379917171180246 0.005169019321652229,0.4802534637871378" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.029201599996558716,0.5627833993331118 -0.07983925121597923,0.5461640418005629 -0.04511524187114133,0.5219142904674765 0.005068043786482914,0.5379917171180246 -0.029201599996558716,0.5627833993331118" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2802773076847229,0.2165141654609079 0.22615590808599462,0.20371880992393704 0.2559066057779215,0.1850492814202338 0.3094606832408926,0.19742698803615186 0.2802773076847229,0.2165141654609079" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.23069195620395974,0.1388899651057234 0.26095371204783163,0.1209341063791073 0.2559066057779215,0.1850492814202338 0.22615590808599462,0.20371880992393704 0.23069195620395974,0.1388899651057234" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5218043767951115,0.6536954341837373 0.4649179575823445,0.6360242094256425 0.49079970980839904,0.6102414439882321 0.5470293920520811,0.6273350111902039 0.5218043767951115,0.6536954341837373" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1088273895078499,0.5712335275790877 0.056369653039646056,0.5544274257212832 0.055277783015962964,0.6102414439882321 0.10669613529189194,0.6273350111902041 0.1088273895078499,0.5712335275790877" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.07405144621184746,0.6536954341837374 0.02213895036106397,0.6360242094256425 0.055277783015962964,0.6102414439882321 0.10669613529189194,0.6273350111902041 0.07405144621184746,0.6536954341837374" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.005169019321652229,0.4802534637871378 -0.04600412613069683,0.4645009883508344 -0.011731416886245748,0.4415180476045568 0.03897212713600111,0.4567553326360667 0.005169019321652229,0.4802534637871378" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4531506938648529,0.48025346378713774 0.3969985699426791,0.4645009883508344 0.42400692460288153,0.44151804760455693 0.47952660780383977,0.4567553326360666 0.4531506938648529,0.48025346378713774" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.489110055354403,0.3972160268873222 0.4323863316812391,0.3823413624825464 0.42400692460288153,0.44151804760455693 0.47952660780383977,0.4567553326360666 0.489110055354403,0.3972160268873222" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.10955685519682601,0.22959980850088701 0.14192197735885762,0.21008080883765748 0.13917024086026275,0.27262688756230863 0.10739721729331851,0.29280437502047113 0.10955685519682601,0.22959980850088701" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.43815905674538336,0.6626807687503918 0.381889282607563,0.644810471908337 0.3744737409149761,0.6990083770669014 0.4295566373853785,0.7171280707953831 0.43815905674538336,0.6626807687503918" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.35356343843084664,0.6717681861095129 0.381889282607563,0.644810471908337 0.3744737409149761,0.6990083770669014 0.3465832399397661,0.7263392635433435 0.35356343843084664,0.6717681861095129" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.0992764334510259,0.6717681861095128 -0.06336279576896788,0.644810471908337 -0.062132414411901885,0.6990083770669014 -0.09731647623924465,0.7263392635433434 -0.0992764334510259,0.6717681861095128" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.12714350248991033,0.6717681861095129 0.1592632434192975,0.6448104719083371 0.15617066325153706,0.6990083770669016 0.12463338185026067,0.7263392635433435 0.12714350248991033,0.6717681861095129" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3690744151593184,0.48826323536107324 0.31354816949645264,0.47233321225761615 0.30745664536985645,0.5299089547658921 0.361824691680927,0.5461640418005631 0.3690744151593184,0.48826323536107324" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5943311004678226,0.48826323536107313 0.5362873062972113,0.472333212257616 0.5258684699495358,0.5299089547658921 0.58265666312938,0.5461640418005629 0.5943311004678226,0.48826323536107313" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.14381772985081417,0.48826323536107324 0.09080903269569392,0.47233321225761604 0.08904482079017698,0.5299089547658921 0.14099272023247386,0.5461640418005632 0.14381772985081417,0.48826323536107324" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1088273895078499,0.5712335275790877 0.056369653039646056,0.5544274257212832 0.08904482079017698,0.5299089547658921 0.14099272023247386,0.5461640418005632 0.1088273895078499,0.5712335275790877" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.057505526387543256,0.4963640533295581 0.09080903269569392,0.47233321225761604 0.08904482079017698,0.5299089547658921 0.056369653039646056,0.5544274257212832 0.057505526387543256,0.4963640533295581" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2144495815452092,0.32077857194991 0.24513758432072186,0.2996806210856115 0.24037274788308238,0.3606409759249369 0.2102115367462151,0.3823413624825464 0.2144495815452092,0.32077857194991" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.489110055354403,0.3972160268873222 0.4323863316812391,0.3823413624825464 0.45889342777679404,0.360640975924937 0.5149677361171194,0.3750277083815216 0.489110055354403,0.3972160268873222" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.23069195620395974,0.1388899651057234 0.17665742109390306,0.12685243090684192 0.1732219485236316,0.19120418839526562 0.22615590808599462,0.20371880992393704 0.23069195620395974,0.1388899651057234" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.14478472597847122,0.14501146058331948 0.17665742109390306,0.12685243090684192 0.1732219485236316,0.19120418839526562 0.14192197735885762,0.21008080883765748 0.14478472597847122,0.14501146058331948" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.43815905674538336,0.6626807687503918 0.381889282607563,0.644810471908337 0.4092815136561602,0.6187412775946989 0.4649179575823445,0.6360242094256425 0.43815905674538336,0.6626807687503918" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3896044512187749,0.5884226860921244 0.4174111058331621,0.5627833993331118 0.4092815136561602,0.6187412775946989 0.381889282607563,0.644810471908337 0.3896044512187749,0.5884226860921244" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3690744151593184,0.48826323536107324 0.31354816949645264,0.47233321225761615 0.34208090298352717,0.44909481776693755 0.3969985699426791,0.4645009883508344 0.3690744151593184,0.48826323536107324" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5943311004678226,0.48826323536107313 0.5362873062972113,0.472333212257616 0.5611474911010571,0.4490948177669375 0.6184999179793673,0.4645009883508344 0.5943311004678226,0.48826323536107313" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5471273366617732,0.41242990096401455 0.5722992893277281,0.38973700648566445 0.5611474911010571,0.4490948177669375 0.5362873062972113,0.472333212257616 0.5471273366617732,0.41242990096401455" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.14381772985081417,0.48826323536107324 0.09080903269569392,0.47233321225761604 0.12301431486599745,0.4490948177669375 0.1754972219059912,0.4645009883508344 0.14381772985081417,0.48826323536107324" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2500951449002475,0.23625459250716724 0.2802773076847229,0.2165141654609079 0.2748131065330284,0.2792787489244416 0.24513758432072186,0.2996806210856115 0.2500951449002475,0.23625459250716724" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.10955685519682601,0.22959980850088701 0.056743258611017554,0.21651416546090804 0.055637009298097805,0.2792787489244417 0.10739721729331851,0.29280437502047113 0.10955685519682601,0.22959980850088701" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.23069195620395974,0.1388899651057234 0.17665742109390306,0.12685243090684192 0.20747802349784886,0.1092928165826303 0.26095371204783163,0.1209341063791073 0.23069195620395974,0.1388899651057234" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.18023192089487494,0.05989647662996539 0.21160548291269857,0.043114606245929804 0.20747802349784886,0.1092928165826303 0.17665742109390306,0.12685243090684192 0.18023192089487494,0.05989647662996539" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.49571470220304276,0.6809594358505169 0.5218043767951115,0.6536954341837373 0.5116161584037016,0.7080183309489396 0.4858732928595028,0.735653613466362 0.49571470220304276,0.6809594358505169" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.35356343843084664,0.6717681861095129 0.2979279115034795,0.6536954341837374 0.29211087592026524,0.7080183309489396 0.3465832399397661,0.7263392635433435 0.35356343843084664,0.6717681861095129" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.04028776731685506,0.680959435850517 0.07405144621184746,0.6536954341837374 0.07260559343682887,0.7080183309489395 0.039487935462079723,0.735653613466362 0.04028776731685506,0.680959435850517" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.0992764334510259,0.6717681861095128 -0.14982501907978443,0.6536954341837372 -0.14689968904660733,0.7080183309489396 -0.09731647623924465,0.7263392635433434 -0.0992764334510259,0.6717681861095128" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.12714350248991033,0.6717681861095129 0.07405144621184746,0.6536954341837374 0.07260559343682887,0.7080183309489395 0.12463338185026067,0.7263392635433435 0.12714350248991033,0.6717681861095129" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4258702004526336,0.5045574789408545 0.4531506938648529,0.48025346378713774 0.4442985052816762,0.5379917171180246 0.4174111058331621,0.5627833993331118 0.4258702004526336,0.5045574789408545" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.057505526387543256,0.4963640533295581 0.005169019321652229,0.4802534637871378 0.005068043786482914,0.5379917171180246 0.056369653039646056,0.5544274257212832 0.057505526387543256,0.4963640533295581" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.029793388509032032,0.5045574789408545 0.005169019321652229,0.4802534637871378 0.005068043786482914,0.5379917171180246 -0.029201599996558716,0.5627833993331118 -0.029793388509032032,0.5045574789408545" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2144495815452092,0.32077857194991 0.16032150256772673,0.3066341898868902 0.1571880915126211,0.3677946882587473 0.2102115367462151,0.3823413624825464 0.2144495815452092,0.32077857194991" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.10955685519682601,0.22959980850088701 0.056743258611017554,0.21651416546090804 0.08962522520091412,0.19742698803615194 0.14192197735885762,0.21008080883765748 0.10955685519682601,0.22959980850088701" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.28596321008435027,0.15120300911443246 0.3156326737414062,0.13283734046744275 0.3094606832408926,0.19742698803615186 0.2802773076847229,0.2165141654609079 0.28596321008435027,0.15120300911443246" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.14478472597847122,0.14501146058331948 0.09141274157537979,0.13283734046744267 0.08962522520091412,0.19742698803615194 0.14192197735885762,0.21008080883765748 0.14478472597847122,0.14501146058331948" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5324066119801947,0.5971650276579727 0.5579562985878657,0.5712335275790875 0.5470293920520811,0.6273350111902039 0.5218043767951115,0.6536954341837373 0.5324066119801947,0.5971650276579727" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.0992764334510259,0.6717681861095128 -0.14982501907978443,0.6536954341837372 -0.11347049308820263,0.6273350111902039 -0.06336279576896788,0.644810471908337 -0.0992764334510259,0.6717681861095128" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3896044512187749,0.5884226860921244 0.3333918440478579,0.5712335275790875 0.32686276367198663,0.627335011190204 0.381889282607563,0.644810471908337 0.3896044512187749,0.5884226860921244" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.35356343843084664,0.6717681861095129 0.2979279115034795,0.6536954341837374 0.32686276367198663,0.627335011190204 0.381889282607563,0.644810471908337 0.35356343843084664,0.6717681861095129" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07555605384537412,0.5971650276579729 0.1088273895078499,0.5712335275790877 0.10669613529189194,0.6273350111902041 0.07405144621184746,0.6536954341837374 0.07555605384537412,0.5971650276579729" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.12714350248991033,0.6717681861095129 0.07405144621184746,0.6536954341837374 0.10669613529189194,0.6273350111902041 0.1592632434192975,0.6448104719083371 0.12714350248991033,0.6717681861095129" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5471273366617732,0.41242990096401455 0.489110055354403,0.3972160268873222 0.47952660780383977,0.4567553326360666 0.5362873062972113,0.472333212257616 0.5471273366617732,0.41242990096401455" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4623627947481554,0.4201676884433267 0.489110055354403,0.3972160268873222 0.47952660780383977,0.4567553326360666 0.4531506938648529,0.48025346378713774 0.4623627947481554,0.4201676884433267" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.057505526387543256,0.4963640533295581 0.005169019321652229,0.4802534637871378 0.03897212713600111,0.4567553326360667 0.09080903269569392,0.47233321225761604 0.057505526387543256,0.4963640533295581" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2500951449002475,0.23625459250716724 0.19539849165816622,0.2230200871123183 0.19156799903078392,0.2860041690952056 0.24513758432072186,0.2996806210856115 0.2500951449002475,0.23625459250716724" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2144495815452092,0.32077857194991 0.16032150256772673,0.3066341898868902 0.19156799903078392,0.2860041690952056 0.24513758432072186,0.2996806210856115 0.2144495815452092,0.32077857194991" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.16358237829720765,0.242985730991341 0.19539849165816622,0.2230200871123183 0.19156799903078392,0.2860041690952056 0.16032150256772673,0.3066341898868902 0.16358237829720765,0.242985730991341" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.18023192089487494,0.05989647662996539 0.12629563632242433,0.04864543365376733 0.12381855580355598,0.11508126184492337 0.17665742109390306,0.12685243090684192 0.18023192089487494,0.05989647662996539" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.14478472597847122,0.14501146058331948 0.09141274157537979,0.13283734046744267 0.12381855580355598,0.11508126184492337 0.17665742109390306,0.12685243090684192 0.14478472597847122,0.14501146058331948" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.49571470220304276,0.6809594358505169 0.43815905674538336,0.6626807687503918 0.4295566373853785,0.7171280707953831 0.4858732928595028,0.735653613466362 0.49571470220304276,0.6809594358505169" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.04028776731685506,0.680959435850517 -0.012122977854615366,0.6626807687503918 -0.011884966251769382,0.7171280707953833 0.039487935462079723,0.735653613466362 0.04028776731685506,0.680959435850517" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.04756607938265119,0.6902563077739906 -0.012122977854615366,0.6626807687503918 -0.011884966251769382,0.7171280707953833 -0.04661643382008223,0.7450728632256329 -0.04756607938265119,0.6902563077739906" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.18145578431159531,0.6902563077739906 0.21301803944538397,0.662680768750392 0.20883583556680452,0.7171280707953832 0.1778330623506841,0.7450728632256328 0.18145578431159531,0.6902563077739906" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5693286322189071,0.5128451093444648 0.5943311004678226,0.48826323536107313 0.58265666312938,0.5461640418005629 0.5579562985878657,0.5712335275790875 0.5693286322189071,0.5128451093444648" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.11104552269285178,0.5128451093444649 0.14381772985081417,0.48826323536107324 0.14099272023247386,0.5461640418005632 0.1088273895078499,0.5712335275790877 0.11104552269285178,0.5128451093444649" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.029793388509032032,0.5045574789408545 -0.08143895545769002,0.48826323536107313 -0.07983925121597923,0.5461640418005629 -0.029201599996558716,0.5627833993331118 -0.029793388509032032,0.5045574789408545" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4258702004526336,0.5045574789408545 0.3690744151593184,0.48826323536107324 0.361824691680927,0.5461640418005631 0.4174111058331621,0.5627833993331118 0.4258702004526336,0.5045574789408545" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3896044512187749,0.5884226860921244 0.3333918440478579,0.5712335275790875 0.361824691680927,0.5461640418005631 0.4174111058331621,0.5627833993331118 0.3896044512187749,0.5884226860921244" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5471273366617732,0.41242990096401455 0.489110055354403,0.3972160268873222 0.5149677361171194,0.3750277083815216 0.5722992893277281,0.38973700648566445 0.5471273366617732,0.41242990096401455" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4990843691829427,0.33524837719360984 0.5252912237333739,0.31366639302901556 0.5149677361171194,0.3750277083815216 0.489110055354403,0.3972160268873222 0.4990843691829427,0.33524837719360984" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2500951449002475,0.23625459250716724 0.19539849165816622,0.2230200871123183 0.22615590808599462,0.20371880992393704 0.2802773076847229,0.2165141654609079 0.2500951449002475,0.23625459250716724" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.28596321008435027,0.15120300911443246 0.23069195620395974,0.1388899651057234 0.22615590808599462,0.20371880992393704 0.2802773076847229,0.2165141654609079 0.28596321008435027,0.15120300911443246" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.18023192089487494,0.05989647662996539 0.12629563632242433,0.04864543365376733 0.158218863488601,0.0322370852876429 0.21160548291269857,0.043114606245929804 0.18023192089487494,0.05989647662996539" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5324066119801947,0.5971650276579727 0.4742573066772512,0.5797794108694487 0.4649179575823445,0.6360242094256425 0.5218043767951115,0.6536954341837373 0.5324066119801947,0.5971650276579727" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.49571470220304276,0.6809594358505169 0.43815905674538336,0.6626807687503918 0.4649179575823445,0.6360242094256425 0.5218043767951115,0.6536954341837373 0.49571470220304276,0.6809594358505169" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07555605384537412,0.5971650276579729 0.02258368127034524,0.5797794108694487 0.02213895036106397,0.6360242094256425 0.07405144621184746,0.6536954341837374 0.07555605384537412,0.5971650276579729" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.04028776731685506,0.680959435850517 -0.012122977854615366,0.6626807687503918 0.02213895036106397,0.6360242094256425 0.07405144621184746,0.6536954341837374 0.04028776731685506,0.680959435850517" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4258702004526336,0.5045574789408545 0.3690744151593184,0.48826323536107324 0.3969985699426791,0.4645009883508344 0.4531506938648529,0.48025346378713774 0.4258702004526336,0.5045574789408545" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.606482934408166,0.4279947218158613 0.630930849923991,0.4047798416231217 0.6184999179793673,0.4645009883508344 0.5943311004678226,0.48826323536107313 0.606482934408166,0.4279947218158613" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4623627947481554,0.4201676884433267 0.40497765298151467,0.4047798416231217 0.3969985699426791,0.4645009883508344 0.4531506938648529,0.48025346378713774 0.4623627947481554,0.4201676884433267" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.029793388509032032,0.5045574789408545 -0.08143895545769002,0.48826323536107313 -0.04600412613069683,0.4645009883508344 0.005169019321652229,0.4802534637871378 -0.029793388509032032,0.5045574789408545" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.16358237829720765,0.242985730991341 0.10955685519682601,0.22959980850088701 0.10739721729331851,0.29280437502047113 0.16032150256772673,0.3066341898868902 0.16358237829720765,0.242985730991341" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.28596321008435027,0.15120300911443246 0.23069195620395974,0.1388899651057234 0.26095371204783163,0.1209341063791073 0.3156326737414062,0.13283734046744275 0.28596321008435027,0.15120300911443246" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3242554229236976,0.6996606330535935 0.35356343843084664,0.6717681861095129 0.3465832399397661,0.7263392635433435 0.317745079526295,0.754598794956944 0.3242554229236976,0.6996606330535935" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.04756607938265119,0.6902563077739906 -0.0992764334510259,0.6717681861095128 -0.09731647623924465,0.7263392635433434 -0.04661643382008223,0.7450728632256329 -0.04756607938265119,0.6902563077739906" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.18145578431159531,0.6902563077739906 0.12714350248991033,0.6717681861095129 0.12463338185026067,0.7263392635433435 0.1778330623506841,0.7450728632256328 0.18145578431159531,0.6902563077739906" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.09391004051888509,0.6996606330535936 0.12714350248991033,0.6717681861095129 0.12463338185026067,0.7263392635433435 0.09202453122892695,0.754598794956944 0.09391004051888509,0.6996606330535936" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5693286322189071,0.5128451093444648 0.5105793706530362,0.4963640533295579 0.5004941921398884,0.5544274257212832 0.5579562985878657,0.5712335275790875 0.5693286322189071,0.5128451093444648" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5324066119801947,0.5971650276579727 0.4742573066772512,0.5797794108694487 0.5004941921398884,0.5544274257212832 0.5579562985878657,0.5712335275790875 0.5324066119801947,0.5971650276579727" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.48397956857750724,0.5212285786290439 0.5105793706530362,0.4963640533295579 0.5004941921398884,0.5544274257212832 0.4742573066772512,0.5797794108694487 0.48397956857750724,0.5212285786290439" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.11104552269285178,0.5128451093444649 0.057505526387543256,0.4963640533295581 0.056369653039646056,0.5544274257212832 0.1088273895078499,0.5712335275790877 0.11104552269285178,0.5128451093444649" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.07555605384537412,0.5971650276579729 0.02258368127034524,0.5797794108694487 0.056369653039646056,0.5544274257212832 0.1088273895078499,0.5712335275790877 0.07555605384537412,0.5971650276579729" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.023046646122738382,0.5212285786290439 0.057505526387543256,0.4963640533295581 0.056369653039646056,0.5544274257212832 0.02258368127034524,0.5797794108694487 0.023046646122738382,0.5212285786290439" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4990843691829427,0.33524837719360984 0.4411036108206335,0.32077857194991 0.4323863316812391,0.3823413624825464 0.489110055354403,0.3972160268873222 0.4990843691829427,0.33524837719360984" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4623627947481554,0.4201676884433267 0.40497765298151467,0.4047798416231217 0.4323863316812391,0.3823413624825464 0.489110055354403,0.3972160268873222 0.4623627947481554,0.4201676884433267" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.16358237829720765,0.242985730991341 0.10955685519682601,0.22959980850088701 0.14192197735885762,0.21008080883765748 0.19539849165816622,0.2230200871123183 0.16358237829720765,0.242985730991341" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.11180513132065958,0.16380113105017155 0.14478472597847122,0.14501146058331948 0.14192197735885762,0.21008080883765748 0.10955685519682601,0.22959980850088701 0.11180513132065958,0.16380113105017155" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3425141324585284,0.1638011310501714 0.3715559835351132,0.14501146058331943 0.3642094117763458,0.21008080883765745 0.3356265563966256,0.22959980850088693 0.3425141324585284,0.1638011310501714" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.04756607938265119,0.6902563077739906 -0.0992764334510259,0.6717681861095128 -0.06336279576896788,0.644810471908337 -0.012122977854615366,0.6626807687503918 -0.04756607938265119,0.6902563077739906" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.10131696055590292,0.6149538016031939 -0.06464289100939317,0.5884226860921244 -0.06336279576896788,0.644810471908337 -0.0992764334510259,0.6717681861095128 -0.10131696055590292,0.6149538016031939" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.18145578431159531,0.6902563077739906 0.12714350248991033,0.6717681861095129 0.1592632434192975,0.6448104719083371 0.21301803944538397,0.662680768750392 0.18145578431159531,0.6902563077739906" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.12975680913299845,0.6149538016031939 0.16248078010469083,0.5884226860921246 0.1592632434192975,0.6448104719083371 0.12714350248991033,0.6717681861095129 0.12975680913299845,0.6149538016031939" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5693286322189071,0.5128451093444648 0.5105793706530362,0.4963640533295579 0.5362873062972113,0.472333212257616 0.5943311004678226,0.48826323536107313 0.5693286322189071,0.5128451093444648" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.606482934408166,0.4279947218158613 0.5471273366617732,0.41242990096401455 0.5362873062972113,0.472333212257616 0.5943311004678226,0.48826323536107313 0.606482934408166,0.4279947218158613" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.11104552269285178,0.5128451093444649 0.057505526387543256,0.4963640533295581 0.09080903269569392,0.47233321225761604 0.14381772985081417,0.48826323536107324 0.11104552269285178,0.5128451093444649" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4990843691829427,0.33524837719360984 0.4411036108206335,0.32077857194991 0.4679899337031965,0.29968062108561155 0.5252912237333739,0.31366639302901556 0.4990843691829427,0.33524837719360984" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.21886202765719254,0.25668238877764943 0.2500951449002475,0.23625459250716724 0.24513758432072186,0.2996806210856115 0.2144495815452092,0.32077857194991 0.21886202765719254,0.25668238877764943" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.468715135029779,0.7091742854384828 0.49571470220304276,0.6809594358505169 0.4858732928595028,0.735653613466362 0.45925075838128393,0.7642332313947633 0.468715135029779,0.7091742854384828" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005346560475624879,0.7091742854384829 0.04028776731685506,0.680959435850517 0.039487935462079723,0.735653613466362 0.005238601806630638,0.7642332313947632 0.005346560475624879,0.7091742854384829" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.09391004051888509,0.6996606330535936 0.04028776731685506,0.680959435850517 0.039487935462079723,0.735653613466362 0.09202453122892695,0.754598794956944 0.09391004051888509,0.6996606330535936" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3242554229236976,0.6996606330535935 0.26800123475994886,0.680959435850517 0.26268061416079125,0.7356536134663623 0.317745079526295,0.754598794956944 0.3242554229236976,0.6996606330535935" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.23703084775270195,0.7091742854384829 0.26800123475994886,0.680959435850517 0.26268061416079125,0.7356536134663623 0.23224468009395724,0.7642332313947633 0.23703084775270195,0.7091742854384829" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.48397956857750724,0.5212285786290439 0.4258702004526336,0.5045574789408545 0.4174111058331621,0.5627833993331118 0.4742573066772512,0.5797794108694487 0.48397956857750724,0.5212285786290439" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.39763778094521557,0.5297095588965279 0.4258702004526336,0.5045574789408545 0.4174111058331621,0.5627833993331118 0.3896044512187749,0.5884226860921244 0.39763778094521557,0.5297095588965279" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.023046646122738382,0.5212285786290439 -0.029793388509032032,0.5045574789408545 -0.029201599996558716,0.5627833993331118 0.02258368127034524,0.5797794108694487 0.023046646122738382,0.5212285786290439" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.06597577531378018,0.5297095588965279 -0.029793388509032032,0.5045574789408545 -0.029201599996558716,0.5627833993331118 -0.06464289100939317,0.5884226860921244 -0.06597577531378018,0.5297095588965279" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.606482934408166,0.4279947218158613 0.5471273366617732,0.41242990096401455 0.5722992893277281,0.38973700648566445 0.630930849923991,0.4047798416231217 0.606482934408166,0.4279947218158613" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.25525736369003416,0.17021020812961457 0.28596321008435027,0.15120300911443246 0.2802773076847229,0.2165141654609079 0.2500951449002475,0.23625459250716724 0.25525736369003416,0.17021020812961457" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.11180513132065958,0.16380113105017155 0.057894392225666044,0.15120300911443246 0.056743258611017554,0.21651416546090804 0.10955685519682601,0.22959980850088701 0.11180513132065958,0.16380113105017155" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3425141324585284,0.1638011310501714 0.28596321008435027,0.15120300911443246 0.2802773076847229,0.2165141654609079 0.3356265563966256,0.22959980850088693 0.3425141324585284,0.1638011310501714" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.18395406147671303,-0.009825019659360999 0.21590049456718,-0.025750076867906757 0.21160548291269857,0.043114606245929804 0.18023192089487494,0.05989647662996539 0.18395406147671303,-0.009825019659360999" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.10131696055590292,0.6149538016031939 -0.15286922522203608,0.5971650276579727 -0.14982501907978443,0.6536954341837372 -0.0992764334510259,0.6717681861095128 -0.10131696055590292,0.6149538016031939" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5059630310879872,0.6240037803410058 0.5324066119801947,0.5971650276579727 0.5218043767951115,0.6536954341837373 0.49571470220304276,0.6809594358505169 0.5059630310879872,0.6240037803410058" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3242554229236976,0.6996606330535935 0.26800123475994886,0.680959435850517 0.2979279115034795,0.6536954341837374 0.35356343843084664,0.6717681861095129 0.3242554229236976,0.6996606330535935" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.12975680913299845,0.6149538016031939 0.07555605384537412,0.5971650276579729 0.07405144621184746,0.6536954341837374 0.12714350248991033,0.6717681861095129 0.12975680913299845,0.6149538016031939" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.09391004051888509,0.6996606330535936 0.04028776731685506,0.680959435850517 0.07405144621184746,0.6536954341837374 0.12714350248991033,0.6717681861095129 0.09391004051888509,0.6996606330535936" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.48397956857750724,0.5212285786290439 0.4258702004526336,0.5045574789408545 0.4531506938648529,0.48025346378713774 0.5105793706530362,0.4963640533295579 0.48397956857750724,0.5212285786290439" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4346792446007493,0.443922774356818 0.4623627947481554,0.4201676884433267 0.4531506938648529,0.48025346378713774 0.4258702004526336,0.5045574789408545 0.4346792446007493,0.443922774356818" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.023046646122738382,0.5212285786290439 -0.029793388509032032,0.5045574789408545 0.005169019321652229,0.4802534637871378 0.057505526387543256,0.4963640533295581 0.023046646122738382,0.5212285786290439" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.03040965908729527,0.443922774356818 0.0052741003203210755,0.4201676884433268 0.005169019321652229,0.4802534637871378 -0.029793388509032032,0.5045574789408545 -0.03040965908729527,0.443922774356818" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.21886202765719254,0.25668238877764943 0.16358237829720765,0.242985730991341 0.16032150256772673,0.3066341898868902 0.2144495815452092,0.32077857194991 0.21886202765719254,0.25668238877764943" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.11180513132065958,0.16380113105017155 0.057894392225666044,0.15120300911443246 0.09141274157537979,0.13283734046744267 0.14478472597847122,0.14501146058331948 0.11180513132065958,0.16380113105017155" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.291884585885372,0.08318708595118582 0.3220558669253712,0.06561886630039533 0.3156326737414062,0.13283734046744275 0.28596321008435027,0.15120300911443246 0.291884585885372,0.08318708595118582" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3425141324585284,0.1638011310501714 0.28596321008435027,0.15120300911443246 0.3156326737414062,0.13283734046744275 0.3715559835351132,0.14501146058331943 0.3425141324585284,0.1638011310501714" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.468715135029779,0.7091742854384828 0.41047764800584197,0.6902563077739906 0.40228255852145056,0.7450728632256328 0.45925075838128393,0.7642332313947633 0.468715135029779,0.7091742854384828" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3818251897108854,0.7187991824979196 0.41047764800584197,0.6902563077739906 0.40228255852145056,0.7450728632256328 0.3740711487563335,0.7739780370349517 0.3818251897108854,0.7187991824979196" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005346560475624879,0.7091742854384829 -0.04756607938265119,0.6902563077739906 -0.04661643382008223,0.7450728632256329 0.005238601806630638,0.7642332313947632 0.005346560475624879,0.7091742854384829" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.23703084775270195,0.7091742854384829 0.18145578431159531,0.6902563077739906 0.1778330623506841,0.7450728632256328 0.23224468009395724,0.7642332313947633 0.23703084775270195,0.7091742854384829" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5434486238476127,0.5382897613739653 0.5693286322189071,0.5128451093444648 0.5579562985878657,0.5712335275790875 0.5324066119801947,0.5971650276579727 0.5434486238476127,0.5382897613739653" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.39763778094521557,0.5297095588965279 0.3401870774558795,0.5128451093444649 0.3333918440478579,0.5712335275790875 0.3896044512187749,0.5884226860921244 0.39763778094521557,0.5297095588965279" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.07712307203117931,0.5382897613739653 0.11104552269285178,0.5128451093444649 0.1088273895078499,0.5712335275790877 0.07555605384537412,0.5971650276579729 0.07712307203117931,0.5382897613739653" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.06597577531378018,0.5297095588965279 -0.1180960320701758,0.5128451093444648 -0.11573706503215794,0.5712335275790875 -0.06464289100939317,0.5884226860921244 -0.06597577531378018,0.5297095588965279" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.10131696055590292,0.6149538016031939 -0.15286922522203608,0.5971650276579727 -0.11573706503215794,0.5712335275790875 -0.06464289100939317,0.5884226860921244 -0.10131696055590292,0.6149538016031939" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.12975680913299845,0.6149538016031939 0.07555605384537412,0.5971650276579729 0.1088273895078499,0.5712335275790877 0.16248078010469083,0.5884226860921246 0.12975680913299845,0.6149538016031939" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.21886202765719254,0.25668238877764943 0.16358237829720765,0.242985730991341 0.19539849165816622,0.2230200871123183 0.2500951449002475,0.23625459250716724 0.21886202765719254,0.25668238877764943" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.25525736369003416,0.17021020812961457 0.19938529480707953,0.15746582012697868 0.19539849165816622,0.2230200871123183 0.2500951449002475,0.23625459250716724 0.25525736369003416,0.17021020812961457" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.16697865792437036,0.17669434727103459 0.19938529480707953,0.15746582012697868 0.19539849165816622,0.2230200871123183 0.16358237829720765,0.242985730991341 0.16697865792437036,0.17669434727103459" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4003896851304793,0.17669434727103456 0.42876660741699435,0.15746582012697877 0.4201932165746409,0.22302008711231822 0.392245917852444,0.24298573099134085 0.4003896851304793,0.17669434727103456" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.18395406147671303,-0.009825019659360999 0.12887385172336924,-0.02050285365956589 0.12629563632242433,0.04864543365376733 0.18023192089487494,0.05989647662996539 0.18395406147671303,-0.009825019659360999" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5059630310879872,0.6240037803410058 0.4471130659727736,0.6060081485821669 0.43815905674538336,0.6626807687503918 0.49571470220304276,0.6809594358505169 0.5059630310879872,0.6240037803410058" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.468715135029779,0.7091742854384828 0.41047764800584197,0.6902563077739906 0.43815905674538336,0.6626807687503918 0.49571470220304276,0.6809594358505169 0.468715135029779,0.7091742854384828" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.005346560475624879,0.7091742854384829 -0.04756607938265119,0.6902563077739906 -0.012122977854615366,0.6626807687503918 0.04028776731685506,0.680959435850517 0.005346560475624879,0.7091742854384829" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.23703084775270195,0.7091742854384829 0.18145578431159531,0.6902563077739906 0.21301803944538397,0.662680768750392 0.26800123475994886,0.680959435850517 0.23703084775270195,0.7091742854384829" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5811741958768335,0.4520270092496897 0.606482934408166,0.4279947218158613 0.5943311004678226,0.48826323536107313 0.5693286322189071,0.5128451093444648 0.5811741958768335,0.4520270092496897" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4346792446007493,0.443922774356818 0.3766205977520099,0.42799472181586146 0.3690744151593184,0.48826323536107324 0.4258702004526336,0.5045574789408545 0.4346792446007493,0.443922774356818" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.39763778094521557,0.5297095588965279 0.3401870774558795,0.5128451093444649 0.3690744151593184,0.48826323536107324 0.4258702004526336,0.5045574789408545 0.39763778094521557,0.5297095588965279" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.06597577531378018,0.5297095588965279 -0.1180960320701758,0.5128451093444648 -0.08143895545769002,0.48826323536107313 -0.029793388509032032,0.5045574789408545 -0.06597577531378018,0.5297095588965279" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.03040965908729527,0.443922774356818 -0.08310407556030269,0.4279947218158613 -0.08143895545769002,0.48826323536107313 -0.029793388509032032,0.5045574789408545 -0.03040965908729527,0.443922774356818" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5094739596344845,0.2707007288410886 0.5360370857128737,0.24979454562926842 0.5252912237333739,0.31366639302901556 0.4990843691829427,0.33524837719360984 0.5094739596344845,0.2707007288410886" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.291884585885372,0.08318708595118582 0.2354136892378116,0.07140732599696271 0.23069195620395974,0.1388899651057234 0.28596321008435027,0.15120300911443246 0.291884585885372,0.08318708595118582" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.25525736369003416,0.17021020812961457 0.19938529480707953,0.15746582012697868 0.23069195620395974,0.1388899651057234 0.28596321008435027,0.15120300911443246 0.25525736369003416,0.17021020812961457" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.18395406147671303,-0.009825019659360999 0.12887385172336924,-0.02050285365956589 0.1613939194549956,-0.03606632562669754 0.21590049456718,-0.025750076867906757 0.18395406147671303,-0.009825019659360999" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.059503909722819326,0.7285372869097898 0.09391004051888509,0.6996606330535936 0.09202453122892695,0.754598794956944 0.058288553073637124,0.7838351193376702 0.059503909722819326,0.7285372869097898" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3818251897108854,0.7187991824979196 0.3242554229236976,0.6996606330535935 0.317745079526295,0.754598794956944 0.3740711487563335,0.7739780370349517 0.3818251897108854,0.7187991824979196" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2939132510551377,0.7285372869097897 0.3242554229236976,0.6996606330535935 0.317745079526295,0.754598794956944 0.28791012578796504,0.7838351193376701 0.2939132510551377,0.7285372869097897" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5434486238476127,0.5382897613739653 0.48397956857750724,0.5212285786290439 0.4742573066772512,0.5797794108694487 0.5324066119801947,0.5971650276579727 0.5434486238476127,0.5382897613739653" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5059630310879872,0.6240037803410058 0.4471130659727736,0.6060081485821669 0.4742573066772512,0.5797794108694487 0.5324066119801947,0.5971650276579727 0.5059630310879872,0.6240037803410058" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4564406695076296,0.5469709375645976 0.48397956857750724,0.5212285786290439 0.4742573066772512,0.5797794108694487 0.4471130659727736,0.6060081485821669 0.4564406695076296,0.5469709375645976" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.07712307203117931,0.5382897613739653 0.023046646122738382,0.5212285786290439 0.02258368127034524,0.5797794108694487 0.07555605384537412,0.5971650276579729 0.07712307203117931,0.5382897613739653" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.6191420590632561,0.365210237639125 0.6438717174454965,0.34260884338433195 0.630930849923991,0.4047798416231217 0.606482934408166,0.4279947218158613 0.6191420590632561,0.365210237639125" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4346792446007493,0.443922774356818 0.3766205977520099,0.42799472181586146 0.40497765298151467,0.4047798416231217 0.4623627947481554,0.4201676884433267 0.4346792446007493,0.443922774356818" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.03040965908729527,0.443922774356818 -0.08310407556030269,0.4279947218158613 -0.04692874090343743,0.4047798416231217 0.0052741003203210755,0.4201676884433268 -0.03040965908729527,0.443922774356818" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.16697865792437036,0.17669434727103459 0.11180513132065958,0.16380113105017155 0.10955685519682601,0.22959980850088701 0.16358237829720765,0.242985730991341 0.16697865792437036,0.17669434727103459" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4003896851304793,0.17669434727103456 0.3425141324585284,0.1638011310501714 0.3356265563966256,0.22959980850088693 0.392245917852444,0.24298573099134085 0.4003896851304793,0.17669434727103456" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.31244587058202783,0.18325487491383194 0.3425141324585284,0.1638011310501714 0.3356265563966256,0.22959980850088693 0.3060541776512445,0.2497945456292683 0.31244587058202783,0.18325487491383194" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.07765995627183347,0.18325487491383202 0.11180513132065958,0.16380113105017155 0.10955685519682601,0.22959980850088701 0.07607126958961567,0.24979454562926842 0.07765995627183347,0.18325487491383202" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.291884585885372,0.08318708595118582 0.2354136892378116,0.07140732599696271 0.26620390635506713,0.05423903221053228 0.3220558669253712,0.06561886630039533 0.291884585885372,0.08318708595118582" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.24033274705658597,0.0011045365000557515 0.27166969832405796,-0.015194855266631892 0.26620390635506713,0.05423903221053228 0.2354136892378116,0.07140732599696271 0.24033274705658597,0.0011045365000557515" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3818251897108854,0.7187991824979196 0.3242554229236976,0.6996606330535935 0.35356343843084664,0.6717681861095129 0.41047764800584197,0.6902563077739906 0.3818251897108854,0.7187991824979196" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3310381303359866,0.6424241010900017 0.3608305788218999,0.6149538016031939 0.35356343843084664,0.6717681861095129 0.3242554229236976,0.6996606330535935 0.3310381303359866,0.6424241010900017" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5434486238476127,0.5382897613739653 0.48397956857750724,0.5212285786290439 0.5105793706530362,0.4963640533295579 0.5693286322189071,0.5128451093444648 0.5434486238476127,0.5382897613739653" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5811741958768335,0.4520270092496897 0.5210793491507514,0.43591255405037854 0.5105793706530362,0.4963640533295579 0.5693286322189071,0.5128451093444648 0.5811741958768335,0.4520270092496897" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4941087852490768,0.46022692364913 0.5210793491507514,0.43591255405037854 0.5105793706530362,0.4963640533295579 0.48397956857750724,0.5212285786290439 0.4941087852490768,0.46022692364913" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.07712307203117931,0.5382897613739653 0.023046646122738382,0.5212285786290439 0.057505526387543256,0.4963640533295581 0.11104552269285178,0.5128451093444649 0.07712307203117931,0.5382897613739653" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.023528989773765503,0.46022692364913 0.05868811782243949,0.4359125540503786 0.057505526387543256,0.4963640533295581 0.023046646122738382,0.5212285786290439 0.023528989773765503,0.46022692364913" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5094739596344845,0.2707007288410886 0.4501796178639813,0.25668238877764943 0.4411036108206335,0.32077857194991 0.4990843691829427,0.33524837719360984 0.5094739596344845,0.2707007288410886" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.16697865792437036,0.17669434727103459 0.11180513132065958,0.16380113105017155 0.14478472597847122,0.14501146058331948 0.19938529480707953,0.15746582012697868 0.16697865792437036,0.17669434727103459" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.11414761697690268,0.09524529109166366 0.14776534278609943,0.07726300661865793 0.14478472597847122,0.14501146058331948 0.11180513132065958,0.16380113105017155 0.11414761697690268,0.09524529109166366" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4003896851304793,0.17669434727103456 0.3425141324585284,0.1638011310501714 0.3715559835351132,0.14501146058331943 0.42876660741699435,0.15746582012697877 0.4003896851304793,0.17669434727103456" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.34969031867527317,0.09524529109166353 0.3792050363064965,0.07726300661865787 0.3715559835351132,0.14501146058331943 0.3425141324585284,0.1638011310501714 0.34969031867527317,0.09524529109166353" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.44075723096378433,0.7383906077948634 0.468715135029779,0.7091742854384828 0.45925075838128393,0.7642332313947633 0.4317026819609184,0.7938064299721028 0.44075723096378433,0.7383906077948634" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.20496118147698617,0.7383906077948635 0.23703084775270195,0.7091742854384829 0.23224468009395724,0.7642332313947633 0.2007506298830608,0.7938064299721028 0.20496118147698617,0.7383906077948635" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.059503909722819326,0.7285372869097898 0.005346560475624879,0.7091742854384829 0.005238601806630638,0.7642332313947632 0.058288553073637124,0.7838351193376702 0.059503909722819326,0.7285372869097898" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2939132510551377,0.7285372869097897 0.23703084775270195,0.7091742854384829 0.23224468009395724,0.7642332313947633 0.28791012578796504,0.7838351193376701 0.2939132510551377,0.7285372869097897" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4564406695076296,0.5469709375645976 0.39763778094521557,0.5297095588965279 0.3896044512187749,0.5884226860921244 0.4471130659727736,0.6060081485821669 0.4564406695076296,0.5469709375645976" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.36840272582008243,0.5557548804398224 0.39763778094521557,0.5297095588965279 0.3896044512187749,0.5884226860921244 0.3608305788218999,0.6149538016031939 0.36840272582008243,0.5557548804398224" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.1034431299100724,0.5557548804398224 -0.06597577531378018,0.5297095588965279 -0.06464289100939317,0.5884226860921244 -0.10131696055590292,0.6149538016031939 -0.1034431299100724,0.5557548804398224" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.13247979795500497,0.5557548804398222 0.16583100281571764,0.5297095588965279 0.16248078010469083,0.5884226860921246 0.12975680913299845,0.6149538016031939 0.13247979795500497,0.5557548804398222" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6191420590632561,0.365210237639125 0.5584146288685284,0.3500549669478175 0.5471273366617732,0.41242990096401455 0.606482934408166,0.4279947218158613 0.6191420590632561,0.365210237639125" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5811741958768335,0.4520270092496897 0.5210793491507514,0.43591255405037854 0.5471273366617732,0.41242990096401455 0.606482934408166,0.4279947218158613 0.5811741958768335,0.4520270092496897" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.22345986651556804,0.18989314893569018 0.25525736369003416,0.17021020812961457 0.2500951449002475,0.23625459250716724 0.21886202765719254,0.25668238877764943 0.22345986651556804,0.18989314893569018" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.31244587058202783,0.18325487491383194 0.25525736369003416,0.17021020812961457 0.2500951449002475,0.23625459250716724 0.3060541776512445,0.2497945456292683 0.31244587058202783,0.18325487491383194" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.07765995627183347,0.18325487491383202 0.023205214880912154,0.17021020812961452 0.02273592226365882,0.2362545925071673 0.07607126958961567,0.24979454562926842 0.07765995627183347,0.18325487491383202" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5094739596344845,0.2707007288410886 0.4501796178639813,0.25668238877764943 0.47745436753683645,0.23625459250716732 0.5360370857128737,0.24979454562926842 0.5094739596344845,0.2707007288410886" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4596369612068187,0.18989314893569018 0.4873095124991564,0.17021020812961463 0.47745436753683645,0.23625459250716732 0.4501796178639813,0.25668238877764943 0.4596369612068187,0.18989314893569018" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.24033274705658597,0.0011045365000557515 0.18395406147671303,-0.009825019659360999 0.18023192089487494,0.05989647662996539 0.2354136892378116,0.07140732599696271 0.24033274705658597,0.0011045365000557515" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.15087126028643477,0.006666508521021145 0.18395406147671303,-0.009825019659360999 0.18023192089487494,0.05989647662996539 0.14776534278609943,0.07726300661865793 0.15087126028643477,0.006666508521021145" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3310381303359866,0.6424241010900017 0.27354185072954784,0.624003780341006 0.26800123475994886,0.680959435850517 0.3242554229236976,0.6996606330535935 0.3310381303359866,0.6424241010900017" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.0054590624636137765,0.6517982457525446 0.041120670371108496,0.624003780341006 0.04028776731685506,0.680959435850517 0.005346560475624879,0.7091742854384829 0.0054590624636137765,0.6517982457525446" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.24201843588687633,0.6517982457525445 0.27354185072954784,0.624003780341006 0.26800123475994886,0.680959435850517 0.23703084775270195,0.7091742854384829 0.24201843588687633,0.6517982457525445" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.059503909722819326,0.7285372869097898 0.005346560475624879,0.7091742854384829 0.04028776731685506,0.680959435850517 0.09391004051888509,0.6996606330535936 0.059503909722819326,0.7285372869097898" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2939132510551377,0.7285372869097897 0.23703084775270195,0.7091742854384829 0.26800123475994886,0.680959435850517 0.3242554229236976,0.6996606330535935 0.2939132510551377,0.7285372869097897" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4941087852490768,0.46022692364913 0.4346792446007493,0.443922774356818 0.4258702004526336,0.5045574789408545 0.48397956857750724,0.5212285786290439 0.4941087852490768,0.46022692364913" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4564406695076296,0.5469709375645976 0.39763778094521557,0.5297095588965279 0.4258702004526336,0.5045574789408545 0.48397956857750724,0.5212285786290439 0.4564406695076296,0.5469709375645976" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.023528989773765503,0.46022692364913 -0.03040965908729527,0.443922774356818 -0.029793388509032032,0.5045574789408545 0.023046646122738382,0.5212285786290439 0.023528989773765503,0.46022692364913" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.06736478283348007,0.4685242220211845 -0.03040965908729527,0.443922774356818 -0.029793388509032032,0.5045574789408545 -0.06597577531378018,0.5297095588965279 -0.06736478283348007,0.4685242220211845" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6191420590632561,0.365210237639125 0.5584146288685284,0.3500549669478175 0.5839033187456597,0.3279720987737771 0.6438717174454965,0.34260884338433195 0.6191420590632561,0.365210237639125" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5701774471830435,0.2850522184787687 0.5959876571954666,0.26365064436948554 0.5839033187456597,0.3279720987737771 0.5584146288685284,0.3500549669478175 0.5701774471830435,0.2850522184787687" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.11414761697690268,0.09524529109166366 0.05909319836943118,0.08318708595118582 0.057894392225666044,0.15120300911443246 0.11180513132065958,0.16380113105017155 0.11414761697690268,0.09524529109166366" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.34969031867527317,0.09524529109166353 0.291884585885372,0.08318708595118582 0.28596321008435027,0.15120300911443246 0.3425141324585284,0.1638011310501714 0.34969031867527317,0.09524529109166353" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.31244587058202783,0.18325487491383194 0.25525736369003416,0.17021020812961457 0.28596321008435027,0.15120300911443246 0.3425141324585284,0.1638011310501714 0.31244587058202783,0.18325487491383194" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07765995627183347,0.18325487491383202 0.023205214880912154,0.17021020812961452 0.057894392225666044,0.15120300911443246 0.11180513132065958,0.16380113105017155 0.07765995627183347,0.18325487491383202" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.24033274705658597,0.0011045365000557515 0.18395406147671303,-0.009825019659360999 0.21590049456718,-0.025750076867906757 0.27166969832405796,-0.015194855266631892 0.24033274705658597,0.0011045365000557515" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.20496118147698617,0.7383906077948635 0.14878634153053283,0.7187991824979197 0.1457648138346276,0.7739780370349517 0.2007506298830608,0.7938064299721028 0.20496118147698617,0.7383906077948635" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.114950411646763,0.7483612020986922 0.14878634153053283,0.7187991824979197 0.1457648138346276,0.7739780370349517 0.11257520375560583,0.8038939661047075 0.114950411646763,0.7483612020986922" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.44075723096378433,0.7383906077948634 0.3818251897108854,0.7187991824979196 0.3740711487563335,0.7739780370349517 0.4317026819609184,0.7938064299721028 0.44075723096378433,0.7383906077948634" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.352149673775004,0.748361202098692 0.3818251897108854,0.7187991824979196 0.3740711487563335,0.7739780370349517 0.3448732432513003,0.8038939661047076 0.352149673775004,0.748361202098692" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5166440500652079,0.5646434256737362 0.5434486238476127,0.5382897613739653 0.5324066119801947,0.5971650276579727 0.5059630310879872,0.6240037803410058 0.5166440500652079,0.5646434256737362" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.36840272582008243,0.5557548804398224 0.31028584793939606,0.5382897613739654 0.30398133291278445,0.5971650276579729 0.3608305788218999,0.6149538016031939 0.36840272582008243,0.5557548804398224" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3310381303359866,0.6424241010900017 0.27354185072954784,0.624003780341006 0.30398133291278445,0.5971650276579729 0.3608305788218999,0.6149538016031939 0.3310381303359866,0.6424241010900017" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.041988739051235964,0.5646434256737362 0.07712307203117931,0.5382897613739653 0.07555605384537412,0.5971650276579729 0.041120670371108496,0.624003780341006 0.041988739051235964,0.5646434256737362" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.1034431299100724,0.5557548804398224 -0.15603970387703728,0.5382897613739652 -0.15286922522203608,0.5971650276579727 -0.10131696055590292,0.6149538016031939 -0.1034431299100724,0.5557548804398224" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.13247979795500497,0.5557548804398222 0.07712307203117931,0.5382897613739653 0.07555605384537412,0.5971650276579729 0.12975680913299845,0.6149538016031939 0.13247979795500497,0.5557548804398222" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4941087852490768,0.46022692364913 0.4346792446007493,0.443922774356818 0.4623627947481554,0.4201676884433267 0.5210793491507514,0.43591255405037854 0.4941087852490768,0.46022692364913" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.443860412873255,0.3807266526687692 0.47195721338452457,0.35758825189109866 0.4623627947481554,0.4201676884433267 0.4346792446007493,0.443922774356818 0.443860412873255,0.3807266526687692" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.023528989773765503,0.46022692364913 -0.03040965908729527,0.443922774356818 0.0052741003203210755,0.4201676884433268 0.05868811782243949,0.4359125540503786 0.023528989773765503,0.46022692364913" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.031051963040515836,0.3807266526687692 0.00538354235799829,0.3575882518910988 0.0052741003203210755,0.4201676884433268 -0.03040965908729527,0.443922774356818 -0.031051963040515836,0.3807266526687692" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.22345986651556804,0.18989314893569018 0.16697865792437036,0.17669434727103459 0.16358237829720765,0.242985730991341 0.21886202765719254,0.25668238877764943 0.22345986651556804,0.18989314893569018" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4596369612068187,0.18989314893569018 0.4003896851304793,0.17669434727103456 0.392245917852444,0.24298573099134085 0.4501796178639813,0.25668238877764943 0.4596369612068187,0.18989314893569018" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.13341303660302495,0.196610559589535 0.16697865792437036,0.17669434727103459 0.16358237829720765,0.242985730991341 0.13065194887468184,0.26365064436948554 0.13341303660302495,0.196610559589535" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.29805637206859026,0.012294822240222806 0.3287459174553927,-0.004392259918121785 0.3220558669253712,0.06561886630039533 0.291884585885372,0.08318708595118582 0.29805637206859026,0.012294822240222806" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.15087126028643477,0.006666508521021145 0.09521056625757261,-0.004392259918121784 0.09327301063958825,0.06561886630039528 0.14776534278609943,0.07726300661865793 0.15087126028643477,0.006666508521021145" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.11414761697690268,0.09524529109166366 0.05909319836943118,0.08318708595118582 0.09327301063958825,0.06561886630039528 0.14776534278609943,0.07726300661865793 0.11414761697690268,0.09524529109166366" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.34969031867527317,0.09524529109166353 0.291884585885372,0.08318708595118582 0.3220558669253712,0.06561886630039533 0.3792050363064965,0.07726300661865787 0.34969031867527317,0.09524529109166353" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.44075723096378433,0.7383906077948634 0.3818251897108854,0.7187991824979196 0.41047764800584197,0.6902563077739906 0.468715135029779,0.7091742854384828 0.44075723096378433,0.7383906077948634" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.0054590624636137765,0.6517982457525446 -0.048555220899672714,0.6331599204959272 -0.04756607938265119,0.6902563077739906 0.005346560475624879,0.7091742854384829 0.0054590624636137765,0.6517982457525446" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.24201843588687633,0.6517982457525445 0.18522917602467745,0.6331599204959272 0.18145578431159531,0.6902563077739906 0.23703084775270195,0.7091742854384829 0.24201843588687633,0.6517982457525445" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.20496118147698617,0.7383906077948635 0.14878634153053283,0.7187991824979197 0.18145578431159531,0.6902563077739906 0.23703084775270195,0.7091742854384829 0.20496118147698617,0.7383906077948635" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5549583545668814,0.47692064955896163 0.5811741958768335,0.4520270092496897 0.5693286322189071,0.5128451093444648 0.5434486238476127,0.5382897613739653 0.5549583545668814,0.47692064955896163" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.1034431299100724,0.5557548804398224 -0.15603970387703728,0.5382897613739652 -0.1180960320701758,0.5128451093444648 -0.06597577531378018,0.5297095588965279 -0.1034431299100724,0.5557548804398224" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.06736478283348007,0.4685242220211845 -0.12055316137383239,0.4520270092496897 -0.1180960320701758,0.5128451093444648 -0.06597577531378018,0.5297095588965279 -0.06736478283348007,0.4685242220211845" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.36840272582008243,0.5557548804398224 0.31028584793939606,0.5382897613739654 0.3401870774558795,0.5128451093444649 0.39763778094521557,0.5297095588965279 0.36840272582008243,0.5557548804398224" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.13247979795500497,0.5557548804398222 0.07712307203117931,0.5382897613739653 0.11104552269285178,0.5128451093444649 0.16583100281571764,0.5297095588965279 0.13247979795500497,0.5557548804398222" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07875646615965638,0.47692064955896163 0.11335595770972288,0.4520270092496897 0.11104552269285178,0.5128451093444649 0.07712307203117931,0.5382897613739653 0.07875646615965638,0.47692064955896163" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5701774471830435,0.2850522184787687 0.5094739596344845,0.2707007288410886 0.4990843691829427,0.33524837719360984 0.5584146288685284,0.3500549669478175 0.5701774471830435,0.2850522184787687" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.48195825436391343,0.2923566278452728 0.5094739596344845,0.2707007288410886 0.4990843691829427,0.33524837719360984 0.47195721338452457,0.35758825189109866 0.48195825436391343,0.2923566278452728" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.22345986651556804,0.18989314893569018 0.16697865792437036,0.17669434727103459 0.19938529480707953,0.15746582012697868 0.25525736369003416,0.17021020812961457 0.22345986651556804,0.18989314893569018" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4596369612068187,0.18989314893569018 0.4003896851304793,0.17669434727103456 0.42876660741699435,0.15746582012697877 0.4873095124991564,0.17021020812961463 0.4596369612068187,0.18989314893569018" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.15087126028643477,0.006666508521021145 0.09521056625757261,-0.004392259918121784 0.12887385172336924,-0.02050285365956589 0.18395406147671303,-0.009825019659360999 0.15087126028643477,0.006666508521021145" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.114950411646763,0.7483612020986922 0.059503909722819326,0.7285372869097898 0.058288553073637124,0.7838351193376702 0.11257520375560583,0.8038939661047075 0.114950411646763,0.7483612020986922" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.352149673775004,0.748361202098692 0.2939132510551377,0.7285372869097897 0.28791012578796504,0.7838351193376701 0.3448732432513003,0.8038939661047076 0.352149673775004,0.748361202098692" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.26248120324050833,0.758451176023145 0.2939132510551377,0.7285372869097897 0.28791012578796504,0.7838351193376701 0.25702578846990254,0.8140997717327767 0.26248120324050833,0.758451176023145" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5166440500652079,0.5646434256737362 0.4564406695076296,0.5469709375645976 0.4471130659727736,0.6060081485821669 0.5059630310879872,0.6240037803410058 0.5166440500652079,0.5646434256737362" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.041988739051235964,0.5646434256737362 -0.01262879322748384,0.5469709375645976 -0.012370717240353437,0.6060081485821669 0.041120670371108496,0.624003780341006 0.041988739051235964,0.5646434256737362" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.0054590624636137765,0.6517982457525446 -0.048555220899672714,0.6331599204959272 -0.012370717240353437,0.6060081485821669 0.041120670371108496,0.624003780341006 0.0054590624636137765,0.6517982457525446" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.049586374665052786,0.5736384529220486 -0.01262879322748384,0.5469709375645976 -0.012370717240353437,0.6060081485821669 -0.048555220899672714,0.6331599204959272 -0.049586374665052786,0.5736384529220486" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.24201843588687633,0.6517982457525445 0.18522917602467745,0.6331599204959272 0.21737117436621003,0.606008148582167 0.27354185072954784,0.624003780341006 0.24201843588687633,0.6517982457525445" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.18916283668520142,0.5736384529220486 0.22190593814007284,0.5469709375645977 0.21737117436621003,0.606008148582167 0.18522917602467745,0.6331599204959272 0.18916283668520142,0.5736384529220486" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.031051963040515836,0.3807266526687692 -0.08483870780167072,0.36521023763912513 -0.08310407556030269,0.4279947218158613 -0.03040965908729527,0.443922774356818 -0.031051963040515836,0.3807266526687692" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.06736478283348007,0.4685242220211845 -0.12055316137383239,0.4520270092496897 -0.08310407556030269,0.4279947218158613 -0.03040965908729527,0.443922774356818 -0.06736478283348007,0.4685242220211845" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.443860412873255,0.3807266526687692 0.38448180344161387,0.36521023763912513 0.3766205977520099,0.42799472181586146 0.4346792446007493,0.443922774356818 0.443860412873255,0.3807266526687692" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.28129580520617586,0.20340853047420562 0.31244587058202783,0.18325487491383194 0.3060541776512445,0.2497945456292683 0.27543998524408536,0.2707007288410886 0.28129580520617586,0.20340853047420562" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5701774471830435,0.2850522184787687 0.5094739596344845,0.2707007288410886 0.5360370857128737,0.24979454562926842 0.5959876571954666,0.26365064436948554 0.5701774471830435,0.2850522184787687" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5203053128976977,0.20340853047420562 0.5472317848922224,0.18325487491383202 0.5360370857128737,0.24979454562926842 0.5094739596344845,0.2707007288410886 0.5203053128976977,0.20340853047420562" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.13341303660302495,0.196610559589535 0.07765995627183347,0.18325487491383202 0.07607126958961567,0.24979454562926842 0.13065194887468184,0.26365064436948554 0.13341303660302495,0.196610559589535" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.04228629751465386,0.20340853047420568 0.07765995627183347,0.18325487491383202 0.07607126958961567,0.24979454562926842 0.04140601085368602,0.27070072884108864 0.04228629751465386,0.20340853047420568" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.29805637206859026,0.012294822240222806 0.24033274705658597,0.0011045365000557515 0.2354136892378116,0.07140732599696271 0.291884585885372,0.08318708595118582 0.29805637206859026,0.012294822240222806" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.114950411646763,0.7483612020986922 0.059503909722819326,0.7285372869097898 0.09391004051888509,0.6996606330535936 0.14878634153053283,0.7187991824979197 0.114950411646763,0.7483612020986922" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.060771027684745474,0.6708843528742559 0.09587443119020377,0.6424241010900017 0.09391004051888509,0.6996606330535936 0.059503909722819326,0.7285372869097898 0.060771027684745474,0.6708843528742559" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.352149673775004,0.748361202098692 0.2939132510551377,0.7285372869097897 0.3242554229236976,0.6996606330535935 0.3818251897108854,0.7187991824979196 0.352149673775004,0.748361202098692" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.300172045836773,0.670884352874256 0.3310381303359866,0.6424241010900017 0.3242554229236976,0.6996606330535935 0.2939132510551377,0.7285372869097897 0.300172045836773,0.670884352874256" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5549583545668814,0.47692064955896163 0.4941087852490768,0.46022692364913 0.48397956857750724,0.5212285786290439 0.5434486238476127,0.5382897613739653 0.5549583545668814,0.47692064955896163" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5166440500652079,0.5646434256737362 0.4564406695076296,0.5469709375645976 0.48397956857750724,0.5212285786290439 0.5434486238476127,0.5382897613739653 0.5166440500652079,0.5646434256737362" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.041988739051235964,0.5646434256737362 -0.01262879322748384,0.5469709375645976 0.023046646122738382,0.5212285786290439 0.07712307203117931,0.5382897613739653 0.041988739051235964,0.5646434256737362" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07875646615965638,0.47692064955896163 0.023528989773765503,0.46022692364913 0.023046646122738382,0.5212285786290439 0.07712307203117931,0.5382897613739653 0.07875646615965638,0.47692064955896163" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.6323409176744493,0.2997488765889966 0.6573545550861878,0.2778340920919404 0.6438717174454965,0.34260884338433195 0.6191420590632561,0.365210237639125 0.6323409176744493,0.2997488765889966" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.48195825436391343,0.2923566278452728 0.42193832323713953,0.2778340920919403 0.41328405004077307,0.342608843384332 0.47195721338452457,0.35758825189109866 0.48195825436391343,0.2923566278452728" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.443860412873255,0.3807266526687692 0.38448180344161387,0.36521023763912513 0.41328405004077307,0.342608843384332 0.47195721338452457,0.35758825189109866 0.443860412873255,0.3807266526687692" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.031051963040515836,0.3807266526687692 -0.08483870780167072,0.36521023763912513 -0.04789128476867338,0.34260884338433206 0.00538354235799829,0.3575882518910988 -0.031051963040515836,0.3807266526687692" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.13341303660302495,0.196610559589535 0.07765995627183347,0.18325487491383202 0.11180513132065958,0.16380113105017155 0.16697865792437036,0.17669434727103459 0.13341303660302495,0.196610559589535" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07931641518416833,0.11387666974971264 0.11414761697690268,0.09524529109166366 0.11180513132065958,0.16380113105017155 0.07765995627183347,0.18325487491383202 0.07931641518416833,0.11387666974971264" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.29805637206859026,0.012294822240222806 0.24033274705658597,0.0011045365000557515 0.27166969832405796,-0.015194855266631892 0.3287459174553927,-0.004392259918121785 0.29805637206859026,0.012294822240222806" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1717326508626879,0.7686626865096746 0.20496118147698617,0.7383906077948635 0.2007506298830608,0.7938064299721028 0.16814230872738734,0.824425939065181 0.1717326508626879,0.7686626865096746" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.41178904454171394,0.7686626865096745 0.44075723096378433,0.7383906077948634 0.4317026819609184,0.7938064299721028 0.40317994458287487,0.8244259390651809 0.41178904454171394,0.7686626865096745" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.26248120324050833,0.758451176023145 0.20496118147698617,0.7383906077948635 0.2007506298830608,0.7938064299721028 0.25702578846990254,0.8140997717327767 0.26248120324050833,0.758451176023145" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3381106586846457,0.5827418871472337 0.36840272582008243,0.5557548804398224 0.3608305788218999,0.6149538016031939 0.3310381303359866,0.6424241010900017 0.3381106586846457,0.5827418871472337" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.049586374665052786,0.5736384529220486 -0.1034431299100724,0.5557548804398224 -0.10131696055590292,0.6149538016031939 -0.048555220899672714,0.6331599204959272 -0.049586374665052786,0.5736384529220486" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.18916283668520142,0.5736384529220486 0.13247979795500497,0.5557548804398222 0.12975680913299845,0.6149538016031939 0.18522917602467745,0.6331599204959272 0.18916283668520142,0.5736384529220486" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.09792275907260231,0.5827418871472336 0.13247979795500497,0.5557548804398222 0.12975680913299845,0.6149538016031939 0.09587443119020377,0.6424241010900017 0.09792275907260231,0.5827418871472336" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5549583545668814,0.47692064955896163 0.4941087852490768,0.46022692364913 0.5210793491507514,0.43591255405037854 0.5811741958768335,0.4520270092496897 0.5549583545668814,0.47692064955896163" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07875646615965638,0.47692064955896163 0.023528989773765503,0.46022692364913 0.05868811782243949,0.4359125540503786 0.11335595770972288,0.4520270092496897 0.07875646615965638,0.47692064955896163" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.48195825436391343,0.2923566278452728 0.42193832323713953,0.2778340920919403 0.4501796178639813,0.25668238877764943 0.5094739596344845,0.2707007288410886 0.48195825436391343,0.2923566278452728" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4309627938279809,0.21028851954025904 0.4596369612068187,0.18989314893569018 0.4501796178639813,0.25668238877764943 0.42193832323713953,0.2778340920919403 0.4309627938279809,0.21028851954025904" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.28129580520617586,0.20340853047420562 0.22345986651556804,0.18989314893569018 0.21886202765719254,0.25668238877764943 0.27543998524408536,0.2707007288410886 0.28129580520617586,0.20340853047420562" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5203053128976977,0.20340853047420562 0.4596369612068187,0.18989314893569018 0.4501796178639813,0.25668238877764943 0.5094739596344845,0.2707007288410886 0.5203053128976977,0.20340853047420562" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.19051144963211175,0.21028851954025898 0.22345986651556804,0.18989314893569018 0.21886202765719254,0.25668238877764943 0.18652209138809175,0.2778340920919403 0.19051144963211175,0.21028851954025898" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.04228629751465386,0.20340853047420568 -0.012717228175682745,0.1898931489356901 -0.012455562549596337,0.2566823887776495 0.04140601085368602,0.27070072884108864 0.04228629751465386,0.20340853047420568" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.11659036037890735,0.023755279922881335 0.15087126028643477,0.006666508521021145 0.14776534278609943,0.07726300661865793 0.11414761697690268,0.09524529109166366 0.11659036037890735,0.023755279922881335" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.357173643700462,0.023755279922881213 0.3871756438675981,0.006666508521021088 0.3792050363064965,0.07726300661865787 0.34969031867527317,0.09524529109166353 0.357173643700462,0.023755279922881213" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.45019973794517715,0.6806003978548005 0.478577809310139,0.6517982457525445 0.468715135029779,0.7091742854384828 0.44075723096378433,0.7383906077948634 0.45019973794517715,0.6806003978548005" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.060771027684745474,0.6708843528742559 0.0054590624636137765,0.6517982457525446 0.005346560475624879,0.7091742854384829 0.059503909722819326,0.7285372869097898 0.060771027684745474,0.6708843528742559" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.300172045836773,0.670884352874256 0.24201843588687633,0.6517982457525445 0.23703084775270195,0.7091742854384829 0.2939132510551377,0.7285372869097897 0.300172045836773,0.670884352874256" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.26248120324050833,0.758451176023145 0.20496118147698617,0.7383906077948635 0.23703084775270195,0.7091742854384829 0.2939132510551377,0.7285372869097897 0.26248120324050833,0.758451176023145" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.049586374665052786,0.5736384529220486 -0.1034431299100724,0.5557548804398224 -0.06597577531378018,0.5297095588965279 -0.01262879322748384,0.5469709375645976 -0.049586374665052786,0.5736384529220486" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.18916283668520142,0.5736384529220486 0.13247979795500497,0.5557548804398222 0.16583100281571764,0.5297095588965279 0.22190593814007284,0.5469709375645977 0.18916283668520142,0.5736384529220486" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.10566044877656738,0.4940180839262792 -0.06736478283348007,0.4685242220211845 -0.06597577531378018,0.5297095588965279 -0.1034431299100724,0.5557548804398224 -0.10566044877656738,0.4940180839262792" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6323409176744493,0.2997488765889966 0.5701774471830435,0.2850522184787687 0.5584146288685284,0.3500549669478175 0.6191420590632561,0.365210237639125 0.6323409176744493,0.2997488765889966" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.22825503300284972,0.12023748364029181 0.2606371808505814,0.10138191415356292 0.25525736369003416,0.17021020812961457 0.22345986651556804,0.18989314893569018 0.22825503300284972,0.12023748364029181" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4695001898351298,0.12023748364029181 0.4975800725329285,0.101381914153563 0.4873095124991564,0.17021020812961463 0.4596369612068187,0.18989314893569018 0.4695001898351298,0.12023748364029181" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.28129580520617586,0.20340853047420562 0.22345986651556804,0.18989314893569018 0.25525736369003416,0.17021020812961457 0.31244587058202783,0.18325487491383194 0.28129580520617586,0.20340853047420562" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5203053128976977,0.20340853047420562 0.4596369612068187,0.18989314893569018 0.4873095124991564,0.17021020812961463 0.5472317848922224,0.18325487491383202 0.5203053128976977,0.20340853047420562" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07931641518416833,0.11387666974971264 0.023694289168234628,0.10138191415356286 0.023205214880912154,0.17021020812961452 0.07765995627183347,0.18325487491383202 0.07931641518416833,0.11387666974971264" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.04228629751465386,0.20340853047420568 -0.012717228175682745,0.1898931489356901 0.023205214880912154,0.17021020812961452 0.07765995627183347,0.18325487491383202 0.04228629751465386,0.20340853047420568" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1717326508626879,0.7686626865096746 0.114950411646763,0.7483612020986922 0.11257520375560583,0.8038939661047075 0.16814230872738734,0.824425939065181 0.1717326508626879,0.7686626865096746" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.41178904454171394,0.7686626865096745 0.352149673775004,0.748361202098692 0.3448732432513003,0.8038939661047076 0.40317994458287487,0.8244259390651809 0.41178904454171394,0.7686626865096745" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4888644645093396,0.5919556999918857 0.5166440500652079,0.5646434256737362 0.5059630310879872,0.6240037803410058 0.478577809310139,0.6517982457525445 0.4888644645093396,0.5919556999918857" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.0055764007358480045,0.5919556999918857 0.041988739051235964,0.5646434256737362 0.041120670371108496,0.624003780341006 0.0054590624636137765,0.6517982457525446 0.0055764007358480045,0.5919556999918857" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.09792275907260231,0.5827418871472336 0.041988739051235964,0.5646434256737362 0.041120670371108496,0.624003780341006 0.09587443119020377,0.6424241010900017 0.09792275907260231,0.5827418871472336" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.060771027684745474,0.6708843528742559 0.0054590624636137765,0.6517982457525446 0.041120670371108496,0.624003780341006 0.09587443119020377,0.6424241010900017 0.060771027684745474,0.6708843528742559" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3381106586846457,0.5827418871472337 0.2793163945582219,0.5646434256737363 0.27354185072954784,0.624003780341006 0.3310381303359866,0.6424241010900017 0.3381106586846457,0.5827418871472337" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.24722043262259383,0.5919556999918858 0.2793163945582219,0.5646434256737363 0.27354185072954784,0.624003780341006 0.24201843588687633,0.6517982457525445 0.24722043262259383,0.5919556999918858" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.300172045836773,0.670884352874256 0.24201843588687633,0.6517982457525445 0.27354185072954784,0.624003780341006 0.3310381303359866,0.6424241010900017 0.300172045836773,0.670884352874256" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4309627938279809,0.21028851954025904 0.370997896307042,0.19661055958953505 0.3633198030350741,0.26365064436948543 0.42193832323713953,0.2778340920919403 0.4309627938279809,0.21028851954025904" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.34053580644873943,0.21725202013239983 0.370997896307042,0.19661055958953505 0.3633198030350741,0.26365064436948543 0.3333625330175622,0.2850522184787687 0.34053580644873943,0.21725202013239983" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6323409176744493,0.2997488765889966 0.5701774471830435,0.2850522184787687 0.5959876571954666,0.26365064436948554 0.6573545550861878,0.2778340920919404 0.6323409176744493,0.2997488765889966" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5824464886254395,0.21725202013239972 0.6085827560110592,0.196610559589535 0.5959876571954666,0.26365064436948554 0.5701774471830435,0.2850522184787687 0.5824464886254395,0.21725202013239972" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.19051144963211175,0.21028851954025898 0.13341303660302495,0.196610559589535 0.13065194887468184,0.26365064436948554 0.18652209138809175,0.2778340920919403 0.19051144963211175,0.21028851954025898" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.26624865093939604,0.02958989940942809 0.29805637206859026,0.012294822240222806 0.291884585885372,0.08318708595118582 0.2606371808505814,0.10138191415356292 0.26624865093939604,0.02958989940942809" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.11659036037890735,0.023755279922881335 0.060342701093641,0.012294822240222865 0.05909319836943118,0.08318708595118582 0.11414761697690268,0.09524529109166366 0.11659036037890735,0.023755279922881335" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.357173643700462,0.023755279922881213 0.29805637206859026,0.012294822240222806 0.291884585885372,0.08318708595118582 0.34969031867527317,0.09524529109166353 0.357173643700462,0.023755279922881213" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.07931641518416833,0.11387666974971264 0.023694289168234628,0.10138191415356286 0.05909319836943118,0.08318708595118582 0.11414761697690268,0.09524529109166366 0.07931641518416833,0.11387666974971264" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.45019973794517715,0.6806003978548005 0.3899074989873056,0.661284324051745 0.3818251897108854,0.7187991824979196 0.44075723096378433,0.7383906077948634 0.45019973794517715,0.6806003978548005" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1717326508626879,0.7686626865096746 0.114950411646763,0.7483612020986922 0.14878634153053283,0.7187991824979197 0.20496118147698617,0.7383906077948635 0.1717326508626879,0.7686626865096746" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.41178904454171394,0.7686626865096745 0.352149673775004,0.748361202098692 0.3818251897108854,0.7187991824979196 0.44075723096378433,0.7383906077948634 0.41178904454171394,0.7686626865096745" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.10566044877656738,0.4940180839262792 -0.15934447804395602,0.47692064955896163 -0.15603970387703728,0.5382897613739652 -0.1034431299100724,0.5557548804398224 -0.10566044877656738,0.4940180839262792" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3381106586846457,0.5827418871472337 0.2793163945582219,0.5646434256737363 0.31028584793939606,0.5382897613739654 0.36840272582008243,0.5557548804398224 0.3381106586846457,0.5827418871472337" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.09792275907260231,0.5827418871472336 0.041988739051235964,0.5646434256737362 0.07712307203117931,0.5382897613739653 0.13247979795500497,0.5557548804398222 0.09792275907260231,0.5827418871472336" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.04289424845329258,0.5027227960148771 0.07875646615965638,0.47692064955896163 0.07712307203117931,0.5382897613739653 0.041988739051235964,0.5646434256737362 0.04289424845329258,0.5027227960148771" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.45343779375182214,0.3148033072414521 0.48195825436391343,0.2923566278452728 0.47195721338452457,0.35758825189109866 0.443860412873255,0.3807266526687692 0.45343779375182214,0.3148033072414521" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.031721985571115184,0.3148033072414521 0.005497622673352532,0.29235662784527283 0.00538354235799829,0.3575882518910988 -0.031051963040515836,0.3807266526687692 -0.031721985571115184,0.3148033072414521" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4695001898351298,0.12023748364029181 0.40887878213593015,0.10759193215842926 0.4003896851304793,0.17669434727103456 0.4596369612068187,0.18989314893569018 0.4695001898351298,0.12023748364029181" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4309627938279809,0.21028851954025904 0.370997896307042,0.19661055958953505 0.4003896851304793,0.17669434727103456 0.4596369612068187,0.18989314893569018 0.4309627938279809,0.21028851954025904" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.22825503300284972,0.12023748364029181 0.17051895398493952,0.10759193215842926 0.16697865792437036,0.17669434727103459 0.22345986651556804,0.18989314893569018 0.22825503300284972,0.12023748364029181" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.19051144963211175,0.21028851954025898 0.13341303660302495,0.196610559589535 0.16697865792437036,0.17669434727103459 0.22345986651556804,0.18989314893569018 0.19051144963211175,0.21028851954025898" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.11659036037890735,0.023755279922881335 0.060342701093641,0.012294822240222865 0.09521056625757261,-0.004392259918121784 0.15087126028643477,0.006666508521021145 0.11659036037890735,0.023755279922881335" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.357173643700462,0.023755279922881213 0.29805637206859026,0.012294822240222806 0.3287459174553927,-0.004392259918121785 0.3871756438675981,0.006666508521021088 0.357173643700462,0.023755279922881213" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.22989948385002107,0.7894592079120464 0.26248120324050833,0.758451176023145 0.25702578846990254,0.8140997717327767 0.22503571158153254,0.8454479773668675 0.22989948385002107,0.7894592079120464" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4888644645093396,0.5919556999918857 0.42791204803545574,0.5736384529220486 0.41901357294902775,0.6331599204959272 0.478577809310139,0.6517982457525445 0.4888644645093396,0.5919556999918857" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.45019973794517715,0.6806003978548005 0.3899074989873056,0.661284324051745 0.41901357294902775,0.6331599204959272 0.478577809310139,0.6517982457525445 0.45019973794517715,0.6806003978548005" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.39833937330782115,0.601281911202334 0.42791204803545574,0.5736384529220486 0.41901357294902775,0.6331599204959272 0.3899074989873056,0.661284324051745 0.39833937330782115,0.601281911202334" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.0055764007358480045,0.5919556999918857 -0.049586374665052786,0.5736384529220486 -0.048555220899672714,0.6331599204959272 0.0054590624636137765,0.6517982457525446 0.0055764007358480045,0.5919556999918857" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.24722043262259383,0.5919556999918858 0.18916283668520142,0.5736384529220486 0.18522917602467745,0.6331599204959272 0.24201843588687633,0.6517982457525445 0.24722043262259383,0.5919556999918858" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5669661646818906,0.41289581183033885 0.5935231555526379,0.3886243475176025 0.5811741958768335,0.4520270092496897 0.5549583545668814,0.47692064955896163 0.5669661646818906,0.41289581183033885" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.0804605448228425,0.41289581183033885 0.11576457832760421,0.38862434751760255 0.11335595770972288,0.4520270092496897 0.07875646615965638,0.47692064955896163 0.0804605448228425,0.41289581183033885" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.10566044877656738,0.4940180839262792 -0.15934447804395602,0.47692064955896163 -0.12055316137383239,0.4520270092496897 -0.06736478283348007,0.4685242220211845 -0.10566044877656738,0.4940180839262792" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.34053580644873943,0.21725202013239983 0.28129580520617586,0.20340853047420562 0.27543998524408536,0.2707007288410886 0.3333625330175622,0.2850522184787687 0.34053580644873943,0.21725202013239983" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5824464886254395,0.21725202013239972 0.5203053128976977,0.20340853047420562 0.5094739596344845,0.2707007288410886 0.5701774471830435,0.2850522184787687 0.5824464886254395,0.21725202013239972" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4923923269884935,0.2243005620701035 0.5203053128976977,0.20340853047420562 0.5094739596344845,0.2707007288410886 0.48195825436391343,0.2923566278452728 0.4923923269884935,0.2243005620701035" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005616642513176639,0.22430056207010357 0.04228629751465386,0.20340853047420568 0.04140601085368602,0.27070072884108864 0.005497622673352532,0.29235662784527283 0.005616642513176639,0.22430056207010357" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.26624865093939604,0.02958989940942809 0.2078677321275624,0.01799067173774851 0.20353817558136655,0.08918076945672107 0.2606371808505814,0.10138191415356292 0.26624865093939604,0.02958989940942809" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.22825503300284972,0.12023748364029181 0.17051895398493952,0.10759193215842926 0.20353817558136655,0.08918076945672107 0.2606371808505814,0.10138191415356292 0.22825503300284972,0.12023748364029181" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.17421262525134842,0.03549581342313538 0.2078677321275624,0.01799067173774851 0.20353817558136655,0.08918076945672107 0.17051895398493952,0.10759193215842926 0.17421262525134842,0.03549581342313538" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4695001898351298,0.12023748364029181 0.40887878213593015,0.10759193215842926 0.43769713863957616,0.08918076945672113 0.4975800725329285,0.101381914153563 0.4695001898351298,0.12023748364029181" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.41773564979624395,0.03549581342313538 0.4470076009468823,0.01799067173774857 0.43769713863957616,0.08918076945672113 0.40887878213593015,0.10759193215842926 0.41773564979624395,0.03549581342313538" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4888644645093396,0.5919556999918857 0.42791204803545574,0.5736384529220486 0.4564406695076296,0.5469709375645976 0.5166440500652079,0.5646434256737362 0.4888644645093396,0.5919556999918857" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.0055764007358480045,0.5919556999918857 -0.049586374665052786,0.5736384529220486 -0.01262879322748384,0.5469709375645976 0.041988739051235964,0.5646434256737362 0.0055764007358480045,0.5919556999918857" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.24722043262259383,0.5919556999918858 0.18916283668520142,0.5736384529220486 0.22190593814007284,0.5469709375645977 0.2793163945582219,0.5646434256737363 0.24722043262259383,0.5919556999918858" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.04289424845329258,0.5027227960148771 -0.012897866521269494,0.4854179934063758 -0.01262879322748384,0.5469709375645976 0.041988739051235964,0.5646434256737362 0.04289424845329258,0.5027227960148771" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.050662275361912985,0.511534050464406 -0.012897866521269494,0.4854179934063758 -0.01262879322748384,0.5469709375645976 -0.049586374665052786,0.5736384529220486 -0.050662275361912985,0.511534050464406" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6064082968018657,0.32246879486844826 0.6323409176744493,0.2997488765889966 0.6191420590632561,0.365210237639125 0.5935231555526379,0.3886243475176025 0.6064082968018657,0.32246879486844826" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.45343779375182214,0.3148033072414521 0.39267817919725284,0.29974887658899674 0.38448180344161387,0.36521023763912513 0.443860412873255,0.3807266526687692 0.45343779375182214,0.3148033072414521" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.031721985571115184,0.3148033072414521 -0.08664729775714033,0.2997488765889967 -0.08483870780167072,0.36521023763912513 -0.031051963040515836,0.3807266526687692 -0.031721985571115184,0.3148033072414521" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.34053580644873943,0.21725202013239983 0.28129580520617586,0.20340853047420562 0.31244587058202783,0.18325487491383194 0.370997896307042,0.19661055958953505 0.34053580644873943,0.21725202013239983" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.28740602161913026,0.1331929334123175 0.3191102285316541,0.11387666974971257 0.31244587058202783,0.18325487491383194 0.28129580520617586,0.20340853047420562 0.28740602161913026,0.1331929334123175" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5824464886254395,0.21725202013239972 0.5203053128976977,0.20340853047420562 0.5472317848922224,0.18325487491383202 0.6085827560110592,0.196610559589535 0.5824464886254395,0.21725202013239972" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5316072164589141,0.1331929334123175 0.5589040418791401,0.11387666974971264 0.5472317848922224,0.18325487491383202 0.5203053128976977,0.20340853047420562 0.5316072164589141,0.1331929334123175" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.26624865093939604,0.02958989940942809 0.2078677321275624,0.01799067173774851 0.24033274705658597,0.0011045365000557515 0.29805637206859026,0.012294822240222806 0.26624865093939604,0.02958989940942809" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.38175480703585385,0.8000488005269479 0.41178904454171394,0.7686626865096745 0.40317994458287487,0.8244259390651809 0.373629888941375,0.8561482869388596 0.38175480703585385,0.8000488005269479" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.22989948385002107,0.7894592079120464 0.1717326508626879,0.7686626865096746 0.16814230872738734,0.824425939065181 0.22503571158153254,0.8454479773668675 0.22989948385002107,0.7894592079120464" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.06209328563226795,0.6107225901046767 0.09792275907260231,0.5827418871472336 0.09587443119020377,0.6424241010900017 0.060771027684745474,0.6708843528742559 0.06209328563226795,0.6107225901046767" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.39833937330782115,0.601281911202334 0.3381106586846457,0.5827418871472337 0.3310381303359866,0.6424241010900017 0.3899074989873056,0.661284324051745 0.39833937330782115,0.601281911202334" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3067031987290809,0.6107225901046767 0.3381106586846457,0.5827418871472337 0.3310381303359866,0.6424241010900017 0.300172045836773,0.670884352874256 0.3067031987290809,0.6107225901046767" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5669661646818906,0.41289581183033885 0.5046710543810567,0.39661727659690643 0.4941087852490768,0.46022692364913 0.5549583545668814,0.47692064955896163 0.5669661646818906,0.41289581183033885" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.0804605448228425,0.41289581183033885 0.024031954970526456,0.39661727659690643 0.023528989773765503,0.46022692364913 0.07875646615965638,0.47692064955896163 0.0804605448228425,0.41289581183033885" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.04289424845329258,0.5027227960148771 -0.012897866521269494,0.4854179934063758 0.023528989773765503,0.46022692364913 0.07875646615965638,0.47692064955896163 0.04289424845329258,0.5027227960148771" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.45343779375182214,0.3148033072414521 0.39267817919725284,0.29974887658899674 0.42193832323713953,0.2778340920919403 0.48195825436391343,0.2923566278452728 0.45343779375182214,0.3148033072414521" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4012316273802815,0.23143571276807282 0.4309627938279809,0.21028851954025904 0.42193832323713953,0.2778340920919403 0.39267817919725284,0.29974887658899674 0.4012316273802815,0.23143571276807282" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4923923269884935,0.2243005620701035 0.4309627938279809,0.21028851954025904 0.42193832323713953,0.2778340920919403 0.48195825436391343,0.2923566278452728 0.4923923269884935,0.2243005620701035" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1563484745190768,0.2314357127680727 0.19051144963211175,0.21028851954025898 0.18652209138809175,0.2778340920919403 0.1530154407200562,0.2997488765889967 0.1563484745190768,0.2314357127680727" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005616642513176639,0.22430056207010357 -0.04993989456375756,0.21028851954025898 -0.0488941404609562,0.27783409209194043 0.005497622673352532,0.29235662784527283 0.005616642513176639,0.22430056207010357" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.031721985571115184,0.3148033072414521 -0.08664729775714033,0.2997488765889967 -0.0488941404609562,0.27783409209194043 0.005497622673352532,0.29235662784527283 -0.031721985571115184,0.3148033072414521" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.6461147802414862,0.23143571276807268 0.6714141380238504,0.21028851954025898 0.6573545550861878,0.2778340920919404 0.6323409176744493,0.2997488765889966 0.6461147802414862,0.23143571276807268" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.17421262525134842,0.03549581342313538 0.11659036037890735,0.023755279922881335 0.11414761697690268,0.09524529109166366 0.17051895398493952,0.10759193215842926 0.17421262525134842,0.03549581342313538" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.41773564979624395,0.03549581342313538 0.357173643700462,0.023755279922881213 0.34969031867527317,0.09524529109166353 0.40887878213593015,0.10759193215842926 0.41773564979624395,0.03549581342313538" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3260650793007998,0.04147433674257258 0.357173643700462,0.023755279922881213 0.34969031867527317,0.09524529109166353 0.3191102285316541,0.11387666974971257 0.3260650793007998,0.04147433674257258" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.0810450775140716,0.04147433674257264 0.11659036037890735,0.023755279922881335 0.11414761697690268,0.09524529109166366 0.07931641518416833,0.11387666974971264 0.0810450775140716,0.04147433674257264" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.1754796675964814,0.7104660488127105 0.2093521415136009,0.6806003978548006 0.20496118147698617,0.7383906077948635 0.1717326508626879,0.7686626865096746 0.1754796675964814,0.7104660488127105" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4207738266023155,0.7104660488127104 0.45019973794517715,0.6806003978548005 0.44075723096378433,0.7383906077948634 0.41178904454171394,0.7686626865096745 0.4207738266023155,0.7104660488127104" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.22989948385002107,0.7894592079120464 0.1717326508626879,0.7686626865096746 0.20496118147698617,0.7383906077948635 0.26248120324050833,0.758451176023145 0.22989948385002107,0.7894592079120464" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.39833937330782115,0.601281911202334 0.3381106586846457,0.5827418871472337 0.36840272582008243,0.5557548804398224 0.42791204803545574,0.5736384529220486 0.39833937330782115,0.601281911202334" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.050662275361912985,0.511534050464406 -0.10566044877656738,0.4940180839262792 -0.1034431299100724,0.5557548804398224 -0.049586374665052786,0.5736384529220486 -0.050662275361912985,0.511534050464406" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.6064082968018657,0.32246879486844826 0.5434304603660312,0.30723055876692523 0.5320202558297992,0.3729225000835111 0.5935231555526379,0.3886243475176025 0.6064082968018657,0.32246879486844826" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5669661646818906,0.41289581183033885 0.5046710543810567,0.39661727659690643 0.5320202558297992,0.3729225000835111 0.5935231555526379,0.3886243475176025 0.5669661646818906,0.41289581183033885" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5156947539049346,0.3302287357292506 0.5434304603660312,0.30723055876692523 0.5320202558297992,0.3729225000835111 0.5046710543810567,0.39661727659690643 0.5156947539049346,0.3302287357292506" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.0804605448228425,0.41289581183033885 0.024031954970526456,0.39661727659690643 0.05992037011052338,0.37292250008351124 0.11576457832760421,0.38862434751760255 0.0804605448228425,0.41289581183033885" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.024556893043092064,0.3302287357292506 0.0612054784712594,0.30723055876692534 0.05992037011052338,0.37292250008351124 0.024031954970526456,0.39661727659690643 0.024556893043092064,0.3302287357292506" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005616642513176639,0.22430056207010357 -0.04993989456375756,0.21028851954025898 -0.012717228175682745,0.1898931489356901 0.04228629751465386,0.20340853047420568 0.005616642513176639,0.22430056207010357" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.28740602161913026,0.1331929334123175 0.22825503300284972,0.12023748364029181 0.22345986651556804,0.18989314893569018 0.28129580520617586,0.20340853047420562 0.28740602161913026,0.1331929334123175" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5316072164589141,0.1331929334123175 0.4695001898351298,0.12023748364029181 0.4596369612068187,0.18989314893569018 0.5203053128976977,0.20340853047420562 0.5316072164589141,0.1331929334123175" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4923923269884935,0.2243005620701035 0.4309627938279809,0.21028851954025904 0.4596369612068187,0.18989314893569018 0.5203053128976977,0.20340853047420562 0.4923923269884935,0.2243005620701035" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1946751873304356,0.13979045203532003 0.22825503300284972,0.12023748364029181 0.22345986651556804,0.18989314893569018 0.19051144963211175,0.21028851954025898 0.1946751873304356,0.13979045203532003" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.17421262525134842,0.03549581342313538 0.11659036037890735,0.023755279922881335 0.15087126028643477,0.006666508521021145 0.2078677321275624,0.01799067173774851 0.17421262525134842,0.03549581342313538" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.41773564979624395,0.03549581342313538 0.357173643700462,0.023755279922881213 0.3871756438675981,0.006666508521021088 0.4470076009468823,0.01799067173774857 0.41773564979624395,0.03549581342313538" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.38175480703585385,0.8000488005269479 0.32139531062641385,0.7789979427765049 0.31463617759184775,0.8348746099522536 0.373629888941375,0.8561482869388596 0.38175480703585385,0.8000488005269479" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.28950217915617515,0.8107690964673231 0.32139531062641385,0.7789979427765049 0.31463617759184775,0.8348746099522536 0.28330347076956136,0.8669778385450506 0.28950217915617515,0.8107690964673231" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4600556828786549,0.6202798571355016 0.4888644645093396,0.5919556999918857 0.478577809310139,0.6517982457525445 0.45019973794517715,0.6806003978548005 0.4600556828786549,0.6202798571355016" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.21393535870488892,0.6202798571355017 0.24722043262259383,0.5919556999918858 0.24201843588687633,0.6517982457525445 0.2093521415136009,0.6806003978548006 0.21393535870488892,0.6202798571355017" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.06209328563226795,0.6107225901046767 0.0055764007358480045,0.5919556999918857 0.0054590624636137765,0.6517982457525446 0.060771027684745474,0.6708843528742559 0.06209328563226795,0.6107225901046767" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3067031987290809,0.6107225901046767 0.24722043262259383,0.5919556999918858 0.24201843588687633,0.6517982457525445 0.300172045836773,0.670884352874256 0.3067031987290809,0.6107225901046767" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.050662275361912985,0.511534050464406 -0.10566044877656738,0.4940180839262792 -0.06736478283348007,0.4685242220211845 -0.012897866521269494,0.4854179934063758 -0.050662275361912985,0.511534050464406" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.10797490695772981,0.4295766380302279 -0.06881353453780716,0.4047071729262051 -0.06736478283348007,0.4685242220211845 -0.10566044877656738,0.4940180839262792 -0.10797490695772981,0.4295766380302279" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6064082968018657,0.32246879486844826 0.5434304603660312,0.30723055876692523 0.5701774471830435,0.2850522184787687 0.6323409176744493,0.2997488765889966 0.6064082968018657,0.32246879486844826" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4012316273802815,0.23143571276807282 0.34053580644873943,0.21725202013239983 0.3333625330175622,0.2850522184787687 0.39267817919725284,0.29974887658899674 0.4012316273802815,0.23143571276807282" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.6461147802414862,0.23143571276807268 0.5824464886254395,0.21725202013239972 0.5701774471830435,0.2850522184787687 0.6323409176744493,0.2997488765889966 0.6461147802414862,0.23143571276807268" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1563484745190768,0.2314357127680727 0.09862512427203926,0.21725202013239978 0.09654761885208084,0.2850522184787688 0.1530154407200562,0.2997488765889967 0.1563484745190768,0.2314357127680727" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.06254691824246586,0.23865907839825254 0.09862512427203926,0.21725202013239978 0.09654761885208084,0.2850522184787688 0.0612054784712594,0.30723055876692534 0.06254691824246586,0.23865907839825254" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.23326050889661332,0.047526816674933935 0.26624865093939604,0.02958989940942809 0.2606371808505814,0.10138191415356292 0.22825503300284972,0.12023748364029181 0.23326050889661332,0.047526816674933935" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3260650793007998,0.04147433674257258 0.26624865093939604,0.02958989940942809 0.2606371808505814,0.10138191415356292 0.3191102285316541,0.11387666974971257 0.3260650793007998,0.04147433674257258" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.28740602161913026,0.1331929334123175 0.22825503300284972,0.12023748364029181 0.2606371808505814,0.10138191415356292 0.3191102285316541,0.11387666974971257 0.28740602161913026,0.1331929334123175" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.0810450775140716,0.04147433674257264 0.024204422812672325,0.02958989940942809 0.023694289168234628,0.10138191415356286 0.07931641518416833,0.11387666974971264 0.0810450775140716,0.04147433674257264" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4797960061044159,0.047526816674933935 0.5082928790661201,0.02958989940942815 0.4975800725329285,0.101381914153563 0.4695001898351298,0.12023748364029181 0.4797960061044159,0.047526816674933935" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5316072164589141,0.1331929334123175 0.4695001898351298,0.12023748364029181 0.4975800725329285,0.101381914153563 0.5589040418791401,0.11387666974971264 0.5316072164589141,0.1331929334123175" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1754796675964814,0.7104660488127105 0.11742800815385361,0.690434574857925 0.114950411646763,0.7483612020986922 0.1717326508626879,0.7686626865096746 0.1754796675964814,0.7104660488127105" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4207738266023155,0.7104660488127104 0.3597397710110118,0.690434574857925 0.352149673775004,0.748361202098692 0.41178904454171394,0.7686626865096745 0.4207738266023155,0.7104660488127104" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.38175480703585385,0.8000488005269479 0.32139531062641385,0.7789979427765049 0.352149673775004,0.748361202098692 0.41178904454171394,0.7686626865096745 0.38175480703585385,0.8000488005269479" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.06209328563226795,0.6107225901046767 0.0055764007358480045,0.5919556999918857 0.041988739051235964,0.5646434256737362 0.09792275907260231,0.5827418871472336 0.06209328563226795,0.6107225901046767" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3067031987290809,0.6107225901046767 0.24722043262259383,0.5919556999918858 0.2793163945582219,0.5646434256737363 0.3381106586846457,0.5827418871472337 0.3067031987290809,0.6107225901046767" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.005698893999106719,0.5294841076260184 0.04289424845329258,0.5027227960148771 0.041988739051235964,0.5646434256737362 0.0055764007358480045,0.5919556999918857 0.005698893999106719,0.5294841076260184" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5156947539049346,0.3302287357292506 0.45343779375182214,0.3148033072414521 0.443860412873255,0.3807266526687692 0.5046710543810567,0.39661727659690643 0.5156947539049346,0.3302287357292506" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.024556893043092064,0.3302287357292506 -0.031721985571115184,0.3148033072414521 -0.031051963040515836,0.3807266526687692 0.024031954970526456,0.39661727659690643 0.024556893043092064,0.3302287357292506" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.07032596973353496,0.33808488640847145 -0.031721985571115184,0.3148033072414521 -0.031051963040515836,0.3807266526687692 -0.06881353453780716,0.4047071729262051 -0.07032596973353496,0.33808488640847145" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4012316273802815,0.23143571276807282 0.34053580644873943,0.21725202013239983 0.370997896307042,0.19661055958953505 0.4309627938279809,0.21028851954025904 0.4012316273802815,0.23143571276807282" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.6461147802414862,0.23143571276807268 0.5824464886254395,0.21725202013239972 0.6085827560110592,0.196610559589535 0.6714141380238504,0.21028851954025898 0.6461147802414862,0.23143571276807268" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1946751873304356,0.13979045203532003 0.13629334481945096,0.12667576358887903 0.13341303660302495,0.196610559589535 0.19051144963211175,0.21028851954025898 0.1946751873304356,0.13979045203532003" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1563484745190768,0.2314357127680727 0.09862512427203926,0.21725202013239978 0.13341303660302495,0.196610559589535 0.19051144963211175,0.21028851954025898 0.1563484745190768,0.2314357127680727" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3260650793007998,0.04147433674257258 0.26624865093939604,0.02958989940942809 0.29805637206859026,0.012294822240222806 0.357173643700462,0.023755279922881213 0.3260650793007998,0.04147433674257258" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.0810450775140716,0.04147433674257264 0.024204422812672325,0.02958989940942809 0.060342701093641,0.012294822240222865 0.11659036037890735,0.023755279922881335 0.0810450775140716,0.04147433674257264" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.28950217915617515,0.8107690964673231 0.22989948385002107,0.7894592079120464 0.22503571158153254,0.8454479773668675 0.28330347076956136,0.8669778385450506 0.28950217915617515,0.8107690964673231" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.21393535870488892,0.6202798571355017 0.15522144593685053,0.6012819112023341 0.1519357859903585,0.661284324051745 0.2093521415136009,0.6806003978548006 0.21393535870488892,0.6202798571355017" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1754796675964814,0.7104660488127105 0.11742800815385361,0.690434574857925 0.1519357859903585,0.661284324051745 0.2093521415136009,0.6806003978548006 0.1754796675964814,0.7104660488127105" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.12001475964998447,0.6299558854296677 0.15522144593685053,0.6012819112023341 0.1519357859903585,0.661284324051745 0.11742800815385361,0.690434574857925 0.12001475964998447,0.6299558854296677" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4600556828786549,0.6202798571355016 0.39833937330782115,0.601281911202334 0.3899074989873056,0.661284324051745 0.45019973794517715,0.6806003978548005 0.4600556828786549,0.6202798571355016" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4207738266023155,0.7104660488127104 0.3597397710110118,0.690434574857925 0.3899074989873056,0.661284324051745 0.45019973794517715,0.6806003978548005 0.4207738266023155,0.7104660488127104" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3676642636896348,0.6299558854296675 0.39833937330782115,0.601281911202334 0.3899074989873056,0.661284324051745 0.3597397710110118,0.690434574857925 0.3676642636896348,0.6299558854296675" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.10797490695772981,0.4295766380302279 -0.1627922651066814,0.4128958118303389 -0.15934447804395602,0.47692064955896163 -0.10566044877656738,0.4940180839262792 -0.10797490695772981,0.4295766380302279" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5156947539049346,0.3302287357292506 0.45343779375182214,0.3148033072414521 0.48195825436391343,0.2923566278452728 0.5434304603660312,0.30723055876692523 0.5156947539049346,0.3302287357292506" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4634376006417019,0.24597230509521206 0.4923923269884935,0.2243005620701035 0.48195825436391343,0.2923566278452728 0.45343779375182214,0.3148033072414521 0.4634376006417019,0.24597230509521206" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.06254691824246586,0.23865907839825254 0.005616642513176639,0.22430056207010357 0.005497622673352532,0.29235662784527283 0.0612054784712594,0.30723055876692534 0.06254691824246586,0.23865907839825254" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.024556893043092064,0.3302287357292506 -0.031721985571115184,0.3148033072414521 0.005497622673352532,0.29235662784527283 0.0612054784712594,0.30723055876692534 0.024556893043092064,0.3302287357292506" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.032421560538719946,0.24597230509521206 0.005616642513176639,0.22430056207010357 0.005497622673352532,0.29235662784527283 -0.031721985571115184,0.3148033072414521 -0.032421560538719946,0.24597230509521206" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.23326050889661332,0.047526816674933935 0.17421262525134842,0.03549581342313538 0.17051895398493952,0.10759193215842926 0.22825503300284972,0.12023748364029181 0.23326050889661332,0.047526816674933935" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4797960061044159,0.047526816674933935 0.41773564979624395,0.03549581342313538 0.40887878213593015,0.10759193215842926 0.4695001898351298,0.12023748364029181 0.4797960061044159,0.047526816674933935" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1946751873304356,0.13979045203532003 0.13629334481945096,0.12667576358887903 0.17051895398493952,0.10759193215842926 0.22825503300284972,0.12023748364029181 0.1946751873304356,0.13979045203532003" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.13930076560793694,0.05365463406827728 0.17421262525134842,0.03549581342313538 0.17051895398493952,0.10759193215842926 0.13629334481945096,0.12667576358887903 0.13930076560793694,0.05365463406827728" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.28950217915617515,0.8107690964673231 0.22989948385002107,0.7894592079120464 0.26248120324050833,0.758451176023145 0.32139531062641385,0.7789979427765049 0.28950217915617515,0.8107690964673231" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.23497814527062877,0.7309967660621796 0.26817322417329215,0.7003890515141277 0.26248120324050833,0.758451176023145 0.22989948385002107,0.7894592079120464 0.23497814527062877,0.7309967660621796" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4600556828786549,0.6202798571355016 0.39833937330782115,0.601281911202334 0.42791204803545574,0.5736384529220486 0.4888644645093396,0.5919556999918857 0.4600556828786549,0.6202798571355016" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.21393535870488892,0.6202798571355017 0.15522144593685053,0.6012819112023341 0.18916283668520142,0.5736384529220486 0.24722043262259383,0.5919556999918858 0.21393535870488892,0.6202798571355017" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.005698893999106719,0.5294841076260184 -0.050662275361912985,0.511534050464406 -0.049586374665052786,0.5736384529220486 0.0055764007358480045,0.5919556999918857 0.005698893999106719,0.5294841076260184" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.07032596973353496,0.33808488640847145 -0.1257874795223685,0.3224687948684484 -0.12311471028491251,0.38862434751760255 -0.06881353453780716,0.4047071729262051 -0.07032596973353496,0.33808488640847145" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.10797490695772981,0.4295766380302279 -0.1627922651066814,0.4128958118303389 -0.12311471028491251,0.38862434751760255 -0.06881353453780716,0.4047071729262051 -0.10797490695772981,0.4295766380302279" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5795051005328677,0.3460390473196344 0.6064082968018657,0.32246879486844826 0.5935231555526379,0.3886243475176025 0.5669661646818906,0.41289581183033885 0.5795051005328677,0.3460390473196344" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.08223999776539039,0.3460390473196343 0.11827777925237622,0.3224687948684483 0.11576457832760421,0.38862434751760255 0.0804605448228425,0.41289581183033885 0.08223999776539039,0.3460390473196343" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.06254691824246586,0.23865907839825254 0.005616642513176639,0.22430056207010357 0.04228629751465386,0.20340853047420568 0.09862512427203926,0.21725202013239978 0.06254691824246586,0.23865907839825254" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.00574092978869369,0.15323255349182321 0.04320482677934636,0.13319293341231753 0.04228629751465386,0.20340853047420568 0.005616642513176639,0.22430056207010357 0.00574092978869369,0.15323255349182321" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.23326050889661332,0.047526816674933935 0.17421262525134842,0.03549581342313538 0.2078677321275624,0.01799067173774851 0.26624865093939604,0.02958989940942809 0.23326050889661332,0.047526816674933935" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4797960061044159,0.047526816674933935 0.41773564979624395,0.03549581342313538 0.4470076009468823,0.01799067173774857 0.5082928790661201,0.02958989940942815 0.4797960061044159,0.047526816674933935" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3505945681129862,0.8326115986152225 0.38175480703585385,0.8000488005269479 0.373629888941375,0.8561482869388596 0.3429959949964615,0.8890341485506109 0.3505945681129862,0.8326115986152225" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.12001475964998447,0.6299558854296677 0.06209328563226795,0.6107225901046767 0.060771027684745474,0.6708843528742559 0.11742800815385361,0.690434574857925 0.12001475964998447,0.6299558854296677" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3676642636896348,0.6299558854296675 0.3067031987290809,0.6107225901046767 0.300172045836773,0.670884352874256 0.3597397710110118,0.690434574857925 0.3676642636896348,0.6299558854296675" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2741175851930538,0.6397529024676497 0.3067031987290809,0.6107225901046767 0.300172045836773,0.670884352874256 0.26817322417329215,0.7003890515141277 0.2741175851930538,0.6397529024676497" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005698893999106719,0.5294841076260184 -0.050662275361912985,0.511534050464406 -0.012897866521269494,0.4854179934063758 0.04289424845329258,0.5027227960148771 0.005698893999106719,0.5294841076260184" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.6198653154029812,0.25337708020679556 0.6461147802414862,0.23143571276807268 0.6323409176744493,0.2997488765889966 0.6064082968018657,0.32246879486844826 0.6198653154029812,0.25337708020679556" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.12090252281853806,0.2533770802067956 0.1563484745190768,0.2314357127680727 0.1530154407200562,0.2997488765889967 0.11827777925237622,0.3224687948684483 0.12090252281853806,0.2533770802067956" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.07032596973353496,0.33808488640847145 -0.1257874795223685,0.3224687948684484 -0.08664729775714033,0.2997488765889967 -0.031721985571115184,0.3148033072414521 -0.07032596973353496,0.33808488640847145" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.032421560538719946,0.24597230509521206 -0.0885346783421279,0.23143571276807268 -0.08664729775714033,0.2997488765889967 -0.031721985571115184,0.3148033072414521 -0.032421560538719946,0.24597230509521206" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4634376006417019,0.24597230509521206 0.4012316273802815,0.23143571276807282 0.39267817919725284,0.29974887658899674 0.45343779375182214,0.3148033072414521 0.4634376006417019,0.24597230509521206" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.293787580327129,0.0598592043618002 0.3260650793007998,0.04147433674257258 0.3191102285316541,0.11387666974971257 0.28740602161913026,0.1331929334123175 0.293787580327129,0.0598592043618002" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5434110145920096,0.059859204361800186 0.5710850810875282,0.04147433674257264 0.5589040418791401,0.11387666974971264 0.5316072164589141,0.1331929334123175 0.5434110145920096,0.059859204361800186" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.13930076560793694,0.05365463406827728 0.0810450775140716,0.04147433674257264 0.07931641518416833,0.11387666974971264 0.13629334481945096,0.12667576358887903 0.13930076560793694,0.05365463406827728" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.04416414606224812,0.05985920436180025 0.0810450775140716,0.04147433674257264 0.07931641518416833,0.11387666974971264 0.04320482677934636,0.13319293341231753 0.04416414606224812,0.05985920436180025" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.23497814527062877,0.7309967660621796 0.1754796675964814,0.7104660488127105 0.1717326508626879,0.7686626865096746 0.22989948385002107,0.7894592079120464 0.23497814527062877,0.7309967660621796" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.12001475964998447,0.6299558854296677 0.06209328563226795,0.6107225901046767 0.09792275907260231,0.5827418871472336 0.15522144593685053,0.6012819112023341 0.12001475964998447,0.6299558854296677" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3676642636896348,0.6299558854296675 0.3067031987290809,0.6107225901046767 0.3381106586846457,0.5827418871472337 0.39833937330782115,0.601281911202334 0.3676642636896348,0.6299558854296675" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3135248830775153,0.5478845946961157 0.34549198930697667,0.5204538153761555 0.3381106586846457,0.5827418871472337 0.3067031987290809,0.6107225901046767 0.3135248830775153,0.5478845946961157" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5795051005328677,0.3460390473196344 0.5156947539049346,0.3302287357292506 0.5046710543810567,0.39661727659690643 0.5669661646818906,0.41289581183033885 0.5795051005328677,0.3460390473196344" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.08223999776539039,0.3460390473196343 0.024556893043092064,0.3302287357292506 0.024031954970526456,0.39661727659690643 0.0804605448228425,0.41289581183033885 0.08223999776539039,0.3460390473196343" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4101660011841449,0.16008023971900723 0.4403817344465193,0.13979045203532012 0.4309627938279809,0.21028851954025904 0.4012316273802815,0.23143571276807282 0.4101660011841449,0.16008023971900723" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6605020582448905,0.1600802397190071 0.6860882815626035,0.13979045203532006 0.6714141380238504,0.21028851954025898 0.6461147802414862,0.23143571276807268 0.6605020582448905,0.1600802397190071" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4634376006417019,0.24597230509521206 0.4012316273802815,0.23143571276807282 0.4309627938279809,0.21028851954025904 0.4923923269884935,0.2243005620701035 0.4634376006417019,0.24597230509521206" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.00574092978869369,0.15323255349182321 -0.051031359785648274,0.13979045203532003 -0.04993989456375756,0.21028851954025898 0.005616642513176639,0.22430056207010357 0.00574092978869369,0.15323255349182321" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.032421560538719946,0.24597230509521206 -0.0885346783421279,0.23143571276807268 -0.04993989456375756,0.21028851954025898 0.005616642513176639,0.22430056207010357 -0.032421560538719946,0.24597230509521206" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.13930076560793694,0.05365463406827728 0.0810450775140716,0.04147433674257264 0.11659036037890735,0.023755279922881335 0.17421262525134842,0.03549581342313538 0.13930076560793694,0.05365463406827728" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3505945681129862,0.8326115986152225 0.28950217915617515,0.8107690964673231 0.28330347076956136,0.8669778385450506 0.3429959949964615,0.8890341485506109 0.3505945681129862,0.8326115986152225" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1793938430813923,0.6496731917850657 0.21393535870488892,0.6202798571355017 0.2093521415136009,0.6806003978548006 0.1754796675964814,0.7104660488127105 0.1793938430813923,0.6496731917850657" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4301594301844137,0.6496731917850656 0.4600556828786549,0.6202798571355016 0.45019973794517715,0.6806003978548005 0.4207738266023155,0.7104660488127104 0.4301594301844137,0.6496731917850656" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2741175851930538,0.6397529024676497 0.21393535870488892,0.6202798571355017 0.2093521415136009,0.6806003978548006 0.26817322417329215,0.7003890515141277 0.2741175851930538,0.6397529024676497" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.23497814527062877,0.7309967660621796 0.1754796675964814,0.7104660488127105 0.2093521415136009,0.6806003978548006 0.26817322417329215,0.7003890515141277 0.23497814527062877,0.7309967660621796" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5795051005328677,0.3460390473196344 0.5156947539049346,0.3302287357292506 0.5434304603660312,0.30723055876692523 0.6064082968018657,0.32246879486844826 0.5795051005328677,0.3460390473196344" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.6198653154029812,0.25337708020679556 0.555340819546743,0.23865907839825246 0.5434304603660312,0.30723055876692523 0.6064082968018657,0.32246879486844826 0.6198653154029812,0.25337708020679556" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5272107965964483,0.2608751335920353 0.555340819546743,0.23865907839825246 0.5434304603660312,0.30723055876692523 0.5156947539049346,0.3302287357292506 0.5272107965964483,0.2608751335920353" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.12090252281853806,0.2533770802067956 0.06254691824246586,0.23865907839825254 0.0612054784712594,0.30723055876692534 0.11827777925237622,0.3224687948684483 0.12090252281853806,0.2533770802067956" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.08223999776539039,0.3460390473196343 0.024556893043092064,0.3302287357292506 0.0612054784712594,0.30723055876692534 0.11827777925237622,0.3224687948684483 0.08223999776539039,0.3460390473196343" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.02510527602840224,0.2608751335920353 0.06254691824246586,0.23865907839825254 0.0612054784712594,0.30723055876692534 0.024556893043092064,0.3302287357292506 0.02510527602840224,0.2608751335920353" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4502215871087283,0.06614197867582913 0.4797960061044159,0.047526816674933935 0.4695001898351298,0.12023748364029181 0.4403817344465193,0.13979045203532012 0.4502215871087283,0.06614197867582913" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.293787580327129,0.0598592043618002 0.23326050889661332,0.047526816674933935 0.22825503300284972,0.12023748364029181 0.28740602161913026,0.1331929334123175 0.293787580327129,0.0598592043618002" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5434110145920096,0.059859204361800186 0.4797960061044159,0.047526816674933935 0.4695001898351298,0.12023748364029181 0.5316072164589141,0.1331929334123175 0.5434110145920096,0.059859204361800186" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.19902499344291424,0.06614197867582906 0.23326050889661332,0.047526816674933935 0.22825503300284972,0.12023748364029181 0.1946751873304356,0.13979045203532003 0.19902499344291424,0.06614197867582906" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.04416414606224812,0.05985920436180025 -0.013274988311189388,0.04752681667493392 -0.012990123829430485,0.12023748364029176 0.04320482677934636,0.13319293341231753 0.04416414606224812,0.05985920436180025" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.00574092978869369,0.15323255349182321 -0.051031359785648274,0.13979045203532003 -0.012990123829430485,0.12023748364029176 0.04320482677934636,0.13319293341231753 0.00574092978869369,0.15323255349182321" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3505945681129862,0.8326115986152225 0.28950217915617515,0.8107690964673231 0.32139531062641385,0.7789979427765049 0.38175480703585385,0.8000488005269479 0.3505945681129862,0.8326115986152225" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2741175851930538,0.6397529024676497 0.21393535870488892,0.6202798571355017 0.24722043262259383,0.5919556999918858 0.3067031987290809,0.6107225901046767 0.2741175851930538,0.6397529024676497" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3135248830775153,0.5478845946961157 0.2526509672937301,0.5294841076260184 0.24722043262259383,0.5919556999918858 0.3067031987290809,0.6107225901046767 0.3135248830775153,0.5478845946961157" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.11039303082812678,0.3622488289419372 -0.07032596973353496,0.33808488640847145 -0.06881353453780716,0.4047071729262051 -0.10797490695772981,0.4295766380302279 -0.11039303082812678,0.3622488289419372" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4101660011841449,0.16008023971900723 0.34802457678980075,0.14646981457927472 0.34053580644873943,0.21725202013239983 0.4012316273802815,0.23143571276807282 0.4101660011841449,0.16008023971900723" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.6605020582448905,0.1600802397190071 0.5952551504656154,0.1464698145792746 0.5824464886254395,0.21725202013239972 0.6461147802414862,0.23143571276807268 0.6605020582448905,0.1600802397190071" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.6198653154029812,0.25337708020679556 0.555340819546743,0.23865907839825246 0.5824464886254395,0.21725202013239972 0.6461147802414862,0.23143571276807268 0.6198653154029812,0.25337708020679556" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.12090252281853806,0.2533770802067956 0.06254691824246586,0.23865907839825254 0.09862512427203926,0.21725202013239978 0.1563484745190768,0.2314357127680727 0.12090252281853806,0.2533770802067956" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.293787580327129,0.0598592043618002 0.23326050889661332,0.047526816674933935 0.26624865093939604,0.02958989940942809 0.3260650793007998,0.04147433674257258 0.293787580327129,0.0598592043618002" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5434110145920096,0.059859204361800186 0.4797960061044159,0.047526816674933935 0.5082928790661201,0.02958989940942815 0.5710850810875282,0.04147433674257264 0.5434110145920096,0.059859204361800186" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.04416414606224812,0.05985920436180025 -0.013274988311189388,0.04752681667493392 0.024204422812672325,0.02958989940942809 0.0810450775140716,0.04147433674257264 0.04416414606224812,0.05985920436180025" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1793938430813923,0.6496731917850657 0.12001475964998447,0.6299558854296677 0.11742800815385361,0.690434574857925 0.1754796675964814,0.7104660488127105 0.1793938430813923,0.6496731917850657" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4301594301844137,0.6496731917850656 0.3676642636896348,0.6299558854296675 0.3597397710110118,0.690434574857925 0.4207738266023155,0.7104660488127104 0.4301594301844137,0.6496731917850656" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.005826889592435818,0.4642063256618406 0.0438396742535591,0.43807259943461674 0.04289424845329258,0.5027227960148771 0.005698893999106719,0.5294841076260184 0.005826889592435818,0.4642063256618406" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3135248830775153,0.5478845946961157 0.2526509672937301,0.5294841076260184 0.2853400005805985,0.5027227960148772 0.34549198930697667,0.5204538153761555 0.3135248830775153,0.5478845946961157" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5272107965964483,0.2608751335920353 0.4634376006417019,0.24597230509521206 0.45343779375182214,0.3148033072414521 0.5156947539049346,0.3302287357292506 0.5272107965964483,0.2608751335920353" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4333817067313801,0.26846823896842537 0.4634376006417019,0.24597230509521206 0.45343779375182214,0.3148033072414521 0.42385652028589976,0.3380848864084714 0.4333817067313801,0.26846823896842537" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.02510527602840224,0.2608751335920353 -0.032421560538719946,0.24597230509521206 -0.031721985571115184,0.3148033072414521 0.024556893043092064,0.3302287357292506 0.02510527602840224,0.2608751335920353" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.07190638183435458,0.2684682389684254 -0.032421560538719946,0.24597230509521206 -0.031721985571115184,0.3148033072414521 -0.07032596973353496,0.33808488640847145 -0.07190638183435458,0.2684682389684254" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4502215871087283,0.06614197867582913 0.3873706221700165,0.05365463406827734 0.3790075205253225,0.12667576358887905 0.4403817344465193,0.13979045203532012 0.4502215871087283,0.06614197867582913" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4101660011841449,0.16008023971900723 0.34802457678980075,0.14646981457927472 0.3790075205253225,0.12667576358887905 0.4403817344465193,0.13979045203532012 0.4101660011841449,0.16008023971900723" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3558501264751648,0.07250444494328545 0.3873706221700165,0.05365463406827734 0.3790075205253225,0.12667576358887905 0.34802457678980075,0.14646981457927472 0.3558501264751648,0.07250444494328545" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6605020582448905,0.1600802397190071 0.5952551504656154,0.1464698145792746 0.6217216962311944,0.12667576358887903 0.6860882815626035,0.13979045203532006 0.6605020582448905,0.1600802397190071" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.608639833807249,0.07250444494328533 0.6354404787320962,0.05365463406827728 0.6217216962311944,0.12667576358887903 0.5952551504656154,0.1464698145792746 0.608639833807249,0.07250444494328533" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.19902499344291424,0.06614197867582906 0.13930076560793694,0.05365463406827728 0.13629334481945096,0.12667576358887903 0.1946751873304356,0.13979045203532003 0.19902499344291424,0.06614197867582906" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1793938430813923,0.6496731917850657 0.12001475964998447,0.6299558854296677 0.15522144593685053,0.6012819112023341 0.21393535870488892,0.6202798571355017 0.1793938430813923,0.6496731917850657" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4301594301844137,0.6496731917850656 0.3676642636896348,0.6299558854296675 0.39833937330782115,0.601281911202334 0.4600556828786549,0.6202798571355016 0.4301594301844137,0.6496731917850656" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.37594574816526694,0.5667526813989824 0.40714399230694664,0.5386269943848602 0.39833937330782115,0.601281911202334 0.3676642636896348,0.6299558854296675 0.37594574816526694,0.5667526813989824" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.11039303082812678,0.3622488289419372 -0.1663925536183481,0.3460390473196345 -0.1627922651066814,0.4128958118303389 -0.10797490695772981,0.4295766380302279 -0.11039303082812678,0.3622488289419372" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.04482771531152679,0.37050828226771493 0.08223999776539039,0.3460390473196343 0.0804605448228425,0.41289581183033885 0.0438396742535591,0.43807259943461674 0.04482771531152679,0.37050828226771493" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5272107965964483,0.2608751335920353 0.4634376006417019,0.24597230509521206 0.4923923269884935,0.2243005620701035 0.555340819546743,0.23865907839825246 0.5272107965964483,0.2608751335920353" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.47388841146357463,0.17403693773944137 0.5032881781421553,0.15323255349182316 0.4923923269884935,0.2243005620701035 0.4634376006417019,0.24597230509521206 0.47388841146357463,0.17403693773944137" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.02510527602840224,0.2608751335920353 -0.032421560538719946,0.24597230509521206 0.005616642513176639,0.22430056207010357 0.06254691824246586,0.23865907839825254 0.02510527602840224,0.2608751335920353" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.03315268722173162,0.17403693773944137 0.00574092978869369,0.15323255349182321 0.005616642513176639,0.22430056207010357 -0.032421560538719946,0.24597230509521206 -0.03315268722173162,0.17403693773944137" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4502215871087283,0.06614197867582913 0.3873706221700165,0.05365463406827734 0.41773564979624395,0.03549581342313538 0.4797960061044159,0.047526816674933935 0.4502215871087283,0.06614197867582913" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.19902499344291424,0.06614197867582906 0.13930076560793694,0.05365463406827728 0.17421262525134842,0.03549581342313538 0.23326050889661332,0.047526816674933935 0.19902499344291424,0.06614197867582906" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.24028625876374882,0.6698930123910235 0.2741175851930538,0.6397529024676497 0.26817322417329215,0.7003890515141277 0.23497814527062877,0.7309967660621796 0.24028625876374882,0.6698930123910235" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005826889592435818,0.4642063256618406 -0.05178590028056756,0.446674854478006 -0.050662275361912985,0.511534050464406 0.005698893999106719,0.5294841076260184 0.005826889592435818,0.4642063256618406" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.592611197966462,0.27615821531076123 0.6198653154029812,0.25337708020679556 0.6064082968018657,0.32246879486844826 0.5795051005328677,0.3460390473196344 0.592611197966462,0.27615821531076123" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4333817067313801,0.26846823896842537 0.3703839191107597,0.2533770802067956 0.36234303802712103,0.3224687948684483 0.42385652028589976,0.3380848864084714 0.4333817067313801,0.26846823896842537" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.11039303082812678,0.3622488289419372 -0.1663925536183481,0.3460390473196345 -0.1257874795223685,0.3224687948684484 -0.07032596973353496,0.33808488640847145 -0.11039303082812678,0.3622488289419372" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.08409993898533943,0.27615821531076123 0.12090252281853806,0.2533770802067956 0.11827777925237622,0.3224687948684483 0.08223999776539039,0.3460390473196343 0.08409993898533943,0.27615821531076123" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.07190638183435458,0.2684682389684254 -0.12857887347368344,0.2533770802067955 -0.1257874795223685,0.3224687948684484 -0.07032596973353496,0.33808488640847145 -0.07190638183435458,0.2684682389684254" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3558501264751648,0.07250444494328545 0.293787580327129,0.0598592043618002 0.28740602161913026,0.1331929334123175 0.34802457678980075,0.14646981457927472 0.3558501264751648,0.07250444494328545" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.608639833807249,0.07250444494328533 0.5434110145920096,0.059859204361800186 0.5316072164589141,0.1331929334123175 0.5952551504656154,0.1464698145792746 0.608639833807249,0.07250444494328533" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5146771567778278,0.07894812908448194 0.5434110145920096,0.059859204361800186 0.5316072164589141,0.1331929334123175 0.5032881781421553,0.15323255349182316 0.5146771567778278,0.07894812908448194" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005870842092522653,0.07894812908448201 0.04416414606224812,0.05985920436180025 0.04320482677934636,0.13319293341231753 0.00574092978869369,0.15323255349182321 0.005870842092522653,0.07894812908448201" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3585374391259201,0.7736324943169431 0.3902409475448408,0.7414552099654652 0.38175480703585385,0.8000488005269479 0.3505945681129862,0.8326115986152225 0.3585374391259201,0.7736324943169431" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.37594574816526694,0.5667526813989824 0.3135248830775153,0.5478845946961157 0.3067031987290809,0.6107225901046767 0.3676642636896348,0.6299558854296675 0.37594574816526694,0.5667526813989824" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.28033144688873896,0.5763676802913441 0.3135248830775153,0.5478845946961157 0.3067031987290809,0.6107225901046767 0.2741175851930538,0.6397529024676497 0.28033144688873896,0.5763676802913441" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.04482771531152679,0.37050828226771493 -0.013471941925347428,0.3540930640807357 -0.013178655361656043,0.42118501223830196 0.0438396742535591,0.43807259943461674 0.04482771531152679,0.37050828226771493" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.005826889592435818,0.4642063256618406 -0.05178590028056756,0.446674854478006 -0.013178655361656043,0.42118501223830196 0.0438396742535591,0.43807259943461674 0.005826889592435818,0.4642063256618406" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.05296049683234192,0.37887341407589703 -0.013471941925347428,0.3540930640807357 -0.013178655361656043,0.42118501223830196 -0.05178590028056756,0.446674854478006 -0.05296049683234192,0.37887341407589703" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.47388841146357463,0.17403693773944137 0.4101660011841449,0.16008023971900723 0.4012316273802815,0.23143571276807282 0.4634376006417019,0.24597230509521206 0.47388841146357463,0.17403693773944137" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1236464034008142,0.18114929510034658 0.15982994412339913,0.16008023971900714 0.1563484745190768,0.2314357127680727 0.12090252281853806,0.2533770802067956 0.1236464034008142,0.18114929510034658" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4333817067313801,0.26846823896842537 0.3703839191107597,0.2533770802067956 0.4012316273802815,0.23143571276807282 0.4634376006417019,0.24597230509521206 0.4333817067313801,0.26846823896842537" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.03315268722173162,0.17403693773944137 -0.09050611293734656,0.1600802397190071 -0.0885346783421279,0.23143571276807268 -0.032421560538719946,0.24597230509521206 -0.03315268722173162,0.17403693773944137" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.07190638183435458,0.2684682389684254 -0.12857887347368344,0.2533770802067955 -0.0885346783421279,0.23143571276807268 -0.032421560538719946,0.24597230509521206 -0.07190638183435458,0.2684682389684254" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3558501264751648,0.07250444494328545 0.293787580327129,0.0598592043618002 0.3260650793007998,0.04147433674257258 0.3873706221700165,0.05365463406827734 0.3558501264751648,0.07250444494328545" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.608639833807249,0.07250444494328533 0.5434110145920096,0.059859204361800186 0.5710850810875282,0.04147433674257264 0.6354404787320962,0.05365463406827728 0.608639833807249,0.07250444494328533" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3991129472871157,0.6801974073389444 0.4301594301844137,0.6496731917850656 0.4207738266023155,0.7104660488127104 0.3902409475448408,0.7414552099654652 0.3991129472871157,0.6801974073389444" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.24028625876374882,0.6698930123910235 0.1793938430813923,0.6496731917850657 0.1754796675964814,0.7104660488127105 0.23497814527062877,0.7309967660621796 0.24028625876374882,0.6698930123910235" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.37594574816526694,0.5667526813989824 0.3135248830775153,0.5478845946961157 0.34549198930697667,0.5204538153761555 0.40714399230694664,0.5386269943848602 0.37594574816526694,0.5667526813989824" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3206569258516484,0.48218773037293733 0.35320279806827626,0.45538541048939307 0.34549198930697667,0.5204538153761555 0.3135248830775153,0.5478845946961157 0.3206569258516484,0.48218773037293733" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.592611197966462,0.27615821531076123 0.5272107965964483,0.2608751335920353 0.5156947539049346,0.3302287357292506 0.5795051005328677,0.3460390473196344 0.592611197966462,0.27615821531076123" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.49799723419362685,0.28394692830385915 0.5272107965964483,0.2608751335920353 0.5156947539049346,0.3302287357292506 0.48691447244469926,0.3540930640807356 0.49799723419362685,0.28394692830385915" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.04482771531152679,0.37050828226771493 -0.013471941925347428,0.3540930640807357 0.024556893043092064,0.3302287357292506 0.08223999776539039,0.3460390473196343 0.04482771531152679,0.37050828226771493" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.08409993898533943,0.27615821531076123 0.02510527602840224,0.2608751335920353 0.024556893043092064,0.3302287357292506 0.08223999776539039,0.3460390473196343 0.08409993898533943,0.27615821531076123" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4195073267805045,0.0854745962271977 0.4502215871087283,0.06614197867582913 0.4403817344465193,0.13979045203532012 0.4101660011841449,0.16008023971900723 0.4195073267805045,0.0854745962271977" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5146771567778278,0.07894812908448194 0.4502215871087283,0.06614197867582913 0.4403817344465193,0.13979045203532012 0.5032881781421553,0.15323255349182316 0.5146771567778278,0.07894812908448194" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.47388841146357463,0.17403693773944137 0.4101660011841449,0.16008023971900723 0.4403817344465193,0.13979045203532012 0.5032881781421553,0.15323255349182316 0.47388841146357463,0.17403693773944137" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.16346999118676933,0.08547459622719765 0.19902499344291424,0.06614197867582906 0.1946751873304356,0.13979045203532003 0.15982994412339913,0.16008023971900714 0.16346999118676933,0.08547459622719765" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005870842092522653,0.07894812908448201 -0.05217160022289997,0.06614197867582913 -0.051031359785648274,0.13979045203532003 0.00574092978869369,0.15323255349182321 0.005870842092522653,0.07894812908448201" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.03315268722173162,0.17403693773944137 -0.09050611293734656,0.1600802397190071 -0.051031359785648274,0.13979045203532003 0.00574092978869369,0.15323255349182321 -0.03315268722173162,0.17403693773944137" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.6755446623742396,0.08547459622719758 0.7014181807745427,0.06614197867582906 0.6860882815626035,0.13979045203532006 0.6605020582448905,0.1600802397190071 0.6755446623742396,0.08547459622719758" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3585374391259201,0.7736324943169431 0.29597821215700226,0.7520456260397688 0.28950217915617515,0.8107690964673231 0.3505945681129862,0.8326115986152225 0.3585374391259201,0.7736324943169431" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.24028625876374882,0.6698930123910235 0.1793938430813923,0.6496731917850657 0.21393535870488892,0.6202798571355017 0.2741175851930538,0.6397529024676497 0.24028625876374882,0.6698930123910235" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4399732888777233,0.5861064213357106 0.4703528269482319,0.5572590811131414 0.4600556828786549,0.6202798571355016 0.4301594301844137,0.6496731917850656 0.4399732888777233,0.5861064213357106" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.28033144688873896,0.5763676802913441 0.21872374257263458,0.5572590811131414 0.21393535870488892,0.6202798571355017 0.2741175851930538,0.6397529024676497 0.28033144688873896,0.5763676802913441" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.05296049683234192,0.37887341407589703 -0.11039303082812678,0.3622488289419372 -0.10797490695772981,0.4295766380302279 -0.05178590028056756,0.446674854478006 -0.05296049683234192,0.37887341407589703" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.592611197966462,0.27615821531076123 0.5272107965964483,0.2608751335920353 0.555340819546743,0.23865907839825246 0.6198653154029812,0.25337708020679556 0.592611197966462,0.27615821531076123" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1236464034008142,0.18114929510034658 0.06394847626492461,0.1670144839218623 0.06254691824246586,0.23865907839825254 0.12090252281853806,0.2533770802067956 0.1236464034008142,0.18114929510034658" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.08409993898533943,0.27615821531076123 0.02510527602840224,0.2608751335920353 0.06254691824246586,0.23865907839825254 0.12090252281853806,0.2533770802067956 0.08409993898533943,0.27615821531076123" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.005870842092522653,0.07894812908448201 -0.05217160022289997,0.06614197867582913 -0.013274988311189388,0.04752681667493392 0.04416414606224812,0.05985920436180025 0.005870842092522653,0.07894812908448201" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5146771567778278,0.07894812908448194 0.4502215871087283,0.06614197867582913 0.4797960061044159,0.047526816674933935 0.5434110145920096,0.059859204361800186 0.5146771567778278,0.07894812908448194" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3991129472871157,0.6801974073389444 0.33582390207236484,0.6597190947471432 0.3284512236917527,0.7206678427538086 0.3902409475448408,0.7414552099654652 0.3991129472871157,0.6801974073389444" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3585374391259201,0.7736324943169431 0.29597821215700226,0.7520456260397688 0.3284512236917527,0.7206678427538086 0.3902409475448408,0.7414552099654652 0.3585374391259201,0.7736324943169431" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3027506064940347,0.6906348057855085 0.33582390207236484,0.6597190947471432 0.3284512236917527,0.7206678427538086 0.29597821215700226,0.7520456260397688 0.3027506064940347,0.6906348057855085" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3206569258516484,0.48218773037293733 0.25832543859798685,0.4642063256618407 0.2526509672937301,0.5294841076260184 0.3135248830775153,0.5478845946961157 0.3206569258516484,0.48218773037293733" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.28033144688873896,0.5763676802913441 0.21872374257263458,0.5572590811131414 0.2526509672937301,0.5294841076260184 0.3135248830775153,0.5478845946961157 0.28033144688873896,0.5763676802913441" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.49799723419362685,0.28394692830385915 0.4333817067313801,0.26846823896842537 0.42385652028589976,0.3380848864084714 0.48691447244469926,0.3540930640807356 0.49799723419362685,0.28394692830385915" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.40216061040767204,0.2918362918515961 0.4333817067313801,0.26846823896842537 0.42385652028589976,0.3380848864084714 0.3931541273352586,0.36224882894193716 0.40216061040767204,0.2918362918515961" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.05296049683234192,0.37887341407589703 -0.11039303082812678,0.3622488289419372 -0.07032596973353496,0.33808488640847145 -0.013471941925347428,0.3540930640807357 -0.05296049683234192,0.37887341407589703" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.11292194479427242,0.2918362918515961 -0.07190638183435458,0.2684682389684254 -0.07032596973353496,0.33808488640847145 -0.11039303082812678,0.3622488289419372 -0.11292194479427242,0.2918362918515961" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.14461933280669975,0.29183629185159604 0.1807376624485127,0.26846823896842537 0.17676527527618233,0.3380848864084714 0.14138054825356586,0.3622488289419371 0.14461933280669975,0.29183629185159604" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4195073267805045,0.0854745962271977 0.3558501264751648,0.07250444494328545 0.34802457678980075,0.14646981457927472 0.4101660011841449,0.16008023971900723 0.4195073267805045,0.0854745962271977" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.6755446623742396,0.08547459622719758 0.608639833807249,0.07250444494328533 0.5952551504656154,0.1464698145792746 0.6605020582448905,0.1600802397190071 0.6755446623742396,0.08547459622719758" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.16346999118676933,0.08547459622719765 0.10306041914308048,0.0725044449432854 0.100794003113986,0.14646981457927466 0.15982994412339913,0.16008023971900714 0.16346999118676933,0.08547459622719765" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.1236464034008142,0.18114929510034658 0.06394847626492461,0.1670144839218623 0.100794003113986,0.14646981457927466 0.15982994412339913,0.16008023971900714 0.1236464034008142,0.18114929510034658" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.0654142865833303,0.09208545197407965 0.10306041914308048,0.0725044449432854 0.100794003113986,0.14646981457927466 0.06394847626492461,0.1670144839218623 0.0654142865833303,0.09208545197407965" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3991129472871157,0.6801974073389444 0.33582390207236484,0.6597190947471432 0.3676642636896348,0.6299558854296675 0.4301594301844137,0.6496731917850656 0.3991129472871157,0.6801974073389444" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4399732888777233,0.5861064213357106 0.37594574816526694,0.5667526813989824 0.3676642636896348,0.6299558854296675 0.4301594301844137,0.6496731917850656 0.4399732888777233,0.5861064213357106" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3206569258516484,0.48218773037293733 0.25832543859798685,0.4642063256618407 0.29162913742584967,0.4380725994346168 0.35320279806827626,0.45538541048939307 0.3206569258516484,0.48218773037293733" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.005960766776387602,0.39592893113066774 0.04482771531152679,0.37050828226771493 0.0438396742535591,0.43807259943461674 0.005826889592435818,0.4642063256618406 0.005960766776387602,0.39592893113066774" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.49799723419362685,0.28394692830385915 0.4333817067313801,0.26846823896842537 0.4634376006417019,0.24597230509521206 0.5272107965964483,0.2608751335920353 0.49799723419362685,0.28394692830385915" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4433448478735532,0.19565071584065716 0.47388841146357463,0.17403693773944137 0.4634376006417019,0.24597230509521206 0.4333817067313801,0.26846823896842537 0.4433448478735532,0.19565071584065716" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4195073267805045,0.0854745962271977 0.3558501264751648,0.07250444494328545 0.3873706221700165,0.05365463406827734 0.4502215871087283,0.06614197867582913 0.4195073267805045,0.0854745962271977" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.6755446623742396,0.08547459622719758 0.608639833807249,0.07250444494328533 0.6354404787320962,0.05365463406827728 0.7014181807745427,0.06614197867582906 0.6755446623742396,0.08547459622719758" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.16346999118676933,0.08547459622719765 0.10306041914308048,0.0725044449432854 0.13930076560793694,0.05365463406827728 0.19902499344291424,0.06614197867582906 0.16346999118676933,0.08547459622719765" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3027506064940347,0.6906348057855085 0.24028625876374882,0.6698930123910235 0.23497814527062877,0.7309967660621796 0.29597821215700226,0.7520456260397688 0.3027506064940347,0.6906348057855085" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4399732888777233,0.5861064213357106 0.37594574816526694,0.5667526813989824 0.40714399230694664,0.5386269943848602 0.4703528269482319,0.5572590811131414 0.4399732888777233,0.5861064213357106" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.40216061040767204,0.2918362918515961 0.33835556847590076,0.27615821531076135 0.330872549149129,0.34603904731963436 0.3931541273352586,0.36224882894193716 0.40216061040767204,0.2918362918515961" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.04586131939985899,0.2998282696448313 0.08409993898533943,0.27615821531076123 0.08223999776539039,0.3460390473196343 0.04482771531152679,0.37050828226771493 0.04586131939985899,0.2998282696448313" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.11292194479427242,0.2918362918515961 -0.1701556905052217,0.2761582153107612 -0.1663925536183481,0.3460390473196345 -0.11039303082812678,0.3622488289419372 -0.11292194479427242,0.2918362918515961" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.14461933280669975,0.29183629185159604 0.08409993898533943,0.27615821531076123 0.08223999776539039,0.3460390473196343 0.14138054825356586,0.3622488289419371 0.14461933280669975,0.29183629185159604" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5642936256591347,0.2998282696448312 0.592611197966462,0.27615821531076123 0.5795051005328677,0.3460390473196344 0.5515758014418297,0.37050828226771493 0.5642936256591347,0.2998282696448312" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4848214414109897,0.09878234371952845 0.5146771567778278,0.07894812908448194 0.5032881781421553,0.15323255349182316 0.47388841146357463,0.17403693773944137 0.4848214414109897,0.09878234371952845" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.0654142865833303,0.09208545197407965 0.005870842092522653,0.07894812908448201 0.00574092978869369,0.15323255349182321 0.06394847626492461,0.1670144839218623 0.0654142865833303,0.09208545197407965" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.033917549399122796,0.09878234371952845 0.005870842092522653,0.07894812908448201 0.00574092978869369,0.15323255349182321 -0.03315268722173162,0.17403693773944137 -0.033917549399122796,0.09878234371952845" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3027506064940347,0.6906348057855085 0.24028625876374882,0.6698930123910235 0.2741175851930538,0.6397529024676497 0.33582390207236484,0.6597190947471432 0.3027506064940347,0.6906348057855085" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.24583973355749453,0.6059648096018702 0.28033144688873896,0.5763676802913441 0.2741175851930538,0.6397529024676497 0.24028625876374882,0.6698930123910235 0.24583973355749453,0.6059648096018702" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.005960766776387602,0.39592893113066774 -0.05296049683234192,0.37887341407589703 -0.05178590028056756,0.446674854478006 0.005826889592435818,0.4642063256618406 0.005960766776387602,0.39592893113066774" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.11292194479427242,0.2918362918515961 -0.1701556905052217,0.2761582153107612 -0.12857887347368344,0.2533770802067955 -0.07190638183435458,0.2684682389684254 -0.11292194479427242,0.2918362918515961" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.6063238282117279,0.20304339105247607 0.6339331475946509,0.18114929510034652 0.6198653154029812,0.25337708020679556 0.592611197966462,0.27615821531076123 0.6063238282117279,0.20304339105247607" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4433448478735532,0.19565071584065716 0.37878977549773263,0.18114929510034658 0.3703839191107597,0.2533770802067956 0.4333817067313801,0.26846823896842537 0.4433448478735532,0.19565071584065716" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.40216061040767204,0.2918362918515961 0.33835556847590076,0.27615821531076135 0.3703839191107597,0.2533770802067956 0.4333817067313801,0.26846823896842537 0.40216061040767204,0.2918362918515961" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.08604595581882599,0.203043391052476 0.1236464034008142,0.18114929510034658 0.12090252281853806,0.2533770802067956 0.08409993898533943,0.27615821531076123 0.08604595581882599,0.203043391052476" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.14461933280669975,0.29183629185159604 0.08409993898533943,0.27615821531076123 0.12090252281853806,0.2533770802067956 0.1807376624485127,0.26846823896842537 0.14461933280669975,0.29183629185159604" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.0654142865833303,0.09208545197407965 0.005870842092522653,0.07894812908448201 0.04416414606224812,0.05985920436180025 0.10306041914308048,0.0725044449432854 0.0654142865833303,0.09208545197407965" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.366848551127952,0.7119190482841017 0.3991129472871157,0.6801974073389444 0.3902409475448408,0.7414552099654652 0.3585374391259201,0.7736324943169431 0.366848551127952,0.7119190482841017" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5642936256591347,0.2998282696448312 0.49799723419362685,0.28394692830385915 0.48691447244469926,0.3540930640807356 0.5515758014418297,0.37050828226771493 0.5642936256591347,0.2998282696448312" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.005960766776387602,0.39592893113066774 -0.05296049683234192,0.37887341407589703 -0.013471941925347428,0.3540930640807357 0.04482771531152679,0.37050828226771493 0.005960766776387602,0.39592893113066774" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.04586131939985899,0.2998282696448313 -0.013778579602195227,0.28394692830385915 -0.013471941925347428,0.3540930640807357 0.04482771531152679,0.37050828226771493 0.04586131939985899,0.2998282696448313" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.054189613894666,0.3079248767909094 -0.013778579602195227,0.28394692830385915 -0.013471941925347428,0.3540930640807357 -0.05296049683234192,0.37887341407589703 -0.054189613894666,0.3079248767909094" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.20672334189446662,0.3079248767909094 0.24210932729571577,0.2839469283038592 0.23672126525967588,0.3540930640807356 0.20203448791597106,0.3788734140758969 0.20672334189446662,0.3079248767909094" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6486543463256595,0.10556696201833553 0.6755446623742396,0.08547459622719758 0.6605020582448905,0.1600802397190071 0.6339331475946509,0.18114929510034652 0.6486543463256595,0.10556696201833553" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.12651772080036078,0.10556696201833558 0.16346999118676933,0.08547459622719765 0.15982994412339913,0.16008023971900714 0.1236464034008142,0.18114929510034658 0.12651772080036078,0.10556696201833558" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.033917549399122796,0.09878234371952845 -0.09256734440696583,0.08547459622719765 -0.09050611293734656,0.1600802397190071 -0.03315268722173162,0.17403693773944137 -0.033917549399122796,0.09878234371952845" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4848214414109897,0.09878234371952845 0.4195073267805045,0.0854745962271977 0.4101660011841449,0.16008023971900723 0.47388841146357463,0.17403693773944137 0.4848214414109897,0.09878234371952845" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4433448478735532,0.19565071584065716 0.37878977549773263,0.18114929510034658 0.4101660011841449,0.16008023971900723 0.47388841146357463,0.17403693773944137 0.4433448478735532,0.19565071584065716" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4083977356419953,0.6160894554685151 0.4399732888777233,0.5861064213357106 0.4301594301844137,0.6496731917850656 0.3991129472871157,0.6801974073389444 0.4083977356419953,0.6160894554685151" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.24583973355749453,0.6059648096018702 0.18348661823151696,0.5861064213357107 0.1793938430813923,0.6496731917850657 0.24028625876374882,0.6698930123910235 0.24583973355749453,0.6059648096018702" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.32812100010590173,0.4134323556353815 0.3612656487737557,0.38734626563615826 0.35320279806827626,0.45538541048939307 0.3206569258516484,0.48218773037293733 0.32812100010590173,0.4134323556353815" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6063238282117279,0.20304339105247607 0.5392529195699065,0.18835329358495753 0.5272107965964483,0.2608751335920353 0.592611197966462,0.27615821531076123 0.6063238282117279,0.20304339105247607" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5642936256591347,0.2998282696448312 0.49799723419362685,0.28394692830385915 0.5272107965964483,0.2608751335920353 0.592611197966462,0.27615821531076123 0.5642936256591347,0.2998282696448312" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.08604595581882599,0.203043391052476 0.025678710455709772,0.18835329358495753 0.02510527602840224,0.2608751335920353 0.08409993898533943,0.27615821531076123 0.08604595581882599,0.203043391052476" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.04586131939985899,0.2998282696448313 -0.013778579602195227,0.28394692830385915 0.02510527602840224,0.2608751335920353 0.08409993898533943,0.27615821531076123 0.04586131939985899,0.2998282696448313" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4848214414109897,0.09878234371952845 0.4195073267805045,0.0854745962271977 0.4502215871087283,0.06614197867582913 0.5146771567778278,0.07894812908448194 0.4848214414109897,0.09878234371952845" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.033917549399122796,0.09878234371952845 -0.09256734440696583,0.08547459622719765 -0.05217160022289997,0.06614197867582913 0.005870842092522653,0.07894812908448201 -0.033917549399122796,0.09878234371952845" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.366848551127952,0.7119190482841017 0.3027506064940347,0.6906348057855085 0.29597821215700226,0.7520456260397688 0.3585374391259201,0.7736324943169431 0.366848551127952,0.7119190482841017" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.45024539825325427,0.519571448792221 0.48112147368797686,0.49135260552497806 0.4703528269482319,0.5572590811131414 0.4399732888777233,0.5861064213357106 0.45024539825325427,0.519571448792221" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.24583973355749453,0.6059648096018702 0.18348661823151696,0.5861064213357107 0.21872374257263458,0.5572590811131414 0.28033144688873896,0.5763676802913441 0.24583973355749453,0.6059648096018702" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.36970521369035786,0.31612818150758376 0.40216061040767204,0.2918362918515961 0.3931541273352586,0.36224882894193716 0.3612656487737557,0.38734626563615826 0.36970521369035786,0.31612818150758376" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.054189613894666,0.3079248767909094 -0.11292194479427242,0.2918362918515961 -0.11039303082812678,0.3622488289419372 -0.05296049683234192,0.37887341407589703 -0.054189613894666,0.3079248767909094" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.20672334189446662,0.3079248767909094 0.14461933280669975,0.29183629185159604 0.14138054825356586,0.3622488289419371 0.20203448791597106,0.3788734140758969 0.20672334189446662,0.3079248767909094" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.10707309467534955,0.3161281815075837 0.14461933280669975,0.29183629185159604 0.14138054825356586,0.3622488289419371 0.10462884909841011,0.38734626563615815 0.10707309467534955,0.3161281815075837" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6486543463256595,0.10556696201833553 0.5807995748156304,0.0920854519740796 0.5677849559279677,0.16701448392186224 0.6339331475946509,0.18114929510034652 0.6486543463256595,0.10556696201833553" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.6063238282117279,0.20304339105247607 0.5392529195699065,0.18835329358495753 0.5677849559279677,0.16701448392186224 0.6339331475946509,0.18114929510034652 0.6063238282117279,0.20304339105247607" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5518580143742724,0.11244104200846125 0.5807995748156304,0.0920854519740796 0.5677849559279677,0.16701448392186224 0.5392529195699065,0.18835329358495753 0.5518580143742724,0.11244104200846125" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.12651772080036078,0.10556696201833558 0.0654142865833303,0.09208545197407965 0.06394847626492461,0.1670144839218623 0.1236464034008142,0.18114929510034658 0.12651772080036078,0.10556696201833558" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.08604595581882599,0.203043391052476 0.025678710455709772,0.18835329358495753 0.06394847626492461,0.1670144839218623 0.1236464034008142,0.18114929510034658 0.08604595581882599,0.203043391052476" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.026278953065441476,0.11244104200846125 0.0654142865833303,0.09208545197407965 0.06394847626492461,0.1670144839218623 0.025678710455709772,0.18835329358495753 0.026278953065441476,0.11244104200846125" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.366848551127952,0.7119190482841017 0.3027506064940347,0.6906348057855085 0.33582390207236484,0.6597190947471432 0.3991129472871157,0.6801974073389444 0.366848551127952,0.7119190482841017" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4083977356419953,0.6160894554685151 0.3435351666792928,0.5959713087896944 0.33582390207236484,0.6597190947471432 0.3991129472871157,0.6801974073389444 0.4083977356419953,0.6160894554685151" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3098401820371851,0.6263478449718534 0.3435351666792928,0.5959713087896944 0.33582390207236484,0.6597190947471432 0.3027506064940347,0.6906348057855085 0.3098401820371851,0.6263478449718534" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.32812100010590173,0.4134323556353815 0.2642606604198492,0.39592893113066774 0.25832543859798685,0.4642063256618407 0.3206569258516484,0.48218773037293733 0.32812100010590173,0.4134323556353815" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.054189613894666,0.3079248767909094 -0.11292194479427242,0.2918362918515961 -0.07190638183435458,0.2684682389684254 -0.013778579602195227,0.28394692830385915 -0.054189613894666,0.3079248767909094" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.11556944140002472,0.2181220590051519 -0.07355945906422186,0.1956507158406572 -0.07190638183435458,0.2684682389684254 -0.11292194479427242,0.2918362918515961 -0.11556944140002472,0.2181220590051519" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.20672334189446662,0.3079248767909094 0.14461933280669975,0.29183629185159604 0.1807376624485127,0.26846823896842537 0.24210932729571577,0.2839469283038592 0.20672334189446662,0.3079248767909094" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1480099863544176,0.21812205900515177 0.18489269440466563,0.19565071584065716 0.1807376624485127,0.26846823896842537 0.14461933280669975,0.29183629185159604 0.1480099863544176,0.21812205900515177" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.6486543463256595,0.10556696201833553 0.5807995748156304,0.0920854519740796 0.608639833807249,0.07250444494328533 0.6755446623742396,0.08547459622719758 0.6486543463256595,0.10556696201833553" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.12651772080036078,0.10556696201833558 0.0654142865833303,0.09208545197407965 0.10306041914308048,0.0725044449432854 0.16346999118676933,0.08547459622719765 0.12651772080036078,0.10556696201833558" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.45024539825325427,0.519571448792221 0.38460890360059335,0.5006366146310499 0.37594574816526694,0.5667526813989824 0.4399732888777233,0.5861064213357106 0.45024539825325427,0.519571448792221" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4083977356419953,0.6160894554685151 0.3435351666792928,0.5959713087896944 0.37594574816526694,0.5667526813989824 0.4399732888777233,0.5861064213357106 0.4083977356419953,0.6160894554685151" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5348491159708912,0.32444030688435255 0.5642936256591347,0.2998282696448312 0.5515758014418297,0.37050828226771493 0.5225605540633108,0.3959289311306677 0.5348491159708912,0.32444030688435255" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.006100940486360001,0.32444030688435255 0.04586131939985899,0.2998282696448313 0.04482771531152679,0.37050828226771493 0.005960766776387602,0.39592893113066774 0.006100940486360001,0.32444030688435255" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.10707309467534955,0.3161281815075837 0.04586131939985899,0.2998282696448313 0.04482771531152679,0.37050828226771493 0.10462884909841011,0.38734626563615815 0.10707309467534955,0.3161281815075837" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.36970521369035786,0.31612818150758376 0.30507747252949674,0.29982826964483134 0.2982017583766782,0.3705082822677151 0.3612656487737557,0.38734626563615826 0.36970521369035786,0.31612818150758376" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.32812100010590173,0.4134323556353815 0.2642606604198492,0.39592893113066774 0.2982017583766782,0.3705082822677151 0.3612656487737557,0.38734626563615826 0.32812100010590173,0.4134323556353815" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.27047502822862557,0.3244403068843526 0.30507747252949674,0.29982826964483134 0.2982017583766782,0.3705082822677151 0.2642606604198492,0.39592893113066774 0.27047502822862557,0.3244403068843526" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5518580143742724,0.11244104200846125 0.4848214414109897,0.09878234371952845 0.47388841146357463,0.17403693773944137 0.5392529195699065,0.18835329358495753 0.5518580143742724,0.11244104200846125" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4537768592518753,0.11940636489046756 0.4848214414109897,0.09878234371952845 0.47388841146357463,0.17403693773944137 0.4433448478735532,0.19565071584065716 0.4537768592518753,0.11940636489046756" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.026278953065441476,0.11244104200846125 -0.033917549399122796,0.09878234371952845 -0.03315268722173162,0.17403693773944137 0.025678710455709772,0.18835329358495753 0.026278953065441476,0.11244104200846125" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.07529033090726185,0.11940636489046762 -0.033917549399122796,0.09878234371952845 -0.03315268722173162,0.17403693773944137 -0.07355945906422186,0.1956507158406572 -0.07529033090726185,0.11940636489046762" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3098401820371851,0.6263478449718534 0.24583973355749453,0.6059648096018702 0.24028625876374882,0.6698930123910235 0.3027506064940347,0.6906348057855085 0.3098401820371851,0.6263478449718534" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.45024539825325427,0.519571448792221 0.38460890360059335,0.5006366146310499 0.41634663132796895,0.4731397106738148 0.48112147368797686,0.49135260552497806 0.45024539825325427,0.519571448792221" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.39368073760431493,0.4314015665962644 0.4259749037457315,0.40462355937972627 0.41634663132796895,0.4731397106738148 0.38460890360059335,0.5006366146310499 0.39368073760431493,0.4314015665962644" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.11556944140002472,0.2181220590051519 -0.17409298037762477,0.203043391052476 -0.1701556905052217,0.2761582153107612 -0.11292194479427242,0.2918362918515961 -0.11556944140002472,0.2181220590051519" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5776117678067979,0.22581195686788988 0.6063238282117279,0.20304339105247607 0.592611197966462,0.27615821531076123 0.5642936256591347,0.2998282696448312 0.5776117678067979,0.22581195686788988" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.36970521369035786,0.31612818150758376 0.30507747252949674,0.29982826964483134 0.33835556847590076,0.27615821531076135 0.40216061040767204,0.2918362918515961 0.36970521369035786,0.31612818150758376" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1480099863544176,0.21812205900515177 0.08604595581882599,0.203043391052476 0.08409993898533943,0.27615821531076123 0.14461933280669975,0.29183629185159604 0.1480099863544176,0.21812205900515177" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.10707309467534955,0.3161281815075837 0.04586131939985899,0.2998282696448313 0.08409993898533943,0.27615821531076123 0.14461933280669975,0.29183629185159604 0.10707309467534955,0.3161281815075837" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5518580143742724,0.11244104200846125 0.4848214414109897,0.09878234371952845 0.5146771567778278,0.07894812908448194 0.5807995748156304,0.0920854519740796 0.5518580143742724,0.11244104200846125" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.026278953065441476,0.11244104200846125 -0.033917549399122796,0.09878234371952845 0.005870842092522653,0.07894812908448201 0.0654142865833303,0.09208545197407965 0.026278953065441476,0.11244104200846125" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3098401820371851,0.6263478449718534 0.24583973355749453,0.6059648096018702 0.28033144688873896,0.5763676802913441 0.3435351666792928,0.5959713087896944 0.3098401820371851,0.6263478449718534" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2516559844472177,0.5390116892294586 0.2868335619664155,0.5100420958161341 0.28033144688873896,0.5763676802913441 0.24583973355749453,0.6059648096018702 0.2516559844472177,0.5390116892294586" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5348491159708912,0.32444030688435255 0.4676362976835994,0.30792487679090935 0.45702947266428423,0.378873414075897 0.5225605540633108,0.3959289311306677 0.5348491159708912,0.32444030688435255" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4360590377085644,0.3328634327143574 0.4676362976835994,0.30792487679090935 0.45702947266428423,0.378873414075897 0.4259749037457315,0.40462355937972627 0.4360590377085644,0.3328634327143574" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.006100940486360001,0.32444030688435255 -0.054189613894666,0.3079248767909094 -0.05296049683234192,0.37887341407589703 0.005960766776387602,0.39592893113066774 0.006100940486360001,0.32444030688435255" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.27047502822862557,0.3244403068843526 0.20672334189446662,0.3079248767909094 0.20203448791597106,0.3788734140758969 0.2642606604198492,0.39592893113066774 0.27047502822862557,0.3244403068843526" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.620686092913626,0.1264647594662573 0.6486543463256595,0.10556696201833553 0.6339331475946509,0.18114929510034652 0.6063238282117279,0.20304339105247607 0.620686092913626,0.1264647594662573" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4537768592518753,0.11940636489046756 0.38758603356301025,0.10556696201833558 0.37878977549773263,0.18114929510034658 0.4433448478735532,0.19565071584065716 0.4537768592518753,0.11940636489046756" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.08808416500094356,0.1264647594662573 0.12651772080036078,0.10556696201833558 0.1236464034008142,0.18114929510034658 0.08604595581882599,0.203043391052476 0.08808416500094356,0.1264647594662573" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.07529033090726185,0.11940636489046762 -0.13455059196228852,0.10556696201833557 -0.1314969686961041,0.18114929510034652 -0.07355945906422186,0.1956507158406572 -0.07529033090726185,0.11940636489046762" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="-0.11556944140002472,0.2181220590051519 -0.17409298037762477,0.203043391052476 -0.1314969686961041,0.18114929510034652 -0.07355945906422186,0.1956507158406572 -0.11556944140002472,0.2181220590051519" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.1480099863544176,0.21812205900515177 0.08604595581882599,0.203043391052476 0.1236464034008142,0.18114929510034658 0.18489269440466563,0.19565071584065716 0.1480099863544176,0.21812205900515177" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.375554119956103,0.6472765970778207 0.4083977356419953,0.6160894554685151 0.3991129472871157,0.6801974073389444 0.366848551127952,0.7119190482841017 0.375554119956103,0.6472765970778207" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.39368073760431493,0.4314015665962644 0.32812100010590173,0.4134323556353815 0.3206569258516484,0.48218773037293733 0.38460890360059335,0.5006366146310499 0.39368073760431493,0.4314015665962644" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2936444642744719,0.4405666911226175 0.32812100010590173,0.4134323556353815 0.3206569258516484,0.48218773037293733 0.2868335619664155,0.5100420958161341 0.2936444642744719,0.4405666911226175" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5776117678067979,0.22581195686788988 0.5095962608539616,0.210533196471704 0.49799723419362685,0.28394692830385915 0.5642936256591347,0.2998282696448312 0.5776117678067979,0.22581195686788988" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5348491159708912,0.32444030688435255 0.4676362976835994,0.30792487679090935 0.49799723419362685,0.28394692830385915 0.5642936256591347,0.2998282696448312 0.5348491159708912,0.32444030688435255" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.006100940486360001,0.32444030688435255 -0.054189613894666,0.3079248767909094 -0.013778579602195227,0.28394692830385915 0.04586131939985899,0.2998282696448313 0.006100940486360001,0.32444030688435255" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.27047502822862557,0.3244403068843526 0.20672334189446662,0.3079248767909094 0.24210932729571577,0.2839469283038592 0.30507747252949674,0.29982826964483134 0.27047502822862557,0.3244403068843526" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4537768592518753,0.11940636489046756 0.38758603356301025,0.10556696201833558 0.4195073267805045,0.0854745962271977 0.4848214414109897,0.09878234371952845 0.4537768592518753,0.11940636489046756" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.07529033090726185,0.11940636489046762 -0.13455059196228852,0.10556696201833557 -0.09256734440696583,0.08547459622719765 -0.033917549399122796,0.09878234371952845 -0.07529033090726185,0.11940636489046762" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2516559844472177,0.5390116892294586 0.18777050241055002,0.5195714487922211 0.18348661823151696,0.5861064213357107 0.24583973355749453,0.6059648096018702 0.2516559844472177,0.5390116892294586" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.06801256370373027,0.3413997974001648 0.10707309467534955,0.3161281815075837 0.10462884909841011,0.38734626563615815 0.06642940492941571,0.41343235563538144 0.06801256370373027,0.3413997974001648" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4360590377085644,0.3328634327143574 0.36970521369035786,0.31612818150758376 0.3612656487737557,0.38734626563615826 0.4259749037457315,0.40462355937972627 0.4360590377085644,0.3328634327143574" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.39368073760431493,0.4314015665962644 0.32812100010590173,0.4134323556353815 0.3612656487737557,0.38734626563615826 0.4259749037457315,0.40462355937972627 0.39368073760431493,0.4314015665962644" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.33594084496084936,0.3413997974001648 0.36970521369035786,0.31612818150758376 0.3612656487737557,0.38734626563615826 0.32812100010590173,0.4134323556353815 0.33594084496084936,0.3413997974001648" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.620686092913626,0.1264647594662573 0.5518580143742724,0.11244104200846125 0.5392529195699065,0.18835329358495753 0.6063238282117279,0.20304339105247607 0.620686092913626,0.1264647594662573" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5776117678067979,0.22581195686788988 0.5095962608539616,0.210533196471704 0.5392529195699065,0.18835329358495753 0.6063238282117279,0.20304339105247607 0.5776117678067979,0.22581195686788988" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5217484861790258,0.1336181037399096 0.5518580143742724,0.11244104200846125 0.5392529195699065,0.18835329358495753 0.5095962608539616,0.210533196471704 0.5217484861790258,0.1336181037399096" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.08808416500094356,0.1264647594662573 0.026278953065441476,0.11244104200846125 0.025678710455709772,0.18835329358495753 0.08604595581882599,0.203043391052476 0.08808416500094356,0.1264647594662573" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.375554119956103,0.6472765970778207 0.3098401820371851,0.6263478449718534 0.3027506064940347,0.6906348057855085 0.366848551127952,0.7119190482841017 0.375554119956103,0.6472765970778207" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.46100862208718674,0.44985540741361 0.4923947668346229,0.4223575834461651 0.48112147368797686,0.49135260552497806 0.45024539825325427,0.519571448792221 0.46100862208718674,0.44985540741361" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2936444642744719,0.4405666911226175 0.2289736981576641,0.4223575834461651 0.22373138488370942,0.49135260552497817 0.2868335619664155,0.5100420958161341 0.2936444642744719,0.4405666911226175" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2516559844472177,0.5390116892294586 0.18777050241055002,0.5195714487922211 0.22373138488370942,0.49135260552497817 0.2868335619664155,0.5100420958161341 0.2516559844472177,0.5390116892294586" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4360590377085644,0.3328634327143574 0.36970521369035786,0.31612818150758376 0.40216061040767204,0.2918362918515961 0.4676362976835994,0.30792487679090935 0.4360590377085644,0.3328634327143574" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3785485257177342,0.24150303836756462 0.41158941410886,0.21812205900515186 0.40216061040767204,0.2918362918515961 0.36970521369035786,0.31612818150758376 0.3785485257177342,0.24150303836756462" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.620686092913626,0.1264647594662573 0.5518580143742724,0.11244104200846125 0.5807995748156304,0.0920854519740796 0.6486543463256595,0.10556696201833553 0.620686092913626,0.1264647594662573" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.08808416500094356,0.1264647594662573 0.026278953065441476,0.11244104200846125 0.0654142865833303,0.09208545197407965 0.12651772080036078,0.10556696201833558 0.08808416500094356,0.1264647594662573" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.375554119956103,0.6472765970778207 0.3098401820371851,0.6263478449718534 0.3435351666792928,0.5959713087896944 0.4083977356419953,0.6160894554685151 0.375554119956103,0.6472765970778207" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5042090310593044,0.3500516999369314 0.5348491159708912,0.32444030688435255 0.5225605540633108,0.3959289311306677 0.4923947668346229,0.4223575834461651 0.5042090310593044,0.3500516999369314" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2936444642744719,0.4405666911226175 0.2289736981576641,0.4223575834461651 0.2642606604198492,0.39592893113066774 0.32812100010590173,0.4134323556353815 0.2936444642744719,0.4405666911226175" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.23446757411399752,0.3500516999369315 0.27047502822862557,0.3244403068843526 0.2642606604198492,0.39592893113066774 0.2289736981576641,0.4223575834461651 0.23446757411399752,0.3500516999369315" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.06801256370373027,0.3413997974001648 0.006100940486360001,0.32444030688435255 0.005960766776387602,0.39592893113066774 0.06642940492941571,0.41343235563538144 0.06801256370373027,0.3413997974001648" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.33594084496084936,0.3413997974001648 0.27047502822862557,0.3244403068843526 0.2642606604198492,0.39592893113066774 0.32812100010590173,0.4134323556353815 0.33594084496084936,0.3413997974001648" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5217484861790258,0.1336181037399096 0.4537768592518753,0.11940636489046756 0.4433448478735532,0.19565071584065716 0.5095962608539616,0.210533196471704 0.5217484861790258,0.1336181037399096" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4214709559775067,0.14086832658355744 0.4537768592518753,0.11940636489046756 0.4433448478735532,0.19565071584065716 0.41158941410886,0.21812205900515186 0.4214709559775067,0.14086832658355744" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.11834406153062996,0.1408683265835575 -0.07529033090726185,0.11940636489046762 -0.07355945906422186,0.1956507158406572 -0.11556944140002472,0.2181220590051519 -0.11834406153062996,0.1408683265835575" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.15156344722343834,0.14086832658355736 0.1892432641723067,0.11940636489046759 0.18489269440466563,0.19565071584065716 0.1480099863544176,0.21812205900515177 0.15156344722343834,0.14086832658355736" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.46100862208718674,0.44985540741361 0.39368073760431493,0.4314015665962644 0.38460890360059335,0.5006366146310499 0.45024539825325427,0.519571448792221 0.46100862208718674,0.44985540741361" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3785485257177342,0.24150303836756462 0.31227774019236776,0.22581195686789005 0.30507747252949674,0.29982826964483134 0.36970521369035786,0.31612818150758376 0.3785485257177342,0.24150303836756462" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.006247865628271804,0.24950845079994566 0.046943712577937634,0.2258119568678899 0.04586131939985899,0.2998282696448313 0.006100940486360001,0.32444030688435255 0.006247865628271804,0.24950845079994566" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2769887095200487,0.24950845079994566 0.31227774019236776,0.22581195686789005 0.30507747252949674,0.29982826964483134 0.27047502822862557,0.3244403068843526 0.2769887095200487,0.24950845079994566" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.06801256370373027,0.3413997974001648 0.006100940486360001,0.32444030688435255 0.04586131939985899,0.2998282696448313 0.10707309467534955,0.3161281815075837 0.06801256370373027,0.3413997974001648" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.33594084496084936,0.3413997974001648 0.27047502822862557,0.3244403068843526 0.30507747252949674,0.29982826964483134 0.36970521369035786,0.31612818150758376 0.33594084496084936,0.3413997974001648" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.5217484861790258,0.1336181037399096 0.4537768592518753,0.11940636489046756 0.4848214414109897,0.09878234371952845 0.5518580143742724,0.11244104200846125 0.5217484861790258,0.1336181037399096" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.23446757411399752,0.3500516999369315 0.16991971891929977,0.3328634327143575 0.16599022070843059,0.40462355937972616 0.2289736981576641,0.4223575834461651 0.23446757411399752,0.3500516999369315" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.13161152668776246,0.35882150197664203 0.16991971891929977,0.3328634327143575 0.16599022070843059,0.40462355937972616 0.1285071837775743,0.43140156659626433 0.13161152668776246,0.35882150197664203" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5042090310593044,0.3500516999369314 0.4360590377085644,0.3328634327143574 0.4259749037457315,0.40462355937972627 0.4923947668346229,0.4223575834461651 0.5042090310593044,0.3500516999369314" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.46100862208718674,0.44985540741361 0.39368073760431493,0.4314015665962644 0.4259749037457315,0.40462355937972627 0.4923947668346229,0.4223575834461651 0.46100862208718674,0.44985540741361" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4031908674720341,0.3588215019766419 0.4360590377085644,0.3328634327143574 0.4259749037457315,0.40462355937972627 0.39368073760431493,0.4314015665962644 0.4031908674720341,0.3588215019766419" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4214709559775067,0.14086832658355744 0.3543851289572848,0.12646475946625738 0.3461848920152769,0.2030433910524761 0.41158941410886,0.21812205900515186 0.4214709559775067,0.14086832658355744" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3785485257177342,0.24150303836756462 0.31227774019236776,0.22581195686789005 0.3461848920152769,0.2030433910524761 0.41158941410886,0.21812205900515186 0.3785485257177342,0.24150303836756462" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.048078432825501984,0.1482174094714088 0.08808416500094356,0.1264647594662573 0.08604595581882599,0.203043391052476 0.046943712577937634,0.2258119568678899 0.048078432825501984,0.1482174094714088" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.11834406153062996,0.1408683265835575 -0.1782167989553975,0.12646475946625735 -0.17409298037762477,0.203043391052476 -0.11556944140002472,0.2181220590051519 -0.11834406153062996,0.1408683265835575" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.15156344722343834,0.14086832658355736 0.08808416500094356,0.1264647594662573 0.08604595581882599,0.203043391052476 0.1480099863544176,0.21812205900515177 0.15156344722343834,0.14086832658355736" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5915737604181331,0.14821740947140874 0.620686092913626,0.1264647594662573 0.6063238282117279,0.20304339105247607 0.5776117678067979,0.22581195686788988 0.5915737604181331,0.14821740947140874" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2577541142100928,0.46881375179491985 0.2936444642744719,0.4405666911226175 0.2868335619664155,0.5100420958161341 0.2516559844472177,0.5390116892294586 0.2577541142100928,0.46881375179491985" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5042090310593044,0.3500516999369314 0.4360590377085644,0.3328634327143574 0.4676362976835994,0.30792487679090935 0.5348491159708912,0.32444030688435255 0.5042090310593044,0.3500516999369314" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.006247865628271804,0.24950845079994566 -0.05547713762464952,0.2336049213024409 -0.054189613894666,0.3079248767909094 0.006100940486360001,0.32444030688435255 0.006247865628271804,0.24950845079994566" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2769887095200487,0.24950845079994566 0.21163500649403338,0.2336049213024409 0.20672334189446662,0.3079248767909094 0.27047502822862557,0.3244403068843526 0.2769887095200487,0.24950845079994566" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.23446757411399752,0.3500516999369315 0.16991971891929977,0.3328634327143575 0.20672334189446662,0.3079248767909094 0.27047502822862557,0.3244403068843526 0.23446757411399752,0.3500516999369315" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.11834406153062996,0.1408683265835575 -0.1782167989553975,0.12646475946625735 -0.13455059196228852,0.10556696201833557 -0.07529033090726185,0.11940636489046762 -0.11834406153062996,0.1408683265835575" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4214709559775067,0.14086832658355744 0.3543851289572848,0.12646475946625738 0.38758603356301025,0.10556696201833558 0.4537768592518753,0.11940636489046756 0.4214709559775067,0.14086832658355744" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.15156344722343834,0.14086832658355736 0.08808416500094356,0.1264647594662573 0.12651772080036078,0.10556696201833558 0.1892432641723067,0.11940636489046759 0.15156344722343834,0.14086832658355736" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.38468291041565383,0.5794915501150459 0.41812480756628667,0.5489277028330917 0.4083977356419953,0.6160894554685151 0.375554119956103,0.6472765970778207 0.38468291041565383,0.5794915501150459" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.13161152668776246,0.35882150197664203 0.06801256370373027,0.3413997974001648 0.06642940492941571,0.41343235563538144 0.1285071837775743,0.43140156659626433 0.13161152668776246,0.35882150197664203" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4031908674720341,0.3588215019766419 0.33594084496084936,0.3413997974001648 0.32812100010590173,0.4134323556353815 0.39368073760431493,0.4314015665962644 0.4031908674720341,0.3588215019766419" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3007866854144148,0.36771162997731544 0.33594084496084936,0.3413997974001648 0.32812100010590173,0.4134323556353815 0.2936444642744719,0.4405666911226175 0.3007866854144148,0.36771162997731544" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5915737604181331,0.14821740947140874 0.5217484861790258,0.1336181037399096 0.5095962608539616,0.210533196471704 0.5776117678067979,0.22581195686788988 0.5915737604181331,0.14821740947140874" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.048078432825501984,0.1482174094714088 -0.01443572886661338,0.13361810373990965 -0.01409950128844955,0.21053319647170404 0.046943712577937634,0.2258119568678899 0.048078432825501984,0.1482174094714088" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.006247865628271804,0.24950845079994566 -0.05547713762464952,0.2336049213024409 -0.01409950128844955,0.21053319647170404 0.046943712577937634,0.2258119568678899 0.006247865628271804,0.24950845079994566" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.05682733250241229,0.15566738828518867 -0.01443572886661338,0.13361810373990965 -0.01409950128844955,0.21053319647170404 -0.05547713762464952,0.2336049213024409 -0.05682733250241229,0.15566738828518867" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2769887095200487,0.24950845079994566 0.21163500649403338,0.2336049213024409 0.247748379782756,0.21053319647170413 0.31227774019236776,0.22581195686789005 0.2769887095200487,0.24950845079994566" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.21678574991660987,0.15566738828518867 0.25365637865620616,0.13361810373990973 0.247748379782756,0.21053319647170413 0.21163500649403338,0.2336049213024409 0.21678574991660987,0.15566738828518867" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.42832653657890263,0.4784886225289897 0.46100862208718674,0.44985540741361 0.45024539825325427,0.519571448792221 0.41812480756628667,0.5489277028330917 0.42832653657890263,0.4784886225289897" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2577541142100928,0.46881375179491985 0.19225920113949946,0.44985540741361013 0.18777050241055002,0.5195714487922211 0.2516559844472177,0.5390116892294586 0.2577541142100928,0.46881375179491985" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.13161152668776246,0.35882150197664203 0.06801256370373027,0.3413997974001648 0.10707309467534955,0.3161281815075837 0.16991971891929977,0.3328634327143575 0.13161152668776246,0.35882150197664203" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.06967302507775722,0.26585002781138295 0.10963427247562793,0.24150303836756457 0.10707309467534955,0.3161281815075837 0.06801256370373027,0.3413997974001648 0.06967302507775722,0.26585002781138295" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4031908674720341,0.3588215019766419 0.33594084496084936,0.3413997974001648 0.36970521369035786,0.31612818150758376 0.4360590377085644,0.3328634327143574 0.4031908674720341,0.3588215019766419" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.34414251780831584,0.265850027811383 0.3785485257177342,0.24150303836756462 0.36970521369035786,0.31612818150758376 0.33594084496084936,0.3413997974001648 0.34414251780831584,0.265850027811383" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5915737604181331,0.14821740947140874 0.5217484861790258,0.1336181037399096 0.5518580143742724,0.11244104200846125 0.620686092913626,0.1264647594662573 0.5915737604181331,0.14821740947140874" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.048078432825501984,0.1482174094714088 -0.01443572886661338,0.13361810373990965 0.026278953065441476,0.11244104200846125 0.08808416500094356,0.1264647594662573 0.048078432825501984,0.1482174094714088" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.38468291041565383,0.5794915501150459 0.3172697555923861,0.5589778450193428 0.3098401820371851,0.6263478449718534 0.375554119956103,0.6472765970778207 0.38468291041565383,0.5794915501150459" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2577541142100928,0.46881375179491985 0.19225920113949946,0.44985540741361013 0.2289736981576641,0.4223575834461651 0.2936444642744719,0.4405666911226175 0.2577541142100928,0.46881375179491985" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.19696776257030527,0.3767245774412859 0.23446757411399752,0.3500516999369315 0.2289736981576641,0.4223575834461651 0.19225920113949946,0.44985540741361013 0.19696776257030527,0.3767245774412859" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3007866854144148,0.36771162997731544 0.23446757411399752,0.3500516999369315 0.2289736981576641,0.4223575834461651 0.2936444642744719,0.4405666911226175 0.3007866854144148,0.36771162997731544" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.47229904358255975,0.37672457744128574 0.5042090310593044,0.3500516999369314 0.4923947668346229,0.4223575834461651 0.46100862208718674,0.44985540741361 0.47229904358255975,0.37672457744128574" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3878252676375604,0.16322035519445477 0.4214709559775067,0.14086832658355744 0.41158941410886,0.21812205900515186 0.3785485257177342,0.24150303836756462 0.3878252676375604,0.16322035519445477" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="-0.05682733250241229,0.15566738828518867 -0.11834406153062996,0.1408683265835575 -0.11556944140002472,0.2181220590051519 -0.05547713762464952,0.2336049213024409 -0.05682733250241229,0.15566738828518867" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.21678574991660987,0.15566738828518867 0.15156344722343834,0.14086832658355736 0.1480099863544176,0.21812205900515177 0.21163500649403338,0.2336049213024409 0.21678574991660987,0.15566738828518867" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.11232097915186176,0.16322035519445469 0.15156344722343834,0.14086832658355736 0.1480099863544176,0.21812205900515177 0.10963427247562793,0.24150303836756457 0.11232097915186176,0.16322035519445469" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.42832653657890263,0.4784886225289897 0.36007124171801613,0.4592702323932515 0.3516088897535166,0.5292271368995305 0.41812480756628667,0.5489277028330917 0.42832653657890263,0.4784886225289897" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.38468291041565383,0.5794915501150459 0.3172697555923861,0.5589778450193428 0.3516088897535166,0.5292271368995305 0.41812480756628667,0.5489277028330917 0.38468291041565383,0.5794915501150459" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3250643862035496,0.4882975751488979 0.36007124171801613,0.4592702323932515 0.3516088897535166,0.5292271368995305 0.3172697555923861,0.5589778450193428 0.3250643862035496,0.4882975751488979" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.06967302507775722,0.26585002781138295 0.006247865628271804,0.24950845079994566 0.006100940486360001,0.32444030688435255 0.06801256370373027,0.3413997974001648 0.06967302507775722,0.26585002781138295" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.516604162957196,0.27419077910039097 0.5477295534118257,0.2495084507999456 0.5348491159708912,0.32444030688435255 0.5042090310593044,0.3500516999369314 0.516604162957196,0.27419077910039097" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.34414251780831584,0.265850027811383 0.2769887095200487,0.24950845079994566 0.27047502822862557,0.3244403068843526 0.33594084496084936,0.3413997974001648 0.34414251780831584,0.265850027811383" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3007866854144148,0.36771162997731544 0.23446757411399752,0.3500516999369315 0.27047502822862557,0.3244403068843526 0.33594084496084936,0.3413997974001648 0.3007866854144148,0.36771162997731544" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="-0.05682733250241229,0.15566738828518867 -0.11834406153062996,0.1408683265835575 -0.07529033090726185,0.11940636489046762 -0.01443572886661338,0.13361810373990965 -0.05682733250241229,0.15566738828518867" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.21678574991660987,0.15566738828518867 0.15156344722343834,0.14086832658355736 0.1892432641723067,0.11940636489046759 0.25365637865620616,0.13361810373990973 0.21678574991660987,0.15566738828518867" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.19696776257030527,0.3767245774412859 0.13161152668776246,0.35882150197664203 0.1285071837775743,0.43140156659626433 0.19225920113949946,0.44985540741361013 0.19696776257030527,0.3767245774412859" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.42832653657890263,0.4784886225289897 0.36007124171801613,0.4592702323932515 0.39368073760431493,0.4314015665962644 0.46100862208718674,0.44985540741361 0.42832653657890263,0.4784886225289897" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.47229904358255975,0.37672457744128574 0.4031908674720341,0.3588215019766419 0.39368073760431493,0.4314015665962644 0.46100862208718674,0.44985540741361 0.47229904358255975,0.37672457744128574" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.5612456828990229,0.17087846061543702 0.5915737604181331,0.14821740947140874 0.5776117678067979,0.22581195686788988 0.5477295534118257,0.2495084507999456 0.5612456828990229,0.17087846061543702" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.00640204201025504,0.17087846061543704 0.048078432825501984,0.1482174094714088 0.046943712577937634,0.2258119568678899 0.006247865628271804,0.24950845079994566 0.00640204201025504,0.17087846061543704" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.11232097915186176,0.16322035519445469 0.048078432825501984,0.1482174094714088 0.046943712577937634,0.2258119568678899 0.10963427247562793,0.24150303836756457 0.11232097915186176,0.16322035519445469" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.06967302507775722,0.26585002781138295 0.006247865628271804,0.24950845079994566 0.046943712577937634,0.2258119568678899 0.10963427247562793,0.24150303836756457 0.06967302507775722,0.26585002781138295" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3878252676375604,0.16322035519445477 0.3198260966218175,0.14821740947140885 0.31227774019236776,0.22581195686789005 0.3785485257177342,0.24150303836756462 0.3878252676375604,0.16322035519445477" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.28382386245463886,0.17087846061543707 0.3198260966218175,0.14821740947140885 0.31227774019236776,0.22581195686789005 0.2769887095200487,0.24950845079994566 0.28382386245463886,0.17087846061543707" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.34414251780831584,0.265850027811383 0.2769887095200487,0.24950845079994566 0.31227774019236776,0.22581195686789005 0.3785485257177342,0.24150303836756462 0.34414251780831584,0.265850027811383" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3250643862035496,0.4882975751488979 0.2577541142100928,0.46881375179491985 0.2516559844472177,0.5390116892294586 0.3172697555923861,0.5589778450193428 0.3250643862035496,0.4882975751488979" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.516604162957196,0.27419077910039097 0.4466321931413061,0.2576233599522711 0.4360590377085644,0.3328634327143574 0.5042090310593044,0.3500516999369314 0.516604162957196,0.27419077910039097" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.19696776257030527,0.3767245774412859 0.13161152668776246,0.35882150197664203 0.16991971891929977,0.3328634327143575 0.23446757411399752,0.3500516999369315 0.19696776257030527,0.3767245774412859" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.47229904358255975,0.37672457744128574 0.4031908674720341,0.3588215019766419 0.4360590377085644,0.3328634327143574 0.5042090310593044,0.3500516999369314 0.47229904358255975,0.37672457744128574" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3878252676375604,0.16322035519445477 0.3198260966218175,0.14821740947140885 0.3543851289572848,0.12646475946625738 0.4214709559775067,0.14086832658355744 0.3878252676375604,0.16322035519445477" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.11232097915186176,0.16322035519445469 0.048078432825501984,0.1482174094714088 0.08808416500094356,0.1264647594662573 0.15156344722343834,0.14086832658355736 0.11232097915186176,0.16322035519445469" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3250643862035496,0.4882975751488979 0.2577541142100928,0.46881375179491985 0.2936444642744719,0.4405666911226175 0.36007124171801613,0.4592702323932515 0.3250643862035496,0.4882975751488979" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.26415512319996454,0.3951292540781838 0.3007866854144148,0.36771162997731544 0.2936444642744719,0.4405666911226175 0.2577541142100928,0.46881375179491985 0.26415512319996454,0.3951292540781838" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5612456828990229,0.17087846061543702 0.4903988323356322,0.15566738828518864 0.4787471506127165,0.23360492130244084 0.5477295534118257,0.2495084507999456 0.5612456828990229,0.17087846061543702" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.516604162957196,0.27419077910039097 0.4466321931413061,0.2576233599522711 0.4787471506127165,0.23360492130244084 0.5477295534118257,0.2495084507999456 0.516604162957196,0.27419077910039097" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4577308260127208,0.1786439152522522 0.4903988323356322,0.15566738828518864 0.4787471506127165,0.23360492130244084 0.4466321931413061,0.2576233599522711 0.4577308260127208,0.1786439152522522" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.00640204201025504,0.17087846061543704 -0.05682733250241229,0.15566738828518867 -0.05547713762464952,0.2336049213024409 0.006247865628271804,0.24950845079994566 0.00640204201025504,0.17087846061543704" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.28382386245463886,0.17087846061543707 0.21678574991660987,0.15566738828518867 0.21163500649403338,0.2336049213024409 0.2769887095200487,0.24950845079994566 0.28382386245463886,0.17087846061543707" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.39426655379363634,0.5083290319994764 0.42832653657890263,0.4784886225289897 0.41812480756628667,0.5489277028330917 0.38468291041565383,0.5794915501150459 0.39426655379363634,0.5083290319994764" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5612456828990229,0.17087846061543702 0.4903988323356322,0.15566738828518864 0.5217484861790258,0.1336181037399096 0.5915737604181331,0.14821740947140874 0.5612456828990229,0.17087846061543702" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.00640204201025504,0.17087846061543704 -0.05682733250241229,0.15566738828518867 -0.01443572886661338,0.13361810373990965 0.048078432825501984,0.1482174094714088 0.00640204201025504,0.17087846061543704" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.28382386245463886,0.17087846061543707 0.21678574991660987,0.15566738828518867 0.25365637865620616,0.13361810373990973 0.3198260966218175,0.14821740947140885 0.28382386245463886,0.17087846061543707" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4390385347099801,0.40452632695740054 0.47229904358255975,0.37672457744128574 0.46100862208718674,0.44985540741361 0.42832653657890263,0.4784886225289897 0.4390385347099801,0.40452632695740054" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.26415512319996454,0.3951292540781838 0.19696776257030527,0.3767245774412859 0.19225920113949946,0.44985540741361013 0.2577541142100928,0.46881375179491985 0.26415512319996454,0.3951292540781838" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4577308260127208,0.1786439152522522 0.3878252676375604,0.16322035519445477 0.3785485257177342,0.24150303836756462 0.4466321931413061,0.2576233599522711 0.4577308260127208,0.1786439152522522" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.07141659254421617,0.18651899222456356 0.11232097915186176,0.16322035519445469 0.10963427247562793,0.24150303836756457 0.06967302507775722,0.26585002781138295 0.07141659254421617,0.18651899222456356" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3527546843850676,0.18651899222456356 0.3878252676375604,0.16322035519445477 0.3785485257177342,0.24150303836756462 0.34414251780831584,0.265850027811383 0.3527546843850676,0.18651899222456356" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.39426655379363634,0.5083290319994764 0.3250643862035496,0.4882975751488979 0.3172697555923861,0.5589778450193428 0.38468291041565383,0.5794915501150459 0.39426655379363634,0.5083290319994764" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.20191274602326045,0.299921768466967 0.24023156549038327,0.27419077910039097 0.23446757411399752,0.3500516999369315 0.19696776257030527,0.3767245774412859 0.20191274602326045,0.299921768466967" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.48415636949663515,0.29992176846696683 0.516604162957196,0.27419077910039097 0.5042090310593044,0.3500516999369314 0.47229904358255975,0.37672457744128574 0.48415636949663515,0.29992176846696683" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.26415512319996454,0.3951292540781838 0.19696776257030527,0.3767245774412859 0.23446757411399752,0.3500516999369315 0.3007866854144148,0.36771162997731544 0.26415512319996454,0.3951292540781838" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4577308260127208,0.1786439152522522 0.3878252676375604,0.16322035519445477 0.4214709559775067,0.14086832658355744 0.4903988323356322,0.15566738828518864 0.4577308260127208,0.1786439152522522" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.39426655379363634,0.5083290319994764 0.3250643862035496,0.4882975751488979 0.36007124171801613,0.4592702323932515 0.42832653657890263,0.4784886225289897 0.39426655379363634,0.5083290319994764" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4390385347099801,0.40452632695740054 0.36895097455561127,0.38586290724689587 0.36007124171801613,0.4592702323932515 0.42832653657890263,0.4784886225289897 0.4390385347099801,0.40452632695740054" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.33325165752448377,0.41405691188547256 0.36895097455561127,0.38586290724689587 0.36007124171801613,0.4592702323932515 0.3250643862035496,0.4882975751488979 0.33325165752448377,0.41405691188547256" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5296240811615669,0.1945060292859882 0.5612456828990229,0.17087846061543702 0.5477295534118257,0.2495084507999456 0.516604162957196,0.27419077910039097 0.5296240811615669,0.1945060292859882" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.24628609535496732,0.19450602928598826 0.28382386245463886,0.17087846061543707 0.2769887095200487,0.24950845079994566 0.24023156549038327,0.27419077910039097 0.24628609535496732,0.19450602928598826" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.07141659254421617,0.18651899222456356 0.00640204201025504,0.17087846061543704 0.006247865628271804,0.24950845079994566 0.06967302507775722,0.26585002781138295 0.07141659254421617,0.18651899222456356" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3527546843850676,0.18651899222456356 0.28382386245463886,0.17087846061543707 0.2769887095200487,0.24950845079994566 0.34414251780831584,0.265850027811383 0.3527546843850676,0.18651899222456356" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.20191274602326045,0.299921768466967 0.1348695653968237,0.2826480034688482 0.13161152668776246,0.35882150197664203 0.19696776257030527,0.3767245774412859 0.20191274602326045,0.299921768466967" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.48415636949663515,0.29992176846696683 0.4131718431997933,0.2826480034688482 0.4031908674720341,0.3588215019766419 0.47229904358255975,0.37672457744128574 0.48415636949663515,0.29992176846696683" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4390385347099801,0.40452632695740054 0.36895097455561127,0.38586290724689587 0.4031908674720341,0.3588215019766419 0.47229904358255975,0.37672457744128574 0.4390385347099801,0.40452632695740054" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.07141659254421617,0.18651899222456356 0.00640204201025504,0.17087846061543704 0.048078432825501984,0.1482174094714088 0.11232097915186176,0.16322035519445469 0.07141659254421617,0.18651899222456356" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3527546843850676,0.18651899222456356 0.28382386245463886,0.17087846061543707 0.3198260966218175,0.14821740947140885 0.3878252676375604,0.16322035519445477 0.3527546843850676,0.18651899222456356" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.33325165752448377,0.41405691188547256 0.26415512319996454,0.3951292540781838 0.2577541142100928,0.46881375179491985 0.3250643862035496,0.4882975751488979 0.33325165752448377,0.41405691188547256" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.24628609535496732,0.19450602928598826 0.17836459417397105,0.1786439152522523 0.17403977479215213,0.2576233599522711 0.24023156549038327,0.27419077910039097 0.24628609535496732,0.19450602928598826" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.20191274602326045,0.299921768466967 0.1348695653968237,0.2826480034688482 0.17403977479215213,0.2576233599522711 0.24023156549038327,0.27419077910039097 0.20191274602326045,0.299921768466967" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.13829300383746848,0.2026074311377986 0.17836459417397105,0.1786439152522523 0.17403977479215213,0.2576233599522711 0.1348695653968237,0.2826480034688482 0.13829300383746848,0.2026074311377986" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5296240811615669,0.1945060292859882 0.4577308260127208,0.1786439152522522 0.4466321931413061,0.2576233599522711 0.516604162957196,0.27419077910039097 0.5296240811615669,0.1945060292859882" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.48415636949663515,0.29992176846696683 0.4131718431997933,0.2826480034688482 0.4466321931413061,0.2576233599522711 0.516604162957196,0.27419077910039097 0.48415636949663515,0.29992176846696683" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.42365951969256205,0.20260743113779847 0.4577308260127208,0.1786439152522522 0.4466321931413061,0.2576233599522711 0.4131718431997933,0.2826480034688482 0.42365951969256205,0.20260743113779847" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.33325165752448377,0.41405691188547256 0.26415512319996454,0.3951292540781838 0.3007866854144148,0.36771162997731544 0.36895097455561127,0.38586290724689587 0.33325165752448377,0.41405691188547256" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2708821509677027,0.3176918277323324 0.30828500375104106,0.2912241577753261 0.3007866854144148,0.36771162997731544 0.26415512319996454,0.3951292540781838 0.2708821509677027,0.3176918277323324" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.5296240811615669,0.1945060292859882 0.4577308260127208,0.1786439152522522 0.4903988323356322,0.15566738828518864 0.5612456828990229,0.17087846061543702 0.5296240811615669,0.1945060292859882" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.24628609535496732,0.19450602928598826 0.17836459417397105,0.1786439152522523 0.21678574991660987,0.15566738828518867 0.28382386245463886,0.17087846061543707 0.24628609535496732,0.19450602928598826" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4043399140464168,0.4335301634272136 0.4390385347099801,0.40452632695740054 0.42832653657890263,0.4784886225289897 0.39426655379363634,0.5083290319994764 0.4043399140464168,0.4335301634272136" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.13829300383746848,0.2026074311377986 0.07141659254421617,0.18651899222456356 0.06967302507775722,0.26585002781138295 0.1348695653968237,0.2826480034688482 0.13829300383746848,0.2026074311377986" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.42365951969256205,0.20260743113779847 0.3527546843850676,0.18651899222456356 0.34414251780831584,0.265850027811383 0.4131718431997933,0.2826480034688482 0.42365951969256205,0.20260743113779847" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3161667316203235,0.21082567184272905 0.3527546843850676,0.18651899222456356 0.34414251780831584,0.265850027811383 0.30828500375104106,0.2912241577753261 0.3161667316203235,0.21082567184272905" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.2708821509677027,0.3176918277323324 0.20191274602326045,0.299921768466967 0.19696776257030527,0.3767245774412859 0.26415512319996454,0.3951292540781838 0.2708821509677027,0.3176918277323324" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.13829300383746848,0.2026074311377986 0.07141659254421617,0.18651899222456356 0.11232097915186176,0.16322035519445469 0.17836459417397105,0.1786439152522523 0.13829300383746848,0.2026074311377986" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.42365951969256205,0.20260743113779847 0.3527546843850676,0.18651899222456356 0.3878252676375604,0.16322035519445477 0.4577308260127208,0.1786439152522522 0.42365951969256205,0.20260743113779847" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4043399140464168,0.4335301634272136 0.33325165752448377,0.41405691188547256 0.3250643862035496,0.4882975751488979 0.39426655379363634,0.5083290319994764 0.4043399140464168,0.4335301634272136" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2071124165655537,0.21916329734397785 0.24628609535496732,0.19450602928598826 0.24023156549038327,0.27419077910039097 0.20191274602326045,0.299921768466967 0.2071124165655537,0.21916329734397785" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.3161667316203235,0.21082567184272905 0.24628609535496732,0.19450602928598826 0.24023156549038327,0.27419077910039097 0.30828500375104106,0.2912241577753261 0.3161667316203235,0.21082567184272905" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2708821509677027,0.3176918277323324 0.20191274602326045,0.299921768466967 0.24023156549038327,0.27419077910039097 0.30828500375104106,0.2912241577753261 0.2708821509677027,0.3176918277323324" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4966243967109512,0.21916329734397771 0.5296240811615669,0.1945060292859882 0.516604162957196,0.27419077910039097 0.48415636949663515,0.29992176846696683 0.4966243967109512,0.21916329734397771" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4043399140464168,0.4335301634272136 0.33325165752448377,0.41405691188547256 0.36895097455561127,0.38586290724689587 0.4390385347099801,0.40452632695740054 0.4043399140464168,0.4335301634272136" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3161667316203235,0.21082567184272905 0.24628609535496732,0.19450602928598826 0.28382386245463886,0.17087846061543707 0.3527546843850676,0.18651899222456356 0.3161667316203235,0.21082567184272905" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.2071124165655537,0.21916329734397785 0.13829300383746848,0.2026074311377986 0.1348695653968237,0.2826480034688482 0.20191274602326045,0.299921768466967 0.2071124165655537,0.21916329734397785" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.4966243967109512,0.21916329734397771 0.42365951969256205,0.20260743113779847 0.4131718431997933,0.2826480034688482 0.48415636949663515,0.29992176846696683 0.4966243967109512,0.21916329734397771" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.2071124165655537,0.21916329734397785 0.13829300383746848,0.2026074311377986 0.17836459417397105,0.1786439152522523 0.24628609535496732,0.19450602928598826 0.2071124165655537,0.21916329734397785" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4966243967109512,0.21916329734397771 0.42365951969256205,0.20260743113779847 0.4577308260127208,0.1786439152522522 0.5296240811615669,0.1945060292859882 0.4966243967109512,0.21916329734397771" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.27796075576522805,0.2362072618043303 0.3161667316203235,0.21082567184272905 0.30828500375104106,0.2912241577753261 0.2708821509677027,0.3176918277323324 0.27796075576522805,0.2362072618043303" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.414941511594851,0.3548089143323577 0.4503000678471266,0.32676970001565464 0.4390385347099801,0.40452632695740054 0.4043399140464168,0.4335301634272136 0.414941511594851,0.3548089143323577" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4621545366873743,0.24491907630588425 0.4966243967109512,0.21916329734397771 0.48415636949663515,0.29992176846696683 0.4503000678471266,0.32676970001565464 0.4621545366873743,0.24491907630588425" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.27796075576522805,0.2362072618043303 0.2071124165655537,0.21916329734397785 0.20191274602326045,0.299921768466967 0.2708821509677027,0.3176918277323324 0.27796075576522805,0.2362072618043303" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.414941511594851,0.3548089143323577 0.3418620039652947,0.3359798816227521 0.33325165752448377,0.41405691188547256 0.4043399140464168,0.4335301634272136 0.414941511594851,0.3548089143323577" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.27796075576522805,0.2362072618043303 0.2071124165655537,0.21916329734397785 0.24628609535496732,0.19450602928598826 0.3161667316203235,0.21082567184272905 0.27796075576522805,0.2362072618043303" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.4621545366873743,0.24491907630588425 0.388092507587851,0.22762292809479018 0.37827974817735543,0.30874343406085597 0.4503000678471266,0.32676970001565464 0.4621545366873743,0.24491907630588425" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.414941511594851,0.3548089143323577 0.3418620039652947,0.3359798816227521 0.37827974817735543,0.30874343406085597 0.4503000678471266,0.32676970001565464 0.414941511594851,0.3548089143323577" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3509290887403817,0.25376123255380134 0.388092507587851,0.22762292809479018 0.37827974817735543,0.30874343406085597 0.3418620039652947,0.3359798816227521 0.3509290887403817,0.25376123255380134" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.4621545366873743,0.24491907630588425 0.388092507587851,0.22762292809479018 0.42365951969256205,0.20260743113779847 0.4966243967109512,0.21916329734397771 0.4621545366873743,0.24491907630588425" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.3509290887403817,0.25376123255380134 0.27796075576522805,0.2362072618043303 0.2708821509677027,0.3176918277323324 0.3418620039652947,0.3359798816227521 0.3509290887403817,0.25376123255380134" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.3509290887403817,0.25376123255380134 0.27796075576522805,0.2362072618043303 0.3161667316203235,0.21082567184272905 0.388092507587851,0.22762292809479018 0.3509290887403817,0.25376123255380134" fill="#75c1ff" stroke="black" stroke-width="0.001" />
<polyline points="0.426114015584795,0.27184844864899904 0.4621545366873743,0.24491907630588425 0.4503000678471266,0.32676970001565464 0.414941511594851,0.3548089143323577 0.426114015584795,0.27184844864899904" fill="#ff824a" stroke="black" stroke-width="0.001" />
<polyline points="0.426114015584795,0.27184844864899904 0.3509290887403817,0.25376123255380134 0.3418620039652947,0.3359798816227521 0.414941511594851,0.3548089143323577 0.426114015584795,0.27184844864899904" fill="#6a1eb0" stroke="black" stroke-width="0.001" />
<polyline points="0.426114015584795,0.27184844864899904 0.3509290887403817,0.25376123255380134 0.388092507587851,0.22762292809479018 0.4621545366873743,0.24491907630588425 0.426114015584795,0.27184844864899904" fill="#75c1ff" stroke="black" stroke-width="0.001" />
</svg>
def xml(tag, _xml_tag_is_a_singleton=True, **options):
s = f'<{tag}'
kw_attrib = lambda x: x.replace('_', '-')
if options:
s += ' '
s += ' '.join(f'{kw_attrib(k)}="{str(v)}"' for k, v in options.items())
if _xml_tag_is_a_singleton:
s += ' />'
else:
s += '>'
print(s)
def xml_open(*args, **kwargs):
xml(*args, **kwargs, _xml_tag_is_a_singleton=False)
def xml_close(tag):
print(f'</{tag}>')
def svg_header():
'<?xml version="1.0" encoding="UTF-8" standalone="no"?>'
def svg_open(width, height, x_bias, y_bias, xw, yh, **opts):
vb = f'{x_bias} {y_bias} {xw} {yh}'
ns = 'http://www.w3.org/2000/svg'
xml_open('svg', width=width, height=height, viewBox=vb, xmlns=ns, **opts)
def svg_close():
xml_close('svg')
def svg_poly(*points, **opts):
point_str = ' '.join(f'{x},{y}' for x, y in points)
xml('polyline', points=point_str, **opts)
def svg_polygon(*points, **opts):
point_str = ' '.join(f'{x},{y}' for x, y in points)
xml('polygon', points=point_str, **opts)
def svg_circle(point, radius, **opts):
xml('circle', cx=point[0], cy=point[1], r=radius, **opts)
def svg_line(p1, p2, **opts):
xml('line', x1=p1[0], y1=p1[1], x2=p2[0], y2=p2[1], **opts)
def svg_rect(p, width, height, x_radius=0, y_radius=0, **opts):
xml('rect', x=p[0], y=p[1], width=width, height=height,
rx=x_radius, ry=y_radius, **opts)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment