[gcompris: 62/111] added the click and drag feature swapped increase/decrease buttons added instructions



commit 8d87350882b82f231ddff92ef400af5414d6a69a
Author: serah <serah4291 gmail com>
Date:   Tue Jul 17 00:03:54 2012 +0530

    added the click and drag feature
    swapped increase/decrease buttons
    added instructions

 .../place_your_satellite.py                        |  119 +-
 .../resources/place_your_satellite/background.jpg  |  Bin 0 -> 12809 bytes
 .../resources/place_your_satellite/background.svg  |27578 ++++++++++++++++++++
 .../resources/place_your_satellite/earth.png       |  Bin 20005 -> 10260 bytes
 4 files changed, 27670 insertions(+), 27 deletions(-)
---
diff --git a/src/place_your_satellite-activity/place_your_satellite.py b/src/place_your_satellite-activity/place_your_satellite.py
index e765d18..58316f4 100644
--- a/src/place_your_satellite-activity/place_your_satellite.py
+++ b/src/place_your_satellite-activity/place_your_satellite.py
@@ -24,6 +24,7 @@ import gcompris.skin
 import gcompris.bonus
 import goocanvas
 import pango
+import cairo
 import math
 import gobject
 
@@ -41,8 +42,6 @@ class Gcompris_place_your_satellite:
     # Needed to get key_press
     gcomprisBoard.disable_im_context = True
 
-    self.game_complete = False
-
   def start(self):
     # Create our rootitem. We put each canvas item in it so at the end we
     # only have to kill it. The canvas deletes all the items it contains
@@ -50,9 +49,9 @@ class Gcompris_place_your_satellite:
     self.rootitem = goocanvas.Group(parent =
                                     self.gcomprisBoard.canvas.get_root_item())
 
-    background = goocanvas.Image(
+    self.background = goocanvas.Image(
       parent = self.rootitem,
-      pixbuf = gcompris.utils.load_pixmap("place_your_satellite/background.png"),
+      pixbuf = gcompris.utils.load_pixmap("place_your_satellite/background.jpg"),
       x = 1,
       y = 1)
 
@@ -62,11 +61,11 @@ class Gcompris_place_your_satellite:
       x = gcompris.BOARD_WIDTH/2 - 50,
       y = gcompris.BOARD_HEIGHT/2 - 50)
 
-    satellite = Satellite(self, self.rootitem)
-    speed = Speed(satellite, self.rootitem)
-    mass = Mass(self, satellite, self.rootitem)
+    self.instructions()
+    self.satellite = Satellite(self, self.rootitem)
+    speed = Speed(self.satellite, self.rootitem)
+    mass = Mass(self, self.satellite, self.rootitem)
 
-    background.connect("button_press_event", satellite.load_satellite)
 
     # Set the buttons we want in the bar
     gcompris.bar_set(gcompris.BAR_REPEAT)
@@ -97,7 +96,7 @@ class Gcompris_place_your_satellite:
 
   def pause(self, pause):
     self.board_paused = pause
-    if pause == False and self.game_complete:
+    if pause == False:
       self.game_complete = False
       self.end()
       self.start()
@@ -106,8 +105,41 @@ class Gcompris_place_your_satellite:
   def set_level(self, level):
     pass
 
-  def crash(self):
-    self.game_complete = True
+  def instructions(self):
+    # Ready button
+    self.text = goocanvas.Text(
+      parent = self.rootitem,
+      x = 384,
+      y = 203,
+      fill_color = "white",
+      anchor = gtk.ANCHOR_CENTER,
+      alignment = pango.ALIGN_CENTER,
+      text = _('1. Click anywhere on the screen to place the satellite'
+               '\n at the required distance from the sun '
+               '\n 2. Click on the satellite and drag the line to set'
+               '\n the speed of the satellite'))
+    self.text.connect('button_press_event', self.ready_event)
+    bounds = self.text.get_bounds()
+    gap = 20
+
+    self.text_back = goocanvas.Rect(
+      parent = self.rootitem,
+      radius_x = 6,
+      radius_y = 6,
+      x = bounds.x1 - gap,
+      y = bounds.y1 - gap,
+      width = bounds.x2 - bounds.x1 + gap * 2,
+      height = bounds.y2 - bounds.y1 + gap * 2,
+      stroke_color_rgba = 0xFFFFFFFFL,
+      fill_color_rgba = 0xCCCCCC44L)
+    gcompris.utils.item_focus_init(self.text_back, None)
+    gcompris.utils.item_focus_init(self.text, self.text_back)
+    self.text_back.connect('button_press_event', self.ready_event)
+
+  def ready_event(self, widget, target, event):
+    self.text_back.props.visibility = goocanvas.ITEM_INVISIBLE
+    self.text.props.visibility = goocanvas.ITEM_INVISIBLE
+    self.background.connect("button_press_event", self.satellite.load_satellite)
 
 class Satellite:
   """Satellite simulation"""
@@ -119,6 +151,39 @@ class Satellite:
     self.game = game
     self.angle = 0
     self.mass = 800
+    self.line_length = 0
+
+  def start_event(self, widget, target, event=None):
+    if event.type == gtk.gdk.BUTTON_PRESS:
+      if event.button == 1:
+        bounds = widget.get_bounds()
+        self.pos_x = (bounds.x1+bounds.x2)/2
+        self.pos_y = (bounds.y1+bounds.y2)/2
+        self.line =goocanvas.Polyline(
+          parent = self.rootitem,
+          points = goocanvas.Points([(self.pos_x, self.pos_y),
+                                     (event.x, event.y)]),
+          fill_color = 'blue',
+          line_cap = cairo.LINE_CAP_ROUND,
+          line_width = 2.0
+          )
+        return True
+
+    if event.type == gtk.gdk.MOTION_NOTIFY:
+      if event.state & gtk.gdk.BUTTON1_MASK:
+        self.line.set_properties(
+          points = goocanvas.Points([(self.pos_x, self.pos_y),
+                                     (event.x, event.y)])
+          )
+        self.line_length = math.sqrt((((self.pos_x - event.x)**2)) + ((self.pos_y - event.y)**2))
+
+    if event.type == gtk.gdk.BUTTON_RELEASE:
+      if event.button == 1:
+        revolution_direction = self.pos_x - event.x
+        self.initiate_movement(revolution_direction / abs(revolution_direction))
+        self.line.remove()
+        return True
+    return False
 
   def load_satellite(self, a, b, event=None):
     if self.satellite_exists == False:
@@ -129,13 +194,16 @@ class Satellite:
         pixbuf = gcompris.utils.load_pixmap("place_your_satellite/satellite.png"),
         x = x,
         y = y)
-
       self.satellite_exists = True
-      self.initiate_movement()
+      self.satellite.connect('button_press_event',self.start_event)
+      self.satellite.connect('button_release_event',self.start_event)
+      self.satellite.connect('motion_notify_event',self.start_event)
       return False
 
-  def initiate_movement(self):
+  def initiate_movement(self, direction):
     # Calculate distance and set speed
+    self.revolution_direction = direction
+    print self.revolution_direction
     earth_bounds = self.game.earth.get_bounds()
     earth_x = (earth_bounds.x1 + earth_bounds.x2)/2
     earth_y = (earth_bounds.y1 + earth_bounds.y2)/2
@@ -144,7 +212,7 @@ class Satellite:
     satellite_y = (satellite_bounds.y1 + satellite_bounds.y2)/2
     self.distance = math.sqrt(((earth_x - satellite_x)**2) + ((earth_y - satellite_y)**2))
     self.orbital_speed = math.sqrt(self.mass/self.distance)
-    self.speed = self.orbital_speed
+    self.speed = self.line_length/20
     gobject.timeout_add(30, self.calculate, earth_x - 20, earth_y -20)
 
   def calculate(self, x_center, y_center):
@@ -164,16 +232,16 @@ class Satellite:
     self.angle += self.speed
     radian = self.angle * (math.pi/180)
     x_circle = x_center + math.cos(radian) * self.distance
-    y_circle = y_center - math.sin(radian) * self.distance
+    y_circle = y_center - self.revolution_direction * math.sin(radian) * self.distance
     gcompris.utils.item_absolute_move(self.satellite, int(x_circle), int(y_circle))
     return True
 
   def crash(self, x_center, y_center):
-    if self.distance > 75 + (self.mass * 0.01):
+    if self.distance > 52 + (self.mass * 0.01):
       self.angle += self.speed + 2
       radian = self.angle * (math.pi/180)
       x_circle = x_center + math.cos(radian) * self.distance
-      y_circle = y_center - math.sin(radian) * self.distance
+      y_circle = y_center - self.revolution_direction * math.sin(radian) * self.distance
       gcompris.utils.item_absolute_move(self.satellite, int(x_circle), int(y_circle))
       self.distance -=3
       return True
@@ -190,14 +258,12 @@ class Satellite:
       x = bounds.x1,
       y = bounds.y1)
 
-    self.game.crash()
-
   def fly_off(self, x_center, y_center):
     if self.distance < 500:
       self.angle += self.speed
       radian = self.angle * (math.pi / 180)
       x_circle = x_center + math.cos(radian) * self.distance
-      y_circle = y_center - math.sin(radian) * self.distance
+      y_circle = y_center - self.revolution_direction * math.sin(radian) * self.distance
       gcompris.utils.item_absolute_move(self.satellite, int(x_circle), int(y_circle))
       self.distance +=5
       return True
@@ -232,7 +298,6 @@ class Speed:
 
   def __init__(self,satellite_instance, rootitem):
     self.rootitem = rootitem
-    self.speed_change = 0
     self.satellite_instance = satellite_instance
 
     self.length = 130
@@ -274,8 +339,8 @@ class Speed:
     # This is the relative position of the scale from 0 to 1
     # 0 is the bottom
     self.scale_value = 0.5
-    self.speed_button(650, 500, self.button_width, '+', 0.1)
-    self.speed_button(780, 500, self.button_width, '-', -0.1)
+    self.speed_button(650, 500, self.button_width, '-', -0.1)
+    self.speed_button(780, 500, self.button_width, '+', 0.1)
 
   def speed_button(self, x, y, size, text, move):
     button = goocanvas.Rect(
@@ -317,7 +382,7 @@ class Speed:
       self.scale_value = 0.0
       return
 
-    self.bar.translate(move * -2.5 * self.length / 4.0, 0);
+    self.bar.translate(move * 2.5 * self.length / 4.0, 0);
     self.set_speed(move)
 
   def set_speed(self, change):
@@ -369,8 +434,8 @@ class Mass:
 
     self.scale_value = 0.5
     self.scale_earth(self.scale_value)
-    self.speed_button(650, 400, self.button_width, '+', 0.1)
-    self.speed_button(780, 400, self.button_width, '-', -0.1)
+    self.speed_button(650, 400, self.button_width, '-', -0.1)
+    self.speed_button(780, 400, self.button_width, '+', 0.1)
 
   def speed_button(self, x, y, size, text, move):
     button = goocanvas.Rect(
diff --git a/src/place_your_satellite-activity/resources/place_your_satellite/background.jpg b/src/place_your_satellite-activity/resources/place_your_satellite/background.jpg
new file mode 100644
index 0000000..373e0ea
Binary files /dev/null and b/src/place_your_satellite-activity/resources/place_your_satellite/background.jpg differ
diff --git a/src/place_your_satellite-activity/resources/place_your_satellite/background.svg b/src/place_your_satellite-activity/resources/place_your_satellite/background.svg
new file mode 100644
index 0000000..00a549c
--- /dev/null
+++ b/src/place_your_satellite-activity/resources/place_your_satellite/background.svg
@@ -0,0 +1,27578 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="990"
+   height="808"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.1 r9760"
+   sodipodi:docname="night_sky.svg">
+  <defs
+     id="defs4" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.7514706"
+     inkscape:cx="732.12815"
+     inkscape:cy="347.62168"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1366"
+     inkscape:window-height="744"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     height="766px" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-244.36218)">
+    <rect
+       style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.806934;stroke-opacity:1"
+       id="rect2987"
+       width="1494.8842"
+       height="1747.0841"
+       x="-1710.7831"
+       y="-250.87379"
+       transform="matrix(-0.00201564,-0.99999797,0.99999552,-0.00299231,0,0)" />
+    <path
+       sodipodi:type="star"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path3777"
+       sodipodi:sides="6"
+       sodipodi:cx="13.637059"
+       sodipodi:cy="7.6119108"
+       sodipodi:r1="32.607018"
+       sodipodi:r2="5.8181429"
+       sodipodi:arg1="0.60089126"
+       sodipodi:arg2="1.12449"
+       inkscape:flatsided="false"
+       inkscape:rounded="0"
+       inkscape:randomized="0"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       transform="matrix(-9.1584411e-5,-0.04542906,0.0338842,-1.0140077e-4,-226.17953,1615.7617)" />
+    <use
+       id="use3779"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99987902,0.01895178,-0.012766,0.99987902,212.07991,-741.39707)" />
+    <use
+       id="use3781"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99962116,0.03353501,-0.02258934,0.99962116,434.01526,-896.02405)" />
+    <use
+       id="use3783"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99995048,-0.01212514,0.00816756,0.99995048,350.97173,-815.03303)" />
+    <use
+       id="use3785"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.9999137,-0.01600728,0.01078259,0.9999137,343.30345,-841.72454)" />
+    <use
+       id="use3787"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99998243,0.00722363,-0.00486588,0.99998243,641.13814,-741.18524)" />
+    <use
+       id="use3789"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99999628,-0.00332365,0.00223882,0.99999628,857.82068,-951.11386)" />
+    <use
+       id="use3791"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99993943,-0.0134097,0.00903285,0.99993943,846.15388,-1086.3631)" />
+    <use
+       id="use3793"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.9997471,0.02740035,-0.01845699,0.9997471,976.15422,-1120.8851)" />
+    <use
+       id="use3795"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99997809,0.00806506,-0.00543267,0.99997809,757.95021,-1021.6343)" />
+    <use
+       id="use3797"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99952613,0.03750505,-0.02526356,0.99952613,787.13259,-1059.5215)" />
+    <use
+       id="use3799"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99982931,0.02251143,-0.01516381,0.99982931,406.42667,-1047.7786)" />
+    <use
+       id="use3801"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99983126,0.02238228,-0.01507681,0.99983126,502.38355,-887.19884)" />
+    <use
+       id="use3803"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99954458,-0.03676774,0.0247669,0.99954458,505.98617,-850.68491)" />
+    <use
+       id="use3805"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99990532,-0.01676601,0.01129368,0.99990532,842.26457,-1146.5229)" />
+    <use
+       id="use3807"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99999678,-0.00309056,0.00208183,0.99999678,607.55176,-642.20485)" />
+    <use
+       id="use3809"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99970973,0.02935511,-0.01977374,0.99970973,542.75449,-651.88995)" />
+    <use
+       id="use3811"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99999936,-0.001378,9.2822776e-4,0.99999936,539.44058,-669.8259)" />
+    <use
+       id="use3813"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99987122,-0.01955373,0.01317148,0.99987122,434.34999,-711.45774)" />
+    <use
+       id="use3815"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99993936,0.01341749,-0.00903808,0.99993936,414.65898,-713.00617)" />
+    <use
+       id="use3817"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99975558,-0.02693753,0.01814524,0.99975558,709.39183,-182.6389)" />
+    <use
+       id="use3819"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99990137,0.01711193,-0.01152666,0.99990137,742.38373,-292.3238)" />
+    <use
+       id="use3821"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99978222,-0.02542709,0.01712781,0.99978222,754.45468,-147.69554)" />
+    <use
+       id="use3823"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99974302,0.02762088,-0.01860554,0.99974302,744.94128,-178.35815)" />
+    <use
+       id="use3825"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99998133,0.00744531,-0.00501519,0.99998133,760.22958,-298.55535)" />
+    <use
+       id="use3827"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.9997143,-0.02912321,0.01961753,0.9997143,682.31472,-242.14638)" />
+    <use
+       id="use3829"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99997155,-0.00919044,0.00619072,0.99997155,593.049,-515.25008)" />
+    <use
+       id="use3831"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99973351,0.02812703,-0.01894649,0.99973351,652.45372,-457.33961)" />
+    <use
+       id="use3833"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99960179,-0.03438159,0.02315961,0.99960179,676.67113,-349.11413)" />
+    <use
+       id="use3835"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99999728,-0.00284203,0.00191442,0.99999728,713.02575,-555.16123)" />
+    <use
+       id="use3837"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99964977,-0.03224402,0.02171973,0.99964977,529.09327,-476.50065)" />
+    <use
+       id="use3839"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99978794,0.02509075,-0.01690127,0.99978794,696.72231,-572.17734)" />
+    <use
+       id="use3841"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99996934,0.0095411,-0.00642692,0.99996934,522.93104,-613.45765)" />
+    <use
+       id="use3843"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99970688,0.02949849,-0.0198703,0.99970688,526.84745,-582.06673)" />
+    <use
+       id="use3845"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99996002,0.01089519,-0.00733905,0.99996002,486.58436,-689.3167)" />
+    <use
+       id="use3847"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99976359,-0.02649233,0.01784536,0.99976359,465.30309,-806.58865)" />
+    <use
+       id="use3849"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99996176,0.01065585,-0.00717782,0.99996176,505.13525,-732.28195)" />
+    <use
+       id="use3851"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99957064,0.03570066,-0.02404814,0.99957064,574.69923,-767.47664)" />
+    <use
+       id="use3853"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99983593,0.02207006,-0.01486648,0.99983593,595.41006,-752.21924)" />
+    <use
+       id="use3855"
+       xlink:href="#path3777"
+       x="0"
+       y="0"
+       width="744.09448"
+       height="1052.3622"
+       transform="matrix(0.99992813,0.01460733,-0.00983957,0.99992813,571.7088,-710.96737)" />
+    <path
+       transform="matrix(-6.5845834e-5,-0.04542914,0.03388429,-7.2892795e-5,-97.521246,976.86327)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3857"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.1851008e-4,-0.04542484,0.03388104,5.7410053e-4,-89.113943,1001.1989)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3859"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00125848,-0.04540332,0.03386499,-0.00139349,21.709133,1160.7169)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3861"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.4169705e-4,-0.045426,0.03388194,4.8906387e-4,194.23253,1258.3541)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3863"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.4734366e-4,-0.04542721,0.03388286,-3.8463699e-4,72.926734,1163.4731)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3865"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.5709348e-5,-0.04542901,0.03388421,1.0600058e-4,171.23274,1147.3434)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3867"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.8954624e-4,-0.04542862,0.03388387,2.099049e-4,208.20184,1098.5531)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3869"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00121023,-0.04540528,0.03386645,-0.00134007,159.05758,1159.2114)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3871"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.6385293e-4,-0.045424,0.03388045,6.2433945e-4,110.34969,1116.6502)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3873"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.0803633e-4,-0.04542846,0.03388378,2.3037928e-4,34.966405,732.66873)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3875"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.001126,-0.04540846,0.03386888,-0.00124683,183.79057,810.38199)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3877"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.4099851e-4,-0.04542889,0.03388409,1.5609459e-4,192.40981,794.40784)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3879"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.1381203e-5,-0.04542912,0.03388422,7.9033516e-5,760.117,1050.19)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3881"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.6840058e-4,-0.04542803,0.03388344,2.9719678e-4,-119.40402,1313.04)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3883"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.9278176e-5,-0.04542901,0.0338842,-1.0990765e-4,-111.91871,1357.0181)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3885"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.84496e-4,-0.04542678,0.03388252,4.257696e-4,-127.38094,1348.0005)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3887"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.3414031e-5,-0.04542912,0.03388418,1.0341741e-4,-156.05285,1272.4078)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3889"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.9950706e-4,-0.04542514,0.03388129,5.5307936e-4,-137.10028,1326.098)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3891"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.2203472e-4,-0.04541815,0.03387609,9.1022837e-4,-157.5464,1536.2664)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3893"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.3311783e-4,-0.04542832,0.03388366,-2.581159e-4,-138.64899,1559.2334)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3895"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00118445,-0.04540629,0.03386723,-0.00131153,-46.08174,1454.9573)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3897"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00102285,-0.04541208,0.03387152,-0.00113256,-46.611167,1462.8474)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3899"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.8517291e-4,-0.04542867,0.03388387,-2.0504188e-4,-26.690573,1433.2498)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3901"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.5661483e-5,-0.04542914,0.03388422,8.3761404e-5,-79.17692,1390.2066)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3903"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00109662,-0.04540954,0.03386966,-0.00121423,-19.781889,1537.1677)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3905"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.8038973e-4,-0.04542543,0.0338815,5.318807e-4,55.774182,1542.2732)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3907"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.3744068e-4,-0.04542828,0.03388363,2.6289417e-4,68.80243,1540.9736)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3909"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.8959616e-4,-0.04542863,0.03388387,-2.0995334e-4,34.21657,1468.5415)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3911"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.5329339e-4,-0.04542719,0.03388278,-3.912335e-4,54.281725,1432.4214)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3913"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.9952823e-4,-0.04542851,0.03388384,2.2092963e-4,79.667812,1460.5147)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3915"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.2366333e-4,-0.04542284,0.03387957,-6.9059074e-4,104.6176,1438.4231)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3917"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00107762,-0.0454102,0.03387017,0.00119324,131.11246,1450.8625)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3919"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.8629587e-4,-0.04542676,0.03388251,4.2776362e-4,-41.525868,1261.895)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3921"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.8140081e-4,-0.0454279,0.03388335,-3.1159501e-4,56.849691,1287.5889)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3923"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.41435e-4,-0.04542439,0.03388075,-5.9950016e-4,25.803101,1243.2857)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3925"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00125282,-0.04540351,0.03386517,-0.00138723,-77.656472,1112.7883)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3927"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00117869,-0.04540652,0.03386737,-0.00130515,-137.01328,1118.2523)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3929"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.7832299e-4,-0.04542376,0.03388023,-6.4036249e-4,-146.83847,1119.3018)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3931"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00105534,-0.04541098,0.03387073,-0.00116856,-170.83569,1047.9869)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3933"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00107444,-0.04541034,0.03387022,0.00118972,-164.7006,1217.8619)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3935"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.879161e-4,-0.04542673,0.03388248,4.2955783e-4,-156.89035,1209.752)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3937"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.903108e-4,-0.04542863,0.03388387,-2.107615e-4,-173.12649,1054.4637)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3939"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.8019786e-5,-0.04542916,0.03388429,5.3130314e-5,-193.41321,889.97269)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3941"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.3596939e-4,-0.04541775,0.03387579,9.2567115e-4,-133.29504,844.76547)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3943"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.7709754e-4,-0.04542868,0.03388393,-1.9609996e-4,-70.408944,900.87513)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3945"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00104123,-0.04541149,0.03387111,0.00115293,-70.614233,934.5848)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3947"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.9288916e-5,-0.04542919,0.0338843,4.3527039e-5,-84.323542,896.48382)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3949"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.7005413e-4,-0.04542799,0.03388344,2.9903696e-4,-200.22989,551.81754)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3951"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.4749975e-4,-0.04542432,0.03388066,6.0626991e-4,-172.81406,547.95031)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3953"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.072888e-4,-0.045429,0.0338842,-1.1878087e-4,-177.1052,515.08718)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3955"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.1936187e-4,-0.04542293,0.03387963,-6.8579417e-4,-118.07472,567.97423)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3957"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.1127855e-4,-0.04541845,0.0338763,-8.9831378e-4,-65.430501,564.35767)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3959"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.3269652e-4,-0.04541496,0.03387369,-0.00103275,-73.006645,526.20158)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3961"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.1529662e-4,-0.04542897,0.03388413,-1.276825e-4,-124.4088,507.57477)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3963"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.4240994e-4,-0.0454273,0.03388287,-3.7914557e-4,-134.68425,736.14976)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3965"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.6609725e-4,-0.04541693,0.03387516,9.5900924e-4,-98.270654,764.41503)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3967"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.0814973e-4,-0.04541851,0.03387634,8.9486758e-4,-117.39669,763.17881)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3969"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.9031967e-5,-0.04542908,0.03388422,8.7523286e-5,-150.32457,761.68256)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3971"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.9976534e-4,-0.04541285,0.03387211,-0.00110702,-112.10334,775.62642)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3973"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.0526234e-4,-0.04542107,0.03387825,7.8095896e-4,-41.157725,610.69825)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3975"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.5644575e-5,-0.04542901,0.03388422,1.0591824e-4,-14.655923,559.53873)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3977"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00111128,-0.04540902,0.03386927,-0.00123048,9.4172172,556.28033)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3979"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.2940262e-4,-0.0454227,0.03387948,-6.9694187e-4,38.326522,614.91265)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3981"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.3916599e-4,-0.04541474,0.03387358,0.00103993,18.826118,629.46263)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3983"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.5826847e-5,-0.04542912,0.03388429,-7.2873053e-5,20.475528,624.92683)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3985"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.6195407e-4,-0.04541969,0.03387723,-8.4371585e-4,-102.93024,667.75692)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3987"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.5492216e-4,-0.0454258,0.03388177,5.0374157e-4,-151.61396,654.06907)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3989"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.870492e-4,-0.0454133,0.03387244,0.00109293,-136.41601,630.86322)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3991"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.8870766e-6,-0.04542919,0.03388433,-6.5268009e-6,-122.58678,652.41069)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3993"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.9318052e-4,-0.04542132,0.03387846,7.6753332e-4,45.904149,982.30383)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3995"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.647249e-4,-0.04542874,0.03388396,1.824138e-4,63.561281,951.81622)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3997"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.8857071e-4,-0.04542673,0.03388245,4.3025674e-4,-32.791507,1109.1581)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path3999"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.432427e-4,-0.04541463,0.03387348,0.00104444,0.88196643,1113.2594)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4001"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.7017847e-4,-0.04542389,0.03388036,-6.3135267e-4,2.4041761,1115.7604)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4003"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.2042492e-4,-0.04542074,0.03387796,-7.977255e-4,-36.685591,1150.4582)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4005"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.2693539e-4,-0.04542835,0.03388367,2.5126028e-4,0.52530729,1109.9245)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4007"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.9476969e-5,-0.04542922,0.03388431,-2.1582007e-5,82.823477,1091.8048)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4009"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.3557548e-4,-0.04542828,0.03388363,2.6085146e-4,119.57299,1085.6853)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4011"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.5303002e-4,-0.04542719,0.0338828,-3.9087057e-4,116.63371,1056.0989)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4013"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.498805e-4,-0.04542589,0.03388185,4.9811773e-4,165.22814,930.92553)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4015"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.9946584e-5,-0.04542916,0.0338843,6.6387414e-5,159.75666,915.41756)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4017"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.126359e-4,-0.04541556,0.03387415,0.00101054,-81.72926,1557.841)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4019"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.3810303e-4,-0.04542889,0.0338841,1.5291786e-4,-133.38712,1515.0592)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4021"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.957118e-4,-0.04542517,0.0338813,-5.4888433e-4,-122.39765,1416.795)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4023"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.9595483e-4,-0.04542338,0.03387999,-6.5987827e-4,-141.08186,1414.3675)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4025"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.6646269e-4,-0.04541961,0.03387715,8.4868336e-4,-178.0357,1415.4263)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4027"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.4591219e-4,-0.04542434,0.03388066,6.044956e-4,-188.1405,1436.9689)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4029"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.406563e-4,-0.04542603,0.03388194,-4.879556e-4,-191.89595,1504.6259)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4031"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.8769768e-4,-0.04542354,0.0338801,-6.5076041e-4,-166.8853,1534.1187)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4033"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.2925543e-4,-0.04542273,0.03387947,-6.9675571e-4,-166.08806,1563.9638)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4035"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.4286131e-4,-0.04542825,0.03388359,-2.6893663e-4,-133.37319,1620.2759)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4037"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.3203239e-4,-0.04542046,0.03387777,-8.1055901e-4,-122.98265,1559.5892)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4039"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.9312558e-4,-0.04541889,0.03387664,-8.7821612e-4,-120.06909,1604.1631)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4041"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.5753361e-5,-0.04542916,0.03388424,7.2782924e-5,-46.082727,1577.649)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4043"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.3898833e-4,-0.04542446,0.03388078,5.9677662e-4,8.7671263,1613.7311)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4045"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.8374188e-4,-0.04542364,0.03388018,6.4635884e-4,-61.71815,1309.7351)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4047"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.5666539e-4,-0.04542813,0.03388352,-2.8420047e-4,-23.411457,1320.6958)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4049"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.1662281e-4,-0.04542635,0.03388219,4.6134423e-4,5.8678639,1351.1925)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4051"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.6873333e-4,-0.04541956,0.03387713,-8.5116769e-4,34.632753,1399.2757)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4053"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.3570654e-4,-0.04542889,0.0338841,-1.5027177e-4,55.283283,1371.0323)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4055"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.7464253e-4,-0.04542551,0.03388159,-5.255543e-4,49.352258,1405.1381)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4057"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.2452988e-4,-0.04542838,0.03388369,2.4863087e-4,12.268881,1351.0125)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4059"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.753154e-4,-0.04542551,0.03388153,5.2627756e-4,148.88587,1372.8249)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4061"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.0017447e-4,-0.04541594,0.03387444,9.9675728e-4,-228.11075,357.78761)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4063"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.1749226e-5,-0.04542917,0.0338843,-4.6256818e-5,-214.40865,233.92214)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4065"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.9317908e-4,-0.04541891,0.03387663,-8.7825477e-4,-232.28945,186.33054)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4067"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.9438527e-4,-0.04541888,0.03387663,-8.7960686e-4,-199.50205,181.04673)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4069"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00107665,-0.04541027,0.03387017,0.00119215,-174.84514,269.63072)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4071"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.1613351e-4,-0.04541831,0.03387621,-9.0369288e-4,-144.73758,394.91591)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4073"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.4648825e-4,-0.04541453,0.03387338,-0.00104804,-154.03685,437.45164)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4075"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.9745383e-4,-0.04542775,0.03388321,-3.2935367e-4,-180.55136,406.61924)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4077"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.2355442e-4,-0.04542284,0.03387957,6.9047887e-4,-149.47633,442.71196)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4079"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.3636137e-4,-0.04541777,0.03387579,9.2606993e-4,-155.1454,432.26122)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4081"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00104555,-0.04541135,0.03387098,0.00115773,-158.9306,445.37702)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4083"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.7714145e-4,-0.04542546,0.03388154,-5.2831759e-4,-143.93773,435.47644)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4085"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.3184659e-4,-0.0454274,0.03388297,3.6744493e-4,-123.86874,432.37461)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4087"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00123872,-0.04540411,0.03386561,-0.00137161,-137.46666,376.54375)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4089"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.6930086e-4,-0.045428,0.03388344,2.9818592e-4,-157.31083,331.53345)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4091"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.1201287e-4,-0.04542491,0.03388112,5.6694036e-4,-145.73489,309.11186)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4093"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.4599748e-4,-0.04542008,0.03387752,8.2604142e-4,-35.912017,464.03999)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4095"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.1303062e-5,-0.04542908,0.03388421,-9.0042242e-5,-84.882904,283.93175)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4097"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.768888e-4,-0.04541666,0.03387495,9.7097897e-4,66.569505,422.77768)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4099"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0010124,-0.04541244,0.03387182,-0.001121,40.582135,399.72535)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4101"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.5834721e-4,-0.0454241,0.03388052,-6.1823011e-4,39.413619,391.66305)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4103"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.7866452e-7,-0.04542921,0.03388433,1.0921923e-6,44.044595,376.12946)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4105"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00125848,-0.04540332,0.03386499,-0.00139349,67.056497,353.57812)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4107"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.877805e-4,-0.04541905,0.03387673,8.7226464e-4,49.870077,366.6821)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4109"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00100322,-0.04541279,0.03387206,-0.00111084,66.417015,329.86599)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4111"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.5247875e-4,-0.04542717,0.03388278,-3.9030352e-4,5.8034593,377.12696)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4113"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.0960268e-4,-0.04542898,0.03388417,1.2137313e-4,-42.212846,409.90999)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4115"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.274856e-4,-0.04542743,0.03388302,-3.626412e-4,-30.326314,392.06835)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4117"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.4809361e-4,-0.0454282,0.03388355,2.7473125e-4,-70.031222,247.78974)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4119"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.3152613e-4,-0.04542889,0.0338841,1.4563947e-4,29.379082,269.09739)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4121"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.3500543e-5,-0.04542921,0.0338843,-1.4928232e-5,48.036073,270.62815)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4123"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.2499752e-4,-0.04541807,0.03387601,9.1350079e-4,-105.0255,233.23973)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4125"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.760197e-4,-0.04542549,0.03388153,5.2709507e-4,-99.452573,275.78784)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4127"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00113894,-0.04540801,0.0338685,-0.00126112,-34.417337,298.70105)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4129"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.1191487e-6,-0.04542921,0.0338843,7.8900933e-6,-2.1204537,196.11535)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4131"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00117287,-0.04540676,0.03386757,-0.00129868,33.345925,224.93576)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4133"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.9856648e-4,-0.04542123,0.03387834,7.7349869e-4,-39.477176,357.71261)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4135"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.3039749e-4,-0.04542272,0.03387946,-6.9804859e-4,-64.752958,556.60184)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4137"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.2773701e-4,-0.04542835,0.03388367,2.5217054e-4,-60.767159,618.81834)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4139"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.172416e-4,-0.04541547,0.03387407,-0.00101562,-28.762608,606.24149)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4141"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.4130776e-4,-0.04542023,0.0338776,-8.2081204e-4,-31.800252,782.15042)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4143"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.7167447e-4,-0.0454218,0.03387881,-7.4375569e-4,-57.183374,844.64062)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4145"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.9875384e-4,-0.04542333,0.03387998,6.6297249e-4,-30.209179,790.34584)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4147"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.7657632e-4,-0.04542546,0.03388153,5.2771276e-4,-44.957229,745.22391)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4149"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.0927937e-4,-0.04542495,0.03388116,5.6388927e-4,86.797807,858.84379)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4151"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0012021,-0.04540557,0.03386668,-0.00133108,14.205555,702.75351)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4153"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.7215309e-4,-0.0454287,0.03388393,1.9060921e-4,54.742057,642.31379)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4155"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.1587159e-4,-0.04542083,0.03387807,7.9266755e-4,71.000996,541.82223)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4157"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.3616638e-4,-0.0454226,0.03387936,-7.0441604e-4,39.971143,473.34785)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4159"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.7248602e-4,-0.04541375,0.03387279,-0.00107684,110.50215,629.90939)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4161"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00115494,-0.04540738,0.03386806,-0.00127886,84.681967,627.73112)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4163"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.8543675e-4,-0.0454215,0.03387858,7.5899682e-4,120.53607,475.81357)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4165"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.6141676e-5,-0.04542906,0.03388421,1.0642609e-4,61.964847,257.99846)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4167"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00105005,-0.04541119,0.03387088,0.00116271,94.210226,238.32591)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4169"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.0944378e-4,-0.04542764,0.03388312,3.4263956e-4,84.021235,258.15123)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4171"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.9504922e-4,-0.04541888,0.03387661,-8.8035063e-4,130.86166,302.67959)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4173"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00119974,-0.04540568,0.03386675,-0.00132845,123.89271,347.11759)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4175"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.3244012e-4,-0.0454246,0.03388086,5.8955675e-4,268.96373,606.06236)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4177"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00115377,-0.04540744,0.03386808,-0.00127755,210.78592,464.4631)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4179"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.1518628e-4,-0.04542843,0.03388375,-2.3830697e-4,233.84036,489.46233)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4181"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.0007607e-4,-0.04542658,0.03388238,-4.4299349e-4,243.06876,499.2183)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4183"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.5744068e-4,-0.04541423,0.03387313,0.00106014,209.50208,639.96776)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4185"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.8835427e-4,-0.04541325,0.03387241,-0.0010944,208.34243,649.91445)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4187"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.400989e-4,-0.04542889,0.03388409,1.551449e-4,202.6616,622.7692)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4189"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.0940561e-4,-0.04542644,0.03388228,4.5332758e-4,177.55128,450.96235)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4191"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.3405789e-4,-0.04542827,0.03388365,-2.5918319e-4,197.27129,426.24743)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4193"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.3328783e-4,-0.04542736,0.03388294,3.6904014e-4,221.71907,407.31396)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4195"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.8922784e-4,-0.04542672,0.03388245,-4.3096481e-4,244.71722,407.68493)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4197"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.2795031e-4,-0.04542741,0.03388299,-3.6313883e-4,267.27419,395.15904)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4199"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.5213708e-4,-0.04542227,0.03387914,7.2211418e-4,431.6295,463.07726)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4201"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.7398791e-4,-0.04541672,0.03387498,-9.6777017e-4,228.37764,596.64772)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4203"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.3989612e-5,-0.04542912,0.0338842,9.300516e-5,197.91027,564.57361)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4205"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.5803066e-4,-0.04542213,0.03387905,7.2861603e-4,197.08948,546.10251)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4207"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.1939243e-4,-0.04542752,0.03388306,3.5368665e-4,314.43749,554.02151)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4209"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00111059,-0.04540903,0.03386928,-0.0012297,328.89383,550.76014)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4211"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.6710003e-4,-0.04542196,0.03387888,7.3867051e-4,344.78753,535.2743)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4213"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00103824,-0.04541155,0.03387121,-0.00114962,367.29963,484.13698)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4215"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.3479792e-4,-0.04542889,0.0338841,1.4926064e-4,421.82183,559.69953)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4217"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00118676,-0.04540619,0.03386713,-0.00131407,396.88696,570.68003)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4219"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.9233983e-4,-0.04541307,0.03387229,0.00109879,275.56635,437.90424)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4221"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.3783685e-4,-0.04542733,0.03388297,3.7410275e-4,343.68753,379.72103)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4223"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00100782,-0.04541255,0.03387191,0.00111595,211.05941,303.13788)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4225"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.5042368e-4,-0.04541737,0.0338755,-9.4164559e-4,199.21599,306.67458)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4227"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.5998991e-4,-0.04542575,0.03388175,-5.0931836e-4,227.26434,290.5718)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4229"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.8940628e-4,-0.04542145,0.0338785,-7.6335307e-4,215.97896,227.03521)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4231"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.9241677e-4,-0.04542668,0.03388242,4.3450429e-4,253.34065,196.06893)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4233"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.7696594e-4,-0.04541933,0.03387696,-8.6029168e-4,201.33935,215.08935)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4235"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.1360217e-4,-0.04541553,0.03387414,0.00101164,170.84494,197.13495)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4237"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00101686,-0.04541234,0.0338717,0.00112589,138.61962,195.50802)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4239"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.8178261e-4,-0.04541344,0.03387257,-0.00108709,139.35268,229.3577)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4241"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.6336124e-4,-0.045417,0.03387524,-9.5600114e-4,152.74382,174.23278)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4243"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.0752488e-4,-0.04541855,0.03387637,-8.9416573e-4,104.51009,219.48998)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4245"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00118298,-0.0454063,0.03386724,-0.0013099,211.03762,183.57805)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4247"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.6346624e-4,-0.0454257,0.0338817,5.1319426e-4,265.03679,235.34068)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4249"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.8046452e-4,-0.04542868,0.03388392,1.9982982e-4,294.62296,206.95347)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4251"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.5299859e-4,-0.04541436,0.03387326,-0.00105521,267.45251,340.47508)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4253"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.5343983e-4,-0.04541731,0.03387541,9.4498417e-4,318.77073,298.411)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4255"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00104397,-0.04541142,0.03387104,-0.00115597,332.93314,232.47488)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4257"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.5140705e-4,-0.04542721,0.03388282,-3.8909899e-4,401.22404,350.04203)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4259"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.2594747e-4,-0.04542281,0.03387955,-6.930924e-4,496.1515,373.03353)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4261"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.5534621e-4,-0.04541723,0.03387538,-9.470994e-4,482.57175,387.44956)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4263"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0011941,-0.04540589,0.03386694,-0.00132218,449.54862,278.84482)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4265"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00121169,-0.04540518,0.03386641,-0.00134168,447.99743,165.80365)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4267"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.449227e-4,-0.04542727,0.03388287,3.819196e-4,506.45737,260.17584)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4269"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.3603257e-5,-0.04542922,0.0338843,1.5047492e-5,469.20161,273.07751)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4271"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.6227019e-4,-0.04542706,0.03388272,4.0112343e-4,422.35401,257.3454)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4273"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.4713509e-4,-0.04542884,0.03388405,1.6293453e-4,432.11346,244.75501)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4275"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.6058311e-4,-0.0454221,0.033879,-7.3146519e-4,452.02775,195.7877)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4277"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.838513e-4,-0.04542867,0.03388387,2.0357618e-4,409.12951,265.70691)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4279"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.2333919e-4,-0.04542838,0.03388369,-2.4728836e-4,333.75275,500.68862)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4281"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.5649358e-4,-0.04542712,0.03388274,3.947227e-4,289.68369,607.38737)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4283"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.022009e-4,-0.04542116,0.03387832,7.7756712e-4,331.2368,614.58099)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4285"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.7204618e-5,-0.04542917,0.0338843,-5.2241526e-5,318.41316,665.28784)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4287"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.4194597e-4,-0.04541759,0.03387566,9.32255e-4,395.11768,701.83985)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4289"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00107393,-0.04541034,0.03387026,-0.00118916,399.08553,737.17988)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4291"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.6889394e-4,-0.04542874,0.03388396,-1.8701135e-4,427.17957,809.54786)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4293"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.6732792e-4,-0.04541958,0.03387715,-8.4965858e-4,420.68806,724.41334)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4295"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.5391477e-4,-0.04542583,0.03388181,-5.0260009e-4,331.01756,713.96788)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4297"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.3555153e-4,-0.04542032,0.0338777,8.1445219e-4,449.44771,701.29964)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4299"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.6849958e-4,-0.04541954,0.0338771,-8.5094463e-4,469.49707,691.381)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4301"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.8527286e-4,-0.04541639,0.03387476,9.8023747e-4,459.68521,750.29642)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4303"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.6642703e-4,-0.0454257,0.03388167,5.1644437e-4,461.12486,775.62545)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4305"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.9934035e-4,-0.04541875,0.03387654,8.8511158e-4,505.10253,822.48952)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4307"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.0296204e-4,-0.04542112,0.03387828,-7.7838634e-4,461.49279,868.46325)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4309"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.8111081e-4,-0.04541651,0.03387485,-9.7562439e-4,490.26445,846.33465)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4311"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00103185,-0.04541182,0.03387134,-0.00114255,452.11577,889.92725)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4313"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00104846,-0.04541123,0.03387093,-0.00116098,431.89363,889.62809)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4315"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.6393408e-4,-0.04541964,0.0338772,-8.458932e-4,454.45249,890.5044)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4317"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.9424838e-4,-0.04541888,0.03387663,8.7946541e-4,481.31331,893.5138)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4319"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.4427877e-4,-0.04541754,0.03387562,-9.3487832e-4,505.29649,821.48268)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4321"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.7188602e-4,-0.04542799,0.03388344,3.0105729e-4,455.22475,330.36943)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4323"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.4423317e-4,-0.04542599,0.03388189,-4.9186769e-4,470.29281,336.41747)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4325"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00106075,-0.04541081,0.03387059,0.00117455,464.52434,615.84608)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4327"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.7848026e-4,-0.04541354,0.03387263,-0.00108347,425.86006,601.41725)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4329"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.6489116e-4,-0.04541399,0.03387297,0.00106839,373.96999,602.51707)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4331"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.1068799e-4,-0.04542308,0.03387974,6.7621822e-4,423.67624,622.50009)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4333"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.358799e-4,-0.04542264,0.03387938,7.040828e-4,386.35483,638.96022)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4335"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.0850977e-4,-0.04542497,0.03388116,5.6307174e-4,447.00525,643.30652)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4337"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.5879736e-5,-0.04542908,0.0338842,-9.5094387e-5,479.34787,581.07186)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4339"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.8033908e-4,-0.04542684,0.03388255,-4.2111944e-4,476.18682,513.87424)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4341"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.4501354e-4,-0.04542016,0.03387754,8.2492459e-4,483.76222,489.83858)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4343"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.2807528e-4,-0.04541515,0.03387381,-0.00102763,287.69876,1193.4345)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4345"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.6658641e-4,-0.04542395,0.0338804,6.2737149e-4,304.15582,1268.4896)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4347"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.5639179e-4,-0.04541723,0.03387538,-9.4824898e-4,323.2481,1250.1195)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4349"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00104879,-0.04541123,0.03387092,0.00116129,126.32512,1214.3923)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4351"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.4852311e-4,-0.04542724,0.03388283,3.8588853e-4,136.75992,1302.3533)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4353"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.1133835e-5,-0.04542917,0.03388429,-4.5529359e-5,120.90923,1314.2952)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4355"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.7002522e-4,-0.04542874,0.03388395,1.882586e-4,213.20843,1429.9328)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4357"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.8526494e-4,-0.04542678,0.03388251,4.2658711e-4,163.62163,1313.4809)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4359"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.9449871e-4,-0.04542342,0.03387998,-6.5826032e-4,309.01004,1444.1144)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4361"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.1178754e-4,-0.045429,0.03388414,1.2378036e-4,214.56639,1575.6028)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4363"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.3039601e-4,-0.0454205,0.03387783,-8.0872906e-4,186.68891,1517.2409)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4365"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00100644,-0.04541263,0.03387195,0.00111442,196.5365,1486.7451)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4367"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.6812815e-4,-0.0454139,0.03387291,-0.00107199,148.07072,1533.2313)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4369"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.5736885e-4,-0.04542211,0.03387905,-7.2787397e-4,299.72597,1492.9627)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4371"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.4121819e-4,-0.045426,0.03388193,-4.8853813e-4,232.02257,1095.7879)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4373"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.3597654e-4,-0.04542449,0.03388079,5.9346679e-4,406.88278,1494.5384)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4375"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.2410388e-5,-0.04542917,0.0338843,-4.6947422e-5,449.54751,1589.2012)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4377"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.216251e-4,-0.04541817,0.03387609,9.0974997e-4,445.50732,1542.6829)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4379"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.6503819e-4,-0.04542197,0.03387893,7.3637563e-4,369.7866,1488.187)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4381"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00123832,-0.04540411,0.0338656,-0.00137119,270.93494,1522.7992)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4383"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.5332998e-4,-0.04541434,0.03387325,0.0010556,294.53809,1520.8011)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4385"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.9212591e-4,-0.04542524,0.03388133,5.4492421e-4,351.34083,1530.3037)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4387"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.9592492e-6,-0.04542919,0.03388431,-8.7890909e-6,309.67745,1468.2161)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4389"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.2083591e-4,-0.04542478,0.033881,5.7669396e-4,265.19971,1249.0279)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4391"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00113016,-0.04540833,0.03386877,-0.00125141,406.62194,1423.6058)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4393"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.0009362e-4,-0.04541872,0.0338765,8.8590998e-4,404.83589,1395.3346)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4395"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.9894581e-4,-0.04542775,0.03388321,-3.3099054e-4,349.96226,1387.5421)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4397"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.6613573e-4,-0.04541396,0.03387292,0.00106979,330.30806,1363.1739)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4399"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.4064012e-4,-0.04542603,0.03388194,-4.8791614e-4,319.53968,1365.0956)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4401"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00104227,-0.04541144,0.03387105,0.00115405,278.69148,1366.309)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4403"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.4840881e-4,-0.04542721,0.03388282,3.8576915e-4,364.82326,1396.0489)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4405"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.7184452e-4,-0.04542692,0.03388264,4.1177008e-4,378.58763,1384.1762)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4407"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.4600427e-4,-0.04542013,0.03387752,-8.2603073e-4,349.03255,1388.4596)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4409"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.3194057e-4,-0.04542832,0.03388365,-2.5683853e-4,206.43123,1385.4072)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4411"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.9631853e-4,-0.04541298,0.03387219,0.00110319,231.96218,1371.2839)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4413"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0012582,-0.04540333,0.033865,-0.00139319,233.44097,1376.7404)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4415"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.7397924e-4,-0.04542552,0.03388159,-5.248079e-4,270.94837,1360.2967)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4417"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.7014583e-4,-0.04542185,0.03387881,7.4202175e-4,348.18489,1243.1912)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4419"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.7650638e-4,-0.04542378,0.03388027,6.3832151e-4,420.36432,1265.7005)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4421"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.0907765e-4,-0.04542646,0.03388228,4.5296858e-4,446.22292,1238.8383)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4423"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.7585587e-5,-0.04542916,0.0338843,-5.2684169e-5,390.8189,1267.9746)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4425"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.8641574e-5,-0.04542906,0.03388422,9.8155142e-5,405.83025,1308.4221)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4427"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00104065,-0.04541149,0.03387111,0.00115232,387.11626,1298.0462)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4429"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.6384039e-4,-0.04541967,0.0338772,-8.4576882e-4,367.24135,1313.5813)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4431"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.8446554e-4,-0.04541915,0.03387681,-8.6862978e-4,356.51762,1295.347)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4433"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00104476,-0.04541138,0.03387101,0.00115681,241.72119,1242.4933)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4435"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.6380986e-4,-0.04542564,0.0338817,5.1357235e-4,224.57851,1206.944)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4437"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00107855,-0.04541022,0.03387012,0.00119426,247.24206,1158.3314)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4439"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.034756e-4,-0.04542901,0.03388418,1.1457606e-4,277.96372,1144.7292)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4441"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.9121547e-4,-0.0454286,0.03388387,2.1172531e-4,331.0614,1105.1496)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4443"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.2512498e-4,-0.04542284,0.03387953,6.9217519e-4,298.1634,1108.3955)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4445"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00108365,-0.04541,0.03387001,-0.00119991,252.67394,1109.2856)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4447"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.9952898e-4,-0.04541287,0.03387211,0.00110678,267.41896,1184.4465)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4449"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.3293868e-4,-0.04542892,0.03388412,-1.4720391e-4,275.59197,1127.0739)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4451"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.4941887e-4,-0.0454174,0.03387551,-9.4055518e-4,321.07521,1096.8843)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4453"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.6696798e-4,-0.04542562,0.03388167,5.1706288e-4,349.29025,1092.5228)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4455"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.0384511e-4,-0.04542503,0.03388122,5.578865e-4,412.31225,1016.4179)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4457"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.548955e-4,-0.04541431,0.0338732,-0.00105734,413.338,980.26529)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4459"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.2363011e-4,-0.04542064,0.03387792,-8.0129356e-4,486.70966,1512.402)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4461"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.3018462e-4,-0.04542462,0.03388088,-5.8703642e-4,493.8477,1525.4516)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4463"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.2373457e-4,-0.04541807,0.03387605,-9.121065e-4,546.55191,1587.0863)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4465"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.5904882e-4,-0.04542809,0.03388349,-2.8682309e-4,590.26949,1517.2238)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4467"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.5490668e-4,-0.04542712,0.03388276,3.9298819e-4,550.37884,1435.2525)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4469"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.3887594e-4,-0.04541479,0.03387358,-0.00103961,541.02252,1423.266)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4471"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.6089562e-4,-0.04542706,0.03388272,3.9962772e-4,572.25976,1220.2344)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4473"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.0944328e-4,-0.04541846,0.03387634,8.9628289e-4,774.31567,1573.1455)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4475"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.9703864e-4,-0.04542776,0.03388325,3.2890119e-4,773.28658,1587.0489)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4477"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.9332696e-4,-0.04541891,0.03387664,-8.7843834e-4,783.56173,1568.5974)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4479"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.1633739e-5,-0.04542919,0.03388429,-4.6115317e-5,736.35814,1490.7793)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4481"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.344272e-4,-0.04542889,0.03388409,-1.4885372e-4,623.52642,1512.9107)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4483"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.9026375e-4,-0.04542781,0.03388328,3.2138443e-4,620.03914,1529.9947)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4485"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.952732e-4,-0.04542858,0.03388384,2.162181e-4,623.11111,1579.1298)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4487"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.1168531e-4,-0.04542764,0.03388311,-3.4507902e-4,624.19027,1476.8359)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4489"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.4528823e-4,-0.04541461,0.03387341,0.00104672,611.87326,1440.9548)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4491"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00105919,-0.0454109,0.03387064,-0.00117282,609.7013,1445.9948)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4493"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.5925885e-4,-0.04542576,0.03388172,5.0852802e-4,617.81525,1166.6954)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4495"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.0010506e-4,-0.04542119,0.03387834,7.752133e-4,645.13211,1174.4486)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4497"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.8422664e-4,-0.04542865,0.03388393,-2.0398146e-4,519.3333,1112.2803)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4499"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.4738093e-4,-0.04541747,0.03387559,9.3831828e-4,730.59939,1492.0765)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4501"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.4426391e-4,-0.04542726,0.03388286,-3.8120201e-4,698.59279,1416.1827)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4503"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.9541471e-4,-0.04542776,0.03388327,-3.271179e-4,664.28142,1393.8549)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4505"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00111671,-0.04540881,0.0338691,-0.00123651,811.98525,1357.2666)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4507"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.9411347e-4,-0.04542132,0.03387846,7.6861033e-4,809.24348,1338.4264)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4509"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.5727654e-4,-0.04541983,0.03387731,-8.385203e-4,647.81963,1323.6544)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4511"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00111986,-0.04540869,0.03386899,-0.00124002,624.9733,1347.2204)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4513"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00124504,-0.04540389,0.03386542,-0.00137864,605.06135,1305.6959)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4515"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.0923146e-4,-0.04542762,0.03388312,3.4242065e-4,733.20316,1155.1602)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4517"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.358374e-4,-0.04541778,0.03387582,9.2549044e-4,752.77199,1026.9799)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4519"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00104385,-0.04541138,0.03387104,0.00115583,682.42203,1084.1736)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4521"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.822065e-4,-0.04542868,0.0338839,-2.0175099e-4,693.65087,1363.1399)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4523"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.6078202e-4,-0.04542408,0.03388049,-6.209711e-4,665.90734,1274.2914)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4525"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.3716038e-4,-0.04542605,0.03388197,-4.8408216e-4,730.76846,1338.221)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4527"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.8416493e-5,-0.04542921,0.0338843,2.0381062e-5,790.13733,1311.0261)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4529"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.4742246e-5,-0.04542906,0.03388424,9.3806513e-5,679.67464,1106.3346)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4531"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.2353809e-6,-0.04542922,0.0338843,-3.5894251e-6,694.40884,1187.4652)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4533"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.9490838e-4,-0.04542521,0.03388132,5.4799443e-4,726.69578,1217.5127)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4535"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.519724e-4,-0.04541997,0.03387743,-8.3264095e-4,760.9616,1220.3989)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4537"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00109289,-0.04540966,0.03386975,-0.00121015,753.63884,1124.0524)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4539"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.5780303e-4,-0.04542877,0.03388401,1.7472539e-4,705.73386,1146.9254)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4541"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.8024638e-4,-0.04542166,0.03387868,-7.5318415e-4,715.12257,1235.1034)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4543"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.4286131e-4,-0.04542825,0.03388359,-2.6893663e-4,706.70214,1214.5664)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4545"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.014949e-4,-0.04542851,0.03388383,-2.2309894e-4,578.86269,925.0034)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4547"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.2405939e-4,-0.04542746,0.03388303,-3.5882693e-4,595.97471,931.80406)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4549"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.8106476e-4,-0.04542543,0.03388149,-5.3265182e-4,514.00166,927.56742)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4551"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.2388002e-5,-0.04542917,0.03388431,3.5861795e-5,533.47155,970.07542)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4553"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.4960219e-4,-0.04542589,0.03388187,4.9783753e-4,472.50823,996.62764)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4555"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.3494001e-4,-0.04542736,0.03388297,-3.7087275e-4,522.27823,1002.6135)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4557"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.80609e-4,-0.04541924,0.0338769,8.6434343e-4,551.76022,949.72548)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4559"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.7350285e-4,-0.0454194,0.03387702,8.5650347e-4,619.34501,891.08784)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4561"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.2234297e-4,-0.04542067,0.03387795,-7.9982394e-4,749.52905,829.79371)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4563"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.0958302e-4,-0.04542844,0.03388376,-2.320469e-4,734.21525,821.61647)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4565"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00116059,-0.04540717,0.03386789,-0.00128507,639.76027,1036.2703)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4567"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.0526453e-4,-0.04542502,0.0338812,-5.5946923e-4,534.05204,1111.3604)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4569"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.6688767e-4,-0.04542803,0.03388346,-2.9548696e-4,615.18527,1074.8485)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4571"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.6888018e-4,-0.04541685,0.03387512,-9.6211644e-4,622.66264,1070.4352)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4573"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.4005191e-4,-0.04542446,0.03388077,5.9801284e-4,606.3348,1075.001)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4575"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.7079485e-4,-0.04542872,0.03388399,1.8912255e-4,580.56949,1070.4019)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4577"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.0606938e-4,-0.04541578,0.03387431,0.00100328,587.45371,1140.5679)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4579"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.3396302e-4,-0.04542453,0.03388082,5.9123318e-4,557.4853,1171.7918)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4581"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.4524288e-4,-0.04542434,0.0338807,-6.0373312e-4,603.25957,1173.793)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4583"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.0605736e-4,-0.045425,0.03388121,-5.603434e-4,583.31896,1117.4889)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4585"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00101564,-0.04541234,0.03387177,0.00112459,746.0778,957.26867)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4587"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.6924061e-4,-0.04542872,0.03388393,1.8741357e-4,843.40991,887.45366)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4589"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.6150553e-4,-0.04541972,0.03387723,-8.4318909e-4,793.6801,916.98675)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4591"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.9080473e-4,-0.04542778,0.03388328,3.220021e-4,793.8027,932.94754)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4593"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.172305e-4,-0.0454208,0.03387805,7.9416408e-4,736.86877,1117.4371)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4595"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.6002177e-5,-0.04542919,0.0338843,3.9846685e-5,753.86071,1369.3679)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4597"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.4437028e-4,-0.04542884,0.03388403,1.5986328e-4,750.26581,1447.3811)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4599"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.773754e-4,-0.04542794,0.03388337,-3.0712882e-4,752.0977,1482.484)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4601"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0010214,-0.04541217,0.0338716,-0.00113094,708.5597,1541.3115)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4603"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.0018928e-4,-0.045429,0.03388418,-1.1093545e-4,556.86128,763.85598)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4605"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.568701e-4,-0.04542881,0.033884,1.7369761e-4,638.52496,846.30758)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4607"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.9074397e-4,-0.04541899,0.03387671,8.7559515e-4,650.54021,805.98803)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4609"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.0572708e-4,-0.04542107,0.03387824,-7.8142768e-4,592.71511,617.22177)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4611"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.8798208e-4,-0.04542672,0.03388248,4.2959759e-4,610.56609,614.2369)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4613"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.1788949e-4,-0.04542298,0.03387967,6.8417601e-4,622.15538,691.3634)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4615"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.0747251e-4,-0.04542104,0.03387821,7.8337247e-4,635.1589,714.44814)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4617"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.8503546e-4,-0.04542361,0.03388016,6.4781475e-4,643.0221,766.12931)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4619"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.2342225e-4,-0.04542838,0.03388369,-2.4736987e-4,602.4128,780.58449)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4621"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.5420986e-4,-0.0454258,0.03388179,-5.0292097e-4,601.97548,794.54108)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4623"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.7832084e-4,-0.04541354,0.03387262,0.00108325,593.23199,806.17397)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4625"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.1389915e-5,-0.04542916,0.03388424,-7.9073983e-5,596.16023,808.59365)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4627"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.2224771e-4,-0.04541813,0.03387606,9.1044886e-4,625.52261,813.47441)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4629"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.9219217e-4,-0.04541311,0.03387229,0.00109864,718.28668,846.98243)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4631"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00114612,-0.04540775,0.03386831,-0.00126909,706.54133,810.24956)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4633"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.5065826e-4,-0.04542882,0.03388405,-1.6683609e-4,722.80572,847.28914)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4635"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.2937176e-4,-0.04541794,0.03387593,-9.1836933e-4,608.81458,934.01986)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4637"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.2829063e-4,-0.04542622,0.03388206,-4.7425655e-4,642.4672,953.6421)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4639"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.4252158e-4,-0.04542887,0.03388407,-1.5780244e-4,584.48541,985.21297)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4641"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00123588,-0.04540425,0.03386565,-0.00136848,626.57406,968.37404)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4643"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.6462736e-4,-0.045427,0.0338827,4.0373513e-4,567.62164,979.19166)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4645"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.7542044e-4,-0.04542797,0.03388338,3.0494777e-4,571.32985,968.78563)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4647"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.3727736e-4,-0.04542609,0.03388197,4.8419863e-4,635.88009,981.88272)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4649"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.4430896e-4,-0.04541461,0.03387345,-0.00104563,689.63911,874.54046)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4651"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.5930207e-4,-0.04541714,0.03387533,9.5144704e-4,710.48372,877.56987)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4653"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.6218865e-4,-0.04541972,0.03387724,8.4397491e-4,703.18109,916.3236)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4655"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.242576e-4,-0.04542283,0.03387953,-6.9121276e-4,735.80804,844.72565)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4657"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00101882,-0.0454122,0.03387168,-0.00112813,818.67615,740.91955)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4659"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.8207089e-4,-0.04541344,0.03387254,0.0010874,822.18011,622.18324)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4661"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.0930898e-5,-0.04542919,0.03388431,4.5320944e-5,759.34977,478.2397)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4663"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.5534621e-4,-0.04541723,0.03387538,-9.470994e-4,663.70762,649.32802)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4665"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.0389412e-4,-0.04542322,0.03387985,6.6869907e-4,691.54967,646.58759)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4667"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.9521035e-4,-0.04542129,0.03387842,-7.6980885e-4,694.23438,638.57935)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4669"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.5575544e-4,-0.04541983,0.03387737,8.3683304e-4,712.43771,602.45971)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4671"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.2991234e-4,-0.04541504,0.03387377,0.00102968,712.81514,585.38404)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4673"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.266123e-4,-0.04541802,0.03387599,-9.1530827e-4,704.07376,612.06389)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4675"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00124485,-0.04540387,0.03386543,-0.00137841,688.38648,690.45852)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4677"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.523564e-4,-0.04541439,0.03387325,-0.00105452,718.75916,668.28025)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4679"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.7652665e-4,-0.04542549,0.03388153,5.2763316e-4,750.11252,568.25607)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4681"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.7017141e-4,-0.04542559,0.03388162,-5.2062993e-4,685.12304,527.1685)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4683"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.178762e-4,-0.04541542,0.03387403,0.00101633,671.02369,559.97524)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4685"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.6292526e-4,-0.04542876,0.033884,-1.8040722e-4,789.81949,479.84755)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4687"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.0986909e-4,-0.04542764,0.03388312,3.4309804e-4,793.54035,451.3226)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4689"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.8817742e-4,-0.04542676,0.03388248,4.2983722e-4,527.32166,351.19289)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4691"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.835869e-4,-0.04542789,0.03388333,3.139719e-4,646.58933,341.54779)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4693"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.8940139e-4,-0.04541902,0.03387672,8.7405966e-4,654.57975,319.66539)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4695"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.9301021e-4,-0.04542345,0.03388005,-6.5663367e-4,594.19981,280.34112)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4697"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.4287775e-4,-0.04542437,0.03388073,-6.0113023e-4,485.76816,520.35625)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4699"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.4486651e-4,-0.04542239,0.03387923,-7.1404786e-4,558.92923,483.79919)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4701"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.2909307e-4,-0.04541509,0.03387377,0.00102874,566.09497,473.69252)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4703"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00118504,-0.04540625,0.03386719,-0.00131219,560.33941,477.80075)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4705"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.3041476e-4,-0.04542832,0.03388366,-2.5512615e-4,571.09511,492.33482)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4707"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.2175469e-5,-0.04542906,0.03388421,1.0206113e-4,547.4856,495.47556)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4709"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.6877027e-4,-0.04542391,0.03388037,-6.2982045e-4,548.51033,449.7588)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4711"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.70933e-4,-0.04542181,0.03387881,-7.4290724e-4,714.5736,345.03163)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4713"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.6765481e-4,-0.04542698,0.03388268,4.0706487e-4,671.68112,362.22334)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4715"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.669331e-4,-0.04542874,0.03388396,1.8483993e-4,616.69242,362.58137)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4717"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.927346e-4,-0.04542779,0.03388328,3.2413544e-4,610.64047,410.05509)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4719"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.4075669e-4,-0.04541472,0.03387355,-0.00104169,726.55492,389.94274)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4721"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.2474494e-4,-0.04541807,0.03387603,-9.1321582e-4,741.8722,242.70742)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4723"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.6662575e-4,-0.04542194,0.03387891,7.3815153e-4,637.43324,192.46615)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4725"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00111072,-0.04540903,0.03386926,-0.00122987,555.70594,168.35816)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4727"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.1722468e-4,-0.04542483,0.03388105,-5.7270246e-4,618.6483,210.97156)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4729"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.2698439e-4,-0.04542835,0.03388369,2.5131952e-4,926.67557,522.7169)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4731"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00113856,-0.045408,0.0338685,-0.0012607,872.26405,478.34952)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4733"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.7673898e-4,-0.04542551,0.03388153,5.2789269e-4,1073.1587,734.08588)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4735"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.7578376e-5,-0.04542916,0.03388424,7.4845319e-5,979.88101,877.35221)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4737"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00107482,-0.04541034,0.03387022,0.00119011,1037.6521,833.63639)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4739"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.9195333e-4,-0.04542779,0.03388328,-3.2328052e-4,920.50201,568.16341)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4741"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.0363071e-4,-0.04541864,0.03387643,8.8985981e-4,930.14653,781.37759)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4743"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00120599,-0.0454054,0.03386657,-0.00133538,969.53747,799.92132)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4745"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.5533288e-4,-0.04542877,0.03388401,1.7197501e-4,824.11081,643.1209)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4747"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.001018,-0.04541228,0.03387168,0.00112721,863.60766,659.6144)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4749"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.4501123e-4,-0.04542434,0.03388073,-6.0351429e-4,844.50265,619.98022)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4751"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.3084815e-4,-0.04541502,0.03387377,-0.0010307,772.896,639.81673)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4753"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.5857922e-4,-0.04541978,0.03387728,-8.3996759e-4,761.39018,658.21463)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4755"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.7980128e-4,-0.04542868,0.03388392,-1.9910605e-4,813.11375,669.99169)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4757"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00106891,-0.0454105,0.03387038,0.00118361,898.58889,690.79182)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4759"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.0048903e-4,-0.04542329,0.0338799,6.6492912e-4,1031.1735,597.94463)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4761"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0012052,-0.04540546,0.0338666,-0.0013345,1004.9548,592.04492)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4763"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.9206827e-4,-0.04542863,0.03388386,-2.1267718e-4,918.74655,656.80062)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4765"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00123001,-0.04540446,0.03386588,-0.00136195,973.77035,476.9703)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4767"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00107099,-0.04541044,0.03387033,-0.00118585,1013.2746,481.66123)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4769"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.6438237e-4,-0.045427,0.0338827,4.0349555e-4,879.08102,299.81279)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4771"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.0488661e-4,-0.045429,0.03388418,1.1615375e-4,856.90803,424.86642)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4773"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00112054,-0.04540867,0.03386899,-0.00124075,851.95172,374.19783)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4775"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0011713,-0.04540679,0.03386759,-0.00129695,901.96519,376.43371)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4777"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.5271106e-4,-0.04541991,0.03387739,-8.3347837e-4,836.36949,284.80375)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4779"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.8746158e-4,-0.04541907,0.03387676,-8.7193359e-4,819.37669,240.7767)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4781"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.9050502e-4,-0.04542527,0.03388139,5.4312838e-4,836.42842,277.79453)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4783"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00108601,-0.04540992,0.03386992,-0.00120253,828.40684,182.40927)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4785"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.8283325e-4,-0.04542159,0.03387863,7.5610327e-4,836.11976,223.56544)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4787"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00114876,-0.04540765,0.03386822,-0.001272,880.95295,264.8366)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4789"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.7790255e-4,-0.04542543,0.03388153,5.2916786e-4,900.8064,320.48513)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4791"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.3861551e-4,-0.04542731,0.0338829,-3.7492556e-4,975.87789,259.13341)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4793"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.7951271e-4,-0.04542164,0.03387868,-7.5239495e-4,955.69266,272.48928)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4795"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.7081752e-4,-0.04542185,0.03387881,-7.4276652e-4,1097.1402,455.81853)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4797"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.1387761e-4,-0.04542844,0.03388375,2.3681347e-4,912.71019,324.43338)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4799"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.0663116e-4,-0.04541577,0.0338743,-0.00100393,915.45762,443.76801)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4801"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.1972306e-5,-0.04542916,0.03388424,6.8621272e-5,905.55457,485.2295)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4803"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.8893593e-6,-0.04542921,0.0338843,-9.8563461e-6,773.13553,203.10843)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4805"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.1257258e-4,-0.04542897,0.03388414,1.2461165e-4,801.06442,334.67277)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4807"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.1560894e-4,-0.04542084,0.03387807,7.9238897e-4,774.83877,304.41466)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4809"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.6024099e-4,-0.04542708,0.03388276,3.988882e-4,760.3939,174.15615)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4811"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.1356328e-4,-0.04542844,0.03388374,-2.3646678e-4,715.66627,219.24077)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4813"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.7284662e-4,-0.0454218,0.03387878,7.45014e-4,763.39221,389.8345)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4815"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.3216967e-4,-0.04541788,0.03387589,9.2144028e-4,772.23909,362.34846)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4817"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.856498e-4,-0.0454215,0.03387858,-7.5920504e-4,764.63499,477.45709)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4819"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.3057625e-4,-0.04542048,0.03387781,-8.0899073e-4,857.56083,544.71598)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4821"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.3809596e-4,-0.04542827,0.03388363,2.6366364e-4,833.06059,522.93099)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4823"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.4041098e-4,-0.04542828,0.03388362,-2.6616993e-4,837.57165,507.57606)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4825"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.5929901e-5,-0.04542916,0.03388428,-6.1916897e-5,827.47901,565.81076)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4827"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.2874003e-4,-0.04542051,0.03387785,8.0693145e-4,828.57822,613.98512)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4829"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.5573418e-4,-0.04542882,0.03388401,-1.7242793e-4,910.14955,612.52969)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4831"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.9800153e-4,-0.04542121,0.03387838,-7.7290937e-4,839.31782,444.2425)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4833"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.1150633e-4,-0.04541563,0.03387418,0.00100927,904.27687,536.01054)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4835"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.2035515e-4,-0.04542479,0.03388104,-5.7619326e-4,876.50169,489.56293)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4837"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.1346836e-4,-0.04542639,0.03388223,-4.5779842e-4,754.01232,360.2304)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4839"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.4447148e-4,-0.0454224,0.03387926,-7.1362915e-4,790.45369,361.83687)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4841"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.9160074e-4,-0.04542862,0.03388387,-2.1215643e-4,1086.5676,385.38141)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4843"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.8474051e-4,-0.04542679,0.03388251,-4.2600096e-4,962.61947,386.98628)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4845"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00115498,-0.04540738,0.03386806,-0.00127888,1017.7982,382.32807)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4847"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.053131e-4,-0.04542502,0.03388121,-5.5953181e-4,1035.4941,324.81796)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4849"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.2988851e-4,-0.04542893,0.0338841,-1.438247e-4,959.01029,336.77156)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4851"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00125412,-0.04540348,0.03386517,-0.00138867,979.64917,318.1079)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4853"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00111189,-0.04540898,0.03386926,-0.00123116,885.0876,185.82762)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4855"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.511552e-4,-0.04541739,0.0338755,-9.4247084e-4,898.17911,186.23908)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4857"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.1162092e-4,-0.04542305,0.03387974,6.7725544e-4,925.94962,161.18824)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4859"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.9842071e-4,-0.04542665,0.03388238,-4.4117305e-4,887.36472,143.10711)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4861"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.3606921e-4,-0.0454226,0.03387942,-7.0434133e-4,907.37963,196.45727)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4863"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.7355485e-4,-0.04541373,0.03387275,0.00107798,999.27999,246.40193)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4865"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.4735809e-4,-0.0454259,0.03388188,-4.9534132e-4,1046.2533,282.67868)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4867"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.0010061,-0.04541265,0.03387199,0.00111406,1057.3587,278.3561)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4869"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00103997,-0.0454115,0.03387113,-0.00115153,875.69798,987.20547)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4871"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.7672767e-4,-0.04542687,0.03388259,-4.1712164e-4,902.06641,1216.5373)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4873"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.7913165e-4,-0.04541655,0.0338749,9.734331e-4,905.46517,1232.0741)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4875"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.7898586e-4,-0.04542167,0.0338787,7.5185497e-4,939.75845,1167.949)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4877"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.2514488e-5,-0.04542912,0.03388422,9.1364071e-5,820.67573,989.87864)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4879"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00103487,-0.04541171,0.03387125,0.00114589,852.67937,1128.3927)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4881"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.8221856e-4,-0.04541342,0.03387254,0.00108758,861.31571,1098.0632)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4883"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.0564403e-4,-0.04542898,0.03388417,-1.1699567e-4,811.45539,1176.425)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4885"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.4511783e-4,-0.04542594,0.03388189,4.9285287e-4,791.83718,1142.7801)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4887"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0012501,-0.04540368,0.03386525,-0.00138422,822.55401,1112.4219)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4889"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00106497,-0.04541065,0.0338705,0.00117926,861.74009,1111.0086)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4891"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.5730196e-4,-0.04542211,0.03387904,-7.2781141e-4,916.22446,971.43318)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4893"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.7306228e-4,-0.04541942,0.03387702,-8.559995e-4,904.13513,964.47702)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4895"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.1134127e-4,-0.0454231,0.03387976,6.7691554e-4,1023.9747,1015.939)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4897"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.6416871e-4,-0.04542702,0.0338827,4.0321695e-4,1010.9758,1000.5362)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4899"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.9971608e-4,-0.04542513,0.03388128,-5.53324e-4,1041.4349,1130.5282)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4901"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.5028981e-4,-0.04541442,0.0338733,-0.00105221,941.44896,1327.8983)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4903"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.6398999e-4,-0.04542399,0.03388045,-6.2448079e-4,1084.9064,1396.6947)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4905"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.7460053e-4,-0.04541368,0.03387274,-0.00107918,998.47826,1303.6979)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4907"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.9901271e-4,-0.04541877,0.03387652,-8.8471748e-4,877.54884,1257.103)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4909"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.0251764e-4,-0.04541588,0.03387439,-9.9935878e-4,913.89029,1336.4903)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4911"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.3855681e-4,-0.04542733,0.03388293,3.7490113e-4,769.41608,1244.3681)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4913"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00103137,-0.04541182,0.03387135,-0.00114203,852.70906,1396.0509)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4915"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.5538709e-4,-0.0454258,0.03388179,-5.0427645e-4,842.35489,1515.8647)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4917"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.0603414e-4,-0.04542768,0.03388318,-3.3886179e-4,777.26491,1500.9547)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4919"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.6967403e-4,-0.04541953,0.03387709,-8.5225467e-4,801.37668,1561.6603)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4921"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.5491881e-4,-0.04541724,0.03387538,-9.4667386e-4,783.59537,1576.868)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4923"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.7854504e-4,-0.04541354,0.03387262,-0.00108354,748.05556,1549.1447)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4925"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.7165587e-4,-0.04541375,0.0338728,-0.00107593,797.67019,1555.8831)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4927"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.4120441e-4,-0.04542825,0.03388359,2.6708573e-4,805.09833,1540.6009)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4929"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.5050008e-4,-0.04542001,0.03387747,-8.310272e-4,749.22236,1552.6126)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4931"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.4324204e-4,-0.04541467,0.03387348,0.00104444,743.61423,1586.7624)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4933"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.4056307e-4,-0.04541768,0.03387572,-9.307345e-4,742.51242,1641.4114)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4935"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.0412046e-4,-0.04541865,0.03387643,-8.9041747e-4,814.75669,1575.7531)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4937"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.001086,-0.04540996,0.03386994,-0.00120248,777.62389,1532.0571)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4939"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.4285782e-4,-0.04541763,0.03387565,-9.3328772e-4,754.44813,1436.3248)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4941"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00109248,-0.0454097,0.03386975,-0.0012097,716.27786,1427.7171)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4943"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.7255542e-5,-0.04542912,0.03388424,8.5558724e-5,770.44479,1470.451)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4945"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.1942577e-4,-0.04542751,0.03388307,3.5370571e-4,956.08705,1614.0069)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4947"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.3568755e-4,-0.04542887,0.0338841,-1.5025206e-4,990.28703,1571.9374)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4949"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.4225522e-4,-0.0454273,0.03388289,3.789688e-4,958.90831,1586.4074)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4951"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.3538575e-4,-0.04542735,0.03388294,-3.7137639e-4,954.90344,1524.8915)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4953"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0010871,-0.04540987,0.0338699,-0.00120371,922.86868,1506.322)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4955"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00116184,-0.04540716,0.03386787,-0.00128649,885.90387,1558.9353)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4957"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.7522371e-4,-0.04541363,0.03387273,-0.00107983,882.91167,1507.6158)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4959"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.8206491e-4,-0.04541647,0.03387483,-9.7669163e-4,867.52047,1562.8739)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4961"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.7057351e-4,-0.04542387,0.03388036,-6.3177819e-4,858.96934,1537.5078)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4963"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.9049642e-4,-0.04542526,0.03388138,-5.4311572e-4,940.66866,1537.6347)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4965"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.6435264e-4,-0.04542397,0.03388041,-6.2489951e-4,850.84011,1582.5401)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4967"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.167299e-4,-0.04541831,0.03387617,-9.0435352e-4,850.55177,1586.4761)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4969"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.7148107e-4,-0.04542389,0.03388032,6.3279715e-4,874.55721,1455.3853)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4971"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.5793198e-4,-0.04541422,0.03387313,0.00106068,976.34556,1470.735)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4973"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.0785558e-4,-0.04542768,0.03388316,3.4084537e-4,1027.9067,1488.4866)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4975"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.8437183e-4,-0.04542154,0.0338786,7.5777892e-4,1044.4784,1484.8078)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4977"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.3631305e-4,-0.04542735,0.03388293,-3.7240161e-4,945.8146,1399.2311)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4979"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.3805198e-5,-0.04542917,0.0338843,-4.850278e-5,1091.2185,1518.6345)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4981"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.1465058e-5,-0.04542919,0.0338843,-3.4839105e-5,989.96562,1476.141)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4983"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.5763906e-4,-0.04542881,0.03388403,1.7455816e-4,931.02215,1433.1512)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4985"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.8921743e-4,-0.04541626,0.0338747,-9.8462738e-4,1086.8476,1328.3695)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4987"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.3642676e-4,-0.04542609,0.033882,4.8326009e-4,1039.2523,1327.1318)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4989"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.3271135e-4,-0.04542613,0.03388205,4.7915186e-4,1074.3666,1333.611)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4991"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.3989584e-4,-0.04542825,0.03388365,2.6564111e-4,1082.3041,1331.9076)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4993"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.1120161e-4,-0.04542762,0.03388311,-3.4461404e-4,903.80103,1149.3692)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4995"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.7988899e-4,-0.04542367,0.03388022,-6.4210063e-4,1095.5367,1200.7251)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4997"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.9810851e-4,-0.04542123,0.03387838,7.7303939e-4,1004.0759,1249.0475)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path4999"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.4416741e-4,-0.04542727,0.03388287,-3.8110413e-4,1020.5541,1209.1659)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5001"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.7401453e-4,-0.04542795,0.0338834,3.0342846e-4,993.89536,1262.2554)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5003"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.731972e-4,-0.04542795,0.0338834,-3.025064e-4,1003.2155,1387.0146)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5005"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.9990462e-4,-0.04541288,0.03387215,0.00110718,985.87456,1431.2247)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5007"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.1136958e-4,-0.04542091,0.03387813,7.8768132e-4,992.4912,1386.5068)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5009"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.489613e-4,-0.04542234,0.03387918,7.1858381e-4,1009.2232,1091.5344)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5011"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.1976865e-4,-0.04542072,0.03387798,7.9699714e-4,987.4468,1038.6924)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5013"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.9493896e-5,-0.04542912,0.03388424,8.8004581e-5,939.24688,1059.5653)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5015"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.3041076e-5,-0.04542922,0.03388431,2.5534455e-5,914.98106,1026.9645)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5017"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.1309351e-4,-0.04542762,0.03388311,-3.4669359e-4,947.13132,1109.829)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5019"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.2045828e-4,-0.04542481,0.03388101,5.7627447e-4,1038.4264,1109.2616)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5021"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.7358087e-4,-0.04542552,0.03388154,5.2438304e-4,901.16995,1204.5251)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5023"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.8213123e-4,-0.04541923,0.03387685,8.6607956e-4,857.01896,1195.9695)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5025"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.6287045e-4,-0.04542571,0.03388168,-5.1252013e-4,909.49706,1183.6205)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5027"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.6418529e-4,-0.04542872,0.03388399,1.818047e-4,1084.2211,945.79614)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5029"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.3959528e-4,-0.04542439,0.03388078,5.9751373e-4,1145.3644,1025.4535)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5031"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.3530924e-4,-0.04542611,0.03388198,-4.8202315e-4,1053.6291,895.70703)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5033"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.3629538e-4,-0.04541778,0.03387579,9.2601025e-4,1024.0364,956.67257)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5035"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00114163,-0.04540787,0.03386844,-0.00126411,1051.0607,987.86138)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5037"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.9926839e-4,-0.04542337,0.03387994,-6.6356473e-4,1052.8617,945.43602)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5039"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.8244061e-4,-0.04542541,0.03388147,-5.3420377e-4,992.02991,880.29075)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5041"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.0029219e-4,-0.04542335,0.03387991,-6.6467145e-4,880.55139,937.91615)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5043"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.4127751e-4,-0.04541471,0.03387348,0.00104227,947.24318,956.09864)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5045"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00120518,-0.04540544,0.0338666,-0.00133446,1118.7098,1126.4452)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5047"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.3858318e-4,-0.04542825,0.03388365,-2.6421555e-4,1072.0702,1160.8437)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5049"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.1680926e-4,-0.04542841,0.03388375,-2.4010509e-4,1069.2863,1194.6662)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5051"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.1491034e-4,-0.04542486,0.03388111,5.7017061e-4,1157.6595,1370.1485)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5053"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.3865074e-4,-0.04542827,0.03388363,-2.642937e-4,1095.9914,1433.8853)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5055"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.0657635e-4,-0.04541578,0.0338743,0.00100384,1136.9621,1557.7144)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5057"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.3183785e-4,-0.04542267,0.03387943,6.9959567e-4,1010.3644,1541.914)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5059"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.915143e-4,-0.0454162,0.03387462,-9.8716087e-4,1016.8035,1556.0677)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5061"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.5700143e-4,-0.04542881,0.03388401,1.7383491e-4,1012.4745,1608.6143)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5063"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00114971,-0.04540757,0.03386819,-0.00127305,1040.8677,1603.1929)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5065"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.8549276e-5,-0.04542916,0.03388424,5.3762545e-5,1069.2362,1557.437)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5067"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.8410252e-4,-0.04542362,0.03388016,6.4675847e-4,1053.6533,1577.5634)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5069"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.6115228e-4,-0.04541709,0.03387528,9.5354136e-4,1078.7129,1591.493)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5071"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.6147957e-4,-0.04541709,0.03387525,9.5390196e-4,1117.9763,1581.984)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5073"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.337114e-4,-0.04541495,0.03387368,0.00103393,1142.9723,1535.4631)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5075"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.4866316e-5,-0.04542917,0.03388429,-4.9671286e-5,1143.7031,1557.9692)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5077"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.2683553e-4,-0.04542892,0.03388412,-1.4045228e-4,1376.8456,1350.1083)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5079"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.3444836e-4,-0.04541491,0.03387367,-0.00103472,1308.2981,1321.9563)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5081"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.0297393e-4,-0.04541588,0.03387435,9.998506e-4,1308.7233,1316.8611)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5083"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.1225938e-4,-0.04542641,0.03388222,-4.5646265e-4,1212.6514,1413.7458)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5085"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.7250027e-4,-0.04542554,0.0338816,5.2320492e-4,1219.6143,1460.3393)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5087"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.6438812e-4,-0.04542702,0.0338827,-4.0348521e-4,1228.2125,1473.4662)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5089"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.1724893e-4,-0.04542757,0.03388308,3.51293e-4,1262.7489,1466.016)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5091"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00119525,-0.04540584,0.03386691,-0.00132347,1195.5913,1556.6048)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5093"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.4868254e-4,-0.04542589,0.03388185,-4.9684782e-4,1268.288,1584.2807)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5095"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.5004108e-5,-0.04542914,0.03388424,-8.3035737e-5,1219.671,1580.1871)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5097"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.9713199e-4,-0.04541885,0.03387656,-8.8264556e-4,1368.0093,1584.6745)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5099"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.2356165e-4,-0.0454263,0.03388213,4.6900272e-4,1288.4056,1523.8174)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5101"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.3059178e-4,-0.04542046,0.03387779,-8.0898733e-4,1260.0165,1507.4266)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5103"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.3798793e-4,-0.04542253,0.03387935,-7.0643296e-4,1211.4447,1497.6474)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5105"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00108501,-0.04540998,0.03386995,-0.00120144,1297.4999,1561.0016)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5107"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.9357631e-4,-0.04542778,0.03388327,-3.2507784e-4,1286.5648,1521.6273)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5109"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.0188408e-4,-0.04542851,0.03388378,2.235659e-4,1220.4456,1641.7018)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5111"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.4576985e-4,-0.04542237,0.03387925,7.1505267e-4,1213.7811,1587.1843)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5113"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.9485743e-4,-0.04541617,0.03387456,-9.9088335e-4,1205.1539,1603.4509)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5115"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.5120695e-4,-0.04542719,0.03388281,3.8887996e-4,1232.7218,1625.8007)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5117"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00107154,-0.04541043,0.03387032,0.0011865,1374.9617,1544.5912)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5119"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.9229603e-5,-0.04542901,0.0338842,-1.0990765e-4,1371.8137,1556.5758)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5121"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.0617934e-4,-0.04542321,0.03387984,-6.7118302e-4,1383.34,1546.5801)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5123"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.768796e-4,-0.04542376,0.03388023,-6.3878741e-4,1278.9051,1411.0619)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5125"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.3031246e-4,-0.04541793,0.03387591,-9.1941344e-4,1316.8284,1456.705)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5127"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.100851e-4,-0.04541845,0.0338763,-8.9700114e-4,1347.5635,1523.0315)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5129"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.3285715e-4,-0.04541785,0.03387587,-9.2221542e-4,1471.0117,1592.0957)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5131"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.58243e-4,-0.04542215,0.03387904,7.2889624e-4,1466.3035,1612.2893)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5133"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.6679845e-5,-0.04542919,0.0338843,2.9539086e-5,1296.4534,1600.9596)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5135"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.5481638e-4,-0.04541723,0.03387541,9.4653958e-4,1260.0442,1637.5956)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5137"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.261671e-4,-0.04542833,0.03388369,2.50429e-4,1459.2384,1554.7216)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5139"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.7105428e-5,-0.04542919,0.03388431,1.8966391e-5,1432.7153,1569.1962)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5141"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.2944047e-5,-0.04542901,0.0338842,-1.0291667e-4,1434.6174,1590.9983)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5143"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.0544902e-4,-0.04542321,0.03387986,6.7041287e-4,1452.6147,1476.8735)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5145"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.516299e-4,-0.04542421,0.0338806,-6.1076884e-4,1406.9965,1428.0955)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5147"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.6881958e-4,-0.04542189,0.03387885,7.4058495e-4,1317.8316,1367.9878)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5149"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.7926256e-6,-0.04542921,0.03388433,1.9629488e-6,1367.5524,1438.6255)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5151"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.4031791e-4,-0.04542248,0.03387931,7.0904914e-4,1345.3179,1452.4313)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5153"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.1961355e-4,-0.04542893,0.03388414,1.3243393e-4,1381.8281,1480.5248)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5155"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.71344e-4,-0.04541379,0.03387282,0.00107557,1404.1304,1467.3929)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5157"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.5768142e-4,-0.04542714,0.03388274,-3.960566e-4,1404.7008,1509.5794)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5159"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.7898944e-4,-0.04541924,0.03387693,8.6256833e-4,1414.1678,1420.2633)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5161"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.7938813e-5,-0.04542914,0.03388422,-8.6306908e-5,1430.9351,1378.094)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5163"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.6627445e-4,-0.04542698,0.03388268,-4.0558107e-4,1410.6022,1343.8351)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5165"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00103302,-0.04541174,0.03387132,0.00114384,1499.1874,1532.2986)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5167"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00113425,-0.04540819,0.03386861,-0.00125595,1509.4148,1526.8171)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5169"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.5119814e-4,-0.04541441,0.03387329,-0.00105324,1480.8582,1464.0424)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5171"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.2487351e-5,-0.04542919,0.03388431,-1.3821516e-5,1485.4371,1371.1631)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5173"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00100835,-0.04541257,0.03387191,-0.00111654,1462.6218,1434.715)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5175"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.785599e-4,-0.0454217,0.0338787,7.5135666e-4,1471.0977,1241.8952)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5177"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.4710775e-4,-0.0454243,0.03388066,6.0583129e-4,1440.7123,1258.9912)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5179"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.1046144e-7,-0.04542921,0.03388433,-1.009666e-6,1514.9025,1264.1348)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5181"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.1585253e-4,-0.04542298,0.03387969,-6.8192495e-4,1523.0913,1263.8836)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5183"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.0832401e-4,-0.04542898,0.03388417,1.1993616e-4,1518.7119,1247.6507)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5185"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00106837,-0.04541055,0.03387039,-0.00118302,1460.0357,1252.7487)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5187"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.9706007e-4,-0.04541296,0.03387223,-0.00110402,1379.0725,1137.5304)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5189"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.0425266e-4,-0.04541864,0.03387643,8.9053803e-4,1281.98,1258.4497)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5191"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.8447818e-4,-0.04542154,0.03387859,-7.5789504e-4,1279.7506,1263.5533)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5193"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.4171914e-4,-0.04541472,0.0338735,0.00104275,1290.9551,1286.1182)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5195"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.1393527e-4,-0.04541834,0.03387626,-9.0125384e-4,1266.5651,1210.1466)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5197"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.1051057e-5,-0.04542919,0.0338843,-3.439386e-5,1242.3039,1221.3529)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5199"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.3416029e-4,-0.04542889,0.03388407,1.4855712e-4,1296.9278,1257.2357)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5201"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.0487534e-4,-0.04542849,0.03388382,-2.268377e-4,1354.274,1305.5336)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5203"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.0507106e-5,-0.04542908,0.03388422,-1.0023226e-4,1377.4393,1240.5709)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5205"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.001023,-0.04541212,0.03387159,0.00113275,1360.6138,1251.4071)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5207"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.0699805e-4,-0.04542104,0.03387825,-7.8286544e-4,1350.2446,1225.725)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5209"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.8870137e-4,-0.04542673,0.03388245,4.3039604e-4,1391.7344,1284.0907)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5211"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.9969164e-4,-0.04542656,0.03388236,-4.4260665e-4,1376.0713,1297.424)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5213"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.7317451e-4,-0.04542385,0.03388031,-6.3465568e-4,1341.526,1251.8472)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5215"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.726071e-5,-0.04542919,0.0338843,3.0184228e-5,1159.2804,1444.6525)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5217"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.802032e-4,-0.04542867,0.03388392,1.9954499e-4,1152.8718,1457.7249)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5219"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00124006,-0.04540405,0.03386555,-0.00137309,1066.3162,1184.5192)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5221"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.5785644e-4,-0.04542578,0.03388175,-5.0695404e-4,1097.216,1198.9394)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5223"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.6457024e-4,-0.04541698,0.03387516,-9.573396e-4,1164.9467,1565.0764)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5225"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.3975525e-4,-0.04542889,0.03388407,1.5478458e-4,1160.0951,1307.4993)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5227"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.7675605e-4,-0.04542173,0.03387874,-7.4937674e-4,1148.4118,1338.152)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5229"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00113498,-0.04540817,0.0338686,-0.00125674,1160.0608,1307.702)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5231"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.8505259e-4,-0.04541335,0.03387252,-0.00109073,1186.9349,1338.5461)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5233"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.8582923e-4,-0.04541333,0.03387246,-0.00109159,1162.0316,1245.2636)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5235"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.8170434e-4,-0.04542159,0.03387866,7.5484717e-4,1178.1614,1237.6314)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5237"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.1527155e-4,-0.04541834,0.0338762,9.0272749e-4,1247.891,1328.4574)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5239"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.0849321e-4,-0.04541571,0.03387423,0.00100594,1311.4868,1344.1398)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5241"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00108274,-0.04541001,0.03387003,-0.00119891,1197.597,1387.4029)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5243"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.5461047e-4,-0.04542581,0.03388181,-5.0338935e-4,1149.6908,1152.7162)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5245"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.341221e-5,-0.04542908,0.03388422,9.2333468e-5,1137.5393,1145.3531)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5247"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.2156511e-4,-0.04542632,0.03388217,4.6680729e-4,1187.5882,1132.4312)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5249"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.1903543e-4,-0.04542294,0.03387963,6.8547352e-4,1159.0437,1171.2822)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5251"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.914319e-4,-0.04541894,0.03387671,8.7631318e-4,1139.2342,1136.638)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5253"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.6758467e-4,-0.04542395,0.03388037,6.2850898e-4,1228.7571,1091.838)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5255"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.5646899e-4,-0.04542712,0.03388276,-3.947466e-4,1259.9095,1093.2881)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5257"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.8305526e-4,-0.04542362,0.03388018,6.4562097e-4,1241.8635,1126.826)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5259"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.4595273e-4,-0.04542886,0.03388405,-1.6158064e-4,1265.7174,1150.8692)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5261"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.0658991e-4,-0.04542102,0.03387821,7.8239578e-4,1310.8221,1150.462)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5263"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.6616893e-4,-0.04542194,0.03387892,-7.376499e-4,1261.9752,1144.3577)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5265"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00114561,-0.04540775,0.03386831,-0.0012685,1346.6939,1136.5339)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5267"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.4099894e-4,-0.04542727,0.0338829,-3.7757472e-4,1441.1697,1188.4139)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5269"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.6943835e-4,-0.04541683,0.03387512,9.6271948e-4,1422.7237,1081.821)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5271"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.7830869e-4,-0.04542167,0.0338787,-7.51066e-4,1386.2512,1054.2098)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5273"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.033509e-4,-0.04541585,0.03387438,0.00100027,1390.4432,1066.9009)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5275"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.3809979e-4,-0.04542031,0.03387768,-8.172894e-4,1327.444,1201.7212)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5277"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.620875e-4,-0.04541702,0.03387524,-9.5458648e-4,1331.773,1172.79)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5279"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00104496,-0.04541136,0.03387101,0.00115705,1332.6481,1162.4125)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5281"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.1361745e-4,-0.04542303,0.03387973,6.7944846e-4,1349.6441,1199.9863)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5283"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.8710772e-4,-0.04542676,0.03388245,-4.2862017e-4,1410.5926,1146.4182)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5285"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.4819972e-4,-0.04542004,0.03387747,-8.2846298e-4,1455.259,1166.0746)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5287"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.7765229e-4,-0.04542376,0.03388023,6.395983e-4,1433.8927,1217.3075)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5289"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.86069e-4,-0.04542535,0.03388145,5.3822174e-4,1393.0144,1255.9639)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5291"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.6852066e-4,-0.04542872,0.03388399,1.8659776e-4,1408.5886,1232.5168)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5293"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.8981397e-4,-0.04542673,0.03388245,4.3161235e-4,1394.6762,1229.8808)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5295"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.86791e-4,-0.04541636,0.03387472,-9.8192582e-4,1475.4304,1311.8405)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5297"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00105349,-0.04541106,0.03387076,-0.0011665,1523.517,1366.2086)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5299"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.4268608e-4,-0.04541467,0.03387347,0.00104383,1059.182,893.15235)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5301"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.1246186e-4,-0.04542898,0.03388414,-1.2451339e-4,1018.2437,771.97591)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5303"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.2543291e-4,-0.04542059,0.03387792,8.0323948e-4,1035.5719,737.81022)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5305"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.5333514e-5,-0.04542917,0.03388428,-6.1271774e-5,1184.8449,951.08895)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5307"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.2569368e-4,-0.04542745,0.033883,3.6064538e-4,1063.2957,601.96305)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5309"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.0826454e-4,-0.04542768,0.03388316,3.4134366e-4,1104.3171,597.77966)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5311"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.7001704e-4,-0.0454287,0.03388395,-1.8828109e-4,1177.7973,728.66144)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5313"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.5719704e-4,-0.04542708,0.03388274,-3.9550933e-4,1181.8156,774.94594)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5315"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.6690564e-4,-0.04541956,0.03387714,8.4918247e-4,1144.0315,859.73077)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5317"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.4546234e-4,-0.04542727,0.03388287,3.8251822e-4,1172.684,823.89698)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5319"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.3416058e-4,-0.04542736,0.03388294,-3.7002433e-4,1125.2166,863.554)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5321"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00110268,-0.04540933,0.03386949,-0.00122101,1184.512,862.45355)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5323"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.8655728e-4,-0.04541331,0.03387246,-0.0010924,1272.0015,938.77085)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5325"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.7935812e-4,-0.04542545,0.0338815,5.3082438e-4,1252.8241,920.32584)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5327"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.7276581e-4,-0.04542178,0.03387878,-7.4491735e-4,1251.2482,938.7023)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5329"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.7770345e-4,-0.04542686,0.03388259,4.1821144e-4,1320.2728,1021.5064)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5331"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.8975135e-4,-0.04541319,0.03387236,0.00109593,1403.9078,973.26615)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5333"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.5816346e-4,-0.04542706,0.03388274,3.9657661e-4,1226.3761,1041.7831)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5335"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.7149584e-4,-0.04542554,0.03388162,-5.2206429e-4,1227.3022,1046.938)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5337"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.3740078e-4,-0.04542448,0.03388077,5.9504293e-4,1393.3109,895.54967)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5339"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.5189144e-4,-0.04542227,0.0338791,7.2183557e-4,1365.3767,894.04803)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5341"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.4310177e-4,-0.04542887,0.03388405,-1.5845019e-4,1330.4781,920.53725)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5343"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.8070775e-4,-0.04542789,0.03388337,3.1083463e-4,1348.4362,973.63571)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5345"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.3979657e-4,-0.04542605,0.03388196,-4.8696985e-4,1334.4191,942.96152)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5347"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00103782,-0.04541161,0.03387121,-0.00114915,1236.2229,724.73364)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5349"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.5044517e-4,-0.0454223,0.03387915,-7.2023599e-4,1278.9365,644.98179)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5351"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.6874952e-4,-0.04541956,0.03387709,-8.5122607e-4,1311.4457,683.37081)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5353"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.5828135e-5,-0.04542916,0.0338843,-5.0745352e-5,1280.0283,696.27013)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5355"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.5432812e-4,-0.04542581,0.03388177,-5.0305825e-4,1204.0816,803.11016)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5357"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.6662346e-4,-0.04541394,0.03387292,-0.00107034,1234.6752,805.65938)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5359"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.5646432e-4,-0.04541425,0.03387316,-0.00105907,1237.5592,813.30213)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5361"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.1789923e-5,-0.04542914,0.03388424,6.8437706e-5,1194.3489,855.04158)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5363"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.9973299e-4,-0.04541875,0.03387654,8.8552946e-4,1205.2235,844.39687)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5365"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.822591e-4,-0.04541648,0.03387481,9.7692525e-4,1204.0459,817.69077)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5367"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.9377153e-4,-0.04542858,0.03388384,-2.1455341e-4,1263.908,794.96483)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5369"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.223136e-4,-0.04541815,0.03387608,-9.105151e-4,1272.3255,736.52535)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5371"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.8883203e-4,-0.04542676,0.03388245,4.3055522e-4,1108.3329,665.80148)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5373"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00102518,-0.04541203,0.03387151,-0.00113515,1061.6158,658.10078)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5375"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.9064779e-4,-0.04541894,0.03387672,-8.7545962e-4,1058.7182,543.83948)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5377"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0011124,-0.04540898,0.03386923,-0.0012317,1091.1086,512.86767)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5379"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.0700247e-4,-0.04541858,0.03387638,8.9358994e-4,1081.1375,291.68341)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5381"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.8104692e-5,-0.04542908,0.0338842,-9.7559965e-5,1133.3642,237.78623)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5383"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.8073685e-4,-0.0454165,0.03387486,9.7520901e-4,1042.7334,244.03588)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5385"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.5915427e-4,-0.04542413,0.0338805,6.191343e-4,1054.5451,286.37385)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5387"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.7623994e-4,-0.04542172,0.03387876,-7.4881394e-4,1071.4651,372.63195)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5389"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.3962003e-4,-0.04542026,0.03387766,-8.1896317e-4,1013.777,156.15798)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5391"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.6135943e-4,-0.04542402,0.03388044,-6.2158887e-4,1158.1586,209.73083)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5393"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.1597301e-4,-0.04542757,0.0338831,3.498968e-4,1092.5832,329.69625)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5395"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.2019199e-4,-0.04542293,0.03387961,-6.8674043e-4,1260.4092,565.62084)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5397"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.7657449e-5,-0.04542916,0.03388424,-7.4912313e-5,1201.4957,625.26709)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5399"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.040872e-4,-0.04541585,0.03387438,0.00100107,1176.9883,559.92111)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5401"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.5405288e-4,-0.04541986,0.0338774,8.3493852e-4,1169.0759,594.67248)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5403"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00105922,-0.04541088,0.03387064,-0.00117286,1155.0759,555.39175)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5405"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.9874998e-5,-0.04542916,0.03388428,-6.632392e-5,1193.9638,437.82277)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5407"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.0121201e-4,-0.04542771,0.03388321,3.3352679e-4,1324.0272,529.61533)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5409"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00122839,-0.04540454,0.03386592,-0.00136014,1217.0213,452.01917)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5411"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.0074098e-5,-0.04542914,0.03388422,8.8653119e-5,1181.2244,511.72233)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5413"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00121612,-0.04540502,0.03386628,-0.00134658,1252.8423,496.9645)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5415"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.3934705e-4,-0.04542733,0.0338829,-3.7575428e-4,1311.5468,479.6667)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5417"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00116608,-0.04540693,0.03386775,-0.00129121,1272.6336,431.75346)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5419"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.7489621e-4,-0.04541671,0.03387498,-9.6873956e-4,1192.0002,357.07836)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5421"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-6.6114433e-4,-0.04542206,0.03387898,-7.3208718e-4,1211.8518,361.74368)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5423"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00116463,-0.04540703,0.03386779,-0.00128958,1275.9862,320.58117)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5425"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.499354e-4,-0.04541999,0.03387748,-8.3040521e-4,1319.9088,307.85052)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5427"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.4497833e-4,-0.04542016,0.03387757,-8.249051e-4,1295.5466,323.45371)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5429"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.625503e-4,-0.04541403,0.03387301,0.00106581,1220.6667,278.10254)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5431"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.2432591e-4,-0.04541812,0.03387605,9.1276208e-4,1142.8584,276.70872)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5433"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.1126076e-4,-0.04541566,0.03387422,-0.00100902,1162.3637,283.01668)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5435"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.0098204e-4,-0.04542775,0.03388319,3.3330872e-4,1187.6021,277.59069)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5437"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00108944,-0.0454098,0.03386984,-0.00120631,1214.1997,244.73838)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5439"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.1648821e-4,-0.0454208,0.03387807,-7.9338093e-4,1274.8636,233.51011)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5441"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.3478163e-4,-0.04542451,0.03388083,5.9216928e-4,1169.2489,181.57765)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5443"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.9490143e-4,-0.04542776,0.03388325,-3.2655087e-4,1163.2876,173.49064)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5445"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.1248882e-4,-0.04542898,0.03388418,1.2456538e-4,1288.757,200.93271)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5447"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.3289064e-4,-0.04542613,0.03388205,-4.7934476e-4,1384.6221,240.54685)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5449"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.3788748e-4,-0.04542827,0.03388363,-2.6346577e-4,1366.9112,237.98042)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5451"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.8470799e-5,-0.04542916,0.03388429,6.4734217e-5,1371.4619,243.10226)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5453"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.348602e-4,-0.04542889,0.0338841,-1.4934182e-4,1306.319,179.09786)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5455"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.3990224e-4,-0.04542889,0.03388409,1.5490214e-4,1277.5171,232.3027)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5457"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.5478495e-4,-0.04541433,0.0338732,-0.0010572,1360.4388,188.29383)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5459"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.1683259e-4,-0.04542637,0.03388219,-4.615509e-4,1346.7548,196.19683)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5461"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.2804515e-4,-0.04542892,0.0338841,-1.4178463e-4,1461.2404,203.54787)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5463"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.4068112e-4,-0.04542825,0.03388362,2.665161e-4,1506.5533,201.48442)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5465"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-5.1558828e-4,-0.04542486,0.03388105,-5.7088545e-4,1501.102,223.35444)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5467"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.6031712e-4,-0.04542811,0.03388348,2.8825153e-4,1469.2714,214.07193)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5469"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.8946447e-4,-0.04542142,0.03387851,7.6342511e-4,1440.8147,279.77147)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5471"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.4281248e-4,-0.0454202,0.0338776,-8.2248839e-4,1431.6904,306.60434)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5473"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.4858934e-4,-0.0454145,0.03387335,-0.00105036,1448.039,308.81688)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5475"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.7362565e-4,-0.0454287,0.03388395,1.9226241e-4,1453.5327,319.66564)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5477"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.5325468e-4,-0.04542881,0.03388399,1.6971611e-4,1395.009,408.08294)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5479"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00115554,-0.04540738,0.03386804,-0.0012795,1412.7458,409.14514)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5481"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.3036941e-4,-0.04542893,0.03388412,-1.4433256e-4,1472.6762,476.28244)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5483"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(6.1639993e-4,-0.045423,0.03387965,6.825418e-4,1456.906,531.08731)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5485"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.5979853e-4,-0.04541415,0.03387308,0.00106278,1483.6422,587.0474)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5487"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.9049831e-4,-0.045419,0.03387671,8.7527679e-4,1488.9873,581.01016)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5489"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.1441683e-4,-0.04541836,0.03387621,-9.0177718e-4,1391.9028,552.43612)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5491"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.8367435e-4,-0.0454279,0.03388333,-3.1409664e-4,1370.8786,579.03734)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5493"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.2749551e-5,-0.04542916,0.03388428,-8.0573556e-5,1371.5402,625.16574)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5495"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-2.8698229e-4,-0.04542784,0.03388333,-3.1777362e-4,1446.2803,654.57485)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5497"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00110839,-0.04540914,0.03386933,-0.00122728,1403.3828,641.53213)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5499"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.162195e-5,-0.04542919,0.03388431,3.5033088e-5,1362.996,735.74319)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5501"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.7332421e-4,-0.04541377,0.03387275,0.00107775,1358.7617,733.82463)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5503"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0010789,-0.04541019,0.03387013,-0.00119465,1421.0459,764.50043)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5505"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.5615409e-5,-0.04542906,0.03388418,-1.0584382e-4,1460.0567,767.58033)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5507"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.3510337e-4,-0.04542736,0.03388294,3.710532e-4,1331.7119,818.47629)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5509"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(1.8884011e-5,-0.04542919,0.03388433,2.0924144e-5,1392.3762,821.46454)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5511"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.4871822e-4,-0.04541448,0.03387335,-0.0010505,1411.6796,809.7919)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5513"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.0441664e-4,-0.04541861,0.03387643,8.9071715e-4,1390.713,844.9507)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5515"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.0527991e-4,-0.04541583,0.03387432,-0.0010024,1301.7592,821.5807)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5517"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-1.5793523e-4,-0.04542877,0.03388401,-1.7487378e-4,1212.7522,850.67144)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5519"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.5134081e-4,-0.04541997,0.03387741,-8.319272e-4,1200.7036,879.34719)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5521"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.0838181e-4,-0.04541851,0.03387635,-8.9509227e-4,1236.9252,914.54631)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5523"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.6313225e-4,-0.04542806,0.03388348,2.9134513e-4,1453.9169,854.98128)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5525"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.4835777e-4,-0.04541742,0.03387553,-9.3934722e-4,1409.3464,997.26026)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5527"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00100452,-0.04541267,0.03387201,-0.00111229,1384.9761,996.59165)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5529"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-3.0532504e-4,-0.04542771,0.03388319,-3.3805624e-4,1428.3198,990.10095)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5531"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.083473e-4,-0.04542846,0.03388378,2.3070358e-4,1440.0705,1008.0724)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5533"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.2948854e-4,-0.04542832,0.03388367,2.5413168e-4,1288.4838,970.53697)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5535"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.2278918e-4,-0.04541528,0.03387393,0.00102176,1284.8124,1003.487)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5537"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00102717,-0.04541192,0.03387144,0.00113735,1283.5788,971.30192)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5539"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-7.4206349e-5,-0.04542914,0.03388428,-8.2168376e-5,1323.5644,954.64988)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5541"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.7308956e-4,-0.04542552,0.03388159,5.2384333e-4,1421.4496,745.43663)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5543"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.0259954e-4,-0.04541869,0.03387647,-8.8868875e-4,1482.9102,695.42463)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5545"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-4.9442461e-6,-0.04542922,0.0338843,-5.4493222e-6,1527.5084,716.53299)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5547"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.5497134e-4,-0.04542716,0.0338828,3.9306617e-4,1524.5863,720.2155)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5549"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.0524857e-4,-0.04542648,0.03388232,4.4874097e-4,1486.0966,674.71231)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5551"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.00109642,-0.04540954,0.03386966,-0.00121403,1502.8994,660.46388)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5553"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(0.00103813,-0.04541158,0.03387119,0.00114952,1480.3694,671.15043)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5555"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(3.6076494e-4,-0.04542706,0.03388272,3.9948841e-4,1476.5896,706.66025)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5557"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-8.6025534e-4,-0.04541712,0.03387527,-9.5255065e-4,1482.9024,968.42168)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5559"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.3192671e-4,-0.0454283,0.03388367,2.5680056e-4,1442.3729,1009.809)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5561"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-9.4320489e-4,-0.04541469,0.03387347,-0.0010444,1453.9101,1086.4759)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5563"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(8.0315573e-4,-0.04541865,0.03387647,8.8934e-4,1468.6694,1036.3102)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5565"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(2.8254028e-4,-0.04542789,0.03388333,3.1286177e-4,1462.1357,789.36623)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5567"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(5.4020869e-5,-0.04542917,0.0338843,5.983909e-5,1466.6276,815.58136)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5569"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.030384e-4,-0.04542653,0.03388234,4.4626853e-4,1438.2399,855.50682)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5571"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(9.4294737e-4,-0.04541469,0.03387347,0.00104412,1430.3618,849.60705)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5573"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(7.6006081e-4,-0.04541977,0.03387727,8.416418e-4,1444.3805,828.13749)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5575"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(4.4896389e-4,-0.0454259,0.03388187,4.9710042e-4,1475.4453,766.28822)"
+       d="M 40.532372,26.047196 16.148383,12.860153 11.11929,40.121578 10.34761,12.410902 -15.776022,21.686293 7.8362868,7.1626599 -13.258254,-10.823374 11.125736,2.3636691 16.154828,-24.897756 16.926508,2.81292 43.050141,-6.4624709 19.437832,8.0611617 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.12449"
+       sodipodi:arg1="0.60089126"
+       sodipodi:r2="5.8181429"
+       sodipodi:r1="32.607018"
+       sodipodi:cy="7.6119108"
+       sodipodi:cx="13.637059"
+       sodipodi:sides="6"
+       id="path5577"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       sodipodi:type="star"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path5579"
+       sodipodi:sides="4"
+       sodipodi:cx="19.824244"
+       sodipodi:cy="12.157597"
+       sodipodi:r1="23.170977"
+       sodipodi:r2="4.134449"
+       sodipodi:arg1="0.67729413"
+       sodipodi:arg2="1.4626923"
+       inkscape:flatsided="false"
+       inkscape:rounded="0"
+       inkscape:randomized="0"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       transform="matrix(-0.04808206,-0.08379507,0.06517266,-0.06178694,-207.58788,1623.0318)" />
+    <path
+       transform="matrix(-0.04729646,-0.08445618,0.06574541,-0.06087948,-219.62124,1591.784)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5581"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04711032,-0.0846105,0.06587926,-0.06066429,-219.87184,1561.0148)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5583"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04831109,-0.08359925,0.06500322,-0.06205134,-212.22644,1558.9108)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5585"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04593092,-0.08556778,0.06671064,-0.05930016,-189.02303,1590.6312)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5587"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04739369,-0.08437527,0.06567524,-0.06099181,-188.55291,1513.2307)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5589"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04754564,-0.08424824,0.06556518,-0.06116737,-184.03772,1513.9427)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5591"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04954483,-0.08252038,0.06407098,-0.06347439,-186.83668,1518.4942)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5593"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0497789,-0.08231093,0.06389033,-0.0637442,-177.58057,1532.1596)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5595"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04873287,-0.08323505,0.06468822,-0.06253813,-223.18275,1383.1354)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5597"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04879072,-0.08318471,0.06464474,-0.06260484,-198.00022,1508.882)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5599"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04804655,-0.08382529,0.06519881,-0.06174592,-198.72734,1427.0968)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5601"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04739685,-0.08437263,0.06567295,-0.06099542,-155.89176,1441.479)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5603"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04968913,-0.08239147,0.06395976,-0.06364074,-180.41917,1373.8735)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5605"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04640293,-0.08518888,0.06638126,-0.05984632,-199.24573,1353.7646)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5607"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05001896,-0.08209464,0.06370376,-0.06402082,-173.90019,1348.5931)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5609"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04824301,-0.08365762,0.0650537,-0.06197275,-218.47427,1310.1874)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5611"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0464512,-0.08514978,0.06634739,-0.05990214,-218.35734,1322.9134)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5613"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04763473,-0.08417351,0.06550044,-0.06127026,-180.87259,1258.1252)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5615"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04712928,-0.08459485,0.06586564,-0.0606862,-199.68319,1204.3561)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5617"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0460952,-0.08543653,0.06659652,-0.05949029,-192.45622,1234.449)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5619"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05020223,-0.08192842,0.06356047,-0.06423186,-179.13297,1332.0332)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5621"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04962078,-0.0824526,0.06401248,-0.06356196,-209.8952,1114.6255)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5623"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04972418,-0.08236006,0.06393265,-0.06368114,-202.24379,1167.0962)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5625"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04878324,-0.08319123,0.06465038,-0.0625962,-224.84381,1144.9899)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5627"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04797013,-0.08389027,0.06525506,-0.06165768,-223.84854,1155.9673)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5629"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04635694,-0.08522599,0.06641356,-0.05979311,-221.26125,1122.8465)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5631"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04967426,-0.08240476,0.06397121,-0.06362363,-199.56509,1156.4309)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5633"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04894744,-0.08304792,0.0645265,-0.06278565,-127.78486,1320.9952)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5635"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04695828,-0.08473584,0.06598798,-0.06048859,-161.02318,1234.411)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5637"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0465825,-0.08504327,0.06625482,-0.06005402,-171.77328,1187.4291)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5639"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04853754,-0.08340428,0.0648346,-0.06231273,-180.84491,1113.323)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5641"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04851747,-0.08342169,0.06484962,-0.06228951,-194.38507,1068.466)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5643"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0477819,-0.08404955,0.06539307,-0.06144028,-171.94856,1010.1521)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5645"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04865339,-0.08330404,0.06474788,-0.06244635,-220.75303,918.86086)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5647"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0501471,-0.08197851,0.06360365,-0.06416839,-124.10872,1029.7448)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5649"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0483102,-0.08360005,0.0650039,-0.06205033,-85.732095,1057.9449)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5651"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05004952,-0.08206697,0.06367988,-0.06405604,-116.0397,1052.7301)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5653"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04845411,-0.0834763,0.06489688,-0.06221642,-181.74923,970.49431)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5655"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04883757,-0.08314392,0.0646095,-0.06265886,-147.16827,903.79532)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5657"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04997916,-0.08213058,0.06373477,-0.06397502,-122.02188,888.5979)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5659"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04980627,-0.08228641,0.06386911,-0.06377572,-196.29361,762.79073)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5661"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05014732,-0.0819783,0.06360348,-0.06416864,-188.80752,882.3681)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5663"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04696509,-0.08473033,0.06598319,-0.06049636,-183.4146,667.74897)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5665"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0466386,-0.08499758,0.06621518,-0.06011891,-212.85024,525.3972)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5667"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04640699,-0.08518556,0.06637845,-0.05985104,-209.92947,626.40353)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5669"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05000644,-0.08210602,0.06371353,-0.06400637,-207.57709,615.15686)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5671"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05001952,-0.08209415,0.06370329,-0.06402145,-186.96215,480.27242)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5673"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04806751,-0.08380744,0.06518339,-0.06177022,-181.50895,505.23375)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5675"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04749947,-0.08428686,0.06559867,-0.06111402,-178.56978,533.03347)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5677"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04903715,-0.08296933,0.06445859,-0.0628891,-168.69554,635.99442)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5679"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04993902,-0.08216683,0.06376602,-0.06392875,-170.21218,796.39217)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5681"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04692711,-0.08476154,0.06601026,-0.0604525,-204.02041,805.29438)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5683"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04958177,-0.08248739,0.06404252,-0.06351702,-144.15403,844.26717)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5685"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05018491,-0.08194412,0.06357403,-0.06421196,-74.04799,1526.3995)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5687"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04983296,-0.08226238,0.06384841,-0.06380652,-21.252482,1411.6878)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5689"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05008415,-0.08203563,0.06365286,-0.0640959,16.781809,1552.2222)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5691"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04974734,-0.08233927,0.06391472,-0.06370784,17.068907,1580.7213)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5693"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04603647,-0.08548353,0.06663736,-0.05942228,-11.999724,1589.0001)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5695"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04786588,-0.0839786,0.06533156,-0.06153727,-43.852638,1437.3823)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5697"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04674193,-0.08491329,0.06614197,-0.06023839,8.1319924,1393.06)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5699"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04883557,-0.08314566,0.06461098,-0.06265658,45.382668,1399.9886)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5701"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04972902,-0.0823557,0.06392894,-0.06368673,-62.745575,1409.6861)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5703"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04687377,-0.08480531,0.06604826,-0.06039085,-56.773988,1509.4649)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5705"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04914664,-0.08287309,0.06437552,-0.06301534,-70.527152,1477.3935)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5707"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04878121,-0.083193,0.06465187,-0.0625939,-103.44597,1430.1575)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5709"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04723053,-0.08451097,0.06579291,-0.06080322,-109.42347,1301.4127)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5711"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04720713,-0.08453039,0.06580975,-0.06077614,-64.045597,1217.1709)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5713"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04867754,-0.08328314,0.06472976,-0.06247426,-79.536912,1149.9682)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5715"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04954275,-0.08252219,0.06407258,-0.06347204,-45.083106,1275.9155)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5717"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04860323,-0.08334749,0.06478548,-0.06238854,-124.1782,1129.2212)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5719"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04893335,-0.08306026,0.0645372,-0.06276938,-99.873037,1182.8071)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5721"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04644324,-0.0851562,0.06635297,-0.05989296,69.540495,984.00659)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5723"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04824858,-0.08365285,0.06504962,-0.06197917,80.895728,989.50252)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5725"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04933468,-0.08270709,0.06423216,-0.06323216,42.566146,971.88859)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5727"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04960652,-0.0824653,0.06402346,-0.06354556,43.49392,1164.8885)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5729"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0486074,-0.08334389,0.06478236,-0.06239333,67.334132,1147.3104)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5731"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04854975,-0.08339374,0.06482549,-0.06232679,6.8572776,1039.8998)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5733"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04898341,-0.08301643,0.06449933,-0.06282709,-8.2877556,987.8492)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5735"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04837844,-0.08354142,0.0649532,-0.06212907,-19.903061,1021.7198)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5737"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0460757,-0.08545212,0.0666101,-0.05946772,-71.29027,1003.6645)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5739"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04876245,-0.08320929,0.06466599,-0.06257226,44.265248,789.42658)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5741"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0459461,-0.08555563,0.06670011,-0.05931776,71.352579,822.8509)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5743"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04953422,-0.08252982,0.0640791,-0.06346226,6.020354,496.47125)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5745"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0493522,-0.08269154,0.06421872,-0.06325243,-95.091541,794.58623)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5747"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04764654,-0.08416357,0.06549178,-0.06128393,-155.13287,754.62327)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5749"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0461139,-0.08542154,0.0665835,-0.05951193,-166.24507,752.15043)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5751"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04847804,-0.08345571,0.06487903,-0.06224405,-128.56341,806.89568)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5753"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04874414,-0.08322529,0.06467979,-0.06255107,-70.589026,911.41176)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5755"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04861042,-0.08334129,0.0647801,-0.06239679,-109.91351,872.95633)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5757"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04663114,-0.08500365,0.06622046,-0.06011028,-122.24098,709.31701)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5759"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04912996,-0.08288776,0.06438822,-0.06299611,-17.198736,654.47738)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5761"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04877275,-0.08320038,0.06465826,-0.06258406,8.6686593,657.36777)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5763"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04758742,-0.08421322,0.06553482,-0.06121562,26.869224,481.03437)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5765"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04656256,-0.08505948,0.06626887,-0.06003095,62.379508,542.25717)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5767"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04878968,-0.08318563,0.06464555,-0.06260364,50.690214,489.03089)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5769"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04885843,-0.08312568,0.06459376,-0.06268292,73.068354,311.95521)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5771"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04656082,-0.08506087,0.06627014,-0.06002891,40.002038,315.18733)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5773"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04615696,-0.08538703,0.06655347,-0.05956173,-68.021169,630.62515)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5775"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04656642,-0.08505631,0.06626619,-0.06003542,-36.630416,717.45131)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5777"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04687322,-0.0848058,0.06604868,-0.0603902,-78.60923,717.62705)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5779"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0480506,-0.08382189,0.06519587,-0.06175055,-75.470593,713.01103)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5781"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04792896,-0.08392516,0.06528531,-0.06161013,-90.197402,597.44233)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5783"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04642786,-0.08516865,0.06636378,-0.0598751,-53.306473,695.72243)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5785"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04651112,-0.08510121,0.06630517,-0.0599715,-43.338903,681.55533)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5787"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04756599,-0.08423117,0.06555039,-0.06119086,-72.853343,453.92347)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5789"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04877114,-0.08320173,0.06465944,-0.06258225,-48.683858,499.36612)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5791"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04911276,-0.08290289,0.06440125,-0.06297631,68.510184,456.15518)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5793"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04727034,-0.08447789,0.06576425,-0.06084925,94.80662,517.10447)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5795"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04699744,-0.08470366,0.06596005,-0.06053377,-9.2294869,382.80302)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5797"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04694201,-0.08474925,0.06599961,-0.06046979,-21.783959,516.33583)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5799"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04951891,-0.08254345,0.06409091,-0.06344459,-173.07106,422.18468)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5801"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04668641,-0.08495862,0.06618134,-0.06017417,-163.64852,256.11929)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5803"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04694886,-0.08474364,0.06599474,-0.06047769,-117.07889,264.70367)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5805"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04804883,-0.08382335,0.06519714,-0.06174857,-111.25925,363.43697)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5807"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04759468,-0.08420711,0.06552951,-0.06122403,-94.193021,302.08598)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5809"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04643538,-0.08516259,0.06635848,-0.05988383,-167.11262,228.36102)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5811"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04823654,-0.08366311,0.06505848,-0.06196532,-222.24421,252.11889)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5813"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04629037,-0.08527971,0.06646024,-0.05971611,-166.35063,298.45842)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5815"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04677394,-0.08488713,0.06611926,-0.0602754,-145.17668,198.69767)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5817"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04753453,-0.08425753,0.06557323,-0.06115452,-144.21243,300.8637)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5819"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04771442,-0.08410642,0.06544232,-0.06136234,-6.5034713,269.6375)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5821"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05009756,-0.08202348,0.0636424,-0.06411132,-84.33902,153.52191)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5823"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04598096,-0.08552787,0.06667594,-0.05935806,-139.72724,161.31087)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5825"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04592768,-0.08557033,0.06671291,-0.05929639,15.537578,234.25731)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5827"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04779917,-0.08403498,0.06538037,-0.06146028,79.465041,288.00273)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5829"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04664375,-0.0849934,0.0662115,-0.06012487,58.294909,272.11636)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5831"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04947802,-0.08257983,0.0641223,-0.06339743,69.07825,276.43095)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5833"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04843272,-0.08349471,0.06491278,-0.06219172,219.24467,640.9126)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5835"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04893436,-0.08305936,0.06453639,-0.06277054,202.05294,624.28612)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5837"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04832496,-0.08358737,0.06499294,-0.06206739,53.528017,490.46297)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5839"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0494506,-0.08260423,0.06414337,-0.06336584,104.82311,786.63853)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5841"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04820865,-0.08368702,0.06507916,-0.06193306,94.546639,780.63584)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5843"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05018677,-0.08194246,0.06357258,-0.06421407,69.578809,711.72015)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5845"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04948523,-0.08257343,0.06411676,-0.06340576,81.891649,743.34073)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5847"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04786173,-0.08398209,0.0653346,-0.06153249,78.72088,812.98843)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5849"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04865075,-0.08330633,0.06474985,-0.06244336,29.965653,709.90278)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5851"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04686099,-0.08481584,0.06605737,-0.06037605,76.436335,881.46695)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5853"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04880641,-0.08317105,0.06463294,-0.06262295,-25.001855,875.8405)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5855"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05013474,-0.08198969,0.06361329,-0.06415414,-4.4525735,933.57494)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5857"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0480276,-0.08384142,0.06521278,-0.06172406,33.172675,892.79371)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5859"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0474885,-0.08429609,0.06560661,-0.06110133,21.964244,803.02483)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5861"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04872128,-0.08324513,0.06469695,-0.06252473,32.858835,855.45335)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5863"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04728178,-0.08446839,0.06575601,-0.06086252,70.033126,896.67509)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5865"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04990791,-0.08219493,0.06379023,-0.06389285,-19.128737,738.27837)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5867"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04769254,-0.0841249,0.06545827,-0.06133709,-16.299455,647.4402)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5869"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04868122,-0.08327989,0.06472705,-0.06247846,123.42564,1273.8417)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5871"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04825361,-0.08364855,0.06504589,-0.06198495,174.6937,1246.1206)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5873"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04841343,-0.08351137,0.06492715,-0.06216944,100.29345,1297.0363)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5875"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04816177,-0.08372706,0.06511382,-0.06187894,119.88369,1275.2693)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5877"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04703959,-0.0846689,0.0659299,-0.06058253,91.636964,1241.4044)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5879"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04774539,-0.08408036,0.06541971,-0.06139812,74.807585,1241.9777)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5881"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04976757,-0.08232117,0.0638991,-0.06373116,98.770162,1245.7856)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5883"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04682054,-0.08484894,0.06608614,-0.06032932,78.168963,1312.6868)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5885"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04736277,-0.08440099,0.06569759,-0.06095604,143.90544,1304.5554)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5887"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04709439,-0.08462365,0.06589066,-0.06064589,122.33267,1380.3346)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5889"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04987542,-0.08222415,0.06381546,-0.06385543,61.881793,1294.4948)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5891"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04620855,-0.08534555,0.06651746,-0.05962143,34.764877,1226.1126)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5893"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04934294,-0.08269973,0.06422582,-0.06324173,42.224108,1432.6877)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5895"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04633137,-0.08524666,0.06643151,-0.05976354,55.066358,1493.9635)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5897"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05011313,-0.08200933,0.06363021,-0.06412929,28.517573,1500.8208)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5899"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05000582,-0.08210651,0.06371399,-0.06400565,-31.264131,1525.2461)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5901"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04767069,-0.08414327,0.06547422,-0.0613118,-48.205246,1558.9678)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5903"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.046032,-0.08548709,0.06664049,-0.05941714,-158.26187,1510.2066)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5905"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04657908,-0.08504598,0.06625723,-0.06005009,-62.225237,1573.0449)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5907"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04932819,-0.08271283,0.06423709,-0.06322469,2.678708,1590.2284)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5909"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04972597,-0.0823585,0.0639313,-0.06368318,-2.2841988,1577.4152)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5911"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04875375,-0.08321691,0.06467258,-0.06256219,-9.1851057,1443.7623)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5913"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04762521,-0.08418148,0.06550728,-0.06125933,26.84585,1458.6179)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5915"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04721496,-0.08452385,0.06580409,-0.06078528,157.77837,1549.194)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5917"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0501467,-0.08197883,0.06360394,-0.06416796,136.98572,1584.1376)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5919"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04826627,-0.08363771,0.06503648,-0.06199961,164.47911,1545.4045)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5921"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04866879,-0.08329072,0.06473635,-0.06246412,68.95363,1575.6626)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5923"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04604231,-0.08547883,0.06663333,-0.05942907,95.215691,1539.766)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5925"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04684179,-0.08483153,0.06607103,-0.06035385,160.59928,1659.8565)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5927"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04956592,-0.08250156,0.06405475,-0.06349875,214.08159,1686.6602)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5929"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04752171,-0.08426832,0.06558254,-0.06113972,277.81969,1646.5149)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5931"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04898837,-0.08301206,0.06449556,-0.06283283,78.715552,1620.97)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5933"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04973882,-0.08234693,0.06392135,-0.06369803,127.53255,1663.9689)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5935"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04745501,-0.08432405,0.0656309,-0.06106266,317.24087,1534.2772)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5937"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04987694,-0.08222285,0.06381428,-0.0638572,430.92543,1458.9091)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5939"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04924719,-0.08278443,0.06429895,-0.06313127,442.14495,1496.3845)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5941"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04792723,-0.08392664,0.06528656,-0.06160815,284.402,1503.8804)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5943"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04720029,-0.084536,0.06581466,-0.06076831,221.91943,1496.741)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5945"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04777987,-0.08405127,0.06539451,-0.06143796,235.11317,1485.311)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5947"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04786261,-0.08398133,0.06533397,-0.06153355,260.59618,1528.5904)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5949"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04716981,-0.0845613,0.06583657,-0.06073308,228.57779,1537.9336)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5951"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04807493,-0.08380117,0.06517792,-0.06177864,249.92094,1508.6738)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5953"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04879952,-0.08317706,0.06463814,-0.06261499,220.6319,1497.7353)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5955"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04594059,-0.08556002,0.06670395,-0.05931132,195.68597,1611.1202)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5957"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04830495,-0.08360455,0.06500778,-0.06204425,308.09201,1547.9348)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5959"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04681875,-0.08485041,0.0660874,-0.06032728,343.8957,1528.1108)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5961"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04744585,-0.08433173,0.06563753,-0.06105203,127.1318,1274.3192)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5963"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04857913,-0.08336836,0.06480349,-0.06236069,211.27703,1355.0675)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5965"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04990087,-0.08220123,0.06379572,-0.06388474,439.61498,1379.9338)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5967"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04769942,-0.08411913,0.06545328,-0.06134502,118.47453,1149.6186)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5969"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04752253,-0.08426765,0.06558195,-0.06114066,280.69773,1123.9775)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5971"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04971717,-0.08236634,0.06393811,-0.06367308,172.07057,1069.9255)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5973"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0473403,-0.08441971,0.0657138,-0.06093013,212.84741,1216.3136)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5975"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04831196,-0.08359854,0.06500257,-0.06205235,235.83787,1258.9831)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5977"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04922187,-0.08280676,0.06431823,-0.06310213,298.12798,1306.2513)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5979"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04691625,-0.08477043,0.06601801,-0.06043994,366.81909,1246.6981)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5981"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04632393,-0.08525269,0.06643673,-0.05975493,380.5436,1242.0768)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5983"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0493726,-0.08267346,0.06420312,-0.0632759,345.26879,1212.2371)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5985"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04598578,-0.085524,0.06667256,-0.05936366,366.09355,1198.1632)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5987"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0487526,-0.08321792,0.06467343,-0.06256089,220.05051,1167.5666)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5989"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0477549,-0.08407231,0.06541277,-0.06140911,261.67087,1162.8113)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5991"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04654747,-0.08507171,0.06627954,-0.06001352,292.06767,1135.3314)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5993"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04950742,-0.08255368,0.06409975,-0.06343129,302.99556,1072.823)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5995"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04651443,-0.08509855,0.06630285,-0.05997527,292.59799,1156.9211)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5997"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04716414,-0.08456598,0.06584064,-0.06072653,271.55419,1064.7141)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path5999"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04684274,-0.08483075,0.06607034,-0.06035494,381.44899,999.76914)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6001"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04976561,-0.0823229,0.06390059,-0.06372886,304.86797,923.49053)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6003"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0461821,-0.08536679,0.06653594,-0.05959085,212.33278,969.54327)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6005"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05000655,-0.08210587,0.06371347,-0.06400646,175.97647,1080.7159)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6007"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04827794,-0.08362766,0.0650278,-0.06201308,125.8799,1059.3813)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6009"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04951091,-0.08255057,0.06409706,-0.06343534,110.44233,1039.7682)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6011"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04816968,-0.08372033,0.06510801,-0.0618881,203.34033,980.11105)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6013"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04731344,-0.08444211,0.06573317,-0.06089904,163.38116,1016.5762)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6015"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04699783,-0.08470332,0.06595977,-0.06053425,159.9723,973.03019)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6017"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04938025,-0.08266672,0.06419724,-0.06328471,205.4648,985.83426)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6019"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04795025,-0.08390711,0.06526968,-0.06163473,182.36182,1023.645)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6021"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04796505,-0.08389455,0.06525882,-0.06165182,109.47633,944.52887)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6023"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04750924,-0.08427872,0.06559158,-0.06112532,181.98519,841.77666)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6025"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04736516,-0.08439903,0.06569586,-0.06095882,272.18255,769.68618)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6027"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04650578,-0.08510556,0.06630893,-0.05996528,239.49169,785.55156)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6029"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04894419,-0.08305081,0.06452902,-0.06278183,224.47513,761.65019)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6031"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04887734,-0.08310923,0.06457948,-0.06270473,164.87643,858.41665)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6033"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04654945,-0.08507012,0.06627815,-0.06001582,168.11371,855.69951)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6035"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04727134,-0.08447705,0.06576351,-0.06085042,185.14877,779.95841)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6037"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04653553,-0.0850814,0.06628798,-0.05999968,189.1554,779.59819)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6039"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04732184,-0.08443511,0.06572715,-0.06090874,145.24132,660.26435)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6041"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04629314,-0.08527747,0.0664583,-0.05971928,136.22915,733.4652)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6043"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04754465,-0.08424909,0.06556588,-0.06116626,108.57785,762.5243)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6045"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04891444,-0.08307679,0.06455149,-0.06274757,186.11675,781.93937)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6047"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04860959,-0.083342,0.06478074,-0.06239581,201.31068,667.13032)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6049"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04607472,-0.08545291,0.06661075,-0.05946658,178.47598,503.08323)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6051"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04892296,-0.08306932,0.06454501,-0.06275736,184.87439,572.52761)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6053"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04748926,-0.08429543,0.06560606,-0.06110223,215.04776,661.03445)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6055"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04999723,-0.08211425,0.0637207,-0.06399574,148.21326,613.88022)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6057"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04763117,-0.08417648,0.065503,-0.06126614,101.22992,662.97452)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6059"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04669046,-0.08495531,0.06617848,-0.06017885,98.676958,600.15499)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6061"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04800361,-0.08386178,0.06523043,-0.06169635,105.54146,424.0606)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6063"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04991019,-0.08219287,0.06378845,-0.0638955,172.75153,558.95027)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6065"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04959176,-0.0824785,0.06403485,-0.06352854,159.21192,583.75091)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6067"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04938123,-0.08266583,0.06419651,-0.06328588,49.265002,641.29297)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6069"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04851216,-0.08342619,0.06485353,-0.06228343,53.774415,579.09182)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6071"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04632007,-0.08525575,0.06643943,-0.05975046,251.48233,399.01244)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6073"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04605783,-0.08546646,0.06662252,-0.05944705,162.92702,312.44939)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6075"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05021166,-0.08191984,0.06355309,-0.0642427,159.60084,345.60208)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6077"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04637233,-0.08521355,0.06640279,-0.05981094,147.21544,372.76236)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6079"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04703657,-0.08467139,0.06593206,-0.06057909,109.09213,423.99392)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6081"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04920445,-0.08282217,0.06433152,-0.06308202,129.6497,439.28369)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6083"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04912265,-0.08289421,0.06439372,-0.06298769,175.67221,427.26468)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6085"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04692864,-0.08476026,0.06600917,-0.06045426,184.07873,420.41499)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6087"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04605818,-0.08546614,0.06662231,-0.05944744,293.93927,378.22451)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6089"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04882629,-0.08315375,0.06461798,-0.06264586,102.6709,151.50571)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6091"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04611995,-0.08541667,0.06657928,-0.05951889,91.622743,230.86369)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6093"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04912502,-0.08289212,0.06439193,-0.06299048,264.19312,229.63153)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6095"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04851142,-0.0834269,0.06485411,-0.06228256,345.44336,253.39692)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6097"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04719928,-0.08453686,0.06581539,-0.06076714,350.38461,302.64211)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6099"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04825873,-0.08364422,0.06504207,-0.06199086,173.55076,292.38728)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6101"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04610768,-0.0854265,0.06658782,-0.05950471,361.74472,411.65101)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6103"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04597953,-0.08552895,0.06667689,-0.05935646,310.5681,413.05926)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6105"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04601691,-0.08549915,0.06665095,-0.05939965,395.69557,559.72968)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6107"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04619904,-0.08535319,0.0665241,-0.05961046,398.05958,543.89925)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6109"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04878205,-0.08319231,0.0646513,-0.06259482,343.15368,558.46994)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6111"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04743287,-0.08434255,0.06564688,-0.06103704,342.87876,568.95887)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6113"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05007263,-0.08204608,0.06366187,-0.06408263,343.70344,620.70405)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6115"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0479586,-0.08390002,0.06526355,-0.06164434,319.05346,625.72472)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6117"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04837376,-0.08354545,0.06495667,-0.06212368,310.09439,729.61875)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6119"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04699581,-0.08470496,0.06596121,-0.06053195,358.30257,690.37174)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6121"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04804614,-0.0838256,0.06519915,-0.06174551,436.76838,899.78017)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6123"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04612614,-0.08541172,0.06657498,-0.05952608,445.99128,924.96506)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6125"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04902562,-0.08297948,0.06446738,-0.06287576,439.37427,878.4811)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6127"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05009377,-0.08202692,0.06364537,-0.06410697,307.93962,756.56226)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6129"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04902194,-0.08298267,0.06447014,-0.06287158,369.91377,767.20167)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6131"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04619594,-0.08535562,0.06652626,-0.05960687,429.26795,930.15204)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6133"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04700802,-0.08469493,0.06595248,-0.06054609,391.16682,898.91555)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6135"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0486642,-0.08329465,0.06473975,-0.06245887,322.37904,921.73083)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6137"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04759345,-0.08420813,0.06553042,-0.06122263,372.37837,953.86497)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6139"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0500992,-0.08202202,0.06364114,-0.06411319,317.30776,849.25717)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6141"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04994946,-0.08215747,0.06375792,-0.06394077,296.66296,919.45073)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6143"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0486096,-0.083342,0.06478071,-0.06239584,437.02672,1058.2262)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6145"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04646363,-0.08513971,0.06633861,-0.05991651,348.86169,911.96985)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6147"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04653404,-0.0850826,0.06628901,-0.05999797,326.01356,966.29951)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6149"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04954937,-0.08251629,0.06406746,-0.06347972,298.68422,971.92003)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6151"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04905167,-0.08295658,0.06444762,-0.06290582,402.51653,1240.4786)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6153"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04701512,-0.08468906,0.0659474,-0.0605543,419.07736,1280.8876)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6155"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04727567,-0.08447348,0.0657604,-0.0608554,369.2847,1147.2182)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6157"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04778935,-0.08404333,0.06538758,-0.06144889,305.59425,1106.4246)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6159"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05011829,-0.08200466,0.06362618,-0.06413519,430.02303,1245.2313)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6161"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04932504,-0.08271559,0.06423951,-0.06322107,477.82028,1350.7668)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6163"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05020358,-0.08192718,0.06355941,-0.06423345,478.02421,1343.3682)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6165"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04724856,-0.084496,0.06577992,-0.06082411,476.77399,1370.235)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6167"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04882638,-0.08315369,0.06461789,-0.06264594,429.97884,1422.6853)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6169"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04609202,-0.0854391,0.06659873,-0.05948658,391.27543,1497.2333)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6171"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04636289,-0.08522123,0.06640946,-0.05979996,464.39991,1483.692)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6173"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04634637,-0.08523457,0.06642099,-0.0597809,431.54551,1437.6125)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6175"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04933507,-0.08270672,0.06423182,-0.06323262,322.7551,1518.8607)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6177"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04996182,-0.08214629,0.06374827,-0.06395499,286.42428,1565.3405)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6179"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04670221,-0.08494573,0.06617015,-0.06019244,404.31381,1584.4561)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6181"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04620317,-0.08534991,0.06652124,-0.05961521,308.08595,1581.5213)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6183"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04610129,-0.08543164,0.06659226,-0.05949734,336.53968,1555.0569)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6185"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04867475,-0.08328551,0.06473184,-0.062471,353.86966,1566.6145)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6187"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0478071,-0.08402834,0.06537462,-0.06146938,361.929,1629.899)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6189"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04635422,-0.08522823,0.06641552,-0.05978994,282.13414,1535.5358)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6191"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04983196,-0.0822633,0.06384918,-0.06380535,240.02545,1572.9659)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6193"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04642217,-0.0851733,0.06636775,-0.05986856,327.30207,1534.3323)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6195"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04998826,-0.08212234,0.06372766,-0.06398543,356.64429,1506.1147)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6197"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04733341,-0.08442545,0.06571877,-0.06092213,314.7536,1436.964)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6199"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04834947,-0.08356631,0.06497473,-0.06209566,262.78451,1473.9391)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6201"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04842842,-0.08349844,0.06491597,-0.06218673,203.48924,1416.4993)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6203"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04834105,-0.08357353,0.064981,-0.06208588,284.12151,1428.9019)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6205"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04830834,-0.0836016,0.06500528,-0.06204818,166.63871,1416.7372)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6207"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04614047,-0.08540021,0.06656501,-0.05954267,101.88173,1450.6105)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6209"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04892976,-0.08306339,0.06453991,-0.06276524,93.297245,1452.5822)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6211"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04594139,-0.08555937,0.06670339,-0.0593123,118.80246,1455.1791)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6213"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04713381,-0.08459107,0.06586239,-0.06069146,468.95969,1597.9032)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6215"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04802569,-0.08384307,0.06521423,-0.06172178,487.71079,1581.3698)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6217"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04957032,-0.0824976,0.06405135,-0.06350386,541.46829,1580.971)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6219"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04790983,-0.08394137,0.06529934,-0.06158808,591.2885,1544.4698)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6221"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04763329,-0.08417467,0.06550142,-0.06126865,508.69816,1526.8801)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6223"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04856887,-0.08337723,0.06481119,-0.06234887,465.25031,1551.9786)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6225"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04601129,-0.08550361,0.06665487,-0.05939321,501.46656,1540.064)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6227"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04933255,-0.08270896,0.06423377,-0.06322973,486.96864,1523.412)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6229"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04591791,-0.08557813,0.06671966,-0.0592851,724.3347,1526.4888)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6231"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04622374,-0.08533338,0.06650686,-0.05963899,729.78482,1542.0832)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6233"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04634457,-0.085236,0.06642226,-0.05977881,734.94423,1497.7698)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6235"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04792297,-0.08393026,0.06528973,-0.0616032,716.6463,1459.8847)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6237"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04934277,-0.08269992,0.06422596,-0.06324147,566.22453,1508.7091)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6239"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04863583,-0.08331926,0.06476105,-0.06242612,542.70183,1543.3612)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6241"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04928376,-0.08275216,0.06427106,-0.06317349,594.11832,1573.0295)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6243"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04884178,-0.08314022,0.06460629,-0.06266375,625.07077,1398.5782)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6245"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04887703,-0.08310943,0.06457971,-0.06270443,708.84127,1383.1564)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6247"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04746443,-0.08431617,0.06562403,-0.06107352,692.67245,1549.1987)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6249"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05009256,-0.08202798,0.0636463,-0.0641056,692.68959,1574.6251)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6251"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04870042,-0.08326323,0.06471258,-0.06250068,645.55625,1526.4746)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6253"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04751605,-0.08427301,0.06558664,-0.06113324,627.19776,1518.3726)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6255"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04724457,-0.08449932,0.06578281,-0.06081946,660.79201,1538.0087)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6257"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04616418,-0.0853812,0.06654847,-0.05957009,566.35535,1452.9697)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6259"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04685146,-0.08482358,0.06606414,-0.06036505,758.86683,1386.8181)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6261"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04606066,-0.08546416,0.06662052,-0.05945034,618.04445,1300.9637)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6263"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04990458,-0.08219787,0.06379278,-0.06388902,584.14421,1337.781)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6265"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04890269,-0.08308705,0.06456033,-0.06273404,519.03344,1188.6975)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6267"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04889857,-0.08309067,0.06456344,-0.06272921,504.8732,1245.717)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6269"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04932606,-0.08271467,0.06423873,-0.06322226,490.36111,1194.3685)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6271"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04616367,-0.08538162,0.06654881,-0.05956953,474.13995,1146.0186)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6273"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04801675,-0.08385062,0.06522079,-0.0617115,534.65167,1176.0268)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6275"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04591927,-0.08557706,0.06671871,-0.05928667,646.77964,1178.1449)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6277"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04993008,-0.08217495,0.06377298,-0.0639184,652.29609,1153.5089)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6279"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0478002,-0.08403411,0.06537965,-0.06146141,667.21609,1093.5441)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6281"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0498848,-0.08221573,0.06380817,-0.06386626,653.45089,1018.5884)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6283"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04853377,-0.08340762,0.06483743,-0.06230833,525.38058,1019.3953)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6285"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04910159,-0.08291269,0.06440972,-0.06296342,559.58644,916.59308)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6287"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0461792,-0.08536917,0.06653797,-0.05958746,641.85466,947.29838)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6289"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04828172,-0.08362447,0.065025,-0.0620175,528.49008,962.78305)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6291"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04716334,-0.08456665,0.0658412,-0.0607256,565.53094,884.70985)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6293"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04984719,-0.08224959,0.06383736,-0.06382295,647.08829,876.34332)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6295"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04631889,-0.08525671,0.06644024,-0.05974909,609.65027,905.80466)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6297"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0466177,-0.08501462,0.06622997,-0.06009472,533.49531,819.74697)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6299"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04723835,-0.0845045,0.06578731,-0.06081226,560.58361,889.682)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6301"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04741467,-0.08435777,0.06566005,-0.06101604,541.71378,731.76768)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6303"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04993267,-0.0821726,0.06377101,-0.0639214,608.21456,730.31832)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6305"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04596703,-0.08553896,0.06668556,-0.05934198,576.86545,739.81332)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6307"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04712934,-0.08459472,0.06586557,-0.06068632,569.61054,744.5179)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6309"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04982089,-0.08227329,0.0638578,-0.06379257,602.72076,749.32284)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6311"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04768698,-0.08412955,0.0654623,-0.06133069,461.74677,797.69056)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6313"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04944599,-0.08260834,0.06414691,-0.06336049,462.49125,747.44508)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6315"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04951611,-0.08254597,0.06409305,-0.06344132,501.95483,309.54154)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6317"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0476071,-0.08419669,0.06552046,-0.06123838,493.19487,343.35358)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6319"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04813675,-0.08374839,0.06513231,-0.06185006,487.1374,300.9854)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6321"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0487757,-0.08319782,0.06465605,-0.06258752,495.70716,435.79936)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6323"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05016255,-0.08196448,0.06359159,-0.06418614,556.9714,750.51354)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6325"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0489981,-0.08300356,0.0644882,-0.06284404,515.68069,587.29366)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6327"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04742785,-0.0843467,0.06565052,-0.06103127,500.49933,544.4112)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6329"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05006954,-0.0820489,0.06366432,-0.06407903,487.80587,441.19834)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6331"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04897548,-0.08302339,0.06450534,-0.06281799,490.03626,461.19535)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6333"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04882131,-0.08315809,0.06462172,-0.06264013,500.95459,553.1663)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6335"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04827874,-0.08362705,0.0650273,-0.06201395,473.29125,495.98067)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6337"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04851798,-0.08342121,0.06484921,-0.06229012,450.39834,278.08203)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6339"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04594905,-0.0855533,0.06669807,-0.05932112,433.54934,278.34342)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6341"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04612325,-0.08541405,0.06657698,-0.05952276,413.8517,189.12879)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6343"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04965938,-0.08241803,0.06398271,-0.06360652,372.17346,155.16982)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6345"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04776902,-0.08406044,0.06540245,-0.06142543,370.39409,162.89293)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6347"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04814838,-0.08373854,0.06512373,-0.06186348,377.3892,149.51862)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6349"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04635422,-0.08522823,0.06641551,-0.05978994,359.62659,165.74566)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6351"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04777679,-0.08405388,0.06539674,-0.06143442,419.9129,234.02544)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6353"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.048729,-0.08323842,0.06469116,-0.06253362,486.67119,192.77054)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6355"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04617839,-0.08536982,0.06653851,-0.05958655,540.25732,252.11459)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6357"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04716838,-0.08456246,0.06583756,-0.06073146,518.56187,362.0239)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6359"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04913035,-0.08288743,0.06438792,-0.06299656,662.02604,440.71436)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6361"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0465863,-0.08504014,0.06625213,-0.06005843,616.43319,402.29618)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6363"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04907185,-0.08293888,0.06443235,-0.06292905,640.56191,380.95494)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6365"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04825363,-0.08364849,0.06504582,-0.06198506,649.69275,497.62421)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6367"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04877465,-0.0831987,0.06465685,-0.06258627,572.49552,422.11343)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6369"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04736132,-0.08440225,0.06569863,-0.06095439,569.16674,362.90436)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6371"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04854769,-0.0833955,0.06482702,-0.06232441,577.22474,564.33221)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6373"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05002908,-0.08208546,0.06369588,-0.06403243,644.12267,601.48315)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6375"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04747277,-0.08430922,0.06561801,-0.06108315,604.76164,575.16937)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6377"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04602275,-0.08549448,0.06664692,-0.05940645,550.77107,674.34685)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6379"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04800963,-0.08385667,0.06522602,-0.06170327,515.12286,741.28688)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6381"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04640491,-0.08518727,0.06637991,-0.05984862,544.18473,673.05995)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6383"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04968477,-0.08239538,0.06396312,-0.0636357,568.76169,680.76937)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6385"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04720443,-0.08453258,0.06581165,-0.06077312,590.04655,627.35554)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6387"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0475587,-0.08423731,0.06555567,-0.06118244,746.4515,372.96232)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6389"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04766394,-0.08414892,0.0654791,-0.06130403,578.9309,221.43925)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6391"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0484149,-0.0835101,0.06492608,-0.06217115,611.51345,212.83987)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6393"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04966171,-0.08241594,0.0639809,-0.06360916,614.10523,213.24852)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6395"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04786812,-0.08397668,0.06532994,-0.06153992,797.92921,325.90435)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6397"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04786893,-0.08397602,0.06532932,-0.0615408,632.18564,141.88104)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6399"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04854777,-0.08339547,0.06482693,-0.06232451,701.98224,250.23006)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6401"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04956452,-0.08250278,0.06405581,-0.06349717,723.67718,287.76064)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6403"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04723343,-0.08450855,0.06579079,-0.06080664,701.54297,251.80424)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6405"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05001327,-0.08209977,0.06370818,-0.06401425,706.99321,234.08771)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6407"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04882429,-0.08315548,0.06461948,-0.06264357,768.22555,254.37109)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6409"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0499228,-0.0821815,0.06377864,-0.06391001,792.48968,272.32422)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6411"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04622963,-0.08532859,0.06650273,-0.05964586,765.02087,158.32767)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6413"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04661077,-0.08502025,0.06623484,-0.06008674,721.30153,546.69686)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6415"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04674582,-0.08491008,0.0661392,-0.0602429,805.491,638.5694)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6417"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04951903,-0.08254337,0.0640908,-0.06344471,767.7928,549.38099)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6419"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04932419,-0.08271633,0.06424012,-0.06322012,660.38237,495.85805)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6421"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04816817,-0.08372159,0.06510911,-0.06188635,693.275,477.11283)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6423"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04923182,-0.08279802,0.06431066,-0.06311353,771.20475,656.549)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6425"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0475612,-0.08423517,0.06555385,-0.06118536,843.33355,744.85081)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6427"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04860734,-0.08334392,0.06478236,-0.06239327,868.29411,723.60356)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6429"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04723772,-0.08450497,0.06578771,-0.06081156,834.54681,781.95577)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6431"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04827432,-0.08363079,0.06503051,-0.06200891,769.61179,725.51325)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6433"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04661228,-0.08501902,0.06623379,-0.06008848,781.81652,685.15142)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6435"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04875805,-0.08321315,0.06466933,-0.06256716,803.12988,872.48123)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6437"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04699881,-0.0847025,0.06595908,-0.06053544,776.96496,818.08403)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6439"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04711156,-0.08460947,0.06587833,-0.06066577,788.35416,866.35574)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6441"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04914488,-0.08287464,0.06437683,-0.06301332,630.92002,660.28935)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6443"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04765764,-0.08415424,0.06548373,-0.06129677,660.57468,680.46337)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6445"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04777006,-0.08405955,0.06540167,-0.06142662,687.49648,860.42922)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6447"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04662114,-0.08501183,0.06622754,-0.06009867,737.92854,973.53069)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6449"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04990685,-0.08219587,0.06379108,-0.06389158,713.53617,970.33552)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6451"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04901722,-0.08298676,0.06447372,-0.0628661,774.44799,936.64852)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6453"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04737859,-0.08438781,0.06568612,-0.06097433,764.66157,926.32518)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6455"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04703238,-0.08467488,0.06593509,-0.06057419,739.76468,923.97944)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6457"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04825681,-0.08364579,0.0650435,-0.0619887,752.77206,1104.0306)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6459"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04699664,-0.08470434,0.06596064,-0.06053285,726.71556,1334.9517)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6461"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04773158,-0.08409198,0.06542979,-0.06138219,755.11583,1277.783)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6463"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04929394,-0.08274309,0.06426324,-0.06318522,666.49001,1269.5698)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6465"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04766871,-0.08414489,0.06547563,-0.0613096,566.20079,1266.8951)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6467"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04786943,-0.08397559,0.06532897,-0.06154134,556.93307,1253.4317)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6469"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04862238,-0.08333093,0.06477114,-0.0624106,554.79928,1249.7501)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6471"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04886007,-0.08312423,0.06459249,-0.06268484,629.39659,1184.583)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6473"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04999341,-0.08211774,0.06372368,-0.06399133,703.18464,1157.5049)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6475"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04740452,-0.08436621,0.0656674,-0.06100432,727.87711,1180.0499)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6477"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04785714,-0.083986,0.06533797,-0.06152718,756.1511,1172.9945)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6479"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05010749,-0.0820145,0.06363466,-0.06412274,738.06647,1181.3269)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6481"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04793435,-0.08392064,0.06528134,-0.06161635,820.11227,1154.4876)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6483"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04655122,-0.08506868,0.06627688,-0.06001785,856.44128,1311.9033)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6485"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04610479,-0.08542881,0.06658983,-0.05950141,852.59968,1341.3376)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6487"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04671523,-0.08493508,0.06616093,-0.06020753,857.89182,1429.0955)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6489"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04940521,-0.08264453,0.06417817,-0.06331349,789.5906,1492.8153)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6491"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04642722,-0.08516919,0.06636423,-0.0598744,739.92651,1494.0904)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6493"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04741645,-0.08435623,0.06565877,-0.06101815,737.64103,1544.6819)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6495"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04858819,-0.08336053,0.06479673,-0.06237115,833.59591,1525.3441)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6497"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0483817,-0.08353862,0.06495076,-0.06213282,792.93418,1554.9966)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6499"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04597737,-0.08553071,0.06667844,-0.05935392,814.92525,1620.8512)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6501"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04642255,-0.08517298,0.06636753,-0.05986902,752.79901,1195.441)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6503"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04833754,-0.08357654,0.06498358,-0.06208189,767.68305,1339.7731)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6505"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04848279,-0.08345157,0.06487544,-0.06224951,789.17716,1397.1097)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6507"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04631163,-0.0852626,0.06644532,-0.05974069,803.27031,1432.2656)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6509"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05000844,-0.08210417,0.06371195,-0.06400868,843.87842,1425.4581)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6511"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04931212,-0.08272701,0.06424938,-0.06320619,858.41591,1336.7869)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6513"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04663648,-0.08499932,0.06621667,-0.06011649,826.5585,1107.1426)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6515"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04722364,-0.08451665,0.06579787,-0.06079531,813.54862,977.32715)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6517"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04777305,-0.08405703,0.06539953,-0.06143009,875.36685,1021.9609)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6519"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04779471,-0.08403877,0.06538367,-0.06145509,831.217,1096.3621)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6521"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05018488,-0.08194419,0.06357407,-0.06421191,832.79308,1049.7782)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6523"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04692053,-0.08476689,0.06601493,-0.06044493,849.89277,1060.3423)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6525"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04602068,-0.08549613,0.06664832,-0.05940405,838.87865,1053.7436)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6527"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04953099,-0.08253271,0.06408164,-0.06345845,889.82833,981.9148)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6529"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04818171,-0.08370999,0.06509906,-0.06190201,882.54782,941.7144)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6531"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04890509,-0.08308497,0.06455853,-0.06273671,964.12637,454.13538)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6533"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04939917,-0.08264986,0.06418276,-0.06330655,915.66167,419.53913)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6535"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04919021,-0.08283469,0.06434235,-0.06306562,877.34385,457.01515)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6537"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04604156,-0.08547948,0.06663386,-0.05942818,921.57651,411.78566)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6539"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04669749,-0.08494953,0.06617349,-0.06018702,818.04141,232.00421)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6541"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04696172,-0.08473301,0.06598555,-0.06049253,832.14704,222.8618)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6543"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0459743,-0.08553317,0.06668059,-0.05935035,826.12657,234.35798)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6545"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04892857,-0.08306442,0.06454078,-0.06276388,963.27797,357.24625)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6547"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04914043,-0.08287858,0.06438022,-0.06300818,935.65749,366.96581)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6549"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04772163,-0.08410038,0.06543706,-0.0613707,929.62949,375.57667)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6551"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04997576,-0.08213369,0.06373744,-0.06397101,885.9071,333.53739)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6553"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04662289,-0.08501036,0.06622627,-0.06010074,889.03792,251.84397)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6555"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05010935,-0.08201273,0.06363317,-0.0641249,886.63658,237.55275)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6557"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0481885,-0.08370424,0.06509407,-0.06190982,912.74776,220.83111)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6559"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04957154,-0.08249654,0.06405042,-0.06350521,942.93143,233.12595)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6561"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04860806,-0.08334332,0.06478181,-0.06239408,1019.9561,327.19797)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6563"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04920468,-0.082822,0.06433132,-0.06308229,1086.9824,341.06454)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6565"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04976114,-0.08232694,0.06390406,-0.06372374,1101.1027,440.62114)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6567"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04623915,-0.08532097,0.06649611,-0.05965685,1120.2763,495.41699)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6569"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05007928,-0.08204003,0.06365669,-0.0640903,1034.4794,642.71441)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6571"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04960128,-0.08247004,0.06402752,-0.0635395,963.99464,703.63185)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6573"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04687251,-0.08480637,0.06604919,-0.06038941,948.43659,747.10539)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6575"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04877832,-0.08319549,0.06465406,-0.06259051,918.33085,723.49989)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6577"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04928844,-0.08274796,0.06426746,-0.06317891,887.36348,657.91086)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6579"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04848288,-0.08345152,0.06487542,-0.0622496,978.30364,426.57476)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6581"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04709434,-0.08462371,0.06589069,-0.06064584,998.637,753.52948)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6583"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0480905,-0.08378789,0.06516644,-0.06179668,1002.4277,662.97387)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6585"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04603537,-0.08548436,0.06663815,-0.05942104,950.89934,644.24016)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6587"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04917402,-0.08284899,0.06435467,-0.0630469,873.20931,826.99417)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6589"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04962987,-0.08244448,0.06400548,-0.06357244,959.57959,929.59129)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6591"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04728733,-0.08446376,0.065752,-0.06086895,936.21761,900.35085)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6593"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04653277,-0.08508367,0.06628993,-0.05999647,940.14894,920.01879)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6595"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04863636,-0.08331878,0.06476067,-0.06242674,967.90077,865.65957)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6597"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04746689,-0.08431416,0.06562224,-0.06107641,939.38361,898.54189)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6599"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04895581,-0.08304058,0.0645202,-0.06279528,853.78279,916.90316)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6601"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04980263,-0.0822897,0.06387195,-0.06377156,837.19083,948.49809)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6603"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0492563,-0.08277636,0.06429199,-0.0631418,990.98614,1016.0149)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6605"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04627697,-0.08529053,0.06646961,-0.05970056,1040.1667,1169.5403)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6607"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04964341,-0.08243238,0.06399503,-0.06358806,974.79462,1141.9795)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6609"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04778313,-0.08404855,0.06539215,-0.06144171,926.27686,1126.6372)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6611"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04944706,-0.08260738,0.06414607,-0.06336176,945.13833,1109.0488)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6613"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04952801,-0.0825354,0.0640839,-0.06345507,983.98714,1103.4426)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6615"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04869854,-0.08326488,0.06471401,-0.06249848,922.48257,1077.2982)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6617"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0487892,-0.08318606,0.0646459,-0.06260306,909.13696,1141.98)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6619"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04681843,-0.08485072,0.06608765,-0.06032682,874.64312,1166.3048)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6621"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04673669,-0.08491757,0.06614567,-0.06023233,876.27518,1199.8877)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6623"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04944338,-0.08261065,0.06414889,-0.06335751,849.44497,1237.067)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6625"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04880286,-0.08317413,0.06463561,-0.06261881,870.93489,1259.8738)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6627"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04613738,-0.08540273,0.06656717,-0.05953907,986.53199,1293.6851)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6629"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.047441,-0.08433576,0.06564101,-0.06104651,966.68919,1308.8291)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6631"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04910225,-0.08291219,0.06440926,-0.06296414,1025.748,1281.2809)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6633"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04756952,-0.08422822,0.06554781,-0.06119496,1051.9332,1258.9043)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6635"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04700469,-0.08469769,0.06595488,-0.06054219,1030.4672,1340.3927)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6637"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04984856,-0.08224835,0.06383632,-0.06382447,925.66398,1427.6241)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6639"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04788967,-0.08395849,0.06531412,-0.06156474,898.10578,1369.5269)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6641"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04932087,-0.08271933,0.0642427,-0.06321624,930.33408,1362.05)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6643"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04921522,-0.08281264,0.06432331,-0.06309444,922.84849,1476.2104)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6645"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04595866,-0.08554565,0.06669142,-0.05933222,907.20274,1449.4888)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6647"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0467982,-0.08486726,0.06610202,-0.06030346,889.27813,1516.8061)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6649"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0459588,-0.08554555,0.0666913,-0.05933246,894.62433,1539.0869)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6651"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04750009,-0.08428637,0.06559823,-0.06111473,924.41686,1585.8785)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6653"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04781189,-0.08402427,0.0653711,-0.06147495,983.3317,1564.3842)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6655"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04996929,-0.08213958,0.06374248,-0.06396356,937.4637,1558.2004)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6657"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04930781,-0.08273086,0.06425265,-0.06320123,989.97497,1582.6267)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6659"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04682976,-0.08484142,0.06607962,-0.06033992,1062.1225,1562.8721)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6661"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04912235,-0.08289451,0.064394,-0.06298731,926.78473,1572.5632)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6663"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04904108,-0.08296589,0.06445565,-0.06289361,1068.24,1594.2395)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6665"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0467534,-0.08490393,0.06613384,-0.06025167,1091.0806,1599.1965)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6667"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04631969,-0.08525609,0.06643971,-0.05975002,998.11217,1445.8799)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6669"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04653545,-0.08508146,0.06628801,-0.05999961,1010.7099,1435.0939)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6671"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04689103,-0.08479117,0.06603595,-0.06041082,1000.0057,1453.57)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6673"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04734079,-0.08441932,0.06571346,-0.06093066,1032.1712,1444.5158)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6675"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0501501,-0.0819758,0.06360128,-0.06417181,1060.643,1462.8392)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6677"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04667689,-0.08496633,0.06618806,-0.0601632,1039.9441,1458.2714)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6679"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04590763,-0.08558634,0.06672676,-0.05927317,1047.637,1321.3898)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6681"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04610005,-0.08543261,0.06659314,-0.05949588,1055.7612,1378.1008)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6683"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04859183,-0.08335734,0.06479399,-0.06237539,1167.2914,1244.7885)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6685"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04755588,-0.08423965,0.06555773,-0.06117924,1161.32,1248.6889)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6687"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04621097,-0.08534365,0.0665158,-0.05962419,1045.8529,1186.8097)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6689"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04779492,-0.08403857,0.06538352,-0.06145536,997.4923,1238.4904)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6691"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0499313,-0.08217381,0.06377203,-0.06391978,1011.1964,1191.4799)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6693"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04692652,-0.08476201,0.06601068,-0.06045183,1077.0666,1025.8528)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6695"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04999504,-0.08211623,0.06372241,-0.06399322,1070.2609,1049.6691)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6697"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04714362,-0.08458294,0.06585536,-0.06070279,1073.1271,965.02252)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6699"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04771592,-0.08410519,0.06544125,-0.06136409,1140.0378,954.48924)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6701"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.049924,-0.08218038,0.06377771,-0.06391142,1061.7938,1005.7367)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6703"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05000646,-0.08210594,0.06371351,-0.06400642,969.22939,884.95741)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6705"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04677793,-0.08488383,0.06611643,-0.06028003,951.55932,887.81434)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6707"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0469547,-0.08473885,0.06599058,-0.06048441,1109.7385,841.42627)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6709"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04828164,-0.08362457,0.06502509,-0.06201731,1125.2818,875.4325)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6711"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04988316,-0.08221725,0.06380947,-0.06386436,1091.6612,800.69067)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6713"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04627075,-0.08529549,0.06647398,-0.05969338,1083.5788,869.71256)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6715"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04803542,-0.08383473,0.06520706,-0.06173307,1002.637,849.90355)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6717"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04782636,-0.08401199,0.06536053,-0.06149165,1005.0448,766.3943)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6719"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04907874,-0.08293282,0.0644271,-0.06293706,1045.2008,773.13179)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6721"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04683007,-0.08484112,0.06607937,-0.06034033,901.62115,813.93578)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6723"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04617774,-0.08537032,0.06653898,-0.05958577,887.30704,832.0117)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6725"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04691566,-0.08477092,0.06601838,-0.06043931,907.71148,832.65705)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6727"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0501089,-0.08201317,0.06363354,-0.06412439,1019.2681,715.63819)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6729"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0488868,-0.08310097,0.06457235,-0.06271565,1059.2697,636.17756)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6731"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04634957,-0.08523192,0.06641877,-0.05978458,1152.7248,316.9457)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6733"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04711449,-0.08460707,0.06587622,-0.06066918,1114.3593,779.1547)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6735"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04918888,-0.08283591,0.06434336,-0.06306405,1137.4824,752.30991)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6737"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04964218,-0.08243345,0.063996,-0.06358663,1065.7769,628.32476)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6739"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04712631,-0.08459728,0.06586776,-0.06068277,1036.0299,609.66774)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6741"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0486813,-0.08327981,0.06472695,-0.06247864,1055.1917,601.10142)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6743"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04945614,-0.08259932,0.06413913,-0.06337218,1094.4011,571.68987)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6745"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04970593,-0.0823764,0.06394678,-0.06366015,1110.2423,573.58185)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6747"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04623213,-0.08532658,0.06650095,-0.05964875,964.36003,549.58133)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6749"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04864808,-0.08330865,0.06475187,-0.0624403,1067.5821,491.34545)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6751"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04951953,-0.08254288,0.06409043,-0.06344527,1031.5087,514.47496)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6753"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04771881,-0.08410276,0.0654391,-0.06136744,1006.7579,454.82565)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6755"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04772671,-0.08409613,0.06543338,-0.06137654,1029.6928,485.8013)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6757"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04940467,-0.08264498,0.06417856,-0.06331291,1033.9926,487.39663)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6759"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05014234,-0.08198282,0.06360737,-0.06416293,1070.623,448.38405)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6761"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0468569,-0.08481917,0.06606029,-0.06037132,1078.9667,367.4211)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6763"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04704907,-0.08466104,0.06592309,-0.06059352,1045.6784,359.21287)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6765"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04969082,-0.08238992,0.06395842,-0.06364271,1134.0667,179.24923)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6767"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04987798,-0.0822219,0.06381346,-0.06385835,1076.2195,281.4757)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6769"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0477046,-0.08411474,0.06544947,-0.06135098,902.24371,57.217258)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6771"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04773422,-0.08408975,0.06542785,-0.06138527,1061.9221,160.55457)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6773"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04926431,-0.08276932,0.06428587,-0.06315103,1133.797,229.48769)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6775"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04613425,-0.08540522,0.06656933,-0.05953542,1092.0853,239.44562)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6777"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04763863,-0.08417022,0.06549757,-0.06127477,1148.9831,1508.9044)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6779"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04705722,-0.08465434,0.06591729,-0.06060296,1095.1363,1561.6663)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6781"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04822874,-0.08366982,0.06506428,-0.0619563,1082.9714,1619.4363)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6783"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04773849,-0.08408615,0.06542476,-0.06139019,1132.2704,1568.9532)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6785"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04826588,-0.08363803,0.06503676,-0.06199914,1209.6468,1578.4132)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6787"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04905325,-0.08295521,0.06444643,-0.06290764,1215.4341,1605.6112)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6789"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04875731,-0.0832138,0.06466988,-0.06256633,1322.479,1594.2339)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6791"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04798135,-0.0838807,0.06524683,-0.06167067,1271.4863,1543.1053)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6793"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04842476,-0.08350161,0.06491873,-0.06218249,1180.8278,1526.7886)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6795"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04958457,-0.08248491,0.06404039,-0.06352023,1204.8585,1599.5368)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6797"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04871861,-0.08324742,0.06469896,-0.06252165,1205.4071,1601.6567)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6799"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04865605,-0.08330173,0.06474592,-0.06244945,1180.9047,1516.5097)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6801"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04855923,-0.08338556,0.06481839,-0.06233776,1197.6051,1574.7905)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6803"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04646423,-0.08513922,0.06633814,-0.05991725,1210.0097,1503.7298)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6805"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04877609,-0.08319743,0.06465574,-0.06258801,1234.7354,1478.367)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6807"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04778459,-0.08404731,0.06539109,-0.06144338,1129.7392,1492.0571)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6809"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04878278,-0.08319163,0.06465069,-0.06259567,1137.4247,1453.1787)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6811"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.047974,-0.08388694,0.0652522,-0.06166215,1166.3679,1396.1771)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6813"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04855445,-0.08338971,0.06482199,-0.06233219,1283.406,1338.416)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6815"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04637455,-0.08521176,0.06640123,-0.05981349,1334.9754,1319.9959)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6817"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04864175,-0.08331416,0.06475665,-0.06243289,1144.4907,1296.2943)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6819"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04901044,-0.08299276,0.06447888,-0.06285827,1177.5054,1270.2622)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6821"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04594894,-0.08555339,0.06669817,-0.05932102,1172.1438,1263.1985)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6823"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04692255,-0.08476526,0.06601352,-0.06044725,1121.6314,1316.2475)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6825"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04921659,-0.08281148,0.06432225,-0.06309602,1114.7711,1361.2131)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6827"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0496446,-0.08243132,0.06399416,-0.06358941,1105.3863,1313.5992)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6829"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04908195,-0.08293,0.06442466,-0.06294075,1112.4053,1291.9978)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6831"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05015849,-0.08196815,0.06359471,-0.06418153,1152.6226,1293.5655)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6833"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04792511,-0.08392845,0.06528817,-0.06160564,1186.1148,1327.3337)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6835"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04795028,-0.08390713,0.06526966,-0.06163478,1228.5385,1378.8142)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6837"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04728771,-0.08446347,0.06575173,-0.06086931,1289.4241,1390.9397)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6839"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04881247,-0.08316577,0.06462834,-0.06262993,1227.0801,1411.3146)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6841"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04803082,-0.08383869,0.06521044,-0.06172776,1243.1009,1388.3782)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6843"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04865681,-0.08330111,0.06474536,-0.06245037,1128.8148,1208.3586)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6845"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04772431,-0.08409815,0.06543512,-0.06137377,1142.1132,1112.3754)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6847"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04902004,-0.08298434,0.06447161,-0.06286935,1162.7621,1122.6046)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6849"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0490168,-0.08298719,0.06447406,-0.06286561,1178.8696,1112.8183)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6851"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04682464,-0.08484556,0.06608322,-0.06033407,1225.7569,1026.4426)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6853"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04820958,-0.08368624,0.06507848,-0.06193413,1247.6783,919.67726)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6855"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04682079,-0.0848488,0.06608599,-0.06032958,1232.5339,928.12591)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6857"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05010026,-0.08202104,0.06364029,-0.06411438,1265.589,865.77641)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6859"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05017292,-0.08195505,0.06358341,-0.06419812,1259.7365,957.33323)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6861"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04967066,-0.08240798,0.063974,-0.06361947,1214.4599,908.25855)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6863"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04679817,-0.08486726,0.06610204,-0.06030344,1223.3518,782.39056)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6865"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04768057,-0.08413494,0.065467,-0.06132325,1225.9425,749.55701)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6867"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04832141,-0.0835904,0.06499557,-0.06206325,1184.2961,1071.012)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6869"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04729185,-0.08446003,0.06574875,-0.06087409,1190.2423,1041.4231)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6871"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04858877,-0.08336002,0.0647963,-0.06237181,1197.5445,1080.2249)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6873"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0496812,-0.08239854,0.06396588,-0.06363162,1170.056,1078.0031)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6875"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04908903,-0.08292379,0.06441928,-0.06294894,1209.9114,1038.8297)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6877"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04605853,-0.08546584,0.06662204,-0.05944785,1168.6303,985.18259)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6879"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04994359,-0.08216273,0.06376247,-0.06393396,1143.8086,1035.2192)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6881"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04645442,-0.08514718,0.06634511,-0.05990584,1144.6247,1001.829)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6883"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04614953,-0.08539296,0.06655867,-0.05955317,1145.5893,1083.2119)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6885"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04890777,-0.08308263,0.0645565,-0.06273987,1062.5442,1073.8756)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6887"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04591814,-0.08557793,0.06671948,-0.05928538,1107.2328,1078.7244)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6889"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04847123,-0.08346155,0.06488407,-0.06223622,1117.7927,1102.2112)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6891"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04802738,-0.08384164,0.06521295,-0.06172377,1116.149,1102.7777)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6893"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04659641,-0.0850319,0.06624496,-0.06007014,1073.8503,1076.5435)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6895"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04990529,-0.08219723,0.06379227,-0.06388985,1090.2744,1061.3413)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6897"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0465801,-0.08504522,0.06625653,-0.06005127,1269.2777,948.52943)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6899"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04881622,-0.08316254,0.06462555,-0.06263424,1292.1929,954.75578)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6901"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04702536,-0.08468064,0.06594006,-0.0605661,1256.8999,673.69416)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6903"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04733484,-0.08442426,0.06571775,-0.06092384,1229.6088,721.80087)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6905"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04986983,-0.08222922,0.06381981,-0.06384899,1251.0675,702.22845)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6907"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04671065,-0.08493881,0.06616415,-0.06020225,1175.6153,683.55345)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6909"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04879829,-0.08317814,0.06463907,-0.06261355,1191.8273,722.85504)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6911"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04780441,-0.08403058,0.06537657,-0.06146632,1176.4079,688.18423)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6913"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04977584,-0.08231369,0.06389266,-0.06374071,1214.9038,630.38649)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6915"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04821804,-0.08367899,0.06507222,-0.06194391,1231.7357,643.72622)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6917"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04890628,-0.08308391,0.06455768,-0.06273813,1216.6363,622.69366)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6919"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0468001,-0.08486564,0.06610068,-0.06030566,1165.7306,668.75128)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6921"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05005231,-0.08206443,0.06367774,-0.06405921,1123.8668,727.5934)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6923"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04903236,-0.08297357,0.06446226,-0.06288353,1101.0902,690.17701)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6925"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04617973,-0.08536872,0.06653758,-0.0595881,1120.1635,672.11427)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6927"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04692708,-0.08476156,0.06601031,-0.06045242,1083.2531,705.23467)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6929"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04688566,-0.08479557,0.06603981,-0.06040459,1098.3878,704.02975)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6931"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05019059,-0.081939,0.06356958,-0.06421844,1101.3392,655.06855)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6933"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04610856,-0.08542579,0.06658722,-0.05950574,1121.2748,707.61242)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6935"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04657642,-0.08504822,0.0662591,-0.060047,1104.2171,663.50617)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6937"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04707607,-0.08463875,0.06590377,-0.06062473,1156.4254,634.92796)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6939"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04616433,-0.08538106,0.06654837,-0.05957026,1186.5323,560.75936)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6941"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04843198,-0.08349538,0.06491331,-0.06219089,1257.81,490.98)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6943"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04760121,-0.08420161,0.06552477,-0.06123159,1314.8891,442.64385)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6945"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04697523,-0.08472193,0.06597591,-0.06050813,1262.6198,415.17491)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6947"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04644849,-0.085152,0.06634926,-0.05989901,1281.498,374.52423)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6949"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04613339,-0.08540589,0.06656991,-0.05953446,1166.5818,457.68447)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6951"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04702703,-0.08467928,0.06593888,-0.060568,1136.9786,393.67042)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6953"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0489663,-0.08303141,0.06451228,-0.0628074,1195.1474,386.16445)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6955"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04682905,-0.08484199,0.06608005,-0.06033914,1223.7572,435.87029)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6957"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04742239,-0.08435128,0.06565446,-0.061025,1179.9112,464.87342)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6959"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04957201,-0.08249612,0.06405004,-0.06350578,1173.3598,498.67863)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6961"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04814441,-0.08374191,0.06512667,-0.06185894,1222.773,551.1614)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6963"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04737668,-0.08438937,0.06568754,-0.06097216,1295.5057,528.34919)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6965"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04814652,-0.08374013,0.06512511,-0.06186132,1362.4796,120.37427)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6967"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04797912,-0.08388258,0.06524845,-0.06166806,1380.2781,146.47075)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6969"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04948619,-0.08257254,0.06411603,-0.06340684,1223.5735,239.79296)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6971"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04702601,-0.08468012,0.06593961,-0.06056685,1194.7354,291.22028)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6973"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04679189,-0.08487242,0.06610649,-0.06029621,1251.0448,286.90656)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6975"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04853192,-0.0834092,0.06483883,-0.06230621,1249.8941,316.16839)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6977"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04991155,-0.0821916,0.0637874,-0.06389705,1224.3141,260.67722)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6979"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04907236,-0.08293843,0.06443192,-0.06292971,1263.6866,291.28055)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6981"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04620238,-0.08535053,0.06652177,-0.05961434,1159.3317,254.20834)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6983"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04785804,-0.08398522,0.06533731,-0.06152823,1105.7548,269.06668)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6985"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04821008,-0.08368584,0.06507811,-0.06193471,1026.7993,201.05487)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6987"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0462028,-0.08535015,0.06652143,-0.05961482,1011.8493,244.13807)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6989"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04663013,-0.08500446,0.06622115,-0.06010911,1005.3055,165.24711)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6991"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04644246,-0.08515688,0.06635352,-0.05989204,1030.2759,137.35984)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6993"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04878705,-0.08318791,0.06464751,-0.06260056,1042.8724,131.60401)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6995"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04680244,-0.08486377,0.066099,-0.0603084,1172.3585,122.48034)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6997"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05005989,-0.08205758,0.06367181,-0.06406791,1191.585,143.96264)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path6999"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05018851,-0.08194089,0.06357123,-0.06421605,1220.0016,168.71333)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7001"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04935841,-0.08268604,0.06421398,-0.06325955,1029.9445,204.45879)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7003"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04609764,-0.0854346,0.06659487,-0.05949304,1040.3011,140.32393)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7005"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04977697,-0.0823127,0.06389182,-0.06374198,1079.3513,199.13553)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7007"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04722677,-0.0845141,0.06579562,-0.06079886,1288.9076,201.34402)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7009"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05002193,-0.08209198,0.06370146,-0.06402419,1359.9413,206.47493)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7011"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04859593,-0.08335384,0.06479094,-0.06238006,1346.7707,252.05952)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7013"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04664491,-0.08499245,0.06621073,-0.06012619,1471.3943,298.1116)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7015"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04782168,-0.08401601,0.06536396,-0.06148622,1434.9161,262.88941)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7017"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04617809,-0.08537002,0.06653876,-0.05958615,1455.5314,192.01858)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7019"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04841424,-0.08351064,0.06492659,-0.06217039,1347.4923,187.52417)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7021"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04898924,-0.08301133,0.06449494,-0.06283385,1359.3444,137.05759)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7023"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04943131,-0.08262139,0.06415814,-0.06334355,1393.5239,141.23641)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7025"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04878819,-0.0831869,0.06464665,-0.0626019,1447.5581,198.03514)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7027"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04667599,-0.08496712,0.06618872,-0.06016215,1335.8392,373.68047)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7029"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04802572,-0.08384304,0.06521419,-0.06172186,1415.2268,428.058)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7031"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04887589,-0.08311046,0.0645806,-0.0627031,1430.6601,339.86721)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7033"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04619735,-0.08535454,0.06652529,-0.05960846,1381.897,368.94376)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7035"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0480397,-0.08383111,0.06520386,-0.06173805,1436.8204,212.33908)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7037"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04596983,-0.08553674,0.0666837,-0.05934516,1458.5624,217.9317)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7039"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04796255,-0.08389668,0.06526067,-0.0616489,1473.8074,264.6091)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7041"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04668678,-0.0849583,0.0661811,-0.06017462,1363.3623,334.14935)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7043"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04765049,-0.08416022,0.06548891,-0.06128852,1395.7147,292.95508)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7045"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04776463,-0.08406416,0.06540565,-0.06142039,1380.5098,291.29866)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7047"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04663652,-0.08499924,0.06621663,-0.06011651,1403.0702,353.78257)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7049"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04699796,-0.08470322,0.06595969,-0.06053439,1433.882,314.04381)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7051"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04953921,-0.08252537,0.06407529,-0.06346798,1443.6841,293.24472)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7053"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04755676,-0.08423896,0.0655571,-0.06118017,1493.2158,494.42068)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7055"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04965312,-0.0824237,0.06398754,-0.06359929,1418.6872,593.34711)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7057"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04622295,-0.08533397,0.06650739,-0.05963812,1401.1941,608.44198)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7059"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04924616,-0.08278535,0.06429973,-0.06313017,1358.7469,588.52189)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7061"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04970867,-0.08237397,0.06394464,-0.06366328,1422.8879,479.2939)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7063"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04983064,-0.08226447,0.06385023,-0.06380379,1354.2184,528.47111)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7065"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04897296,-0.08302559,0.06450723,-0.06281509,1342.9959,533.56615)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7067"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04676163,-0.0848972,0.06612801,-0.06026116,1369.4809,494.18674)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7069"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04729293,-0.0844591,0.06574796,-0.06087536,1365.1242,510.61648)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7071"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04942836,-0.08262396,0.06416043,-0.06334019,1382.9529,576.26978)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7073"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04749425,-0.0842913,0.06560244,-0.06110797,1502.6919,603.41271)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7075"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04957135,-0.08249672,0.06405058,-0.063505,1493.872,659.75911)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7077"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04986678,-0.08223199,0.06382218,-0.06384546,1480.4248,499.28939)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7079"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0462118,-0.08534295,0.06651519,-0.05962524,1449.092,437.29602)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7081"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0468439,-0.08482981,0.06606951,-0.06035634,1362.0262,740.80105)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7083"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04740003,-0.08436997,0.06567066,-0.06099914,1304.9188,714.65573)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7085"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04737813,-0.08438821,0.06568647,-0.06097385,1344.5845,742.2664)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7087"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0492358,-0.08279451,0.06430762,-0.06311819,1365.4555,763.67956)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7089"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04646486,-0.08513872,0.06633774,-0.05991797,1332.6469,644.99388)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7091"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04948721,-0.08257169,0.06411526,-0.06340803,1269.6397,621.90708)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7093"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04856216,-0.08338305,0.0648162,-0.06234114,1384.0714,688.0333)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7095"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04875522,-0.08321564,0.06467148,-0.06256382,1417.6178,759.3515)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7097"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04797561,-0.08388562,0.06525104,-0.06166394,1441.21,756.55509)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7099"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04739937,-0.08437049,0.06567114,-0.06099836,1411.9196,810.66663)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7101"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04609834,-0.08543402,0.06659434,-0.05949391,1362.918,843.14282)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7103"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04989001,-0.08221105,0.06380414,-0.0638722,1355.4383,929.07971)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7105"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04947603,-0.0825816,0.06412386,-0.06339514,1377.2484,886.46198)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7107"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04823784,-0.08366203,0.06505753,-0.06196678,1396.7818,938.13467)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7109"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04684818,-0.08482632,0.06606649,-0.06036127,1357.4207,860.04824)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7111"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04614144,-0.08539943,0.0665643,-0.05954379,1368.0705,927.30854)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7113"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04734626,-0.08441479,0.06570952,-0.06093696,1359.4596,931.31976)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7115"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04594314,-0.08555807,0.06670219,-0.05931428,1343.4173,943.11976)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7117"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04722989,-0.08451153,0.06579339,-0.06080247,1515.5169,921.78544)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7119"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04981056,-0.08228252,0.06386577,-0.06378066,1500.0366,944.6401)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7121"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04707758,-0.08463755,0.0659027,-0.06062649,1455.46,1001.7649)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7123"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04595075,-0.08555197,0.06669689,-0.05932306,1321.4131,1114.2586)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7125"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04747862,-0.08430432,0.06561375,-0.06108996,1355.0635,1078.2522)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7127"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04645407,-0.08514744,0.06634533,-0.05990547,1348.2842,1073.7139)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7129"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04871315,-0.08325215,0.06470303,-0.06251538,1316.2136,1072.7277)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7131"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04592455,-0.08557284,0.06671507,-0.05929279,1201.7193,1135.0432)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7133"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04948048,-0.08257767,0.06412042,-0.06340024,1220.9088,1147.2288)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7135"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04782878,-0.08400997,0.06535875,-0.06149443,1191.3279,1178.9115)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7137"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04664464,-0.08499264,0.0662109,-0.06012588,1217.7586,1167.773)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7139"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04942734,-0.08262488,0.06416119,-0.06333903,1231.7613,1160.8229)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7141"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0459898,-0.08552077,0.06666981,-0.05936834,1305.7768,1093.3724)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7143"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04812488,-0.08375859,0.06514109,-0.06183634,1299.6512,1140.6635)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7145"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04925818,-0.08277472,0.06429053,-0.06314399,1278.7077,1211.7367)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7147"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04683667,-0.08483577,0.06607465,-0.06034793,1261.3885,1194.4587)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7149"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04909236,-0.08292089,0.06441678,-0.06295275,1266.2148,1243.5758)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7151"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04812606,-0.08375756,0.06514021,-0.06183775,1309.7578,1281.4831)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7153"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04620744,-0.08534644,0.06651824,-0.05962015,1313.794,1277.0285)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7155"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05006356,-0.08205431,0.06366894,-0.06407218,1308.5892,1285.4779)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7157"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04907628,-0.08293497,0.06442897,-0.06293418,1335.518,1254.0569)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7159"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04798845,-0.08387472,0.06524163,-0.06167884,1297.995,1323.9423)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7161"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04621101,-0.0853436,0.06651577,-0.0596243,1276.7532,1284.6634)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7163"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04810473,-0.08377577,0.06515595,-0.06181309,1279.3655,1293.0019)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7165"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04963476,-0.0824401,0.06400171,-0.06357809,1227.3455,1342.0891)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7167"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05001161,-0.08210127,0.06370951,-0.06401235,1338.335,1240.0154)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7169"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04640597,-0.08518639,0.06637914,-0.05984982,1447.0302,1294.8583)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7171"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04894638,-0.08304891,0.06452735,-0.06278439,1465.0282,1261.5069)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7173"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04931087,-0.08272815,0.06425033,-0.06320472,1437.3592,1282.5172)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7175"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04656858,-0.08505456,0.06626464,-0.06003792,1315.3296,1461.4831)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7177"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05021628,-0.08191565,0.06354943,-0.06424806,1408.79,1383.6818)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7179"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04779159,-0.08404139,0.06538596,-0.06145146,1422.4944,1488.8641)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7181"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04646319,-0.0851401,0.06633893,-0.05991603,1412.8584,1468.5425)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7183"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04618514,-0.08536441,0.06653383,-0.05959429,1345.2678,1442.8973)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7185"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04603517,-0.08548452,0.06663825,-0.05942083,1322.2639,1470.5535)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7187"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04887589,-0.08311046,0.06458057,-0.06270308,1339.9428,1575.3471)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7189"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04776619,-0.08406284,0.06540453,-0.06142215,1394.3713,1595.4822)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7191"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04900229,-0.08299988,0.064485,-0.06284891,1316.7257,1537.7689)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7193"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04915367,-0.0828669,0.06437018,-0.06302346,1422.0248,1506.3271)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7195"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04707254,-0.0846417,0.06590634,-0.0606206,1415.0428,1486.6816)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7197"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04610264,-0.08543056,0.06659135,-0.05949889,1369.701,1496.1162)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7199"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04675163,-0.08490536,0.06613512,-0.06024961,1363.3681,1509.036)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7201"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04898548,-0.08301466,0.06449779,-0.06282948,1374.3146,1498.9162)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7203"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04741513,-0.08435738,0.06565973,-0.06101658,1449.2738,1509.2901)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7205"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04744082,-0.08433591,0.06564115,-0.06104623,1469.8784,1577.5216)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7207"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04892404,-0.08306842,0.06454425,-0.0627586,1424.725,1616.8641)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7209"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04741777,-0.08435512,0.06565784,-0.06101961,1419.7069,1516.1705)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7211"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04778976,-0.08404293,0.0653873,-0.06144938,1421.3181,1470.546)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7213"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0464666,-0.08513736,0.06633652,-0.05991998,1485.9197,1538.5985)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7215"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04671629,-0.0849342,0.06616016,-0.06020873,1479.4065,1450.5354)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7217"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0483357,-0.08357816,0.06498495,-0.06207978,1457.2529,1314.8962)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7219"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04669259,-0.08495359,0.06617696,-0.06018133,1448.0711,1278.7287)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7221"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05014812,-0.08197761,0.06360283,-0.06416961,1424.197,1269.2881)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7223"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04629583,-0.08527535,0.06645642,-0.05972237,1449.8388,1269.2267)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7225"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04708618,-0.08463044,0.06589656,-0.06063642,1403.8468,1234.1927)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7227"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.0461742,-0.08537318,0.06654145,-0.05958168,1428.123,1313.0605)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7229"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04843077,-0.08349644,0.06491428,-0.06218947,1319.4668,1386.9803)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7231"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04663959,-0.0849968,0.06621447,-0.06012001,1308.2275,1385.2683)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7233"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04744344,-0.08433373,0.06563923,-0.0610493,1384.8616,1335.8143)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7235"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04928361,-0.08275226,0.06427117,-0.0631733,1383.9306,1296.1893)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7237"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05017078,-0.08195705,0.06358511,-0.06419562,1421.173,1178.2428)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7239"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04774539,-0.08408036,0.06541971,-0.06139812,1412.1771,1139.4197)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7241"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04904357,-0.08296373,0.06445375,-0.06289646,1439.2293,1111.3858)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7243"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.05005296,-0.08206389,0.06367725,-0.06405996,1368.3126,1144.3017)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7245"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04902148,-0.08298307,0.06447051,-0.06287104,1177.9025,909.80092)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7247"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04940149,-0.08264783,0.06418099,-0.06330923,1220.8727,973.20475)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7249"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04932762,-0.08271333,0.06423751,-0.06322407,1536.7075,1054.2247)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7251"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+    <path
+       transform="matrix(-0.04714698,-0.08458017,0.06585292,-0.0607067,1560.8895,1074.5737)"
+       d="M 37.880721,26.67854 20.270324,16.267911 5.3033003,30.214074 15.71393,12.603677 1.7677664,-2.3633466 19.378163,8.0472826 34.345187,-5.8988806 23.934557,11.711516 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.4626923"
+       sodipodi:arg1="0.67729413"
+       sodipodi:r2="4.134449"
+       sodipodi:r1="23.170977"
+       sodipodi:cy="12.157597"
+       sodipodi:cx="19.824244"
+       sodipodi:sides="4"
+       id="path7253"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="star" />
+  </g>
+</svg>
diff --git a/src/place_your_satellite-activity/resources/place_your_satellite/earth.png b/src/place_your_satellite-activity/resources/place_your_satellite/earth.png
index 95ca592..e0e69ab 100644
Binary files a/src/place_your_satellite-activity/resources/place_your_satellite/earth.png and b/src/place_your_satellite-activity/resources/place_your_satellite/earth.png differ



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]