[gcompris/gcomprisbraille] Braille Fun New Activity



commit e50b131e5fbfc381c47efe3abdcf81383da32af8
Author: SrishAkaTux <srishakatux gmail com>
Date:   Thu Jul 28 01:03:08 2011 +0530

    Braille Fun New Activity

 src/braille_fun-activity/.gitignore                |    1 +
 src/braille_fun-activity/Makefile.am               |   32 +
 src/braille_fun-activity/braille_fun.py            |  255 +++
 src/braille_fun-activity/braille_fun.svg           | 2174 ++++++++++++++++++++
 src/braille_fun-activity/braille_fun.xml.in        |   20 +
 src/braille_fun-activity/gcompris                  |    1 +
 src/braille_fun-activity/init_path.sh              |    8 +
 .../resources/braille_fun/hillside.svg             | 1925 +++++++++++++++++
 8 files changed, 4416 insertions(+), 0 deletions(-)
---
diff --git a/src/braille_fun-activity/.gitignore b/src/braille_fun-activity/.gitignore
new file mode 100644
index 0000000..37c4a9d
--- /dev/null
+++ b/src/braille_fun-activity/.gitignore
@@ -0,0 +1 @@
+braille_fun.xml
diff --git a/src/braille_fun-activity/Makefile.am b/src/braille_fun-activity/Makefile.am
new file mode 100644
index 0000000..73c4703
--- /dev/null
+++ b/src/braille_fun-activity/Makefile.am
@@ -0,0 +1,32 @@
+SUBDIRS =
+
+pythondir = $(PYTHON_PLUGIN_DIR)
+
+dist_python_DATA= 	braille_fun.py
+
+
+
+xmldir = $(pkgdatadir)/@PACKAGE_DATA_DIR@
+
+xml_in_files = \
+	braille_fun.xml.in
+
+
+xml_DATA = $(xml_in_files:.xml.in=.xml)
+
+# Do not use the INTLTOOL_XML_RULE, we don't need to embed the translations
+# in the file themselves. GCompris pick the translations from the po file at
+# runtime.
+#
+$(xml_DATA): %.xml: %.xml.in
+	sed -e "s/\(<\{1\}\/*\)_/\1/g" $< > $@
+
+# Use this directive and instead of the one above to embed the translations
+# in the xml files directly, this is needed for the tool gcompris2spip
+# INTLTOOL_XML_RULE@
+
+icondir = $(pkgdatadir)/@PACKAGE_DATA_DIR@
+icon_DATA = braille_fun.svg
+
+EXTRA_DIST = $(icon_DATA) ${xml_in_files} init_path.sh
+CLEANFILES = $(xml_DATA)
diff --git a/src/braille_fun-activity/braille_fun.py b/src/braille_fun-activity/braille_fun.py
new file mode 100644
index 0000000..c84d5e7
--- /dev/null
+++ b/src/braille_fun-activity/braille_fun.py
@@ -0,0 +1,255 @@
+#  gcompris - braille_fun.py
+#
+# Copyright (C) 2003, 2008 Bruno Coudoin
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 3 of the License, or
+#   (at your option) any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, see <http://www.gnu.org/licenses/>.
+#
+# braille_fun activity.
+import gtk
+import gtk.gdk
+import gcompris
+import gobject
+import gcompris.utils
+import gcompris.skin
+import gcompris.sound
+import gcompris.bonus
+import gcompris.score
+import goocanvas
+import pango
+import random
+import string
+from BrailleChar import *
+from BrailleMap import *
+from gcompris import gcompris_gettext as _
+
+
+COLOR_ON = 0X00FFFF
+COLOR_OFF = 0X000000
+CIRCLE_FILL = "light green"
+CIRCLE_STROKE = "black"
+CELL_WIDTH = 30
+
+class Gcompris_braille_fun:
+  """Empty gcompris python class"""
+
+
+  def __init__(self, gcomprisBoard):
+    # Save the gcomprisBoard, it defines everything we need
+    # to know from the core
+    self.gcomprisBoard = gcomprisBoard
+    self.gcomprisBoard.level=1
+    self.gcomprisBoard.sublevel=1
+    self.gcomprisBoard.number_of_sublevel = 3
+    self.gcomprisBoard.maxlevel = 5
+    self.text_color = 0X0000FFFFL
+    self.counter = 0
+    self.timerAnim = 0
+    self.delay = 40
+
+    #Boolean variable declaration
+    self.mapActive = False
+
+    # These are used to let us restart only after the bonus is displayed.
+    # When the bonus is displayed, it call us first with pause(1) and then with pause(0)
+    self.board_paused  = 0
+    self.gamewon       = 0
+
+    #Array declaration
+    self.letter_array = []
+    self.alphabet_array = []
+    self.tile_array = []
+
+    # Needed to get key_press
+    gcomprisBoard.disable_im_context = True
+
+  def start(self):
+    # Set the buttons we want in the bar
+    gcompris.bar_set(gcompris.BAR_LEVEL)
+    gcompris.bar_location(300,-1,0.6)
+    gcompris.bar_set_level(self.gcomprisBoard)
+
+    #REPEAT ICON
+    gcompris.bar_set(gcompris.BAR_LEVEL|gcompris.BAR_REPEAT_ICON)
+    gcompris.bar_location(300,-1,0.7)
+
+    # 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
+    # automaticaly.
+    self.root = goocanvas.Group(parent =
+                                    self.gcomprisBoard.canvas.get_root_item())
+
+    #Display the sublevel
+    gcompris.score.start(gcompris.score.STYLE_NOTE, 530, 460,
+                         self.gcomprisBoard.number_of_sublevel)
+    gcompris.score.set(self.gcomprisBoard.sublevel)
+
+    # Set a background image
+    gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),
+                            "braille_fun/hillside.svg")
+
+    self.display_game(self.gcomprisBoard.level)
+
+  def display_game(self, level):
+      for index in range (level) :
+           #Select a random letter and append it to self.letter_array
+           letter = random.choice(string.letters)
+           self.letter_array.append(letter.upper())
+
+           self.alphabet = goocanvas.Text(
+                         parent = self.root,
+                         x=50.0 + 50 * index ,
+                         y=130.0 ,
+                         text=self.letter_array[index],
+                         fill_color="black",
+                         anchor = gtk.ANCHOR_CENTER,
+                         alignment = pango.ALIGN_CENTER,
+                         font = 'SANS 50'
+                         )
+           self.alphabet_array.append(self.alphabet)
+
+           #Display animated or falling letters
+           self.alphabet.animate(-20 + 30 * index,
+                           410,
+                           1,
+                           1,
+                           True,
+                           30000 + level * 5000,
+                           250,
+                           goocanvas.ANIMATE_FREEZE)
+
+           #To call a function when animation finishes
+           self.alphabet.connect("animation-finished", self.animationFinished)
+
+           #Display rectangle for braille tile
+           goocanvas.Rect(parent=self.root,
+                          x = 300 + 90 * index,
+                          y = 155,
+                          width = 80 ,
+                          height = 100,
+                          stroke_color = "black",
+                          fill_color = "#DfDfDf",
+                          line_width=2.0)
+
+           #Naming Objects from Variable Class Names and appending
+           #to array self.tile_array
+           self.obj = "self.obj" + str(index)
+           self.tile_array.append(self.obj)
+
+           #Defining Object to BrailleChar Instance to produce braille_tile
+           self.tile_array[index] = BrailleChar(self.root, 300 + 90 * index , 150, 80,
+                                        '',COLOR_ON ,COLOR_OFF, "#DfDfDf","black",
+                                         True, True ,True, callback = self.letter_change)
+
+  def letter_change(self, letter):
+      self.letter = letter
+      for index in range(self.gcomprisBoard.level):
+          if (self.tile_array[index].get_letter() == self.letter_array[index]):
+              #print str(index) + ' ' + "letter is created"
+              #Change the text color of alphabet correctly identified in the braille tile
+              self.alphabet_array[index].set_property("fill_color_rgba",self.text_color)
+
+      if self.alphabet_array[self.counter].get_property("fill_color_rgba") == self.text_color :
+            self.counter += 1
+
+      if (self.counter == self.gcomprisBoard.level) :
+          self.timerAnim = gobject.timeout_add(40, self.timer_loop)
+
+  def timer_loop(self):
+      self.delay -= 1
+      if(self.delay == 0):
+          self.gamewon = 1
+          gcompris.bonus.display(gcompris.bonus.WIN,gcompris.bonus.SMILEY)
+          self.delay = 40
+      if self.delay < 40 :
+          gobject.timeout_add(self.delay,self.timer_loop)
+
+  def animationFinished(self, item, status):
+      if (self.counter != self.gcomprisBoard.level) :
+          gcompris.bonus.display(gcompris.bonus.LOOSE,gcompris.bonus.SMILEY)
+
+  def end(self):
+    # Remove the root item removes all the others inside it
+    self.root.remove()
+
+  def ok(self):
+    print("braille_fun ok.")
+
+  def repeat(self):
+    if(self.mapActive):
+          self.rootitem.props.visibility = goocanvas.ITEM_INVISIBLE
+          gcompris.set_background(self.gcomprisBoard.canvas.get_root_item(),
+                            "braille_fun/hillside.svg")
+          self.root.props.visibility = goocanvas.ITEM_VISIBLE
+          self.mapActive = False
+    else :
+          self.root.props.visibility = goocanvas.ITEM_INVISIBLE
+          self.rootitem = goocanvas.Group(parent=
+                                   self.gcomprisBoard.canvas.get_root_item())
+          gcompris.set_default_background(self.gcomprisBoard.canvas.get_root_item())
+          map_obj = BrailleMap(self.rootitem, COLOR_ON, COLOR_OFF, CIRCLE_FILL, CIRCLE_STROKE)
+          self.mapActive = True
+
+  def config(self):
+    print("braille_fun config.")
+
+  def key_press(self, keyval, commit_str, preedit_str):
+    utf8char = gtk.gdk.keyval_to_unicode(keyval)
+    strn = u'%c' % utf8char
+
+    print("Gcompris_braille_fun key press keyval=%i %s" % (keyval, strn))
+
+  def pause(self, pause):
+    self.board_paused = pause
+    #This is to hide the Repeat board
+    if self.mapActive == True:
+        self.rootitem.props.visibility = goocanvas.ITEM_INVISIBLE
+    if(self.board_paused) and (self.gamewon == 1):
+          self.gamewon = 0
+          self.declare()
+          self.increment_level()
+          self.end()
+          self.start()
+
+    if(self.board_paused) and (self.gamewon == 0):
+        self.declare()
+        self.end()
+        self.start()
+
+  def declare(self):
+    self.letter_array = []
+    self.tile_array = []
+    self.alphabet_array = []
+    self.counter = 0
+
+  def increment_level(self):
+    self.declare()
+    gcompris.sound.play_ogg("sounds/bleep.wav")
+    self.gcomprisBoard.sublevel += 1
+    if(self.gcomprisBoard.sublevel>self.gcomprisBoard.number_of_sublevel):
+        self.gcomprisBoard.sublevel=1
+        self.gcomprisBoard.level += 1
+        if(self.gcomprisBoard.level > self.gcomprisBoard.maxlevel):
+            self.gcomprisBoard.level = 1
+
+  def set_level(self, level):
+    #This is to hide the Repeat board in case set_level button gets pressed
+    if self.mapActive == True:
+        self.rootitem.props.visibility = goocanvas.ITEM_INVISIBLE
+    self.declare()
+    gcompris.sound.play_ogg("sounds/receive.wav")
+    self.gcomprisBoard.level = level
+    self.gcomprisBoard.sublevel = 1
+    gcompris.bar_set_level(self.gcomprisBoard)
+    self.end()
+    self.start()
\ No newline at end of file
diff --git a/src/braille_fun-activity/braille_fun.svg b/src/braille_fun-activity/braille_fun.svg
new file mode 100644
index 0000000..d6c8ddf
--- /dev/null
+++ b/src/braille_fun-activity/braille_fun.svg
@@ -0,0 +1,2174 @@
+<?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="100"
+   height="100"
+   id="svg40739"
+   sodipodi:version="0.32"
+   inkscape:version="0.47 r22583"
+   version="1.0"
+   sodipodi:docname="python.svg">
+  <defs
+     id="defs40741">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 50 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="100 : 50 : 1"
+       inkscape:persp3d-origin="50 : 33.333333 : 1"
+       id="perspective22" />
+    <linearGradient
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255"
+       gradientTransform="matrix(0.275436,0,0,0.275436,-9.036391,-24.94534)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2149"
+       xlink:href="#linearGradient3195"
+       inkscape:collect="always" />
+    <radialGradient
+       r="109.16138"
+       fy="191.79465"
+       fx="191.85158"
+       cy="191.79465"
+       cx="191.85158"
+       gradientTransform="matrix(-0.05310125,0.872689,-0.600768,-0.03655593,224.2399,-59.43464)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2142"
+       xlink:href="#linearGradient2209"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,224.2399,-59.43464)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2502"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,-9.036391,-24.94534)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2499"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,-9.036391,-24.94534)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2492"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,224.2399,-59.43464)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2490"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,411.631,-21.7361)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2460"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,178.3546,12.7532)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2457"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,364.8811,-32.15133)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2454"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       id="linearGradient2164">
+      <stop
+         id="stop2166"
+         offset="0"
+         style="stop-color:#05fa4a;stop-opacity:1" />
+      <stop
+         id="stop2168"
+         offset="1"
+         style="stop-color:#21fa4a;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2170">
+      <stop
+         id="stop2172"
+         offset="0"
+         style="stop-color:white;stop-opacity:0.37440759" />
+      <stop
+         id="stop2174"
+         offset="1"
+         style="stop-color:white;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2182">
+      <stop
+         id="stop2184"
+         offset="0"
+         style="stop-color:#89b0f1;stop-opacity:1" />
+      <stop
+         id="stop2186"
+         offset="1"
+         style="stop-color:#89b0f1;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2188">
+      <stop
+         id="stop2190"
+         offset="0"
+         style="stop-color:white;stop-opacity:1" />
+      <stop
+         id="stop2192"
+         offset="1"
+         style="stop-color:white;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2194">
+      <stop
+         id="stop2196"
+         offset="0"
+         style="stop-color:#faed21;stop-opacity:1" />
+      <stop
+         id="stop2198"
+         offset="1"
+         style="stop-color:#faed21;stop-opacity:0" />
+    </linearGradient>
+    <radialGradient
+       gradientTransform="matrix(0.650783,-3.06516e-2,2.791861e-2,0.592758,124.1873,214.4504)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2200"
+       fy="551.19287"
+       fx="410.15085"
+       r="197.44826"
+       cy="551.19287"
+       cx="410.15085" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2202"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2204"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.650783,-3.06516e-2,2.791861e-2,0.592758,338.933,901.3419)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2206"
+       fy="551.19287"
+       fx="410.15085"
+       r="197.44826"
+       cy="551.19287"
+       cx="410.15085" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2208"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2210"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2212"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2214"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2216"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientTransform="matrix(0.550543,0,0,0.550543,-18.1832,263.505)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2218"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.345869,4.47043e-4,-4.61112e-4,0.356774,594.4075,251.9103)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2220"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2223"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2225"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.679351,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2227"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2229"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2231"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.679351,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2233"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="matrix(0.137222,0,0,0.137222,241.0501,5.28093)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2235"
+       y2="669.45007"
+       x2="306.77817"
+       y1="97.694176"
+       x1="369.43671" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,196.1709,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2237"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,429.4473,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2239"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2241"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2243"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2245"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2247"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2249"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2251"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2274"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2276"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2263"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2261"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2259"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2257"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.67935,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2260"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2262"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2085"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2083"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2081"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2079"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2077"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2075"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,429.4473,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2073"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,196.1709,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2071"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="matrix(0.137222,0,0,0.137222,241.0501,5.28093)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2069"
+       y2="669.45007"
+       x2="306.77817"
+       y1="97.694176"
+       x1="369.43671" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.679351,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2067"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2065"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2063"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.679351,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2061"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2059"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2057"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.345869,4.47043e-4,-4.61112e-4,0.356774,594.4075,251.9103)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2055"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="matrix(0.550543,0,0,0.550543,-18.1832,263.505)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2053"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2051"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2049"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2047"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2045"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2043"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.650783,-3.06516e-2,2.791861e-2,0.592758,338.933,901.3419)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2041"
+       fy="551.19287"
+       fx="410.15085"
+       r="197.44826"
+       cy="551.19287"
+       cx="410.15085" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2039"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2037"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.650783,-3.06516e-2,2.791861e-2,0.592758,124.1873,214.4504)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2035"
+       fy="551.19287"
+       fx="410.15085"
+       r="197.44826"
+       cy="551.19287"
+       cx="410.15085" />
+    <linearGradient
+       id="linearGradient2029">
+      <stop
+         id="stop2031"
+         offset="0"
+         style="stop-color:#faed21;stop-opacity:1" />
+      <stop
+         id="stop2033"
+         offset="1"
+         style="stop-color:#faed21;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2022">
+      <stop
+         id="stop2024"
+         offset="0"
+         style="stop-color:white;stop-opacity:1" />
+      <stop
+         id="stop2026"
+         offset="1"
+         style="stop-color:white;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2016">
+      <stop
+         id="stop2018"
+         offset="0"
+         style="stop-color:#89b0f1;stop-opacity:1" />
+      <stop
+         id="stop2020"
+         offset="1"
+         style="stop-color:#89b0f1;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2004">
+      <stop
+         id="stop2006"
+         offset="0"
+         style="stop-color:white;stop-opacity:0.37440759" />
+      <stop
+         id="stop2008"
+         offset="1"
+         style="stop-color:white;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1998">
+      <stop
+         id="stop2000"
+         offset="0"
+         style="stop-color:#05fa4a;stop-opacity:1" />
+      <stop
+         id="stop2002"
+         offset="1"
+         style="stop-color:#21fa4a;stop-opacity:0" />
+    </linearGradient>
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2305"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2307"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,429.4473,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2309"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,196.1709,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2311"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2313"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2315"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2317"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2319"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,196.1709,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2222"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,429.4473,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2224"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2226"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2228"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       id="linearGradient2230">
+      <stop
+         id="stop2232"
+         offset="0"
+         style="stop-color:#05fa4a;stop-opacity:1" />
+      <stop
+         id="stop2234"
+         offset="1"
+         style="stop-color:#21fa4a;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2236">
+      <stop
+         id="stop2238"
+         offset="0"
+         style="stop-color:white;stop-opacity:0.37440759" />
+      <stop
+         id="stop2240"
+         offset="1"
+         style="stop-color:white;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2248">
+      <stop
+         id="stop2250"
+         offset="0"
+         style="stop-color:#89b0f1;stop-opacity:1" />
+      <stop
+         id="stop2252"
+         offset="1"
+         style="stop-color:#89b0f1;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2254">
+      <stop
+         id="stop2256"
+         offset="0"
+         style="stop-color:white;stop-opacity:1" />
+      <stop
+         id="stop2258"
+         offset="1"
+         style="stop-color:white;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2337">
+      <stop
+         id="stop2262"
+         offset="0"
+         style="stop-color:#faed21;stop-opacity:1" />
+      <stop
+         id="stop2264"
+         offset="1"
+         style="stop-color:#faed21;stop-opacity:0" />
+    </linearGradient>
+    <radialGradient
+       gradientTransform="matrix(0.650783,-3.06516e-2,2.791861e-2,0.592758,124.1873,214.4504)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2266"
+       fy="551.19287"
+       fx="410.15085"
+       r="197.44826"
+       cy="551.19287"
+       cx="410.15085" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2268"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2270"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.650783,-3.06516e-2,2.791861e-2,0.592758,338.933,901.3419)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2272"
+       fy="551.19287"
+       fx="410.15085"
+       r="197.44826"
+       cy="551.19287"
+       cx="410.15085" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2366"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2276"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2278"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2280"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2282"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientTransform="matrix(0.550543,0,0,0.550543,-18.1832,263.505)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2284"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.345869,4.47043e-4,-4.61112e-4,0.356774,594.4075,251.9103)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2286"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2288"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2290"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.679351,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2292"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2294"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2296"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.679351,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2298"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="matrix(0.137222,0,0,0.137222,241.0501,5.28093)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2300"
+       y2="669.45007"
+       x2="306.77817"
+       y1="97.694176"
+       x1="369.43671" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,196.1709,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2302"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,429.4473,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2304"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2306"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2308"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2310"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2312"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2314"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2316"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2318"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.67935,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2320"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2322"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2324"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2326"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2328"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,224.0782,-59.43465)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient1967"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,-9.1982,-24.94535)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient1959"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2335"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2333"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2331"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2329"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.67935,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2327"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2325"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2323"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2321"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2383"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2385"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2315"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2313"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,429.4473,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2311"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,196.1709,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2309"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="matrix(0.137222,0,0,0.137222,241.0501,5.28093)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2391"
+       y2="669.45007"
+       x2="306.77817"
+       y1="97.694176"
+       x1="369.43671" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.679351,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2305"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2303"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2301"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.679351,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2299"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2297"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2295"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.345869,4.47043e-4,-4.61112e-4,0.356774,594.4075,251.9103)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2293"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="matrix(0.550543,0,0,0.550543,-18.1832,263.505)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2291"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2289"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2287"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2285"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2283"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2281"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.650783,-3.06516e-2,2.791861e-2,0.592758,338.933,901.3419)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2279"
+       fy="551.19287"
+       fx="410.15085"
+       r="197.44826"
+       cy="551.19287"
+       cx="410.15085" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2277"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient2275"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.650783,-3.06516e-2,2.791861e-2,0.592758,124.1873,214.4504)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2273"
+       fy="551.19287"
+       fx="410.15085"
+       r="197.44826"
+       cy="551.19287"
+       cx="410.15085" />
+    <linearGradient
+       id="linearGradient2267">
+      <stop
+         id="stop2269"
+         offset="0"
+         style="stop-color:#faed21;stop-opacity:1" />
+      <stop
+         id="stop2271"
+         offset="1"
+         style="stop-color:#faed21;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2261">
+      <stop
+         id="stop2263"
+         offset="0"
+         style="stop-color:white;stop-opacity:1" />
+      <stop
+         id="stop2265"
+         offset="1"
+         style="stop-color:white;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2255">
+      <stop
+         id="stop2257"
+         offset="0"
+         style="stop-color:#89b0f1;stop-opacity:1" />
+      <stop
+         id="stop2259"
+         offset="1"
+         style="stop-color:#89b0f1;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2243">
+      <stop
+         id="stop2245"
+         offset="0"
+         style="stop-color:white;stop-opacity:0.37440759" />
+      <stop
+         id="stop2247"
+         offset="1"
+         style="stop-color:white;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2422">
+      <stop
+         id="stop2239"
+         offset="0"
+         style="stop-color:#05fa4a;stop-opacity:1" />
+      <stop
+         id="stop2241"
+         offset="1"
+         style="stop-color:#21fa4a;stop-opacity:0" />
+    </linearGradient>
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2235"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2427"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,429.4473,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2429"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,196.1709,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2229"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2227"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2433"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,410.524,-107.2999)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2412"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,224.2399,-59.43464)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient1938"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,-9.036391,-24.94534)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient1930"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2150"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2148"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,196.1709,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2146"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,429.4473,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient2144"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2142"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient2140"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2056"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2054"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,768.2048,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2028"
+       id="radialGradient2025"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,534.9284,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2017"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,599.4427,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient1981"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,366.1663,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient1973"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-5.310125e-2,0.872689,-0.600768,-3.655593e-2,429.4473,-35.24048)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient1969"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.275436,0,0,0.275436,196.1709,-0.751182)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient1961"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="matrix(0.137222,0,0,0.137222,241.0501,5.28093)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2283"
+       y2="669.45007"
+       x2="306.77817"
+       y1="97.694176"
+       x1="369.43671" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.679351,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2224"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2222"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <radialGradient
+       gradientTransform="matrix(-0.106586,1.75168,-1.205874,-7.337587e-2,459.558,-121.7057)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient2209"
+       id="radialGradient2215"
+       fy="191.79465"
+       fx="191.85158"
+       r="109.16138"
+       cy="191.79465"
+       cx="191.85158" />
+    <linearGradient
+       gradientTransform="matrix(0.552861,0,0,0.552861,-8.679351,-52.47802)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient3195"
+       id="linearGradient2191"
+       y2="593.93323"
+       x2="324.75836"
+       y1="230.74762"
+       x1="355.05255" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient1360"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient1358"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.345869,4.47043e-4,-4.61112e-4,0.356774,594.4075,251.9103)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient1365"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="matrix(0.550543,0,0,0.550543,-18.1832,263.505)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient1357"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient1354"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient1352"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient15633"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient15631"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.628232,8.120038e-4,-8.375586e-4,0.64804,-113.341,354.6752)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient15608"
+       id="radialGradient15614"
+       fy="1036.5964"
+       fx="-330.87396"
+       r="197.44826"
+       cy="1036.5964"
+       cx="-330.87396" />
+    <radialGradient
+       gradientTransform="matrix(0.650783,-3.06516e-2,2.791861e-2,0.592758,338.933,901.3419)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient12101"
+       fy="551.19287"
+       fx="410.15085"
+       r="197.44826"
+       cy="551.19287"
+       cx="410.15085" />
+    <linearGradient
+       gradientTransform="translate(-723.2674,480.0855)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient12093"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient10241"
+       id="linearGradient10230"
+       y2="300.84381"
+       x2="871.53973"
+       y1="566.73724"
+       x1="56.840466" />
+    <radialGradient
+       gradientTransform="matrix(0.650783,-3.06516e-2,2.791861e-2,0.592758,124.1873,214.4504)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#linearGradient8440"
+       id="radialGradient8446"
+       fy="551.19287"
+       fx="410.15085"
+       r="197.44826"
+       cy="551.19287"
+       cx="410.15085" />
+    <linearGradient
+       id="linearGradient8440">
+      <stop
+         id="stop8442"
+         offset="0"
+         style="stop-color:#faed21;stop-opacity:1" />
+      <stop
+         id="stop8444"
+         offset="1"
+         style="stop-color:#faed21;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient10241">
+      <stop
+         id="stop10243"
+         offset="0"
+         style="stop-color:white;stop-opacity:1" />
+      <stop
+         id="stop10245"
+         offset="1"
+         style="stop-color:white;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient15608">
+      <stop
+         id="stop15610"
+         offset="0"
+         style="stop-color:#89b0f1;stop-opacity:1" />
+      <stop
+         id="stop15612"
+         offset="1"
+         style="stop-color:#89b0f1;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2209">
+      <stop
+         id="stop2211"
+         offset="0"
+         style="stop-color:red;stop-opacity:1" />
+      <stop
+         id="stop2213"
+         offset="1"
+         style="stop-color:#ff2a2a;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3195">
+      <stop
+         id="stop3197"
+         offset="0"
+         style="stop-color:white;stop-opacity:0.37440759" />
+      <stop
+         id="stop3199"
+         offset="1"
+         style="stop-color:white;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2028">
+      <stop
+         id="stop2030"
+         offset="0"
+         style="stop-color:#05fa4a;stop-opacity:1" />
+      <stop
+         id="stop2032"
+         offset="1"
+         style="stop-color:#21fa4a;stop-opacity:0" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective3270"
+       inkscape:persp3d-origin="88.7714 : 61.549754 : 1"
+       inkscape:vp_z="177.5428 : 92.324631 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 92.324631 : 1"
+       sodipodi:type="inkscape:persp3d" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="3.26"
+     inkscape:cx="50"
+     inkscape:cy="50"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     height="100px"
+     width="100px"
+     inkscape:window-width="1016"
+     inkscape:window-height="575"
+     inkscape:window-x="0"
+     inkscape:window-y="1"
+     showgrid="false"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata40744">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <g
+       id="g3539"
+       transform="matrix(0.74175971,0,0,0.7059368,-17.997906,-16.316792)">
+      <path
+         id="path12034"
+         d="m 100.84357,30.607805 c -3.356157,-4.672732 -9.255411,-7.356573 -14.970269,-7.051373 -2.673424,0.123947 -5.313274,1.4626 -6.638181,3.852832 -8.123448,11.609607 -14.716623,24.196927 -21.195881,36.771435 -9.788141,19.402459 -18.942095,39.136861 -27.159767,59.257491 -1.266015,3.28446 -2.685362,6.53299 -3.560959,9.94954 -0.01982,1.47531 -0.922932,2.91151 -1.25333,4.39719 -1.245641,4.26549 -2.46686,8.95742 -0.975448,13.31833 0.724375,1.81317 2.411835,3.00903 3.661024,4.45743 4.092986,4.19772 9.2301,7.84765 15.21518,8.47139 5.234496,0.67914 10.364356,-0.80661 15.377752,-2.12 30.781804,-7.931 61.563609,-15.86199 92.345409,-23.79299 4.14856,-1.42101 7.28103,-5.27707 7.80058,-9.63902 0.63343,-4.15617 -0.63316,-8.42609 -3.04058,-11.82384 -17.17412,-27.609185 -34.47791,-55.152563 -52.81457,-82.009483 -0.92623,-1.34913 -1.8563,-2.69563 -2.79096,-4.038932 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7612648;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+      <path
+         id="path12040"
+         d="M 91.877518,41.214172 C 74.057232,73.224683 60.327359,107.25236 46.139794,140.96455 c -1.296781,2.69612 -2.05081,5.93547 -1.0305,8.84108 0.8959,1.90768 3.361106,2.06137 5.198476,2.20628 3.852682,0.18407 7.513726,-1.14921 11.229664,-1.94044 28.387258,-6.79341 56.780596,-13.56211 85.164046,-20.371 2.11405,-0.63608 4.58575,-1.15329 5.97149,-3.03109 0.91928,-1.81199 -0.32117,-3.76485 -1.12101,-5.38034 -4.41105,-7.45462 -9.0638,-14.7654 -13.59686,-22.146755 -12.28251,-19.774926 -24.69807,-39.470954 -37.4785,-58.927933 -1.152862,-1.527866 -2.87541,-3.355987 -4.987487,-2.848767 -1.726519,0.612234 -2.792265,2.306714 -3.611595,3.848587 z"
+         style="fill:url(#radialGradient2142);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+      <path
+         id="path2264"
+         d="m 98.338173,121.7982 c -3.937216,-0.66874 -7.449142,2.99065 -7.591687,6.78202 -0.385381,3.49695 2.216794,7.31326 5.905408,7.41702 3.987406,0.20508 7.123896,-3.75233 6.943086,-7.55572 0.008,-3.05692 -2.10732,-6.17878 -5.256807,-6.64332 z"
+         style="fill:#800000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+      <path
+         id="path2268"
+         d="m 100.33097,123.791 c -3.937212,-0.66874 -7.449141,2.99065 -7.591682,6.78202 -0.385371,3.49695 2.216794,7.31326 5.905408,7.41703 3.987404,0.20507 7.123894,-3.75233 6.943084,-7.55573 0.008,-3.05691 -2.10732,-6.17876 -5.25681,-6.64332 z"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+      <path
+         id="path1992"
+         d="m 102.99231,104.02954 c 0.11631,3.44135 0.23262,6.88271 0.34893,10.32406 -2.82814,-1.08984 -6.123252,-1.14536 -8.803608,0.38426 -1.640061,0.84073 -3.279295,1.85256 -5.160132,2.00729 -0.116309,-7.15284 -0.232619,-14.30568 -0.348928,-21.458521 3.850873,-0.30313 7.899343,-0.784149 11.064128,-3.208153 3.17742,-2.179069 4.91536,-6.406562 3.72885,-10.139266 -1.24225,-3.697931 -5.510579,-6.033097 -9.292595,-4.990515 -3.817865,0.981606 -6.719289,4.994653 -6.372515,8.860427 -0.153735,0.80509 -1.661845,-0.996475 -2.536565,-0.919296 -3.97412,-1.133694 -8.127051,0.544289 -11.449515,2.684204 -0.231671,-5.745687 2.355279,-11.309277 6.319147,-15.374617 4.504656,-4.914676 10.934715,-8.057185 17.627945,-8.262429 5.461898,-0.325172 10.952678,1.86174 14.748678,5.791144 3.808,3.671597 5.60112,9.112901 5.12415,14.340209 -0.42767,5.138155 -2.63929,10.093615 -5.98698,13.991206 -2.42729,2.726117 -5.60464,4.705507 -9.01099,5.969997 z"
+         style="font-size:84.60372162px;font-style:normal;font-weight:bold;fill:#800000;fill-opacity:1;stroke:none;font-family:Tw Cen MT" />
+      <path
+         id="text1985"
+         d="m 105.4348,105.77417 c -0.0581,4.0229 -0.11631,8.04579 -0.17446,12.06869 -3.79587,2.6777 -8.894094,2.335 -13.076178,0.82353 -0.709784,-0.24026 -0.236773,-1.245 -0.391256,-1.84168 -0.107282,-6.59782 -0.214563,-13.19564 -0.321844,-19.793452 3.850875,-0.303114 7.899346,-0.784147 11.064128,-3.208152 3.17743,-2.179068 4.91536,-6.406562 3.72885,-10.139265 -1.24226,-3.697927 -5.51058,-6.033098 -9.292599,-4.99051 -3.817877,0.981591 -6.719285,4.994658 -6.372514,8.860421 -0.665864,1.450897 -2.91111,1.910759 -4.375228,2.534176 -3.147237,0.936277 -6.664322,0.705159 -9.610859,-0.769268 -0.231666,-5.745687 2.355284,-11.309274 6.319147,-15.374617 4.504662,-4.914679 10.934728,-8.057178 17.627963,-8.262422 5.4619,-0.325181 10.95268,1.861734 14.74867,5.791138 3.80799,3.671599 5.60112,9.112898 5.12415,14.340207 -0.42767,5.138155 -2.63929,10.093617 -5.98699,13.991205 -2.42728,2.726119 -5.60463,4.705509 -9.01098,5.969999 z"
+         style="font-size:84.60372162px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Tw Cen MT" />
+      <path
+         id="path12054"
+         d="M 93.50209,47.340061 C 77.917299,77.510384 64.832354,108.87136 51.444732,140.05191 c -0.879586,1.9384 -2.110964,3.95639 -1.883988,6.16256 0.498982,2.07708 2.895001,1.67731 4.441331,1.24265 6.071973,-1.43063 12.104701,-3.02984 18.160926,-4.52812 3.846202,-0.96822 7.692404,-1.93643 11.538606,-2.90465 -1.86222,-14.22446 -2.155626,-28.86483 1.129902,-42.908553 2.398724,-10.128624 7.153058,-20.122486 15.355761,-26.81181 3.31141,-2.723002 7.10747,-4.839782 11.13416,-6.302635 -3.53553,-5.767907 -7.01251,-11.573361 -10.58516,-17.317466 -0.992563,-1.385112 -2.615366,-3.136082 -4.492258,-2.437675 -1.288811,0.598227 -2.100646,1.88189 -2.741922,3.09385 z"
+         style="fill:url(#linearGradient2149);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+    </g>
+  </g>
+</svg>
diff --git a/src/braille_fun-activity/braille_fun.xml.in b/src/braille_fun-activity/braille_fun.xml.in
new file mode 100644
index 0000000..2f5d020
--- /dev/null
+++ b/src/braille_fun-activity/braille_fun.xml.in
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<GCompris>
+  <Board
+        name="braille_fun"
+        type="python:braille_fun"
+        section="/experimental"
+        icon="braille_fun.svg"
+        difficulty="1"
+        author="your name here"
+        boarddir=""
+        demo="1">
+        <_title>set a title for braille_fun</_title>
+        <_description>set a description for braille_fun</_description>
+        <_prerequisite>set a prerequisite for braille_fun</_prerequisite>
+        <_goal>set a goal for braille_fun</_goal>
+        <_manual>set a manual for braille_fun</_manual>
+        <_credit>set a credit for braille_fun</_credit>
+  </Board>
+  <Data directory=""/>
+</GCompris>
diff --git a/src/braille_fun-activity/gcompris b/src/braille_fun-activity/gcompris
new file mode 120000
index 0000000..6a7dc8a
--- /dev/null
+++ b/src/braille_fun-activity/gcompris
@@ -0,0 +1 @@
+../boards/python/gcompris
\ No newline at end of file
diff --git a/src/braille_fun-activity/init_path.sh b/src/braille_fun-activity/init_path.sh
new file mode 100755
index 0000000..b8292bb
--- /dev/null
+++ b/src/braille_fun-activity/init_path.sh
@@ -0,0 +1,8 @@
+# Set the different path for this activity
+# This is sourced by runit.sh
+path=$1
+activity=braille_fun
+plugindir=$path/../boards/.libs
+pythonplugindir=$path/../braille_alphabets-activity:$path/../braille_fun-activity
+resourcedir=$path/resources
+section="/experimental"
diff --git a/src/braille_fun-activity/resources/braille_fun/hillside.svg b/src/braille_fun-activity/resources/braille_fun/hillside.svg
new file mode 100644
index 0000000..348a6df
--- /dev/null
+++ b/src/braille_fun-activity/resources/braille_fun/hillside.svg
@@ -0,0 +1,1925 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="800"
+   height="527"
+   id="svg6105"
+   version="1.1"
+   inkscape:version="0.48.0 r9654"
+   sodipodi:docname="hillside.svg">
+  <defs
+     id="defs6107">
+    <linearGradient
+       x1="288.00049"
+       y1="576"
+       x2="288.00049"
+       y2="0.00048828131"
+       id="sky_1_"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0163233,0,0,1,-4.5373435,-1.8426104)">
+      <stop
+         id="stop239"
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop241"
+         style="stop-color:#d3eef4;stop-opacity:1"
+         offset="0.3123" />
+      <stop
+         id="stop243"
+         style="stop-color:#76cfe4;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="-271"
+       y1="415.02341"
+       x2="782"
+       y2="415.02341"
+       id="SVGID_1_"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         id="stop251"
+         style="stop-color:#8cc63f;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop253"
+         style="stop-color:#87c542;stop-opacity:1"
+         offset="0.186" />
+      <stop
+         id="stop255"
+         style="stop-color:#75c049;stop-opacity:1"
+         offset="0.42820001" />
+      <stop
+         id="stop257"
+         style="stop-color:#52b955;stop-opacity:1"
+         offset="0.70160002" />
+      <stop
+         id="stop259"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="0.99589998" />
+      <stop
+         id="stop261"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="-271"
+       y1="471.37701"
+       x2="782"
+       y2="471.37701"
+       id="SVGID_2_"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         id="stop266"
+         style="stop-color:#8cc63f;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop268"
+         style="stop-color:#87c542;stop-opacity:1"
+         offset="0.186" />
+      <stop
+         id="stop270"
+         style="stop-color:#75c049;stop-opacity:1"
+         offset="0.42820001" />
+      <stop
+         id="stop272"
+         style="stop-color:#52b955;stop-opacity:1"
+         offset="0.70160002" />
+      <stop
+         id="stop274"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="0.99589998" />
+      <stop
+         id="stop276"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="-109"
+       y1="471.37701"
+       x2="664"
+       y2="471.37701"
+       id="SVGID_3_"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         id="stop281"
+         style="stop-color:#8cc63f;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop283"
+         style="stop-color:#87c542;stop-opacity:1"
+         offset="0.186" />
+      <stop
+         id="stop285"
+         style="stop-color:#75c049;stop-opacity:1"
+         offset="0.42820001" />
+      <stop
+         id="stop287"
+         style="stop-color:#52b955;stop-opacity:1"
+         offset="0.70160002" />
+      <stop
+         id="stop289"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="0.99589998" />
+      <stop
+         id="stop291"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="-271"
+       y1="494.87601"
+       x2="782"
+       y2="494.87601"
+       id="SVGID_4_"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         id="stop296"
+         style="stop-color:#8cc63f;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop298"
+         style="stop-color:#87c542;stop-opacity:1"
+         offset="0.186" />
+      <stop
+         id="stop300"
+         style="stop-color:#75c049;stop-opacity:1"
+         offset="0.42820001" />
+      <stop
+         id="stop302"
+         style="stop-color:#52b955;stop-opacity:1"
+         offset="0.70160002" />
+      <stop
+         id="stop304"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="0.99589998" />
+      <stop
+         id="stop306"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="-109"
+       y1="494.87601"
+       x2="664"
+       y2="494.87601"
+       id="SVGID_5_"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         id="stop311"
+         style="stop-color:#8cc63f;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop313"
+         style="stop-color:#87c542;stop-opacity:1"
+         offset="0.186" />
+      <stop
+         id="stop315"
+         style="stop-color:#75c049;stop-opacity:1"
+         offset="0.42820001" />
+      <stop
+         id="stop317"
+         style="stop-color:#52b955;stop-opacity:1"
+         offset="0.70160002" />
+      <stop
+         id="stop319"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="0.99589998" />
+      <stop
+         id="stop321"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="-216"
+       y1="494.87601"
+       x2="691.7002"
+       y2="494.87601"
+       id="SVGID_6_"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         id="stop326"
+         style="stop-color:#8cc63f;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop328"
+         style="stop-color:#87c542;stop-opacity:1"
+         offset="0.186" />
+      <stop
+         id="stop330"
+         style="stop-color:#75c049;stop-opacity:1"
+         offset="0.42820001" />
+      <stop
+         id="stop332"
+         style="stop-color:#52b955;stop-opacity:1"
+         offset="0.70160002" />
+      <stop
+         id="stop334"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="0.99589998" />
+      <stop
+         id="stop336"
+         style="stop-color:#00af64;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.6"
+     inkscape:cx="400"
+     inkscape:cy="268.33334"
+     inkscape:current-layer="g236"
+     inkscape:document-units="px"
+     showgrid="false"
+     inkscape:window-width="1256"
+     inkscape:window-height="701"
+     inkscape:window-x="0"
+     inkscape:window-y="37"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata6110">
+    <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
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     transform="translate(0,-73)">
+    <g
+       id="g236"
+       transform="matrix(1.3703704,0,0,0.90451388,8.6666663,77.000003)">
+      <linearGradient
+         x1="288.00049"
+         y1="576"
+         x2="288.00049"
+         y2="0.00048828131"
+         id="linearGradient3478"
+         gradientUnits="userSpaceOnUse">
+        <stop
+           id="stop3480"
+           style="stop-color:#ffffff;stop-opacity:1"
+           offset="0" />
+        <stop
+           id="stop3482"
+           style="stop-color:#d3eef4;stop-opacity:1"
+           offset="0.3123" />
+        <stop
+           id="stop3484"
+           style="stop-color:#76cfe4;stop-opacity:1"
+           offset="1" />
+      </linearGradient>
+      <rect
+         width="585.40222"
+         height="576"
+         x="-4.5373435"
+         y="-1.8426104"
+         id="sky"
+         style="fill:url(#sky_1_)" />
+      <g
+         id="g246"
+         transform="matrix(1.0163233,0,0,1,-4.5373435,-1.8426104)">
+        <path
+           inkscape:connector-curvature="0"
+           d="m 208.994,361.233 c 68.898,10.567 118.276,30.646 148.131,41.212 20.588,7.287 71.754,32.659 129.398,38.357 0.127,-0.106 0.26,-0.207 0.386,-0.314 0.632,-0.537 1.577,-0.461 2.116,0.171 0.104,0.122 0.178,0.258 0.236,0.398 25.127,2.201 51.403,0.58 76.856,-7.966 3.229,-1.084 6.53,-1.935 9.882,-2.615 L 575.999,0 0,0 0,376.002 c 88.107,-17.344 146.166,-24.404 208.994,-14.769 z m 306.62,41.561 c -0.85,2.621 -1.796,5.155 -2.836,7.604 -0.242,0.571 -0.798,0.914 -1.382,0.914 -0.196,0 -0.395,-0.038 -0.586,-0.119 -0.761,-0.325 -1.118,-1.207 -0.793,-1.968 1.006,-2.367 1.921,-4.817 2.741,-7.357 0.256,-0.789 1.102,-1.22 1.892,-0.964 0.787,0.254 1.22,1.101 0.964,1.89 z m 2.171,-7.848 c -0.154,0.702 -0.776,1.182 -1.467,1.182 -0.105,0 -0.212,-0.011 -0.319,-0.034 -0.81,-0.178 -1.323,-0.977 -1.146,-1.786 0.552,-2.539 0.879,-5.104 1.015,-7.681 0.042,-0.829 0.748,-1.465 1.574,-1.421 0.829,0.042 1.465,0.748 1.421,1.577 -0.141,2.727 -0.49,5.453 -1.078,8.163 z m -0.281,-24.451 c 0.55,2.66
 1 0.96,5.364 1.201,8.087 l -0.003,0 c 0.072,0.824 -0.539,1.552 -1.363,1.626 -0.044,0.003 -0.088,0.005 -0.131,0.005 -0.77,0 -1.426,-0.589 -1.494,-1.368 -0.227,-2.598 -0.619,-5.186 -1.147,-7.742 -0.169,-0.81 0.353,-1.604 1.164,-1.771 0.811,-0.17 1.604,0.352 1.773,1.163 z m -6.717,-16.374 c 0.768,-0.309 1.643,0.065 1.951,0.835 0.991,2.476 1.912,5.032 2.724,7.655 l -0.002,0 c 0.245,0.791 -0.198,1.63 -0.989,1.875 -0.147,0.046 -0.297,0.067 -0.444,0.067 -0.641,0 -1.232,-0.413 -1.433,-1.057 -0.784,-2.536 -1.676,-5.018 -2.642,-7.425 -0.308,-0.768 0.066,-1.641 0.835,-1.95 z m -7.121,-14.334 c 0.721,-0.404 1.636,-0.148 2.04,0.574 1.26,2.245 2.525,4.648 3.749,7.181 l 0.003,-0.003 c 0.358,0.746 0.046,1.643 -0.698,2.004 -0.21,0.103 -0.433,0.15 -0.652,0.15 -0.558,0 -1.093,-0.313 -1.351,-0.848 -1.197,-2.471 -2.434,-4.819 -3.665,-7.018 -0.406,-0.722 -0.149,-1.635 0.574,-2.04 z m -1.091,83.224 c 1.439,-2.149 2.79,-4.388 4.046,-6.715 0.394,-0.729 1.302,-1.002 2.031,-0.609 0.729,0.394 1.002,1.3
 02 0.608,2.033 -1.3,2.412 -2.701,4.73 -4.193,6.961 -0.29,0.431 -0.766,0.664 -1.249,0.664 -0.287,0 -0.577,-0.082 -0.833,-0.255 -0.688,-0.46 -0.873,-1.393 -0.41,-2.079 z m -7.657,-96.642 c 0.672,-0.486 1.61,-0.332 2.095,0.341 1.289,1.792 2.849,4.056 4.538,6.706 l -0.002,0 c 0.445,0.697 0.24,1.626 -0.459,2.071 -0.25,0.159 -0.529,0.234 -0.805,0.234 -0.495,0 -0.979,-0.244 -1.265,-0.692 -1.655,-2.601 -3.184,-4.817 -4.442,-6.565 -0.486,-0.674 -0.334,-1.612 0.34,-2.095 z m -2.251,108.772 c 1.832,-1.86 3.58,-3.801 5.239,-5.832 0.522,-0.64 1.467,-0.735 2.109,-0.211 0.641,0.524 0.736,1.469 0.212,2.111 -1.719,2.102 -3.527,4.113 -5.422,6.037 l -0.002,0 c -0.294,0.298 -0.682,0.447 -1.069,0.447 -0.379,0 -0.759,-0.144 -1.051,-0.431 -0.591,-0.582 -0.597,-1.532 -0.016,-2.121 z M 358.526,391.554 c 0.004,0.243 0.004,0.486 0.006,0.731 -0.002,2.44 -0.152,4.927 -0.465,7.45 l 0.002,0.002 c -0.096,0.76 -0.741,1.315 -1.488,1.315 -0.062,0 -0.123,-0.004 -0.186,-0.012 -0.824,-0.104 -1.407,-0.852 -1.304,
 -1.674 0.296,-2.403 0.439,-4.766 0.439,-7.082 0,-0.232 -0.002,-0.466 -0.005,-0.695 -0.01,-0.829 0.653,-1.508 1.482,-1.518 0.83,-0.009 1.509,0.654 1.519,1.483 z m -4.394,-17.158 c 0.793,-0.246 1.632,0.2 1.875,0.993 0.795,2.591 1.414,5.257 1.841,7.993 0.127,0.818 -0.434,1.586 -1.254,1.712 -0.078,0.013 -0.156,0.019 -0.233,0.019 -0.726,0 -1.363,-0.53 -1.479,-1.27 -0.403,-2.593 -0.989,-5.119 -1.743,-7.573 -0.245,-0.794 0.2,-1.632 0.993,-1.874 z m -7.125,-14.268 c 0.695,-0.45 1.623,-0.249 2.073,0.446 1.479,2.295 2.81,4.686 3.972,7.163 l 0,0.002 c 0.353,0.75 0.029,1.643 -0.721,1.995 -0.206,0.097 -0.423,0.142 -0.636,0.142 -0.564,0 -1.104,-0.319 -1.359,-0.864 -1.104,-2.353 -2.369,-4.625 -3.777,-6.811 -0.451,-0.695 -0.249,-1.625 0.448,-2.073 z m -10.52,-11.999 c 0.568,-0.604 1.518,-0.632 2.122,-0.063 1.989,1.871 3.866,3.852 5.611,5.931 0.533,0.635 0.45,1.581 -0.184,2.114 -0.281,0.235 -0.623,0.351 -0.964,0.351 -0.428,0 -0.853,-0.183 -1.149,-0.535 -1.668,-1.986 -3.463,-3.882 -5.371,-5.6
 75 -0.604,-0.569 -0.633,-1.519 -0.065,-2.123 z m -12.943,-9.347 c 0.425,-0.71 1.346,-0.94 2.056,-0.516 2.34,1.403 4.6,2.921 6.767,4.549 l 0,-0.002 c 0.661,0.496 0.794,1.438 0.296,2.101 -0.295,0.393 -0.744,0.599 -1.2,0.599 -0.313,0 -0.63,-0.098 -0.899,-0.301 -2.079,-1.563 -4.252,-3.022 -6.503,-4.37 -0.712,-0.425 -0.945,-1.349 -0.517,-2.06 z m -14.584,-6.52 c 0.274,-0.781 1.133,-1.191 1.914,-0.915 2.564,0.907 5.082,1.94 7.535,3.093 0.748,0.353 1.072,1.245 0.721,1.995 -0.256,0.544 -0.796,0.862 -1.359,0.862 -0.214,0 -0.43,-0.045 -0.636,-0.142 -2.363,-1.109 -4.789,-2.105 -7.262,-2.98 -0.78,-0.277 -1.19,-1.133 -0.913,-1.913 z m -15.586,-3.521 c 0.116,-0.822 0.875,-1.391 1.694,-1.274 2.693,0.38 5.365,0.897 8,1.547 l 0,-0.002 c 0.806,0.198 1.298,1.01 1.1,1.815 -0.169,0.686 -0.78,1.143 -1.455,1.143 -0.118,0 -0.238,-0.015 -0.358,-0.044 -2.541,-0.625 -5.115,-1.124 -7.704,-1.49 -0.823,-0.117 -1.393,-0.875 -1.277,-1.695 z m -14.58,-1.866 c 1.77,-0.127 3.542,-0.188 5.314,-0.188 0.949,0 1.
 896,0.019 2.843,0.053 0.829,0.031 1.473,0.728 1.443,1.556 -0.032,0.826 -0.727,1.474 -1.556,1.443 -0.909,-0.036 -1.82,-0.053 -2.73,-0.051 -1.702,-0.002 -3.403,0.058 -5.1,0.18 -0.036,0.003 -0.07,0.004 -0.105,0.004 -0.781,0 -1.442,-0.604 -1.497,-1.395 -0.06,-0.827 0.562,-1.543 1.388,-1.602 z m -16.029,3.001 c 2.61,-0.816 5.258,-1.469 7.93,-1.968 0.813,-0.152 1.598,0.385 1.75,1.2 0.152,0.814 -0.387,1.598 -1.201,1.75 -2.557,0.476 -5.092,1.102 -7.585,1.879 -0.149,0.047 -0.3,0.069 -0.449,0.069 -0.638,0 -1.23,-0.41 -1.431,-1.052 -0.247,-0.789 0.195,-1.633 0.986,-1.878 z m -14.866,6.755 c 2.348,-1.445 4.76,-2.725 7.224,-3.843 0.755,-0.344 1.645,-0.01 1.987,0.746 0.34,0.755 0.006,1.643 -0.748,1.985 -2.351,1.067 -4.65,2.287 -6.891,3.665 -0.245,0.151 -0.516,0.224 -0.785,0.224 -0.503,0 -0.996,-0.254 -1.278,-0.714 -0.434,-0.706 -0.215,-1.63 0.491,-2.063 z m -12.724,10.23 c 1.936,-1.993 3.953,-3.828 6.041,-5.511 l 0.002,0.002 c 0.645,-0.52 1.587,-0.418 2.107,0.227 0.52,0.645 0.418,1.589 -0
 .227,2.109 -1.993,1.604 -3.92,3.356 -5.77,5.263 -0.293,0.303 -0.685,0.454 -1.076,0.454 -0.377,0 -0.755,-0.141 -1.046,-0.425 -0.593,-0.576 -0.608,-1.525 -0.031,-2.119 z m -10.027,12.806 c 1.412,-2.173 2.963,-4.366 4.661,-6.581 0.01,-0.013 0.021,-0.028 0.031,-0.041 0.503,-0.657 1.446,-0.781 2.104,-0.276 0.657,0.503 0.78,1.445 0.277,2.103 -0.011,0.013 -0.019,0.025 -0.03,0.041 -1.653,2.155 -3.16,4.286 -4.525,6.389 -0.288,0.442 -0.768,0.684 -1.258,0.684 -0.28,0 -0.564,-0.079 -0.817,-0.243 -0.696,-0.452 -0.893,-1.383 -0.443,-2.076 z"
+           id="path248"
+           style="fill:none" />
+        <linearGradient
+           x1="-271"
+           y1="415.02341"
+           x2="782"
+           y2="415.02341"
+           id="linearGradient3489"
+           gradientUnits="userSpaceOnUse">
+          <stop
+             id="stop3491"
+             style="stop-color:#8cc63f;stop-opacity:1"
+             offset="0" />
+          <stop
+             id="stop3493"
+             style="stop-color:#87c542;stop-opacity:1"
+             offset="0.186" />
+          <stop
+             id="stop3495"
+             style="stop-color:#75c049;stop-opacity:1"
+             offset="0.42820001" />
+          <stop
+             id="stop3497"
+             style="stop-color:#52b955;stop-opacity:1"
+             offset="0.70160002" />
+          <stop
+             id="stop3499"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="0.99589998" />
+          <stop
+             id="stop3501"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="1" />
+        </linearGradient>
+        <path
+           inkscape:connector-curvature="0"
+           d="m 63,402 c 55.061,19.238 114.527,39.35 188.315,44.584 0.486,-0.425 1.208,-0.506 1.783,-0.142 0.162,0.103 0.33,0.2 0.492,0.302 21.074,1.401 43.313,1.587 66.951,0.19 2.448,-0.978 4.745,-2.012 6.876,-3.107 0.737,-0.38 1.642,-0.089 2.021,0.649 0.34,0.662 0.135,1.459 -0.445,1.889 15.089,-1.118 30.733,-2.871 47.007,-5.365 28.369,-4.349 50.636,7.975 78.037,18.601 2.068,-0.817 4.114,-1.664 6.116,-2.563 0.754,-0.341 1.642,-0.003 1.982,0.754 0.34,0.757 0.002,1.645 -0.755,1.985 -1.063,0.477 -2.14,0.937 -3.222,1.391 19.095,7.116 40.844,13.015 68.842,11.832 23.997,-1.014 36.98,-3.884 49,-4.678 l 0,-37.846 c -3.352,0.681 -6.653,1.531 -9.882,2.615 -25.453,8.546 -51.729,10.167 -76.856,7.966 0.243,0.585 0.103,1.283 -0.408,1.718 -2.056,1.747 -4.19,3.417 -6.396,5.003 -0.266,0.19 -0.573,0.282 -0.877,0.282 -0.466,0 -0.924,-0.216 -1.216,-0.623 -0.485,-0.674 -0.334,-1.61 0.341,-2.093 2.008,-1.445 3.943,-2.961 5.817,-4.542 C 428.878,435.104 377.712,409.732 357.125,402.445 327.27,391.8
 79 277.892,371.8 208.994,361.233 146.166,351.598 88.107,358.658 0,376.002 l 0,19.422 c 23.686,-0.668 46.544,0.826 63,6.576 z m 404.268,51.591 c 2.351,-1.23 4.644,-2.526 6.871,-3.89 0.706,-0.431 1.63,-0.211 2.062,0.497 0.433,0.706 0.211,1.629 -0.495,2.063 -2.289,1.399 -4.64,2.729 -7.047,3.988 -0.222,0.116 -0.459,0.171 -0.692,0.171 -0.541,0 -1.063,-0.293 -1.332,-0.805 -0.386,-0.735 -0.101,-1.64 0.633,-2.024 z M 351.295,414.505 c 0.949,-2.521 1.729,-5.013 2.349,-7.465 0.203,-0.804 1.019,-1.292 1.822,-1.087 0.803,0.203 1.291,1.02 1.088,1.822 -0.65,2.563 -1.462,5.161 -2.451,7.787 -0.227,0.601 -0.797,0.972 -1.403,0.972 -0.176,-10e-4 -0.354,-0.031 -0.529,-0.097 -0.776,-0.291 -1.169,-1.156 -0.876,-1.932 z m -6.926,14.088 c 1.407,-2.319 2.672,-4.616 3.794,-6.893 0.367,-0.742 1.268,-1.047 2.01,-0.679 0.742,0.365 1.046,1.267 0.681,2.01 -1.165,2.354 -2.469,4.729 -3.921,7.117 -0.283,0.465 -0.778,0.722 -1.285,0.722 -0.265,0 -0.532,-0.069 -0.775,-0.217 -0.709,-0.431 -0.935,-1.352 -0.504,-2
 .06 z m -10.281,11.233 c 2.227,-1.574 4.166,-3.244 5.8,-5.007 0.563,-0.608 1.512,-0.645 2.12,-0.082 0.606,0.563 0.645,1.513 0.081,2.122 -1.797,1.938 -3.896,3.74 -6.27,5.417 l 0.002,0 c -0.264,0.186 -0.567,0.275 -0.867,0.275 -0.471,0 -0.934,-0.221 -1.225,-0.635 -0.478,-0.676 -0.319,-1.612 0.359,-2.09 z M 217.3,407.445 c -0.13,0.035 -0.261,0.052 -0.39,0.052 -0.663,0 -1.269,-0.439 -1.449,-1.11 -0.71,-2.634 -1.203,-5.333 -1.46,-8.089 -0.076,-0.826 0.528,-1.558 1.355,-1.634 0.824,-0.076 1.556,0.53 1.632,1.354 0.241,2.585 0.704,5.113 1.37,7.588 0.215,0.8 -0.258,1.623 -1.058,1.839 z m 20.908,29.896 c 0.533,-0.634 1.479,-0.717 2.113,-0.184 1.98,1.667 4.059,3.284 6.225,4.853 0.672,0.486 0.822,1.423 0.336,2.095 -0.293,0.405 -0.752,0.62 -1.216,0.62 -0.305,0 -0.613,-0.093 -0.878,-0.284 -2.221,-1.61 -4.358,-3.271 -6.396,-4.986 -0.634,-0.533 -0.716,-1.48 -0.184,-2.114 z m -11.075,-11.515 c 0.643,-0.524 1.587,-0.43 2.112,0.213 1.623,1.987 3.384,3.923 5.271,5.807 0.585,0.585 0.585,1.536 0,2
 .122 -0.293,0.293 -0.678,0.439 -1.063,0.439 -0.383,0 -0.766,-0.146 -1.058,-0.438 -1.955,-1.951 -3.783,-3.961 -5.474,-6.032 -0.525,-0.642 -0.431,-1.587 0.212,-2.111 z m -2.931,-4.042 c -0.249,0.157 -0.526,0.232 -0.801,0.232 -0.497,0 -0.983,-0.246 -1.269,-0.697 -1.478,-2.335 -2.784,-4.736 -3.896,-7.205 -0.34,-0.755 -0.004,-1.643 0.752,-1.982 0.754,-0.341 1.642,-0.005 1.982,0.75 1.051,2.331 2.287,4.61 3.695,6.834 0.445,0.699 0.236,1.627 -0.463,2.068 z m -6.549,-47.666 c 0.945,-2.447 2.067,-4.925 3.38,-7.432 l -0.002,-0.002 c 0.385,-0.733 1.292,-1.019 2.025,-0.634 0.736,0.382 1.019,1.291 0.636,2.024 -1.262,2.412 -2.337,4.787 -3.24,7.123 -0.229,0.596 -0.798,0.961 -1.399,0.961 -0.179,0 -0.361,-0.032 -0.539,-0.101 -0.774,-0.298 -1.159,-1.165 -0.861,-1.939 z m -2.437,7.824 c 0.19,-0.805 0.998,-1.304 1.805,-1.113 0.805,0.19 1.304,1 1.114,1.807 -0.617,2.604 -1.015,5.16 -1.205,7.662 -0.063,0.787 -0.72,1.385 -1.494,1.385 -0.039,0 -0.078,-10e-4 -0.117,-0.005 -0.826,-0.063 -1.445,-0.784 -
 1.382,-1.61 0.206,-2.662 0.626,-5.374 1.279,-8.126 z"
+           id="path263"
+           style="opacity:0.5;fill:url(#SVGID_1_)" />
+        <linearGradient
+           x1="-271"
+           y1="471.37701"
+           x2="782"
+           y2="471.37701"
+           id="linearGradient3504"
+           gradientUnits="userSpaceOnUse">
+          <stop
+             id="stop3506"
+             style="stop-color:#8cc63f;stop-opacity:1"
+             offset="0" />
+          <stop
+             id="stop3508"
+             style="stop-color:#87c542;stop-opacity:1"
+             offset="0.186" />
+          <stop
+             id="stop3510"
+             style="stop-color:#75c049;stop-opacity:1"
+             offset="0.42820001" />
+          <stop
+             id="stop3512"
+             style="stop-color:#52b955;stop-opacity:1"
+             offset="0.70160002" />
+          <stop
+             id="stop3514"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="0.99589998" />
+          <stop
+             id="stop3516"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="1" />
+        </linearGradient>
+        <path
+           inkscape:connector-curvature="0"
+           d="m 458.159,461.168 c -1.399,0.588 -2.81,1.161 -4.237,1.712 -0.177,0.068 -0.359,0.101 -0.539,0.101 -0.603,0 -1.173,-0.366 -1.401,-0.961 -0.298,-0.773 0.089,-1.643 0.862,-1.94 0.401,-0.155 0.795,-0.32 1.193,-0.479 C 426.636,448.975 404.369,436.651 376,441 c -16.273,2.494 -31.918,4.247 -47.007,5.365 -0.064,0.047 -0.13,0.094 -0.204,0.132 -2.31,1.188 -4.789,2.3 -7.425,3.342 l 0,0.002 c -0.181,0.071 -0.367,0.105 -0.551,0.105 -0.598,0 -1.163,-0.36 -1.396,-0.949 -0.307,-0.771 0.071,-1.644 0.843,-1.948 0.095,-0.038 0.187,-0.077 0.281,-0.114 -23.638,1.396 -45.877,1.211 -66.951,-0.19 2.052,1.286 4.156,2.539 6.318,3.745 0.723,0.404 0.98,1.317 0.577,2.042 -0.274,0.491 -0.784,0.768 -1.31,0.768 -0.248,0 -0.5,-0.062 -0.731,-0.19 -2.378,-1.329 -4.697,-2.705 -6.95,-4.132 -0.7,-0.442 -0.909,-1.37 -0.465,-2.069 0.08,-0.126 0.179,-0.23 0.286,-0.323 C 177.527,441.35 118.061,421.238 63,402 46.544,396.25 23.686,394.756 0,395.424 l 0,18.328 c 65.141,1.111 111.109,21.744 161.152,46.531 0
 .283,-0.266 0.667,-0.422 1.084,-0.405 2.667,0.11 5.333,0.212 7.992,0.305 0.829,0.027 1.475,0.723 1.448,1.55 -0.029,0.81 -0.695,1.448 -1.497,1.448 -0.018,0 -0.036,0 -0.054,-10e-4 -1.13,-0.039 -2.264,-0.086 -3.396,-0.128 43.654,21.726 91.026,46.131 157.271,63.202 136.043,35.06 197.158,20.574 252,0.22 l 0,-58.151 c -12.02,0.794 -25.003,3.664 -49,4.678 -27.998,1.182 -49.747,-4.717 -68.841,-11.833 z m -271.976,2.456 c -0.01,0 -0.021,0 -0.031,0 -2.665,-0.053 -5.337,-0.119 -8.015,-0.194 l 0,0.002 c -0.829,-0.023 -1.481,-0.715 -1.458,-1.543 0.023,-0.829 0.712,-1.481 1.541,-1.457 2.674,0.074 5.337,0.14 7.994,0.195 0.829,0.017 1.486,0.701 1.469,1.53 -0.019,0.816 -0.687,1.467 -1.5,1.467 z m 16.003,0.207 c -0.001,0 -0.002,0 -0.004,0 -2.659,-0.013 -5.331,-0.036 -8.015,-0.07 -0.829,-0.013 -1.492,-0.693 -1.479,-1.52 0.01,-0.83 0.691,-1.492 1.52,-1.481 2.674,0.034 5.339,0.06 7.989,0.072 0.829,0.002 1.497,0.676 1.493,1.505 -0.005,0.827 -0.678,1.494 -1.504,1.494 z m 16.027,-0.07 c -2.655,0.03
 6 -5.328,0.06 -8.017,0.072 -0.829,0.002 -1.503,-0.666 -1.507,-1.494 -0.004,-0.829 0.666,-1.503 1.495,-1.507 2.68,-0.011 5.343,-0.034 7.987,-0.072 0.829,-0.011 1.509,0.651 1.521,1.479 0.012,0.828 -0.65,1.509 -1.479,1.522 z m 16.035,-0.4 c -2.648,0.096 -5.322,0.178 -8.017,0.243 l 0,0.002 c -0.012,0.001 -0.023,0.001 -0.035,0.001 -0.813,0 -1.482,-0.648 -1.501,-1.466 -0.021,-0.828 0.634,-1.518 1.463,-1.536 2.684,-0.065 5.345,-0.146 7.981,-0.243 0.829,-0.029 1.524,0.617 1.553,1.445 0.029,0.828 -0.616,1.523 -1.444,1.554 z m 16.025,-0.795 c -2.64,0.167 -5.31,0.319 -8.011,0.453 l 0,-0.003 c -0.829,0.041 -1.532,-0.596 -1.572,-1.424 -0.041,-0.827 0.596,-1.53 1.424,-1.57 2.687,-0.132 5.343,-0.283 7.968,-0.45 0.827,-0.054 1.541,0.574 1.594,1.401 0.051,0.829 -0.577,1.541 -1.403,1.593 z m 16.006,-1.287 c -2.627,0.258 -5.294,0.497 -8,0.713 -0.041,0.003 -0.081,0.005 -0.121,0.005 -0.775,0 -1.43,-0.595 -1.494,-1.381 -0.065,-0.826 0.549,-1.55 1.376,-1.615 2.688,-0.216 5.337,-0.45 7.945,-0.708 0
 .822,-0.082 1.558,0.522 1.64,1.347 0.081,0.824 -0.521,1.557 -1.346,1.639 z m 7.988,-0.868 c -0.158,0.019 -0.313,0.013 -0.461,-0.016 -0.097,0.02 -0.196,0.029 -0.296,0.029 -0.203,0 -0.409,-0.041 -0.606,-0.128 -2.477,-1.095 -4.916,-2.236 -7.311,-3.424 l 0.002,0 c -0.742,-0.368 -1.046,-1.269 -0.679,-2.011 0.368,-0.743 1.268,-1.046 2.01,-0.678 2.27,1.126 4.581,2.21 6.927,3.254 0.018,-0.003 0.036,-0.006 0.054,-0.008 2.687,-0.321 5.32,-0.67 7.899,-1.042 0.82,-0.12 1.581,0.448 1.699,1.269 0.118,0.819 -0.45,1.581 -1.27,1.699 -2.602,0.378 -5.261,0.729 -7.969,1.053 l 0,0.003 10e-4,0 z m 15.544,4.891 c -0.219,0.616 -0.799,1.003 -1.417,1.003 -0.165,0 -0.332,-0.027 -0.496,-0.086 -2.539,-0.89 -5.058,-1.828 -7.55,-2.811 -0.771,-0.305 -1.15,-1.175 -0.845,-1.946 0.304,-0.77 1.175,-1.148 1.946,-0.844 2.454,0.968 4.938,1.892 7.442,2.771 0.782,0.275 1.192,1.131 0.92,1.913 z m 0.113,-7.188 c -0.717,0 -1.35,-0.515 -1.477,-1.243 -0.144,-0.816 0.401,-1.594 1.219,-1.735 2.676,-0.466 5.278,-0.966 7.80
 8,-1.499 0.81,-0.171 1.604,0.349 1.776,1.16 0.169,0.81 -0.35,1.604 -1.159,1.775 -2.563,0.541 -5.201,1.047 -7.909,1.521 -0.087,0.014 -0.173,0.021 -0.258,0.021 z m 15.221,11.84 c -0.182,0.667 -0.786,1.105 -1.446,1.105 -0.13,0 -0.263,-0.017 -0.395,-0.053 -2.59,-0.704 -5.177,-1.457 -7.751,-2.256 -0.793,-0.247 -1.234,-1.088 -0.987,-1.879 0.245,-0.792 1.085,-1.232 1.877,-0.986 2.541,0.788 5.092,1.529 7.647,2.228 0.799,0.215 1.27,1.04 1.055,1.841 z m 0.429,-15.16 c -0.669,0 -1.279,-0.451 -1.453,-1.128 -0.205,-0.803 0.279,-1.621 1.082,-1.826 2.645,-0.678 5.188,-1.398 7.618,-2.164 0.79,-0.249 1.632,0.19 1.881,0.98 0.247,0.791 -0.19,1.632 -0.98,1.882 -2.485,0.781 -5.081,1.518 -7.774,2.208 -0.125,0.032 -0.25,0.048 -0.374,0.048 z m 15.184,18.72 c -0.142,0.715 -0.77,1.21 -1.471,1.21 -0.097,0 -0.194,-0.01 -0.292,-0.028 -2.617,-0.521 -5.246,-1.089 -7.878,-1.708 -0.807,-0.188 -1.308,-0.996 -1.118,-1.803 0.188,-0.806 0.996,-1.307 1.804,-1.116 2.6,0.61 5.195,1.171 7.775,1.683 0.814,0.159 1.34
 3,0.95 1.18,1.762 z m 15.831,2.42 c -0.094,0.761 -0.74,1.319 -1.488,1.319 -0.06,0 -0.12,-0.004 -0.182,-0.011 -2.634,-0.319 -5.299,-0.693 -7.987,-1.125 l -0.002,-0.002 c -0.818,-0.131 -1.374,-0.9 -1.241,-1.719 0.132,-0.817 0.9,-1.373 1.719,-1.242 2.65,0.425 5.277,0.794 7.873,1.109 0.822,0.1 1.407,0.846 1.308,1.671 z m 14.471,2.557 c -0.015,0 -0.029,0 -0.043,0 -2.634,-0.081 -5.326,-0.23 -8.065,-0.446 -0.827,-0.065 -1.444,-0.786 -1.379,-1.612 0.065,-0.824 0.787,-1.441 1.613,-1.379 2.694,0.212 5.341,0.359 7.924,0.438 0.826,0.025 1.478,0.719 1.452,1.546 -0.026,0.813 -0.693,1.453 -1.502,1.453 z m 16.053,-0.262 c -2.362,0.106 -4.717,0.194 -7.067,0.271 -0.315,0.009 -0.63,0.018 -0.947,0.025 -0.012,0.001 -0.023,0.001 -0.035,0.001 -0.813,0 -1.48,-0.648 -1.501,-1.466 -0.02,-0.828 0.636,-1.515 1.465,-1.534 0.309,-0.009 0.617,-0.017 0.926,-0.025 2.333,-0.074 4.677,-0.163 7.025,-0.269 0.828,-0.038 1.528,0.603 1.566,1.432 0.035,0.825 -0.605,1.526 -1.432,1.565 z m 16.018,-0.983 c -2.67,0.211
  -5.342,0.397 -8.009,0.56 -0.03,0.002 -0.06,0.003 -0.09,0.003 -0.789,0 -1.45,-0.613 -1.499,-1.41 -0.051,-0.826 0.579,-1.537 1.407,-1.587 2.65,-0.161 5.303,-0.347 7.956,-0.557 0.824,-0.065 1.547,0.552 1.612,1.378 0.064,0.825 -0.551,1.548 -1.377,1.613 z m 16.002,-1.598 c -2.659,0.325 -5.326,0.619 -7.996,0.885 l 0,-0.002 c -0.049,0.005 -0.099,0.008 -0.147,0.008 -0.763,0 -1.417,-0.577 -1.494,-1.352 -0.081,-0.824 0.52,-1.56 1.344,-1.641 2.65,-0.264 5.295,-0.554 7.931,-0.877 0.822,-0.1 1.57,0.484 1.67,1.309 0.1,0.823 -0.486,1.571 -1.308,1.67 z m 15.924,-2.352 c -2.633,0.463 -5.281,0.888 -7.942,1.28 -0.074,0.011 -0.147,0.017 -0.221,0.017 -0.732,0 -1.373,-0.536 -1.481,-1.282 -0.122,-0.82 0.444,-1.583 1.265,-1.701 2.636,-0.39 5.259,-0.813 7.862,-1.269 0.815,-0.144 1.592,0.403 1.735,1.22 0.143,0.815 -0.404,1.591 -1.218,1.735 z m 15.761,-3.278 c -2.594,0.632 -5.215,1.22 -7.856,1.767 -0.104,0.021 -0.206,0.032 -0.308,0.032 -0.695,0 -1.318,-0.488 -1.466,-1.196 -0.169,-0.812 0.353,-1.604 1
 .165,-1.773 2.61,-0.541 5.195,-1.123 7.757,-1.744 0.805,-0.196 1.614,0.298 1.812,1.104 0.194,0.804 -0.299,1.613 -1.104,1.81 z m 15.503,-4.42 c -2.534,0.839 -5.106,1.628 -7.708,2.367 l -0.002,0 c -0.137,0.038 -0.273,0.057 -0.408,0.057 -0.654,0 -1.256,-0.43 -1.443,-1.09 -0.227,-0.797 0.234,-1.626 1.031,-1.852 2.566,-0.729 5.096,-1.505 7.588,-2.331 0.786,-0.261 1.634,0.164 1.896,0.953 0.257,0.786 -0.168,1.634 -0.954,1.896 z"
+           id="path278"
+           style="opacity:0.5;fill:url(#SVGID_2_)" />
+        <linearGradient
+           x1="-109"
+           y1="471.37701"
+           x2="664"
+           y2="471.37701"
+           id="linearGradient3519"
+           gradientUnits="userSpaceOnUse">
+          <stop
+             id="stop3521"
+             style="stop-color:#8cc63f;stop-opacity:1"
+             offset="0" />
+          <stop
+             id="stop3523"
+             style="stop-color:#87c542;stop-opacity:1"
+             offset="0.186" />
+          <stop
+             id="stop3525"
+             style="stop-color:#75c049;stop-opacity:1"
+             offset="0.42820001" />
+          <stop
+             id="stop3527"
+             style="stop-color:#52b955;stop-opacity:1"
+             offset="0.70160002" />
+          <stop
+             id="stop3529"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="0.99589998" />
+          <stop
+             id="stop3531"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="1" />
+        </linearGradient>
+        <path
+           inkscape:connector-curvature="0"
+           d="m 458.159,461.168 c -1.399,0.588 -2.81,1.161 -4.237,1.712 -0.177,0.068 -0.359,0.101 -0.539,0.101 -0.603,0 -1.173,-0.366 -1.401,-0.961 -0.298,-0.773 0.089,-1.643 0.862,-1.94 0.401,-0.155 0.795,-0.32 1.193,-0.479 C 426.636,448.975 404.369,436.651 376,441 c -16.273,2.494 -31.918,4.247 -47.007,5.365 -0.064,0.047 -0.13,0.094 -0.204,0.132 -2.31,1.188 -4.789,2.3 -7.425,3.342 l 0,0.002 c -0.181,0.071 -0.367,0.105 -0.551,0.105 -0.598,0 -1.163,-0.36 -1.396,-0.949 -0.307,-0.771 0.071,-1.644 0.843,-1.948 0.095,-0.038 0.187,-0.077 0.281,-0.114 -23.638,1.396 -45.877,1.211 -66.951,-0.19 2.052,1.286 4.156,2.539 6.318,3.745 0.723,0.404 0.98,1.317 0.577,2.042 -0.274,0.491 -0.784,0.768 -1.31,0.768 -0.248,0 -0.5,-0.062 -0.731,-0.19 -2.378,-1.329 -4.697,-2.705 -6.95,-4.132 -0.7,-0.442 -0.909,-1.37 -0.465,-2.069 0.08,-0.126 0.179,-0.23 0.286,-0.323 C 177.527,441.35 118.061,421.238 63,402 46.544,396.25 23.686,394.756 0,395.424 l 0,18.328 c 65.141,1.111 111.109,21.744 161.152,46.531 0
 .283,-0.266 0.667,-0.422 1.084,-0.405 2.667,0.11 5.333,0.212 7.992,0.305 0.829,0.027 1.475,0.723 1.448,1.55 -0.029,0.81 -0.695,1.448 -1.497,1.448 -0.018,0 -0.036,0 -0.054,-10e-4 -1.13,-0.039 -2.264,-0.086 -3.396,-0.128 43.654,21.726 91.026,46.131 157.271,63.202 136.043,35.06 197.158,20.574 252,0.22 l 0,-58.151 c -12.02,0.794 -25.003,3.664 -49,4.678 -27.998,1.182 -49.747,-4.717 -68.841,-11.833 z m -271.976,2.456 c -0.01,0 -0.021,0 -0.031,0 -2.665,-0.053 -5.337,-0.119 -8.015,-0.194 l 0,0.002 c -0.829,-0.023 -1.481,-0.715 -1.458,-1.543 0.023,-0.829 0.712,-1.481 1.541,-1.457 2.674,0.074 5.337,0.14 7.994,0.195 0.829,0.017 1.486,0.701 1.469,1.53 -0.019,0.816 -0.687,1.467 -1.5,1.467 z m 16.003,0.207 c -0.001,0 -0.002,0 -0.004,0 -2.659,-0.013 -5.331,-0.036 -8.015,-0.07 -0.829,-0.013 -1.492,-0.693 -1.479,-1.52 0.01,-0.83 0.691,-1.492 1.52,-1.481 2.674,0.034 5.339,0.06 7.989,0.072 0.829,0.002 1.497,0.676 1.493,1.505 -0.005,0.827 -0.678,1.494 -1.504,1.494 z m 16.027,-0.07 c -2.655,0.03
 6 -5.328,0.06 -8.017,0.072 -0.829,0.002 -1.503,-0.666 -1.507,-1.494 -0.004,-0.829 0.666,-1.503 1.495,-1.507 2.68,-0.011 5.343,-0.034 7.987,-0.072 0.829,-0.011 1.509,0.651 1.521,1.479 0.012,0.828 -0.65,1.509 -1.479,1.522 z m 16.035,-0.4 c -2.648,0.096 -5.322,0.178 -8.017,0.243 l 0,0.002 c -0.012,0.001 -0.023,0.001 -0.035,0.001 -0.813,0 -1.482,-0.648 -1.501,-1.466 -0.021,-0.828 0.634,-1.518 1.463,-1.536 2.684,-0.065 5.345,-0.146 7.981,-0.243 0.829,-0.029 1.524,0.617 1.553,1.445 0.029,0.828 -0.616,1.523 -1.444,1.554 z m 16.025,-0.795 c -2.64,0.167 -5.31,0.319 -8.011,0.453 l 0,-0.003 c -0.829,0.041 -1.532,-0.596 -1.572,-1.424 -0.041,-0.827 0.596,-1.53 1.424,-1.57 2.687,-0.132 5.343,-0.283 7.968,-0.45 0.827,-0.054 1.541,0.574 1.594,1.401 0.051,0.829 -0.577,1.541 -1.403,1.593 z m 16.006,-1.287 c -2.627,0.258 -5.294,0.497 -8,0.713 -0.041,0.003 -0.081,0.005 -0.121,0.005 -0.775,0 -1.43,-0.595 -1.494,-1.381 -0.065,-0.826 0.549,-1.55 1.376,-1.615 2.688,-0.216 5.337,-0.45 7.945,-0.708 0
 .822,-0.082 1.558,0.522 1.64,1.347 0.081,0.824 -0.521,1.557 -1.346,1.639 z m 7.988,-0.868 c -0.158,0.019 -0.313,0.013 -0.461,-0.016 -0.097,0.02 -0.196,0.029 -0.296,0.029 -0.203,0 -0.409,-0.041 -0.606,-0.128 -2.477,-1.095 -4.916,-2.236 -7.311,-3.424 l 0.002,0 c -0.742,-0.368 -1.046,-1.269 -0.679,-2.011 0.368,-0.743 1.268,-1.046 2.01,-0.678 2.27,1.126 4.581,2.21 6.927,3.254 0.018,-0.003 0.036,-0.006 0.054,-0.008 2.687,-0.321 5.32,-0.67 7.899,-1.042 0.82,-0.12 1.581,0.448 1.699,1.269 0.118,0.819 -0.45,1.581 -1.27,1.699 -2.602,0.378 -5.261,0.729 -7.969,1.053 l 0,0.003 10e-4,0 z m 15.544,4.891 c -0.219,0.616 -0.799,1.003 -1.417,1.003 -0.165,0 -0.332,-0.027 -0.496,-0.086 -2.539,-0.89 -5.058,-1.828 -7.55,-2.811 -0.771,-0.305 -1.15,-1.175 -0.845,-1.946 0.304,-0.77 1.175,-1.148 1.946,-0.844 2.454,0.968 4.938,1.892 7.442,2.771 0.782,0.275 1.192,1.131 0.92,1.913 z m 0.113,-7.188 c -0.717,0 -1.35,-0.515 -1.477,-1.243 -0.144,-0.816 0.401,-1.594 1.219,-1.735 2.676,-0.466 5.278,-0.966 7.80
 8,-1.499 0.81,-0.171 1.604,0.349 1.776,1.16 0.169,0.81 -0.35,1.604 -1.159,1.775 -2.563,0.541 -5.201,1.047 -7.909,1.521 -0.087,0.014 -0.173,0.021 -0.258,0.021 z m 15.221,11.84 c -0.182,0.667 -0.786,1.105 -1.446,1.105 -0.13,0 -0.263,-0.017 -0.395,-0.053 -2.59,-0.704 -5.177,-1.457 -7.751,-2.256 -0.793,-0.247 -1.234,-1.088 -0.987,-1.879 0.245,-0.792 1.085,-1.232 1.877,-0.986 2.541,0.788 5.092,1.529 7.647,2.228 0.799,0.215 1.27,1.04 1.055,1.841 z m 0.429,-15.16 c -0.669,0 -1.279,-0.451 -1.453,-1.128 -0.205,-0.803 0.279,-1.621 1.082,-1.826 2.645,-0.678 5.188,-1.398 7.618,-2.164 0.79,-0.249 1.632,0.19 1.881,0.98 0.247,0.791 -0.19,1.632 -0.98,1.882 -2.485,0.781 -5.081,1.518 -7.774,2.208 -0.125,0.032 -0.25,0.048 -0.374,0.048 z m 15.184,18.72 c -0.142,0.715 -0.77,1.21 -1.471,1.21 -0.097,0 -0.194,-0.01 -0.292,-0.028 -2.617,-0.521 -5.246,-1.089 -7.878,-1.708 -0.807,-0.188 -1.308,-0.996 -1.118,-1.803 0.188,-0.806 0.996,-1.307 1.804,-1.116 2.6,0.61 5.195,1.171 7.775,1.683 0.814,0.159 1.34
 3,0.95 1.18,1.762 z m 15.831,2.42 c -0.094,0.761 -0.74,1.319 -1.488,1.319 -0.06,0 -0.12,-0.004 -0.182,-0.011 -2.634,-0.319 -5.299,-0.693 -7.987,-1.125 l -0.002,-0.002 c -0.818,-0.131 -1.374,-0.9 -1.241,-1.719 0.132,-0.817 0.9,-1.373 1.719,-1.242 2.65,0.425 5.277,0.794 7.873,1.109 0.822,0.1 1.407,0.846 1.308,1.671 z m 14.471,2.557 c -0.015,0 -0.029,0 -0.043,0 -2.634,-0.081 -5.326,-0.23 -8.065,-0.446 -0.827,-0.065 -1.444,-0.786 -1.379,-1.612 0.065,-0.824 0.787,-1.441 1.613,-1.379 2.694,0.212 5.341,0.359 7.924,0.438 0.826,0.025 1.478,0.719 1.452,1.546 -0.026,0.813 -0.693,1.453 -1.502,1.453 z m 16.053,-0.262 c -2.362,0.106 -4.717,0.194 -7.067,0.271 -0.315,0.009 -0.63,0.018 -0.947,0.025 -0.012,0.001 -0.023,0.001 -0.035,0.001 -0.813,0 -1.48,-0.648 -1.501,-1.466 -0.02,-0.828 0.636,-1.515 1.465,-1.534 0.309,-0.009 0.617,-0.017 0.926,-0.025 2.333,-0.074 4.677,-0.163 7.025,-0.269 0.828,-0.038 1.528,0.603 1.566,1.432 0.035,0.825 -0.605,1.526 -1.432,1.565 z m 16.018,-0.983 c -2.67,0.211
  -5.342,0.397 -8.009,0.56 -0.03,0.002 -0.06,0.003 -0.09,0.003 -0.789,0 -1.45,-0.613 -1.499,-1.41 -0.051,-0.826 0.579,-1.537 1.407,-1.587 2.65,-0.161 5.303,-0.347 7.956,-0.557 0.824,-0.065 1.547,0.552 1.612,1.378 0.064,0.825 -0.551,1.548 -1.377,1.613 z m 16.002,-1.598 c -2.659,0.325 -5.326,0.619 -7.996,0.885 l 0,-0.002 c -0.049,0.005 -0.099,0.008 -0.147,0.008 -0.763,0 -1.417,-0.577 -1.494,-1.352 -0.081,-0.824 0.52,-1.56 1.344,-1.641 2.65,-0.264 5.295,-0.554 7.931,-0.877 0.822,-0.1 1.57,0.484 1.67,1.309 0.1,0.823 -0.486,1.571 -1.308,1.67 z m 15.924,-2.352 c -2.633,0.463 -5.281,0.888 -7.942,1.28 -0.074,0.011 -0.147,0.017 -0.221,0.017 -0.732,0 -1.373,-0.536 -1.481,-1.282 -0.122,-0.82 0.444,-1.583 1.265,-1.701 2.636,-0.39 5.259,-0.813 7.862,-1.269 0.815,-0.144 1.592,0.403 1.735,1.22 0.143,0.815 -0.404,1.591 -1.218,1.735 z m 15.761,-3.278 c -2.594,0.632 -5.215,1.22 -7.856,1.767 -0.104,0.021 -0.206,0.032 -0.308,0.032 -0.695,0 -1.318,-0.488 -1.466,-1.196 -0.169,-0.812 0.353,-1.604 1
 .165,-1.773 2.61,-0.541 5.195,-1.123 7.757,-1.744 0.805,-0.196 1.614,0.298 1.812,1.104 0.194,0.804 -0.299,1.613 -1.104,1.81 z m 15.503,-4.42 c -2.534,0.839 -5.106,1.628 -7.708,2.367 l -0.002,0 c -0.137,0.038 -0.273,0.057 -0.408,0.057 -0.654,0 -1.256,-0.43 -1.443,-1.09 -0.227,-0.797 0.234,-1.626 1.031,-1.852 2.566,-0.729 5.096,-1.505 7.588,-2.331 0.786,-0.261 1.634,0.164 1.896,0.953 0.257,0.786 -0.168,1.634 -0.954,1.896 z"
+           id="path293"
+           style="opacity:0.7;fill:url(#SVGID_3_)" />
+        <linearGradient
+           x1="-271"
+           y1="494.87601"
+           x2="782"
+           y2="494.87601"
+           id="linearGradient3534"
+           gradientUnits="userSpaceOnUse">
+          <stop
+             id="stop3536"
+             style="stop-color:#8cc63f;stop-opacity:1"
+             offset="0" />
+          <stop
+             id="stop3538"
+             style="stop-color:#87c542;stop-opacity:1"
+             offset="0.186" />
+          <stop
+             id="stop3540"
+             style="stop-color:#75c049;stop-opacity:1"
+             offset="0.42820001" />
+          <stop
+             id="stop3542"
+             style="stop-color:#52b955;stop-opacity:1"
+             offset="0.70160002" />
+          <stop
+             id="stop3544"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="0.99589998" />
+          <stop
+             id="stop3546"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="1" />
+        </linearGradient>
+        <path
+           inkscape:connector-curvature="0"
+           d="m 576,576 0,-49.526 c -54.842,20.354 -115.957,34.84 -252,-0.22 -66.246,-17.071 -113.618,-41.477 -157.271,-63.202 -1.538,-0.058 -3.074,-0.11 -4.615,-0.174 l 0.002,0 c -0.828,-0.034 -1.473,-0.733 -1.439,-1.561 0.017,-0.41 0.197,-0.774 0.475,-1.034 C 111.109,435.496 65.141,414.863 0,413.752 L 0,576 576,576 z M 146.232,459.13 c 2.666,0.14 5.331,0.272 7.996,0.397 0.829,0.038 1.469,0.74 1.429,1.568 -0.037,0.805 -0.703,1.431 -1.498,1.431 -0.023,0 -0.047,-0.001 -0.07,-0.002 -2.671,-0.124 -5.343,-0.258 -8.015,-0.399 l 0,0.002 c -0.827,-0.044 -1.463,-0.75 -1.418,-1.578 0.042,-0.827 0.747,-1.463 1.576,-1.419 z m -15.958,-0.924 c 2.652,0.167 5.312,0.328 7.972,0.482 0.829,0.047 1.461,0.757 1.412,1.585 -0.047,0.797 -0.708,1.413 -1.496,1.412 -0.029,0 -0.059,0 -0.089,-0.002 -2.667,-0.154 -5.331,-0.315 -7.988,-0.482 -0.828,-0.053 -1.456,-0.767 -1.403,-1.591 0.053,-0.829 0.766,-1.457 1.592,-1.404 z m -15.939,-1.08 c 2.65,0.192 5.312,0.379 7.979,0.561 0.826,0.057 1.45,0.771 1.395
 ,1.598 -0.055,0.793 -0.714,1.398 -1.497,1.398 -0.034,0 -0.067,-10e-4 -0.102,-0.003 -2.674,-0.182 -5.339,-0.368 -7.994,-0.561 -0.826,-0.062 -1.448,-0.779 -1.387,-1.604 0.062,-0.828 0.78,-1.45 1.606,-1.389 z m -15.953,-1.228 c 2.646,0.216 5.305,0.427 7.975,0.632 0.827,0.063 1.444,0.784 1.38,1.61 -0.061,0.787 -0.72,1.385 -1.496,1.385 -0.038,0 -0.075,-10e-4 -0.113,-0.004 -2.676,-0.207 -5.339,-0.417 -7.99,-0.632 -0.826,-0.068 -1.441,-0.791 -1.374,-1.617 0.069,-0.826 0.791,-1.441 1.618,-1.374 z m -15.943,-1.359 c 2.64,0.235 5.296,0.468 7.97,0.698 0.824,0.069 1.438,0.794 1.368,1.618 -0.068,0.782 -0.721,1.374 -1.49,1.374 -0.043,0 -0.087,-0.002 -0.131,-0.006 -2.68,-0.229 -5.341,-0.461 -7.983,-0.697 -0.824,-0.074 -1.435,-0.802 -1.361,-1.628 0.073,-0.824 0.802,-1.432 1.627,-1.359 z m -15.933,-1.485 c 2.629,0.256 5.286,0.509 7.964,0.759 0.825,0.076 1.431,0.808 1.355,1.632 -0.074,0.777 -0.727,1.361 -1.492,1.361 -0.046,0 -0.093,-0.003 -0.14,-0.007 -2.684,-0.252 -5.343,-0.503 -7.977,-0.759
  -0.824,-0.08 -1.429,-0.813 -1.349,-1.638 0.082,-0.824 0.813,-1.428 1.639,-1.348 z m -17.572,-0.265 c 0.087,-0.824 0.824,-1.422 1.648,-1.336 2.621,0.273 5.276,0.544 7.96,0.814 0.825,0.082 1.425,0.817 1.342,1.642 -0.077,0.773 -0.729,1.35 -1.491,1.35 -0.05,0 -0.101,-0.002 -0.151,-0.007 -2.688,-0.271 -5.346,-0.541 -7.971,-0.814 -0.824,-0.086 -1.422,-0.825 -1.337,-1.649 z m -15.922,-1.725 c 0.091,-0.822 0.833,-1.416 1.657,-1.325 2.608,0.29 5.263,0.581 7.956,0.871 0.822,0.087 1.418,0.828 1.33,1.65 -0.083,0.77 -0.733,1.341 -1.489,1.341 -0.053,0 -0.107,-0.003 -0.162,-0.009 -2.697,-0.29 -5.354,-0.582 -7.966,-0.871 -0.825,-0.09 -1.419,-0.832 -1.326,-1.657 z m -15.911,-1.832 c 0.095,-0.822 0.841,-1.41 1.663,-1.313 2.594,0.306 5.246,0.612 7.952,0.923 0.822,0.094 1.412,0.837 1.319,1.659 -0.086,0.768 -0.736,1.331 -1.49,1.331 -0.057,0 -0.114,-0.003 -0.171,-0.01 -2.708,-0.311 -5.365,-0.619 -7.96,-0.924 l 0,-0.002 c -0.823,-0.095 -1.411,-0.841 -1.313,-1.664 z M 2.87,445.992 c 2.568,0.321 5.
 218,0.646 7.945,0.977 0.822,0.099 1.41,0.848 1.311,1.669 -0.092,0.763 -0.742,1.321 -1.491,1.321 -0.059,0 -0.119,-0.003 -0.179,-0.011 -2.73,-0.331 -5.385,-0.657 -7.956,-0.979 -0.822,-0.104 -1.406,-0.852 -1.304,-1.674 0.103,-0.821 0.851,-1.404 1.674,-1.303 z"
+           id="path308"
+           style="opacity:0.5;fill:url(#SVGID_4_)" />
+        <linearGradient
+           x1="-109"
+           y1="494.87601"
+           x2="664"
+           y2="494.87601"
+           id="linearGradient3549"
+           gradientUnits="userSpaceOnUse">
+          <stop
+             id="stop3551"
+             style="stop-color:#8cc63f;stop-opacity:1"
+             offset="0" />
+          <stop
+             id="stop3553"
+             style="stop-color:#87c542;stop-opacity:1"
+             offset="0.186" />
+          <stop
+             id="stop3555"
+             style="stop-color:#75c049;stop-opacity:1"
+             offset="0.42820001" />
+          <stop
+             id="stop3557"
+             style="stop-color:#52b955;stop-opacity:1"
+             offset="0.70160002" />
+          <stop
+             id="stop3559"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="0.99589998" />
+          <stop
+             id="stop3561"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="1" />
+        </linearGradient>
+        <path
+           inkscape:connector-curvature="0"
+           d="m 576,576 0,-49.526 c -54.842,20.354 -115.957,34.84 -252,-0.22 -66.246,-17.071 -113.618,-41.477 -157.271,-63.202 -1.538,-0.058 -3.074,-0.11 -4.615,-0.174 l 0.002,0 c -0.828,-0.034 -1.473,-0.733 -1.439,-1.561 0.017,-0.41 0.197,-0.774 0.475,-1.034 C 111.109,435.496 65.141,414.863 0,413.752 L 0,576 576,576 z M 146.232,459.13 c 2.666,0.14 5.331,0.272 7.996,0.397 0.829,0.038 1.469,0.74 1.429,1.568 -0.037,0.805 -0.703,1.431 -1.498,1.431 -0.023,0 -0.047,-0.001 -0.07,-0.002 -2.671,-0.124 -5.343,-0.258 -8.015,-0.399 l 0,0.002 c -0.827,-0.044 -1.463,-0.75 -1.418,-1.578 0.042,-0.827 0.747,-1.463 1.576,-1.419 z m -15.958,-0.924 c 2.652,0.167 5.312,0.328 7.972,0.482 0.829,0.047 1.461,0.757 1.412,1.585 -0.047,0.797 -0.708,1.413 -1.496,1.412 -0.029,0 -0.059,0 -0.089,-0.002 -2.667,-0.154 -5.331,-0.315 -7.988,-0.482 -0.828,-0.053 -1.456,-0.767 -1.403,-1.591 0.053,-0.829 0.766,-1.457 1.592,-1.404 z m -15.939,-1.08 c 2.65,0.192 5.312,0.379 7.979,0.561 0.826,0.057 1.45,0.771 1.395
 ,1.598 -0.055,0.793 -0.714,1.398 -1.497,1.398 -0.034,0 -0.067,-10e-4 -0.102,-0.003 -2.674,-0.182 -5.339,-0.368 -7.994,-0.561 -0.826,-0.062 -1.448,-0.779 -1.387,-1.604 0.062,-0.828 0.78,-1.45 1.606,-1.389 z m -15.953,-1.228 c 2.646,0.216 5.305,0.427 7.975,0.632 0.827,0.063 1.444,0.784 1.38,1.61 -0.061,0.787 -0.72,1.385 -1.496,1.385 -0.038,0 -0.075,-10e-4 -0.113,-0.004 -2.676,-0.207 -5.339,-0.417 -7.99,-0.632 -0.826,-0.068 -1.441,-0.791 -1.374,-1.617 0.069,-0.826 0.791,-1.441 1.618,-1.374 z m -15.943,-1.359 c 2.64,0.235 5.296,0.468 7.97,0.698 0.824,0.069 1.438,0.794 1.368,1.618 -0.068,0.782 -0.721,1.374 -1.49,1.374 -0.043,0 -0.087,-0.002 -0.131,-0.006 -2.68,-0.229 -5.341,-0.461 -7.983,-0.697 -0.824,-0.074 -1.435,-0.802 -1.361,-1.628 0.073,-0.824 0.802,-1.432 1.627,-1.359 z m -15.933,-1.485 c 2.629,0.256 5.286,0.509 7.964,0.759 0.825,0.076 1.431,0.808 1.355,1.632 -0.074,0.777 -0.727,1.361 -1.492,1.361 -0.046,0 -0.093,-0.003 -0.14,-0.007 -2.684,-0.252 -5.343,-0.503 -7.977,-0.759
  -0.824,-0.08 -1.429,-0.813 -1.349,-1.638 0.082,-0.824 0.813,-1.428 1.639,-1.348 z m -17.572,-0.265 c 0.087,-0.824 0.824,-1.422 1.648,-1.336 2.621,0.273 5.276,0.544 7.96,0.814 0.825,0.082 1.425,0.817 1.342,1.642 -0.077,0.773 -0.729,1.35 -1.491,1.35 -0.05,0 -0.101,-0.002 -0.151,-0.007 -2.688,-0.271 -5.346,-0.541 -7.971,-0.814 -0.824,-0.086 -1.422,-0.825 -1.337,-1.649 z m -15.922,-1.725 c 0.091,-0.822 0.833,-1.416 1.657,-1.325 2.608,0.29 5.263,0.581 7.956,0.871 0.822,0.087 1.418,0.828 1.33,1.65 -0.083,0.77 -0.733,1.341 -1.489,1.341 -0.053,0 -0.107,-0.003 -0.162,-0.009 -2.697,-0.29 -5.354,-0.582 -7.966,-0.871 -0.825,-0.09 -1.419,-0.832 -1.326,-1.657 z m -15.911,-1.832 c 0.095,-0.822 0.841,-1.41 1.663,-1.313 2.594,0.306 5.246,0.612 7.952,0.923 0.822,0.094 1.412,0.837 1.319,1.659 -0.086,0.768 -0.736,1.331 -1.49,1.331 -0.057,0 -0.114,-0.003 -0.171,-0.01 -2.708,-0.311 -5.365,-0.619 -7.96,-0.924 l 0,-0.002 c -0.823,-0.095 -1.411,-0.841 -1.313,-1.664 z M 2.87,445.992 c 2.568,0.321 5.
 218,0.646 7.945,0.977 0.822,0.099 1.41,0.848 1.311,1.669 -0.092,0.763 -0.742,1.321 -1.491,1.321 -0.059,0 -0.119,-0.003 -0.179,-0.011 -2.73,-0.331 -5.385,-0.657 -7.956,-0.979 -0.822,-0.104 -1.406,-0.852 -1.304,-1.674 0.103,-0.821 0.851,-1.404 1.674,-1.303 z"
+           id="path323"
+           style="opacity:0.7;fill:url(#SVGID_5_)" />
+        <linearGradient
+           x1="-216"
+           y1="494.87601"
+           x2="691.7002"
+           y2="494.87601"
+           id="linearGradient3564"
+           gradientUnits="userSpaceOnUse">
+          <stop
+             id="stop3566"
+             style="stop-color:#8cc63f;stop-opacity:1"
+             offset="0" />
+          <stop
+             id="stop3568"
+             style="stop-color:#87c542;stop-opacity:1"
+             offset="0.186" />
+          <stop
+             id="stop3570"
+             style="stop-color:#75c049;stop-opacity:1"
+             offset="0.42820001" />
+          <stop
+             id="stop3572"
+             style="stop-color:#52b955;stop-opacity:1"
+             offset="0.70160002" />
+          <stop
+             id="stop3574"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="0.99589998" />
+          <stop
+             id="stop3576"
+             style="stop-color:#00af64;stop-opacity:1"
+             offset="1" />
+        </linearGradient>
+        <path
+           inkscape:connector-curvature="0"
+           d="m 576,576 0,-49.526 c -54.842,20.354 -115.957,34.84 -252,-0.22 -66.246,-17.071 -113.618,-41.477 -157.271,-63.202 -1.538,-0.058 -3.074,-0.11 -4.615,-0.174 l 0.002,0 c -0.828,-0.034 -1.473,-0.733 -1.439,-1.561 0.017,-0.41 0.197,-0.774 0.475,-1.034 C 111.109,435.496 65.141,414.863 0,413.752 L 0,576 576,576 z M 146.232,459.13 c 2.666,0.14 5.331,0.272 7.996,0.397 0.829,0.038 1.469,0.74 1.429,1.568 -0.037,0.805 -0.703,1.431 -1.498,1.431 -0.023,0 -0.047,-0.001 -0.07,-0.002 -2.671,-0.124 -5.343,-0.258 -8.015,-0.399 l 0,0.002 c -0.827,-0.044 -1.463,-0.75 -1.418,-1.578 0.042,-0.827 0.747,-1.463 1.576,-1.419 z m -15.958,-0.924 c 2.652,0.167 5.312,0.328 7.972,0.482 0.829,0.047 1.461,0.757 1.412,1.585 -0.047,0.797 -0.708,1.413 -1.496,1.412 -0.029,0 -0.059,0 -0.089,-0.002 -2.667,-0.154 -5.331,-0.315 -7.988,-0.482 -0.828,-0.053 -1.456,-0.767 -1.403,-1.591 0.053,-0.829 0.766,-1.457 1.592,-1.404 z m -15.939,-1.08 c 2.65,0.192 5.312,0.379 7.979,0.561 0.826,0.057 1.45,0.771 1.395
 ,1.598 -0.055,0.793 -0.714,1.398 -1.497,1.398 -0.034,0 -0.067,-10e-4 -0.102,-0.003 -2.674,-0.182 -5.339,-0.368 -7.994,-0.561 -0.826,-0.062 -1.448,-0.779 -1.387,-1.604 0.062,-0.828 0.78,-1.45 1.606,-1.389 z m -15.953,-1.228 c 2.646,0.216 5.305,0.427 7.975,0.632 0.827,0.063 1.444,0.784 1.38,1.61 -0.061,0.787 -0.72,1.385 -1.496,1.385 -0.038,0 -0.075,-10e-4 -0.113,-0.004 -2.676,-0.207 -5.339,-0.417 -7.99,-0.632 -0.826,-0.068 -1.441,-0.791 -1.374,-1.617 0.069,-0.826 0.791,-1.441 1.618,-1.374 z m -15.943,-1.359 c 2.64,0.235 5.296,0.468 7.97,0.698 0.824,0.069 1.438,0.794 1.368,1.618 -0.068,0.782 -0.721,1.374 -1.49,1.374 -0.043,0 -0.087,-0.002 -0.131,-0.006 -2.68,-0.229 -5.341,-0.461 -7.983,-0.697 -0.824,-0.074 -1.435,-0.802 -1.361,-1.628 0.073,-0.824 0.802,-1.432 1.627,-1.359 z m -15.933,-1.485 c 2.629,0.256 5.286,0.509 7.964,0.759 0.825,0.076 1.431,0.808 1.355,1.632 -0.074,0.777 -0.727,1.361 -1.492,1.361 -0.046,0 -0.093,-0.003 -0.14,-0.007 -2.684,-0.252 -5.343,-0.503 -7.977,-0.759
  -0.824,-0.08 -1.429,-0.813 -1.349,-1.638 0.082,-0.824 0.813,-1.428 1.639,-1.348 z m -17.572,-0.265 c 0.087,-0.824 0.824,-1.422 1.648,-1.336 2.621,0.273 5.276,0.544 7.96,0.814 0.825,0.082 1.425,0.817 1.342,1.642 -0.077,0.773 -0.729,1.35 -1.491,1.35 -0.05,0 -0.101,-0.002 -0.151,-0.007 -2.688,-0.271 -5.346,-0.541 -7.971,-0.814 -0.824,-0.086 -1.422,-0.825 -1.337,-1.649 z m -15.922,-1.725 c 0.091,-0.822 0.833,-1.416 1.657,-1.325 2.608,0.29 5.263,0.581 7.956,0.871 0.822,0.087 1.418,0.828 1.33,1.65 -0.083,0.77 -0.733,1.341 -1.489,1.341 -0.053,0 -0.107,-0.003 -0.162,-0.009 -2.697,-0.29 -5.354,-0.582 -7.966,-0.871 -0.825,-0.09 -1.419,-0.832 -1.326,-1.657 z m -15.911,-1.832 c 0.095,-0.822 0.841,-1.41 1.663,-1.313 2.594,0.306 5.246,0.612 7.952,0.923 0.822,0.094 1.412,0.837 1.319,1.659 -0.086,0.768 -0.736,1.331 -1.49,1.331 -0.057,0 -0.114,-0.003 -0.171,-0.01 -2.708,-0.311 -5.365,-0.619 -7.96,-0.924 l 0,-0.002 c -0.823,-0.095 -1.411,-0.841 -1.313,-1.664 z M 2.87,445.992 c 2.568,0.321 5.
 218,0.646 7.945,0.977 0.822,0.099 1.41,0.848 1.311,1.669 -0.092,0.763 -0.742,1.321 -1.491,1.321 -0.059,0 -0.119,-0.003 -0.179,-0.011 -2.73,-0.331 -5.385,-0.657 -7.956,-0.979 -0.822,-0.104 -1.406,-0.852 -1.304,-1.674 0.103,-0.821 0.851,-1.404 1.674,-1.303 z"
+           id="path338"
+           style="fill:url(#SVGID_6_)" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 502.985,425.09 c 0.256,0.173 0.546,0.255 0.833,0.255 0.483,0 0.959,-0.233 1.249,-0.664 1.492,-2.23 2.894,-4.549 4.193,-6.961 0.394,-0.731 0.121,-1.64 -0.608,-2.033 -0.729,-0.393 -1.638,-0.12 -2.031,0.609 -1.256,2.327 -2.606,4.565 -4.046,6.715 -0.463,0.686 -0.278,1.619 0.41,2.079 z"
+           id="path340"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 506.757,348.846 c 0.258,0.535 0.793,0.848 1.351,0.848 0.22,0 0.442,-0.048 0.652,-0.15 0.744,-0.361 1.057,-1.258 0.698,-2.004 l -0.003,0.003 c -1.224,-2.532 -2.489,-4.936 -3.749,-7.181 -0.404,-0.723 -1.319,-0.979 -2.04,-0.574 -0.723,0.405 -0.98,1.318 -0.574,2.041 1.231,2.197 2.468,4.546 3.665,7.017 z"
+           id="path342"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 499.021,335.029 c 0.285,0.448 0.77,0.692 1.265,0.692 0.275,0 0.555,-0.075 0.805,-0.234 0.699,-0.445 0.904,-1.374 0.459,-2.071 l 0.002,0 c -1.689,-2.65 -3.249,-4.914 -4.538,-6.706 -0.484,-0.673 -1.423,-0.827 -2.095,-0.341 -0.674,0.482 -0.826,1.421 -0.34,2.095 1.258,1.748 2.786,3.965 4.442,6.565 z"
+           id="path344"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 353.139,376.27 c 0.754,2.454 1.34,4.98 1.743,7.573 0.115,0.739 0.753,1.27 1.479,1.27 0.077,0 0.155,-0.006 0.233,-0.019 0.82,-0.126 1.381,-0.894 1.254,-1.712 -0.427,-2.736 -1.046,-5.402 -1.841,-7.993 -0.243,-0.793 -1.082,-1.239 -1.875,-0.993 -0.793,0.242 -1.238,1.08 -0.993,1.874 z"
+           id="path346"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 355.526,391.59 c 0.003,0.229 0.005,0.463 0.005,0.695 0,2.316 -0.144,4.679 -0.439,7.082 -0.104,0.822 0.479,1.57 1.304,1.674 0.063,0.008 0.124,0.012 0.186,0.012 0.747,0 1.393,-0.556 1.488,-1.315 l -0.002,-0.002 c 0.313,-2.523 0.463,-5.01 0.465,-7.45 -0.002,-0.245 -0.002,-0.488 -0.006,-0.731 -0.011,-0.829 -0.689,-1.492 -1.518,-1.481 -0.829,0.008 -1.492,0.687 -1.483,1.516 z"
+           id="path348"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 517.442,385.206 c -0.826,-0.044 -1.532,0.592 -1.574,1.421 -0.136,2.576 -0.463,5.142 -1.015,7.681 -0.178,0.81 0.336,1.608 1.146,1.786 0.107,0.023 0.214,0.034 0.319,0.034 0.69,0 1.313,-0.479 1.467,-1.182 0.588,-2.71 0.937,-5.437 1.078,-8.163 0.044,-0.829 -0.592,-1.535 -1.421,-1.577 z"
+           id="path350"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 514.65,400.904 c -0.79,-0.256 -1.636,0.175 -1.892,0.964 -0.82,2.54 -1.735,4.99 -2.741,7.357 -0.325,0.761 0.032,1.643 0.793,1.968 0.191,0.081 0.39,0.119 0.586,0.119 0.584,0 1.14,-0.343 1.382,-0.914 1.04,-2.449 1.986,-4.983 2.836,-7.604 0.256,-0.789 -0.177,-1.636 -0.964,-1.89 z"
+           id="path352"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 350.336,369.012 c 0.255,0.545 0.795,0.864 1.359,0.864 0.213,0 0.43,-0.045 0.636,-0.142 0.75,-0.353 1.073,-1.245 0.721,-1.995 l 0,-0.002 c -1.162,-2.478 -2.492,-4.868 -3.972,-7.163 -0.45,-0.695 -1.378,-0.896 -2.073,-0.446 -0.697,0.448 -0.898,1.378 -0.448,2.073 1.408,2.186 2.673,4.458 3.777,6.811 z"
+           id="path354"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 512.594,363.497 c 0.2,0.644 0.792,1.057 1.433,1.057 0.147,0 0.297,-0.021 0.444,-0.067 0.791,-0.245 1.234,-1.084 0.989,-1.875 l 0.002,0 c -0.812,-2.623 -1.732,-5.18 -2.724,-7.655 -0.309,-0.77 -1.184,-1.144 -1.951,-0.835 -0.77,0.309 -1.144,1.182 -0.835,1.951 0.966,2.406 1.858,4.888 2.642,7.424 z"
+           id="path356"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 514.566,371.103 c 0.528,2.557 0.921,5.145 1.147,7.742 0.068,0.779 0.725,1.368 1.494,1.368 0.043,0 0.087,-0.002 0.131,-0.005 0.824,-0.074 1.436,-0.802 1.363,-1.626 l 0.003,0 c -0.241,-2.723 -0.651,-5.426 -1.201,-8.087 -0.169,-0.812 -0.962,-1.333 -1.773,-1.164 -0.811,0.167 -1.333,0.962 -1.164,1.772 z"
+           id="path358"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 486.909,440.488 c -0.126,0.107 -0.259,0.208 -0.386,0.314 0.911,0.091 1.824,0.175 2.738,0.255 -0.059,-0.141 -0.133,-0.276 -0.236,-0.398 -0.539,-0.632 -1.484,-0.708 -2.116,-0.171 z"
+           id="path360"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 493.734,437.693 c 0.388,0 0.775,-0.149 1.069,-0.447 l 0.002,0 c 1.895,-1.924 3.703,-3.936 5.422,-6.037 0.524,-0.643 0.429,-1.587 -0.212,-2.111 -0.643,-0.524 -1.587,-0.429 -2.109,0.211 -1.659,2.031 -3.407,3.972 -5.239,5.832 -0.581,0.59 -0.575,1.539 0.017,2.122 0.292,0.287 0.671,0.43 1.05,0.43 z"
+           id="path362"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 248.687,339.408 c 0.269,0 0.54,-0.072 0.785,-0.224 2.241,-1.378 4.54,-2.598 6.891,-3.665 0.754,-0.343 1.088,-1.23 0.748,-1.985 -0.342,-0.756 -1.232,-1.09 -1.987,-0.746 -2.464,1.118 -4.876,2.397 -7.224,3.843 -0.706,0.434 -0.926,1.357 -0.49,2.063 0.281,0.46 0.774,0.714 1.277,0.714 z"
+           id="path364"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 263.21,332.807 c 0.148,0 0.299,-0.022 0.449,-0.069 2.494,-0.777 5.028,-1.403 7.585,-1.879 0.814,-0.152 1.353,-0.936 1.201,-1.75 -0.152,-0.815 -0.937,-1.353 -1.75,-1.2 -2.672,0.499 -5.32,1.151 -7.93,1.968 -0.791,0.245 -1.232,1.089 -0.985,1.879 0.2,0.64 0.792,1.051 1.43,1.051 z"
+           id="path366"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 225.59,361.741 c 0.253,0.164 0.537,0.243 0.817,0.243 0.491,0 0.971,-0.241 1.258,-0.684 1.366,-2.103 2.873,-4.233 4.525,-6.389 0.011,-0.016 0.019,-0.028 0.03,-0.041 0.503,-0.657 0.38,-1.6 -0.277,-2.103 -0.658,-0.505 -1.6,-0.381 -2.104,0.276 -0.01,0.013 -0.021,0.028 -0.031,0.041 -1.697,2.215 -3.249,4.408 -4.661,6.581 -0.449,0.695 -0.252,1.626 0.443,2.076 z"
+           id="path368"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 278.902,329.871 c 0.035,0 0.07,-10e-4 0.105,-0.004 1.697,-0.122 3.398,-0.182 5.1,-0.18 0.911,-0.002 1.822,0.015 2.73,0.051 0.829,0.03 1.524,-0.617 1.556,-1.443 0.03,-0.828 -0.615,-1.524 -1.443,-1.556 -0.947,-0.034 -1.894,-0.053 -2.843,-0.053 -1.771,0 -3.544,0.062 -5.314,0.188 -0.826,0.059 -1.448,0.775 -1.389,1.602 0.056,0.792 0.717,1.395 1.498,1.395 z"
+           id="path370"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 236.253,349.405 c 0.391,0 0.782,-0.151 1.076,-0.454 1.85,-1.906 3.777,-3.658 5.77,-5.263 0.645,-0.521 0.746,-1.465 0.227,-2.109 -0.52,-0.645 -1.463,-0.746 -2.107,-0.227 l -0.002,-0.002 c -2.088,1.683 -4.105,3.518 -6.041,5.511 -0.577,0.594 -0.562,1.543 0.032,2.119 0.291,0.285 0.668,0.425 1.045,0.425 z"
+           id="path372"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 294.65,330.436 c 2.589,0.366 5.163,0.865 7.704,1.49 0.12,0.029 0.24,0.044 0.358,0.044 0.675,0 1.286,-0.457 1.455,-1.143 0.198,-0.806 -0.294,-1.617 -1.1,-1.815 l 0,0.002 c -2.635,-0.649 -5.307,-1.167 -8,-1.547 -0.819,-0.116 -1.578,0.452 -1.694,1.274 -0.115,0.82 0.455,1.578 1.277,1.695 z"
+           id="path374"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 324.06,340.842 c 2.251,1.348 4.424,2.807 6.503,4.37 0.27,0.203 0.586,0.301 0.899,0.301 0.456,0 0.905,-0.206 1.2,-0.599 0.498,-0.663 0.365,-1.604 -0.296,-2.101 l 0,0.002 c -2.167,-1.628 -4.427,-3.146 -6.767,-4.549 -0.71,-0.425 -1.631,-0.194 -2.056,0.516 -0.427,0.711 -0.194,1.635 0.517,2.06 z"
+           id="path376"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 341.924,355.926 c 0.297,0.353 0.722,0.535 1.149,0.535 0.341,0 0.683,-0.115 0.964,-0.351 0.634,-0.533 0.717,-1.479 0.184,-2.114 -1.745,-2.079 -3.622,-4.06 -5.611,-5.931 -0.604,-0.568 -1.554,-0.541 -2.122,0.063 -0.568,0.604 -0.539,1.554 0.065,2.122 1.908,1.794 3.703,3.689 5.371,5.676 z"
+           id="path378"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 309.873,334.175 c 2.473,0.875 4.898,1.871 7.262,2.98 0.206,0.097 0.422,0.142 0.636,0.142 0.563,0 1.104,-0.318 1.359,-0.862 0.352,-0.75 0.027,-1.643 -0.721,-1.995 -2.453,-1.152 -4.971,-2.186 -7.535,-3.093 -0.781,-0.276 -1.64,0.134 -1.914,0.915 -0.277,0.78 0.133,1.636 0.913,1.913 z"
+           id="path380"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 218.989,412.132 c -0.757,0.34 -1.093,1.228 -0.752,1.982 1.112,2.469 2.418,4.87 3.896,7.205 0.286,0.451 0.772,0.697 1.269,0.697 0.274,0 0.552,-0.075 0.801,-0.232 0.699,-0.441 0.909,-1.369 0.465,-2.068 -1.408,-2.224 -2.644,-4.503 -3.695,-6.834 -0.342,-0.755 -1.229,-1.091 -1.984,-0.75 z"
+           id="path382"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 232.396,433.97 c 0.292,0.292 0.675,0.438 1.058,0.438 0.385,0 0.769,-0.146 1.063,-0.439 0.585,-0.586 0.585,-1.537 0,-2.122 -1.888,-1.884 -3.648,-3.819 -5.271,-5.807 -0.524,-0.643 -1.469,-0.737 -2.112,-0.213 -0.643,0.523 -0.737,1.469 -0.211,2.111 1.69,2.071 3.518,4.081 5.473,6.032 z"
+           id="path384"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 218.514,376.059 c 0.177,0.068 0.359,0.101 0.539,0.101 0.602,0 1.17,-0.365 1.399,-0.961 0.903,-2.336 1.979,-4.711 3.24,-7.123 0.383,-0.733 0.1,-1.643 -0.636,-2.024 -0.733,-0.385 -1.64,-0.1 -2.025,0.634 l 0.002,0.002 c -1.313,2.507 -2.435,4.984 -3.38,7.432 -0.298,0.772 0.087,1.639 0.861,1.939 z"
+           id="path386"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 215.32,391.678 c 0.039,0.004 0.078,0.005 0.117,0.005 0.774,0 1.432,-0.598 1.494,-1.385 0.19,-2.502 0.587,-5.058 1.205,-7.662 0.19,-0.807 -0.309,-1.616 -1.114,-1.807 -0.808,-0.19 -1.615,0.309 -1.805,1.113 -0.653,2.752 -1.074,5.464 -1.279,8.125 -0.063,0.827 0.556,1.547 1.382,1.611 z"
+           id="path388"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 461.381,459.777 c 0.757,-0.341 1.095,-1.229 0.755,-1.985 -0.341,-0.757 -1.229,-1.095 -1.982,-0.754 -2.002,0.898 -4.048,1.745 -6.116,2.563 1.36,0.528 2.735,1.051 4.122,1.567 1.081,-0.454 2.157,-0.914 3.221,-1.391 z"
+           id="path390"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 244.788,444.44 c 0.266,0.191 0.573,0.284 0.878,0.284 0.464,0 0.923,-0.215 1.216,-0.62 0.486,-0.672 0.336,-1.608 -0.336,-2.095 -2.166,-1.568 -4.244,-3.186 -6.225,-4.853 -0.634,-0.533 -1.581,-0.45 -2.113,0.184 -0.532,0.634 -0.45,1.581 0.184,2.113 2.038,1.716 4.175,3.377 6.396,4.987 z"
+           id="path392"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 344.872,430.653 c 0.243,0.147 0.511,0.217 0.775,0.217 0.507,0 1.002,-0.257 1.285,-0.722 1.452,-2.389 2.756,-4.763 3.921,-7.117 0.365,-0.743 0.062,-1.645 -0.681,-2.01 -0.742,-0.368 -1.643,-0.063 -2.01,0.679 -1.122,2.276 -2.387,4.573 -3.794,6.893 -0.43,0.708 -0.204,1.629 0.504,2.06 z"
+           id="path394"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 480.706,445.345 c -0.675,0.482 -0.826,1.419 -0.341,2.093 0.292,0.407 0.75,0.623 1.216,0.623 0.304,0 0.611,-0.092 0.877,-0.282 2.205,-1.586 4.34,-3.256 6.396,-5.003 0.511,-0.435 0.651,-1.133 0.408,-1.718 -0.914,-0.08 -1.827,-0.164 -2.738,-0.255 -1.875,1.581 -3.81,3.096 -5.818,4.542 z"
+           id="path396"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 467.966,456.42 c 0.233,0 0.471,-0.055 0.692,-0.171 2.407,-1.26 4.758,-2.589 7.047,-3.988 0.706,-0.434 0.928,-1.356 0.495,-2.063 -0.432,-0.708 -1.355,-0.928 -2.062,-0.497 -2.228,1.363 -4.521,2.659 -6.871,3.89 -0.733,0.384 -1.019,1.289 -0.634,2.024 0.269,0.512 0.792,0.805 1.333,0.805 z"
+           id="path398"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 253.099,446.442 c -0.575,-0.364 -1.297,-0.283 -1.783,0.142 0.758,0.054 1.514,0.109 2.275,0.16 -0.162,-0.101 -0.331,-0.199 -0.492,-0.302 z"
+           id="path400"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 218.357,405.606 c -0.666,-2.475 -1.129,-5.003 -1.37,-7.588 -0.076,-0.824 -0.808,-1.431 -1.632,-1.354 -0.827,0.076 -1.431,0.808 -1.355,1.634 0.258,2.756 0.75,5.455 1.46,8.089 0.181,0.671 0.787,1.11 1.449,1.11 0.128,0 0.259,-0.017 0.39,-0.052 0.801,-0.216 1.274,-1.039 1.058,-1.839 z"
+           id="path402"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 352.17,416.438 c 0.175,0.065 0.354,0.096 0.529,0.097 0.606,0 1.177,-0.371 1.403,-0.972 0.989,-2.626 1.801,-5.224 2.451,-7.787 0.203,-0.803 -0.285,-1.619 -1.088,-1.822 -0.804,-0.205 -1.619,0.283 -1.822,1.087 -0.619,2.452 -1.399,4.943 -2.349,7.465 -0.292,0.775 0.101,1.64 0.876,1.932 z"
+           id="path404"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 334.954,442.552 c 0.3,0 0.604,-0.09 0.867,-0.275 l -0.002,0 c 2.374,-1.677 4.473,-3.479 6.27,-5.417 0.563,-0.609 0.525,-1.559 -0.081,-2.122 -0.608,-0.563 -1.558,-0.526 -2.12,0.082 -1.634,1.763 -3.573,3.433 -5.8,5.007 -0.678,0.478 -0.837,1.414 -0.358,2.091 0.291,0.413 0.753,0.634 1.224,0.634 z"
+           id="path406"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 329.438,444.477 c -0.379,-0.738 -1.283,-1.029 -2.021,-0.649 -2.131,1.096 -4.428,2.13 -6.876,3.107 2.795,-0.166 5.616,-0.359 8.451,-0.569 0.581,-0.43 0.786,-1.227 0.446,-1.889 z"
+           id="path408"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 218.171,460.76 c -2.644,0.038 -5.308,0.062 -7.987,0.072 -0.829,0.004 -1.499,0.678 -1.495,1.507 0.004,0.828 0.679,1.496 1.507,1.494 2.688,-0.013 5.362,-0.036 8.017,-0.072 0.829,-0.013 1.49,-0.693 1.479,-1.521 -0.012,-0.829 -0.692,-1.491 -1.521,-1.48 z"
+           id="path410"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 202.196,460.832 c -2.65,-0.013 -5.315,-0.038 -7.989,-0.072 -0.829,-0.011 -1.509,0.651 -1.52,1.481 -0.013,0.826 0.651,1.507 1.479,1.52 2.684,0.034 5.356,0.058 8.015,0.07 10e-4,0 0.003,0 0.004,0 0.827,0 1.499,-0.667 1.503,-1.494 0.005,-0.829 -0.663,-1.503 -1.492,-1.505 z"
+           id="path412"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 186.213,460.627 c -2.657,-0.056 -5.32,-0.121 -7.994,-0.195 -0.829,-0.024 -1.518,0.628 -1.541,1.457 -0.023,0.828 0.63,1.52 1.458,1.543 l 0,-0.002 c 2.678,0.075 5.35,0.142 8.015,0.194 0.011,0 0.021,0 0.031,0 0.813,0 1.48,-0.651 1.499,-1.467 0.018,-0.829 -0.639,-1.513 -1.468,-1.53 z"
+           id="path414"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 451.981,462.02 c 0.229,0.595 0.799,0.961 1.401,0.961 0.18,0 0.362,-0.032 0.539,-0.101 1.428,-0.551 2.838,-1.124 4.237,-1.712 -1.387,-0.517 -2.762,-1.039 -4.122,-1.567 -0.398,0.158 -0.792,0.323 -1.193,0.479 -0.773,0.297 -1.159,1.166 -0.862,1.94 z"
+           id="path416"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 319.418,448.997 c 0.232,0.589 0.798,0.949 1.396,0.949 0.184,0 0.37,-0.034 0.551,-0.105 l 0,-0.002 c 2.636,-1.042 5.115,-2.154 7.425,-3.342 0.074,-0.038 0.14,-0.085 0.204,-0.132 -2.835,0.21 -5.656,0.403 -8.451,0.569 -0.095,0.037 -0.187,0.076 -0.281,0.114 -0.773,0.306 -1.151,1.178 -0.844,1.949 z"
+           id="path418"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 251.03,446.907 c -0.444,0.699 -0.235,1.627 0.465,2.069 2.253,1.427 4.572,2.803 6.95,4.132 0.232,0.129 0.484,0.19 0.731,0.19 0.526,0 1.036,-0.276 1.31,-0.768 0.404,-0.725 0.146,-1.638 -0.577,-2.042 -2.163,-1.206 -4.266,-2.459 -6.318,-3.745 -0.761,-0.051 -1.518,-0.106 -2.275,-0.16 -0.108,0.094 -0.207,0.198 -0.286,0.324 z"
+           id="path420"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 170.125,463.18 c 0.018,10e-4 0.036,10e-4 0.054,10e-4 0.802,0 1.468,-0.639 1.497,-1.448 0.027,-0.827 -0.619,-1.522 -1.448,-1.55 -2.659,-0.093 -5.324,-0.194 -7.992,-0.305 -0.417,-0.017 -0.801,0.14 -1.084,0.405 1.853,0.918 3.711,1.84 5.577,2.769 1.131,0.042 2.266,0.089 3.396,0.128 z"
+           id="path422"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 335.28,474.264 c -2.596,-0.315 -5.223,-0.685 -7.873,-1.109 -0.818,-0.131 -1.587,0.425 -1.719,1.242 -0.133,0.818 0.423,1.588 1.241,1.719 l 0.002,0.002 c 2.688,0.432 5.354,0.806 7.987,1.125 0.062,0.007 0.122,0.011 0.182,0.011 0.748,0 1.395,-0.559 1.488,-1.319 0.1,-0.826 -0.485,-1.572 -1.308,-1.671 z"
+           id="path424"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 366.979,475.231 c -2.349,0.105 -4.692,0.194 -7.025,0.269 -0.309,0.009 -0.617,0.017 -0.926,0.025 -0.829,0.02 -1.484,0.706 -1.465,1.534 0.021,0.817 0.688,1.466 1.501,1.466 0.012,0 0.023,0 0.035,-10e-4 0.317,-0.008 0.632,-0.017 0.947,-0.025 2.351,-0.076 4.705,-0.164 7.067,-0.271 0.827,-0.038 1.467,-0.739 1.432,-1.565 -0.038,-0.829 -0.738,-1.47 -1.566,-1.432 z"
+           id="path426"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 382.896,474.255 c -2.653,0.21 -5.306,0.396 -7.956,0.557 -0.828,0.05 -1.458,0.761 -1.407,1.587 0.049,0.797 0.71,1.41 1.499,1.41 0.03,0 0.06,-0.001 0.09,-0.003 2.667,-0.162 5.339,-0.349 8.009,-0.56 0.826,-0.065 1.441,-0.788 1.378,-1.613 -0.066,-0.826 -0.788,-1.444 -1.613,-1.378 z"
+           id="path428"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 319.578,471.751 c -2.58,-0.512 -5.176,-1.072 -7.775,-1.683 -0.808,-0.19 -1.615,0.311 -1.804,1.116 -0.189,0.807 0.312,1.614 1.118,1.803 2.632,0.619 5.261,1.188 7.878,1.708 0.098,0.019 0.195,0.028 0.292,0.028 0.701,0 1.329,-0.495 1.471,-1.21 0.163,-0.811 -0.366,-1.602 -1.18,-1.762 z"
+           id="path430"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 398.77,472.67 c -2.636,0.323 -5.28,0.613 -7.931,0.877 -0.824,0.081 -1.425,0.816 -1.344,1.641 0.077,0.774 0.731,1.352 1.494,1.352 0.049,0 0.099,-0.003 0.147,-0.008 l 0,0.002 c 2.67,-0.266 5.337,-0.56 7.996,-0.885 0.822,-0.1 1.408,-0.848 1.307,-1.67 -0.099,-0.825 -0.847,-1.409 -1.669,-1.309 z"
+           id="path432"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 351.109,475.491 c -2.583,-0.078 -5.229,-0.226 -7.924,-0.438 -0.826,-0.063 -1.548,0.555 -1.613,1.379 -0.065,0.826 0.552,1.547 1.379,1.612 2.739,0.216 5.432,0.365 8.065,0.446 0.014,0 0.028,0 0.043,0 0.81,0 1.477,-0.641 1.502,-1.454 0.026,-0.826 -0.625,-1.519 -1.452,-1.545 z"
+           id="path434"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 445.379,462.749 c -2.492,0.826 -5.021,1.602 -7.588,2.331 -0.797,0.226 -1.258,1.055 -1.031,1.852 0.188,0.66 0.789,1.09 1.443,1.09 0.135,0 0.271,-0.019 0.408,-0.057 l 0.002,0 c 2.602,-0.739 5.174,-1.528 7.708,-2.367 0.786,-0.262 1.211,-1.109 0.953,-1.896 -0.261,-0.789 -1.109,-1.214 -1.895,-0.953 z"
+           id="path436"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 234.138,460.362 c -2.636,0.098 -5.297,0.178 -7.981,0.243 -0.829,0.019 -1.484,0.708 -1.463,1.536 0.019,0.817 0.689,1.466 1.501,1.466 0.012,0 0.023,0 0.035,-0.001 l 0,-0.002 c 2.695,-0.065 5.369,-0.147 8.017,-0.243 0.829,-0.031 1.473,-0.727 1.443,-1.554 -0.028,-0.828 -0.724,-1.474 -1.552,-1.445 z"
+           id="path438"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 430.11,467.103 c -2.562,0.621 -5.146,1.203 -7.757,1.744 -0.813,0.169 -1.334,0.962 -1.165,1.773 0.147,0.708 0.771,1.196 1.466,1.196 0.102,0 0.204,-0.011 0.308,-0.032 2.642,-0.547 5.263,-1.135 7.856,-1.767 0.805,-0.196 1.298,-1.006 1.104,-1.812 -0.197,-0.805 -1.007,-1.299 -1.812,-1.102 z"
+           id="path440"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 414.539,470.341 c -2.604,0.456 -5.227,0.879 -7.862,1.269 -0.82,0.118 -1.387,0.881 -1.265,1.701 0.108,0.746 0.749,1.282 1.481,1.282 0.073,0 0.146,-0.006 0.221,-0.017 2.661,-0.393 5.31,-0.817 7.942,-1.28 0.814,-0.144 1.361,-0.92 1.218,-1.735 -0.143,-0.817 -0.92,-1.364 -1.735,-1.22 z"
+           id="path442"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 288.891,463.389 c -2.505,-0.879 -4.988,-1.803 -7.442,-2.771 -0.771,-0.305 -1.642,0.074 -1.946,0.844 -0.305,0.771 0.074,1.642 0.845,1.946 2.492,0.982 5.011,1.921 7.55,2.811 0.164,0.059 0.332,0.086 0.496,0.086 0.618,0 1.198,-0.387 1.417,-1.003 0.272,-0.782 -0.138,-1.638 -0.92,-1.913 z"
+           id="path444"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 299.25,454.797 c -0.172,-0.812 -0.967,-1.331 -1.776,-1.16 -2.529,0.533 -5.132,1.033 -7.808,1.499 -0.817,0.142 -1.363,0.919 -1.219,1.735 0.126,0.729 0.76,1.243 1.477,1.243 0.085,0 0.171,-0.007 0.258,-0.021 2.708,-0.474 5.346,-0.979 7.909,-1.521 0.809,-0.171 1.328,-0.966 1.159,-1.775 z"
+           id="path446"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 304.09,468.113 c -2.556,-0.698 -5.106,-1.439 -7.647,-2.228 -0.792,-0.246 -1.632,0.194 -1.877,0.986 -0.247,0.791 0.194,1.632 0.987,1.879 2.574,0.799 5.161,1.552 7.751,2.256 0.132,0.036 0.265,0.053 0.395,0.053 0.66,0 1.265,-0.438 1.446,-1.105 0.215,-0.801 -0.256,-1.626 -1.055,-1.841 z"
+           id="path448"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 314.702,450.656 c -0.249,-0.79 -1.091,-1.229 -1.881,-0.98 -2.431,0.766 -4.974,1.486 -7.618,2.164 -0.803,0.205 -1.287,1.023 -1.082,1.826 0.174,0.677 0.784,1.128 1.453,1.128 0.124,0 0.249,-0.016 0.373,-0.048 2.693,-0.69 5.289,-1.427 7.774,-2.208 0.791,-0.25 1.228,-1.091 0.981,-1.882 z"
+           id="path450"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 250.083,459.572 c -2.625,0.167 -5.282,0.318 -7.968,0.45 -0.829,0.04 -1.465,0.743 -1.424,1.57 0.04,0.828 0.744,1.465 1.572,1.424 l 0,0.003 c 2.701,-0.134 5.371,-0.286 8.011,-0.453 0.826,-0.053 1.454,-0.765 1.403,-1.593 -0.053,-0.827 -0.768,-1.454 -1.594,-1.401 z"
+           id="path452"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 283.505,457.657 c -0.118,-0.82 -0.879,-1.389 -1.699,-1.269 -2.579,0.372 -5.212,0.721 -7.899,1.042 -0.018,0.002 -0.036,0.005 -0.054,0.008 -2.346,-1.044 -4.657,-2.128 -6.927,-3.254 -0.742,-0.368 -1.643,-0.065 -2.01,0.678 -0.368,0.742 -0.063,1.643 0.679,2.011 l -0.002,0 c 2.395,1.188 4.834,2.329 7.311,3.424 0.197,0.087 0.403,0.128 0.606,0.128 0.1,0 0.199,-0.01 0.296,-0.029 0.148,0.028 0.304,0.034 0.461,0.016 l 0,-0.002 c 2.708,-0.323 5.367,-0.675 7.969,-1.053 0.819,-0.119 1.388,-0.88 1.269,-1.7 z"
+           id="path454"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 265.986,458.293 c -2.608,0.258 -5.257,0.492 -7.945,0.708 -0.827,0.065 -1.441,0.789 -1.376,1.615 0.064,0.786 0.719,1.381 1.494,1.381 0.04,0 0.08,-0.002 0.121,-0.005 2.706,-0.216 5.373,-0.455 8,-0.713 0.824,-0.082 1.427,-0.815 1.347,-1.64 -0.084,-0.824 -0.819,-1.428 -1.641,-1.346 z"
+           id="path456"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 50.271,454.438 c 2.625,0.273 5.282,0.544 7.971,0.814 0.051,0.005 0.101,0.007 0.151,0.007 0.761,0 1.414,-0.576 1.491,-1.35 0.083,-0.824 -0.518,-1.56 -1.342,-1.642 -2.684,-0.271 -5.339,-0.541 -7.96,-0.814 -0.824,-0.086 -1.562,0.512 -1.648,1.336 -0.085,0.824 0.513,1.563 1.337,1.649 z"
+           id="path458"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 34.337,452.722 c 2.612,0.289 5.27,0.581 7.966,0.871 0.055,0.006 0.109,0.009 0.162,0.009 0.755,0 1.406,-0.571 1.489,-1.341 0.089,-0.822 -0.507,-1.563 -1.33,-1.65 -2.693,-0.29 -5.348,-0.581 -7.956,-0.871 -0.824,-0.091 -1.566,0.503 -1.657,1.325 -0.092,0.824 0.502,1.566 1.326,1.657 z"
+           id="path460"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2.5,448.97 c 2.57,0.321 5.225,0.647 7.956,0.979 0.06,0.008 0.12,0.011 0.179,0.011 0.75,0 1.399,-0.559 1.491,-1.321 0.099,-0.821 -0.488,-1.57 -1.311,-1.669 -2.727,-0.33 -5.377,-0.655 -7.945,-0.977 -0.822,-0.102 -1.571,0.481 -1.674,1.304 -0.102,0.821 0.481,1.569 1.304,1.673 z"
+           id="path462"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 114.118,460.119 c 2.655,0.192 5.32,0.379 7.994,0.561 0.034,0.002 0.068,0.003 0.102,0.003 0.783,0 1.442,-0.605 1.497,-1.398 0.055,-0.826 -0.569,-1.541 -1.395,-1.598 -2.667,-0.182 -5.329,-0.368 -7.979,-0.561 -0.827,-0.061 -1.545,0.561 -1.604,1.389 -0.063,0.825 0.559,1.543 1.385,1.604 z"
+           id="path464"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 66.217,456.04 c 2.633,0.256 5.292,0.507 7.977,0.759 0.047,0.004 0.094,0.007 0.14,0.007 0.766,0 1.418,-0.584 1.492,-1.361 0.076,-0.824 -0.53,-1.556 -1.355,-1.632 -2.678,-0.25 -5.334,-0.503 -7.964,-0.759 -0.827,-0.08 -1.558,0.524 -1.638,1.349 -0.081,0.824 0.524,1.557 1.348,1.637 z"
+           id="path466"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 18.413,450.897 0,0.002 c 2.595,0.305 5.252,0.613 7.96,0.924 0.057,0.007 0.114,0.01 0.171,0.01 0.754,0 1.404,-0.563 1.49,-1.331 0.093,-0.822 -0.497,-1.565 -1.319,-1.659 -2.706,-0.311 -5.358,-0.617 -7.952,-0.923 -0.822,-0.098 -1.568,0.49 -1.663,1.313 -0.097,0.822 0.491,1.568 1.313,1.664 z"
+           id="path468"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 82.172,457.526 c 2.642,0.236 5.303,0.469 7.983,0.697 0.044,0.004 0.088,0.006 0.131,0.006 0.769,0 1.422,-0.592 1.49,-1.374 0.07,-0.824 -0.543,-1.549 -1.368,-1.618 -2.674,-0.23 -5.331,-0.463 -7.97,-0.698 -0.825,-0.073 -1.554,0.535 -1.628,1.359 -0.073,0.827 0.538,1.554 1.362,1.628 z"
+           id="path470"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 146.074,462.127 0,-0.002 c 2.671,0.142 5.343,0.275 8.015,0.399 0.023,10e-4 0.047,0.002 0.07,0.002 0.795,0 1.461,-0.626 1.498,-1.431 0.04,-0.828 -0.6,-1.53 -1.429,-1.568 -2.666,-0.125 -5.331,-0.258 -7.996,-0.397 -0.829,-0.044 -1.534,0.592 -1.577,1.419 -0.044,0.828 0.592,1.534 1.419,1.578 z"
+           id="path472"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 130.086,461.201 c 2.657,0.167 5.32,0.328 7.988,0.482 0.03,0.002 0.06,0.002 0.089,0.002 0.788,10e-4 1.449,-0.615 1.496,-1.412 0.049,-0.828 -0.583,-1.538 -1.412,-1.585 -2.661,-0.154 -5.32,-0.315 -7.972,-0.482 -0.827,-0.053 -1.539,0.575 -1.592,1.404 -0.053,0.825 0.575,1.538 1.403,1.591 z"
+           id="path474"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 98.139,458.89 c 2.65,0.215 5.313,0.425 7.99,0.632 0.038,0.003 0.075,0.004 0.113,0.004 0.776,0 1.435,-0.598 1.496,-1.385 0.063,-0.826 -0.554,-1.547 -1.38,-1.61 -2.669,-0.205 -5.329,-0.416 -7.975,-0.632 -0.827,-0.067 -1.549,0.548 -1.617,1.374 -0.069,0.826 0.547,1.548 1.373,1.617 z"
+           id="path476"
+           style="fill:#ffffff" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 162.116,462.878 -0.002,0 c 1.541,0.063 3.077,0.116 4.615,0.174 -1.865,-0.929 -3.724,-1.851 -5.577,-2.769 -0.278,0.26 -0.458,0.624 -0.475,1.034 -0.034,0.828 0.611,1.527 1.439,1.561 z"
+           id="path478"
+           style="fill:#ffffff" />
+      </g>
+      <path
+         inkscape:connector-curvature="0"
+         d="m 524.27576,94.352153 c 5.93329,-4.43752 9.61848,-10.62044 9.61848,-17.46348 0,-7.60096 -4.54195,-14.391031 -11.66536,-18.874731 1.60681,-1.672049 2.51845,-3.565499 2.51845,-5.574403 0,-6.752036 -10.23743,-12.224568 -22.86728,-12.224568 -1.97369,0 -3.88946,0.13447 -5.71682,0.385753 -3.00018,-7.322516 -11.58912,-12.610321 -21.72391,-12.610321 -10.53012,0 -19.39246,5.708873 -22.04913,13.476907 -3.08962,-0.805463 -6.44857,-1.252339 -9.96504,-1.252339 -13.5476,0 -24.79423,6.561877 -27.03014,15.188347 -5.69243,4.14277 -9.55751,12.210985 -9.55751,21.485355 0,13.50272 8.19056,24.449137 18.29383,24.449137 0.2744,0 0.54068,-0.038 0.81305,-0.0557 -0.51731,1.93012 -0.81305,4.00015 -0.81305,6.16797 0,10.12738 6.14265,18.33686 13.72036,18.33686 3.8417,0 7.30939,-2.11621 9.8004,-5.516 3.32033,3.39979 7.94461,5.516 13.06687,5.516 6.19043,0 11.65113,-3.08875 14.9613,-7.80471 5.79304,4.71868 15.36376,7.80471 26.19979,7.80471 17.67996,0 32.01419,-8.20948 32.01419,-18.33686 0,-5.13
 16 -3.68519,-9.768787 -9.61848,-13.097937 z"
+         id="cloud_1_"
+         style="opacity:0.95;fill:#f5faf4" />
+      <g
+         id="flowers"
+         transform="matrix(1.0812866,0,0,1.7198165,-9.9748082,-415.6722)">
+        <g
+           id="g484">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 95.074,492.594 c 30.358,-33.034 8.504,-45.517 -4.525,-2.585 -1.892,-44.82 -26.165,-38.194 -5.023,1.371 -33.033,-30.358 -45.516,-8.503 -2.584,4.525 -44.82,1.892 -38.195,26.164 1.372,5.022 -30.36,33.033 -8.504,45.516 4.524,2.584 1.892,44.819 26.164,38.194 5.023,-1.37 33.034,30.357 45.515,8.504 2.584,-4.525 44.82,-1.891 38.195,-26.164 -1.371,-5.022 z"
+             id="path486"
+             style="fill:#9669a4" />
+          <circle
+             sodipodi:ry="7.0040002"
+             sodipodi:rx="7.0040002"
+             sodipodi:cy="496.76001"
+             sodipodi:cx="89.694"
+             cx="89.694"
+             cy="496.76001"
+             r="7.0040002"
+             id="circle488"
+             style="fill:#fff200"
+             d="m 96.698,496.76001 c 0,3.8682 -3.135797,7.004 -7.004,7.004 -3.868202,0 -7.004,-3.1358 -7.004,-7.004 0,-3.8682 3.135798,-7.004 7.004,-7.004 3.868203,0 7.004,3.1358 7.004,7.004 z" />
+        </g>
+        <g
+           id="g490">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 36.385,514.015 c 30.589,-8.79 21.965,-24.424 -1.785,-3.236 15.411,-27.843 -1.736,-32.796 -3.549,-1.025 -8.791,-30.588 -24.424,-21.964 -3.236,1.786 -27.844,-15.41 -32.797,1.735 -1.025,3.549 -30.59,8.79 -21.964,24.424 1.785,3.236 -15.411,27.844 1.736,32.798 3.549,1.025 8.791,30.589 24.424,21.964 3.236,-1.786 27.843,15.411 32.797,-1.735 1.025,-3.549 z"
+             id="path492"
+             style="fill:#ffed96" />
+          <circle
+             sodipodi:ry="4.9689999"
+             sodipodi:rx="4.9689999"
+             sodipodi:cy="514.552"
+             sodipodi:cx="31.587999"
+             cx="31.587999"
+             cy="514.552"
+             r="4.9689999"
+             id="circle494"
+             style="fill:#fff200"
+             d="m 36.556999,514.552 c 0,2.7443 -2.224697,4.969 -4.969,4.969 -2.744303,0 -4.969,-2.2247 -4.969,-4.969 0,-2.7443 2.224697,-4.969 4.969,-4.969 2.744303,0 4.969,2.2247 4.969,4.969 z" />
+        </g>
+        <g
+           id="g496">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 135.658,491.947 c 27.946,-12.92 17.393,-26.593 -2.185,-2.83 10.622,-28.894 -6.502,-31.099 -3.544,-0.456 -12.921,-27.946 -26.593,-17.393 -2.83,2.185 -28.895,-10.622 -31.099,6.502 -0.457,3.544 -27.946,12.921 -17.392,26.594 2.185,2.831 -10.622,28.894 6.503,31.099 3.545,0.457 12.921,27.945 26.593,17.391 2.83,-2.186 28.894,10.622 31.098,-6.502 0.456,-3.545 z"
+             id="path498"
+             style="fill:#ffed96" />
+          <circle
+             sodipodi:ry="4.8070002"
+             sodipodi:rx="4.8070002"
+             sodipodi:cy="493.16901"
+             sodipodi:cx="131.14999"
+             cx="131.14999"
+             cy="493.16901"
+             r="4.8070002"
+             id="circle500"
+             style="fill:#f26422"
+             d="m 135.95699,493.16901 c 0,2.65483 -2.15216,4.807 -4.807,4.807 -2.65483,0 -4.807,-2.15217 -4.807,-4.807 0,-2.65484 2.15217,-4.807 4.807,-4.807 2.65484,0 4.807,2.15216 4.807,4.807 z" />
+        </g>
+        <g
+           id="g502">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 125.933,519.594 c 14.864,-15.822 4.51,-24.476 -8.422,-7.04 -0.678,-21.696 -14.117,-20.494 -10.933,0.979 -15.821,-14.863 -24.474,-4.51 -7.039,8.423 -21.698,0.678 -20.495,14.117 0.978,10.932 -14.863,15.822 -4.51,24.477 8.422,7.04 0.678,21.697 14.118,20.494 10.933,-0.978 15.821,14.862 24.475,4.509 7.04,-8.424 21.696,-0.677 20.494,-14.117 -0.979,-10.932 z"
+             id="path504"
+             style="fill:#662d91" />
+          <circle
+             sodipodi:ry="9.4809999"
+             sodipodi:rx="9.4809999"
+             sodipodi:cy="526.24103"
+             sodipodi:cx="113.224"
+             cx="113.224"
+             cy="526.24103"
+             r="9.4809999"
+             id="circle506"
+             style="fill:#fff200"
+             d="m 122.705,526.24103 c 0,5.23621 -4.24479,9.481 -9.481,9.481 -5.23621,0 -9.481,-4.24479 -9.481,-9.481 0,-5.23621 4.24479,-9.481 9.481,-9.481 5.23621,0 9.481,4.24479 9.481,9.481 z" />
+        </g>
+        <g
+           id="g508">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 66.453,539.589 c 18.111,-11.928 10.057,-22.737 -6.552,-8.793 4.373,-21.24 -8.966,-23.188 -10.85,-1.585 -11.928,-18.111 -22.736,-10.057 -8.792,6.552 -21.241,-4.372 -23.188,8.966 -1.584,10.851 -18.111,11.928 -10.057,22.737 6.552,8.793 -4.372,21.24 8.966,23.188 10.85,1.584 11.928,18.112 22.737,10.058 8.793,-6.551 21.239,4.372 23.187,-8.967 1.583,-10.851 z"
+             id="path510"
+             style="fill:#b0b6dc" />
+          <circle
+             sodipodi:ry="9.4709997"
+             sodipodi:rx="9.4709997"
+             sodipodi:cy="543.10101"
+             sodipodi:cx="52.563"
+             cx="52.563"
+             cy="543.10101"
+             r="9.4709997"
+             id="circle512"
+             style="fill:#f6d0d5"
+             d="m 62.033999,543.10101 c 0,5.23069 -4.240311,9.471 -9.470999,9.471 -5.230689,0 -9.471,-4.24031 -9.471,-9.471 0,-5.23069 4.240311,-9.471 9.471,-9.471 5.230688,0 9.470999,4.24031 9.470999,9.471 z" />
+        </g>
+        <g
+           id="g514">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 181.827,510.812 c 20.937,-5.652 16.674,-18.44 -3.468,-10.402 10.808,-18.802 -1.249,-24.829 -9.807,-4.904 -5.652,-20.937 -18.44,-16.675 -10.403,3.467 -18.801,-10.808 -24.83,1.249 -4.904,9.808 -20.937,5.652 -16.675,18.441 3.466,10.403 -10.807,18.801 1.249,24.829 9.807,4.903 5.652,20.938 18.441,16.675 10.404,-3.467 18.801,10.807 24.83,-1.25 4.905,-9.808 z"
+             id="path516"
+             style="fill:#ec008c" />
+          <circle
+             sodipodi:ry="9.4709997"
+             sodipodi:rx="9.4709997"
+             sodipodi:cy="509.79501"
+             sodipodi:cx="167.535"
+             cx="167.535"
+             cy="509.79501"
+             r="9.4709997"
+             id="circle518"
+             style="fill:#fff200"
+             d="m 177.006,509.79501 c 0,5.23069 -4.24031,9.471 -9.471,9.471 -5.23069,0 -9.471,-4.24031 -9.471,-9.471 0,-5.23069 4.24031,-9.471 9.471,-9.471 5.23069,0 9.471,4.24031 9.471,9.471 z" />
+        </g>
+        <g
+           id="g520">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 87.655,544.604 c 21.202,-20.167 7.527,-29.247 -2.831,-1.88 0.73,-29.25 -15.355,-26.001 -3.33,0.672 -20.167,-21.202 -29.247,-7.525 -1.879,2.831 -29.25,-0.73 -26,15.355 0.673,3.329 -21.203,20.168 -7.527,29.247 2.831,1.88 -0.73,29.25 15.355,26.001 3.33,-0.672 20.167,21.201 29.247,7.526 1.879,-2.832 29.25,0.731 26.001,-15.354 -0.673,-3.328 z"
+             id="path522"
+             style="fill:#fff200" />
+          <circle
+             sodipodi:ry="4.5679998"
+             sodipodi:rx="4.5679998"
+             sodipodi:cy="547.08002"
+             sodipodi:cx="83.972"
+             cx="83.972"
+             cy="547.08002"
+             r="4.5679998"
+             id="circle524"
+             style="fill:#f5faf4"
+             d="m 88.54,547.08002 c 0,2.52283 -2.045163,4.568 -4.568,4.568 -2.522837,0 -4.568,-2.04517 -4.568,-4.568 0,-2.52284 2.045163,-4.568 4.568,-4.568 2.522837,0 4.568,2.04516 4.568,4.568 z" />
+        </g>
+        <g
+           id="g526">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 67.943,464.359 c 24.835,-16.909 13.447,-31.71 -9.263,-12.041 5.604,-29.517 -12.913,-31.931 -15.064,-1.964 -16.908,-24.835 -31.709,-13.448 -12.04,9.263 -29.517,-5.604 -31.931,12.914 -1.964,15.064 -24.834,16.908 -13.447,31.71 9.263,12.041 -5.604,29.516 12.914,31.931 15.064,1.964 16.908,24.835 31.71,13.447 12.04,-9.263 29.517,5.605 31.931,-12.913 1.964,-15.064 z"
+             id="path528"
+             style="fill:#ec008c" />
+          <circle
+             sodipodi:ry="13.121"
+             sodipodi:rx="13.121"
+             sodipodi:cy="469.51999"
+             sodipodi:cx="48.777"
+             cx="48.777"
+             cy="469.51999"
+             r="13.121"
+             id="circle530"
+             style="fill:#fff200"
+             d="m 61.898001,469.51999 c 0,7.24653 -5.874472,13.121 -13.121001,13.121 -7.246528,0 -13.121,-5.87447 -13.121,-13.121 0,-7.24653 5.874472,-13.121 13.121,-13.121 7.246529,0 13.121001,5.87447 13.121001,13.121 z" />
+        </g>
+        <g
+           id="g532">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 166.754,539.507 c 18.602,-17.693 6.603,-25.66 -2.484,-1.648 0.642,-25.663 -13.472,-22.813 -2.921,0.59 -17.694,-18.603 -25.66,-6.604 -1.649,2.483 -25.662,-0.641 -22.812,13.472 0.59,2.921 -18.602,17.693 -6.604,25.659 2.483,1.649 -0.641,25.661 13.472,22.811 2.921,-0.59 17.693,18.601 25.659,6.603 1.648,-2.484 25.663,0.641 22.813,-13.471 -0.588,-2.921 z"
+             id="path534"
+             style="fill:#a28bbb" />
+          <circle
+             sodipodi:ry="4.0079999"
+             sodipodi:rx="4.0079999"
+             sodipodi:cy="541.67999"
+             sodipodi:cx="163.521"
+             cx="163.521"
+             cy="541.67999"
+             r="4.0079999"
+             id="circle536"
+             style="fill:#fff200"
+             d="m 167.529,541.67999 c 0,2.21356 -1.79445,4.008 -4.008,4.008 -2.21356,0 -4.008,-1.79444 -4.008,-4.008 0,-2.21355 1.79444,-4.008 4.008,-4.008 2.21355,0 4.008,1.79445 4.008,4.008 z" />
+        </g>
+        <g
+           id="g538">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 233.61,542.795 c 11.313,-3.054 9.01,-9.965 -1.874,-5.621 5.84,-10.16 -0.675,-13.417 -5.3,-2.65 -3.054,-11.313 -9.964,-9.01 -5.621,1.874 -10.16,-5.84 -13.417,0.675 -2.65,5.299 -11.313,3.055 -9.011,9.966 1.873,5.622 -5.84,10.159 0.675,13.417 5.299,2.649 3.055,11.313 9.965,9.011 5.623,-1.873 10.159,5.84 13.417,-0.675 2.65,-5.3 z"
+             id="path540"
+             style="fill:#ec008c" />
+          <circle
+             sodipodi:ry="5.118"
+             sodipodi:rx="5.118"
+             sodipodi:cy="542.24597"
+             sodipodi:cx="225.88699"
+             cx="225.88699"
+             cy="542.24597"
+             r="5.118"
+             id="circle542"
+             style="fill:#fff200"
+             d="m 231.00499,542.24597 c 0,2.8266 -2.2914,5.118 -5.118,5.118 -2.82659,0 -5.118,-2.2914 -5.118,-5.118 0,-2.82659 2.29141,-5.118 5.118,-5.118 2.8266,0 5.118,2.29141 5.118,5.118 z" />
+        </g>
+        <g
+           id="g544">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 272.269,536.777 c 10.111,-2.729 8.052,-8.905 -1.675,-5.023 5.22,-9.079 -0.602,-11.991 -4.736,-2.368 -2.729,-10.11 -8.905,-8.053 -5.023,1.675 -9.079,-5.22 -11.991,0.603 -2.369,4.735 -10.11,2.73 -8.052,8.906 1.674,5.024 -5.219,9.08 0.604,11.991 4.736,2.368 2.729,10.111 8.906,8.053 5.024,-1.674 9.079,5.219 11.992,-0.603 2.369,-4.737 z"
+             id="path546"
+             style="fill:#ec008c" />
+          <circle
+             sodipodi:ry="4.5739999"
+             sodipodi:rx="4.5739999"
+             sodipodi:cy="536.28699"
+             sodipodi:cx="265.367"
+             cx="265.367"
+             cy="536.28699"
+             r="4.5739999"
+             id="circle548"
+             style="fill:#fff200"
+             d="m 269.941,536.28699 c 0,2.52615 -2.04785,4.574 -4.574,4.574 -2.52615,0 -4.574,-2.04785 -4.574,-4.574 0,-2.52615 2.04785,-4.574 4.574,-4.574 2.52615,0 4.574,2.04785 4.574,4.574 z" />
+        </g>
+        <g
+           id="g550">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 242.979,550.395 c 11.942,-11.359 4.238,-16.474 -1.596,-1.059 0.412,-16.477 -8.648,-14.646 -1.875,0.379 -11.359,-11.942 -16.474,-4.24 -1.059,1.595 -16.475,-0.412 -14.645,8.648 0.379,1.875 -11.942,11.359 -4.24,16.473 1.595,1.059 -0.412,16.475 8.648,14.645 1.875,-0.378 11.36,11.94 16.473,4.238 1.059,-1.596 16.475,0.412 14.645,-8.649 -0.378,-1.875 z"
+             id="path552"
+             style="fill:#b0b6dc" />
+          <circle
+             sodipodi:ry="2.573"
+             sodipodi:rx="2.573"
+             sodipodi:cy="551.78998"
+             sodipodi:cx="240.90401"
+             cx="240.90401"
+             cy="551.78998"
+             r="2.573"
+             id="circle554"
+             style="fill:#f26323"
+             d="m 243.47701,551.78998 c 0,1.42103 -1.15197,2.573 -2.573,2.573 -1.42103,0 -2.573,-1.15197 -2.573,-2.573 0,-1.42103 1.15197,-2.573 2.573,-2.573 1.42103,0 2.573,1.15197 2.573,2.573 z" />
+        </g>
+        <g
+           id="g556">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 284.09,539.104 c 8.855,-8.424 3.143,-12.216 -1.183,-0.785 0.306,-12.217 -6.413,-10.859 -1.391,0.281 -8.424,-8.856 -12.216,-3.144 -0.786,1.183 -12.216,-0.306 -10.859,6.412 0.282,1.391 -8.857,8.423 -3.144,12.216 1.182,0.785 -0.306,12.216 6.413,10.859 1.391,-0.281 8.423,8.855 12.215,3.144 0.785,-1.184 12.217,0.306 10.86,-6.413 -0.28,-1.39 z"
+             id="path558"
+             style="fill:#a28bbb" />
+          <circle
+             sodipodi:ry="1.908"
+             sodipodi:rx="1.908"
+             sodipodi:cy="540.138"
+             sodipodi:cx="282.55099"
+             cx="282.55099"
+             cy="540.138"
+             r="1.908"
+             id="circle560"
+             style="fill:#fff200"
+             d="m 284.45899,540.138 c 0,1.05376 -0.85424,1.908 -1.908,1.908 -1.05375,0 -1.908,-0.85424 -1.908,-1.908 0,-1.05376 0.85425,-1.908 1.908,-1.908 1.05376,0 1.908,0.85424 1.908,1.908 z" />
+        </g>
+        <g
+           id="g562">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 270.653,551.035 c 8.232,-7.831 2.922,-11.356 -1.099,-0.73 0.284,-11.357 -5.963,-10.096 -1.293,0.262 -7.831,-8.233 -11.355,-2.923 -0.73,1.099 -11.356,-0.283 -10.095,5.962 0.261,1.293 -8.232,7.831 -2.922,11.355 1.1,0.73 -0.283,11.355 5.962,10.094 1.293,-0.262 7.83,8.231 11.354,2.921 0.729,-1.1 11.357,0.283 10.096,-5.962 -0.261,-1.292 z"
+             id="path564"
+             style="fill:#f9a01b" />
+          <circle
+             sodipodi:ry="1.774"
+             sodipodi:rx="1.774"
+             sodipodi:cy="551.99597"
+             sodipodi:cx="269.22198"
+             cx="269.22198"
+             cy="551.99597"
+             r="1.774"
+             id="circle566"
+             style="fill:#662d91"
+             d="m 270.99598,551.99597 c 0,0.97975 -0.79424,1.774 -1.774,1.774 -0.97975,0 -1.774,-0.79425 -1.774,-1.774 0,-0.97975 0.79425,-1.774 1.774,-1.774 0.97976,0 1.774,0.79425 1.774,1.774 z" />
+        </g>
+        <g
+           id="g568">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 217.032,530.307 c 13.397,-6.188 9.075,-14.279 -3.517,-6.582 5.098,-13.85 -3.68,-16.514 -7.14,-2.168 -6.188,-13.396 -14.279,-9.074 -6.582,3.518 -13.85,-5.099 -16.514,3.681 -2.167,7.14 -13.398,6.188 -9.075,14.279 3.516,6.582 -5.098,13.85 3.68,16.514 7.141,2.168 6.188,13.396 14.278,9.075 6.582,-3.518 13.849,5.098 16.513,-3.68 2.167,-7.14 z"
+             id="path570"
+             style="fill:#662d91" />
+          <circle
+             sodipodi:ry="6.4450002"
+             sodipodi:rx="6.4450002"
+             sodipodi:cy="531.26001"
+             sodipodi:cx="207.33"
+             cx="207.33"
+             cy="531.26001"
+             r="6.4450002"
+             id="circle572"
+             style="fill:#fff200"
+             d="m 213.775,531.26001 c 0,3.55948 -2.88552,6.445 -6.445,6.445 -3.55947,0 -6.445,-2.88552 -6.445,-6.445 0,-3.55948 2.88553,-6.445 6.445,-6.445 3.55948,0 6.445,2.88552 6.445,6.445 z" />
+        </g>
+        <g
+           id="g574">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 181.392,544.351 c 10.111,-2.729 8.052,-8.905 -1.675,-5.023 5.22,-9.08 -0.603,-11.991 -4.736,-2.368 -2.729,-10.111 -8.905,-8.053 -5.023,1.674 -9.079,-5.219 -11.991,0.604 -2.369,4.736 -10.11,2.73 -8.052,8.905 1.675,5.023 -5.22,9.08 0.603,11.992 4.736,2.368 2.729,10.111 8.906,8.054 5.024,-1.674 9.079,5.219 11.991,-0.603 2.368,-4.736 z"
+             id="path576"
+             style="fill:#f26422" />
+          <circle
+             sodipodi:ry="4.5739999"
+             sodipodi:rx="4.5739999"
+             sodipodi:cy="543.85999"
+             sodipodi:cx="174.491"
+             cx="174.491"
+             cy="543.85999"
+             r="4.5739999"
+             id="circle578"
+             style="fill:#fff200"
+             d="m 179.065,543.85999 c 0,2.52615 -2.04785,4.574 -4.574,4.574 -2.52615,0 -4.574,-2.04785 -4.574,-4.574 0,-2.52616 2.04785,-4.574 4.574,-4.574 2.52615,0 4.574,2.04784 4.574,4.574 z" />
+        </g>
+        <g
+           id="g580">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 196.281,552.324 c 21.099,-4.635 15.931,-15.597 -1.071,-2.269 11.641,-18.196 0.239,-22.291 -2.359,-0.848 -4.635,-21.1 -15.596,-15.933 -2.269,1.069 -18.196,-11.64 -22.291,-0.239 -0.847,2.359 -21.1,4.635 -15.932,15.597 1.069,2.271 -11.64,18.194 -0.238,22.29 2.36,0.848 4.635,21.098 15.596,15.931 2.269,-1.071 18.194,11.641 22.291,0.24 0.848,-2.359 z"
+             id="path582"
+             style="fill:#9669a4" />
+          <circle
+             sodipodi:ry="3.3729999"
+             sodipodi:rx="3.3729999"
+             sodipodi:cy="552.48102"
+             sodipodi:cx="193.007"
+             cx="193.007"
+             cy="552.48102"
+             r="3.3729999"
+             id="circle584"
+             style="fill:#fff200"
+             d="m 196.38,552.48102 c 0,1.86285 -1.51014,3.373 -3.373,3.373 -1.86285,0 -3.373,-1.51015 -3.373,-3.373 0,-1.86286 1.51015,-3.373 3.373,-3.373 1.86286,0 3.373,1.51014 3.373,3.373 z" />
+        </g>
+      </g>
+      <g
+         transform="matrix(0.84040097,0,0,1.1770841,152.57643,29.382376)"
+         id="butterfly">
+        <g
+           id="g587">
+          <g
+             id="g589">
+            <ellipse
+               sodipodi:ry="35.035999"
+               sodipodi:rx="18.864"
+               sodipodi:cy="273.24799"
+               sodipodi:cx="433.06201"
+               cx="433.06201"
+               cy="273.24799"
+               rx="18.864"
+               ry="35.035999"
+               transform="matrix(0.5119,-0.8591,0.8591,0.5119,-23.3488,505.403)"
+               id="ellipse591"
+               style="fill:#662d91"
+               d="m 451.92601,273.24799 c 0,19.34984 -8.4457,35.036 -18.864,35.036 -10.4183,0 -18.864,-15.68616 -18.864,-35.036 0,-19.34985 8.4457,-35.036 18.864,-35.036 10.4183,0 18.864,15.68615 18.864,35.036 z" />
+            <ellipse
+               sodipodi:ry="25.48"
+               sodipodi:rx="13.72"
+               sodipodi:cy="270.48901"
+               sodipodi:cx="428.431"
+               cx="428.431"
+               cy="270.48901"
+               rx="13.72"
+               ry="25.48"
+               transform="matrix(0.5119,-0.859,0.859,0.5119,-23.2472,500.063)"
+               id="ellipse593"
+               style="fill:#fff200"
+               d="m 442.151,270.48901 c 0,14.07222 -6.14265,25.48 -13.72,25.48 -7.57735,0 -13.72,-11.40778 -13.72,-25.48 0,-14.07221 6.14265,-25.48 13.72,-25.48 7.57735,0 13.72,11.40779 13.72,25.48 z" />
+            <ellipse
+               sodipodi:ry="17.291"
+               sodipodi:rx="9.3109999"
+               sodipodi:cy="268.78699"
+               sodipodi:cx="425.57501"
+               cx="425.57501"
+               cy="268.78699"
+               rx="9.3109999"
+               ry="17.291"
+               transform="matrix(0.5119,-0.8591,0.8591,0.5119,-23.1733,496.79)"
+               id="ellipse595"
+               style="fill:#ec008c"
+               d="m 434.88601,268.78699 c 0,9.54955 -4.16867,17.291 -9.311,17.291 -5.14232,0 -9.311,-7.74145 -9.311,-17.291 0,-9.54956 4.16868,-17.291 9.311,-17.291 5.14233,0 9.311,7.74144 9.311,17.291 z" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 449.011,303.369 c 2.293,11.659 9.149,19.782 15.315,18.146 6.166,-1.636 9.309,-12.415 7.016,-24.073 -2.292,-11.658 -9.149,-19.783 -15.315,-18.145 -6.167,1.635 -9.307,12.414 -7.016,24.072 z"
+               id="path597"
+               style="fill:#662d91" />
+          </g>
+          <g
+             id="g599">
+            <ellipse
+               sodipodi:ry="35.035999"
+               sodipodi:rx="18.865"
+               sodipodi:cy="251.839"
+               sodipodi:cx="462.41699"
+               cx="462.41699"
+               cy="251.839"
+               rx="18.865"
+               ry="35.035999"
+               transform="matrix(-0.9744,0.2248,-0.2248,-0.9744,969.617,393.266)"
+               id="ellipse601"
+               style="fill:#662d91"
+               d="m 481.28199,251.839 c 0,19.34985 -8.44615,35.036 -18.865,35.036 -10.41885,0 -18.865,-15.68615 -18.865,-35.036 0,-19.34984 8.44615,-35.03599 18.865,-35.03599 10.41885,0 18.865,15.68615 18.865,35.03599 z" />
+            <ellipse
+               sodipodi:ry="25.479"
+               sodipodi:rx="13.72"
+               sodipodi:cy="246.588"
+               sodipodi:cx="461.20599"
+               cx="461.20599"
+               cy="246.588"
+               rx="13.72"
+               ry="25.479"
+               transform="matrix(-0.9744,0.2248,-0.2248,-0.9744,966.039,383.188)"
+               id="ellipse603"
+               style="fill:#fff200"
+               d="m 474.92599,246.588 c 0,14.07166 -6.14265,25.479 -13.72,25.479 -7.57734,0 -13.72,-11.40734 -13.72,-25.479 0,-14.07167 6.14266,-25.479 13.72,-25.479 7.57735,0 13.72,11.40733 13.72,25.479 z" />
+            <ellipse
+               sodipodi:ry="17.290001"
+               sodipodi:rx="9.3100004"
+               sodipodi:cy="243.347"
+               sodipodi:cx="460.45801"
+               cx="460.45801"
+               cy="243.347"
+               rx="9.3100004"
+               ry="17.290001"
+               transform="matrix(-0.9744,0.2248,-0.2248,-0.9744,963.838,376.949)"
+               id="ellipse605"
+               style="fill:#ec008c"
+               d="m 469.76801,243.347 c 0,9.549 -4.16823,17.29 -9.31,17.29 -5.14177,0 -9.31,-7.741 -9.31,-17.29 0,-9.549 4.16823,-17.29 9.31,-17.29 5.14177,0 9.31,7.741 9.31,17.29 z" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 486.224,276.231 c 10.4,5.746 16.039,14.758 12.597,20.13 -3.444,5.37 -14.665,5.066 -25.065,-0.68 -10.4,-5.744 -16.04,-14.756 -12.598,-20.126 3.443,-5.371 14.666,-5.069 25.066,0.676 z"
+               id="path607"
+               style="fill:#662d91" />
+          </g>
+        </g>
+        <ellipse
+           sodipodi:ry="43.363998"
+           sodipodi:rx="2.9400001"
+           sodipodi:cy="280.492"
+           sodipodi:cx="460.82901"
+           cx="460.82901"
+           cy="280.492"
+           rx="2.9400001"
+           ry="43.363998"
+           transform="matrix(0.8079,-0.5893,0.5893,0.8079,-76.7742,325.456)"
+           id="ellipse609"
+           style="fill:#662d91"
+           d="m 463.76901,280.492 c 0,23.94928 -1.31628,43.364 -2.94,43.364 -1.62372,0 -2.94,-19.41472 -2.94,-43.364 0,-23.94927 1.31628,-43.36399 2.94,-43.36399 1.62372,0 2.94,19.41472 2.94,43.36399 z" />
+      </g>
+      <g
+         transform="matrix(1.9737243,0,0,2.7033588,-268.2179,-1447.3885)"
+         id="g4672"
+         style="fill:none;stroke:#000000;stroke-width:0.4736287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline">
+        <path
+           inkscape:connector-curvature="0"
+           d="m 245.05654,559.24359 -19.35158,0"
+           id="path4668"
+           style="fill:none;stroke:#000000;stroke-width:0.4736287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 218.23735,5.4448246 8.07775,4.6636894 8.07774,4.66369 -8.07774,4.66369 -8.07775,4.66369 0,-9.327379 z"
+           transform="matrix(0.62461526,0,0,0.44051261,79.865589,552.73625)"
+           id="path4670"
+           style="color:#000000;fill:none;stroke:#000000;stroke-width:0.9029268;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      </g>
+      <g
+         transform="matrix(0.26913477,-0.00266722,0.00166511,0.43111084,4.2972517,2.6346992)"
+         id="g12254"
+         style="display:inline">
+        <g
+           transform="translate(7.6014394,0.04706934)"
+           id="g3692-6"
+           style="fill:#000000;stroke:#000000;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 87.734225,65.433946 c -39.382092,0 -71.347827,31.965729 -71.347854,71.347864 0,39.3821 31.965755,71.34788 71.347854,71.34786 39.382075,0 71.347815,-31.96579 71.347845,-71.34786 0,-39.382105 -31.96576,-71.347891 -71.347845,-71.347864 z"
+             id="path8808-2-3-4"
+             style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:30.14801025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 208.28125,111.5 c -11.22916,0.14022 -27.86406,1.78473 -36.71875,9.5625 -14.1675,12.44444 -13.21875,28.15625 -13.21875,28.15625 0,0 4.20526,26.42885 27.5625,29.875 23.35724,3.44615 42.125,-7.09375 42.125,-7.09375 l -9.5625,-21.625 c 0,0 -20.12351,7.6376 -26.25,4 -6.12648,-3.6376 -8.6103,-10.90513 -4.78125,-15.5 3.82906,-4.59486 13.04013,-8.59449 24.71875,-5.53125 L 219.8125,111.875 c 0,0 -4.79376,-0.45913 -11.53125,-0.375 z m 54.59375,10.71875 c -16.27502,0 -29.46875,13.22498 -29.46875,29.5 0,16.27502 13.19374,29.46875 29.46875,29.46875 16.27502,0 29.5,-13.19373 29.5,-29.46875 0,-16.27502 -13.22498,-29.5 -29.5,-29.5 z m 302.0625,1.40625 c -1.22762,0.0445 -2.6007,0.18889 -4.15625,0.5 -12.44443,2.48889 -11.47987,18.39141 -13.96875,31.21875 -2.48889,12.82733 -18.96875,8.21875 -18.96875,8.21875 l 0,15.90625 c 0,0 14.75493,2.49358 26.625,-3.25 11.87007,-5.74358 5.5499,-22.97479 9.1875,-30.25 3.63761,-7.27521 9.1875,-2.5 9.1875,-2.5 l 1.71875,-14.75 c 0,0 -1.03169
 ,-5.40523 -9.625,-5.09375 z m -157.15625,0.1875 c -0.77654,-0.005 -1.58273,0.005 -2.375,0.0312 C 394.84268,124.18965 383.3125,127 383.3125,127 l 9.1875,52.65625 15.3125,-0.375 -2.09375,-16.65625 c 0,0 5.72047,0.19764 14.71875,-9.375 8.99828,-9.57264 7.84561,-19.16625 0.1875,-26.25 -2.51282,-2.32437 -7.40797,-3.1543 -12.84375,-3.1875 z m 89.4375,0.125 -6.125,55.53125 22.40625,0 6.6875,-53.40625 -22.96875,-2.125 z m -144.15625,0.1875 -17.25,18.96875 -18.375,-17.21875 -19.71875,49.375 18.96875,6.3125 9.5625,-21.25 12.0625,11.3125 9,-11.6875 11.875,18.375 18,-6.3125 -24.125,-47.875 z m 92.65625,0.40625 -12.0625,48.625 16.09375,4.78125 4.59375,-17.625 c 9.76409,1.53162 9.1875,19.15625 9.1875,19.15625 l 17.03125,-0.375 -6.3125,-21.25 c 9.95555,-3.6376 10.34375,-8.625 10.34375,-8.625 0,0 2.4868,-10.72517 -7.46875,-16.46875 -9.95554,-5.74358 -31.40625,-8.21875 -31.40625,-8.21875 z M 402.0625,136 c 2.69691,-0.0806 8.16845,0.47817 8.8125,4.5 0.85872,5.36242 -7.74997,6.21878 -7.75,6.21
 875 l -2.59375,-10.53125 c 0,-0.0536 0.63228,-0.16055 1.53125,-0.1875 z m 56.28125,1.9375 c 4.59487,0.38291 10.72703,4.76864 8.8125,8.40625 -1.91453,3.6376 -11.09375,1.15625 -11.09375,1.15625 l 2.28125,-9.5625 z M 262.875,141.75 c 5.49546,0 9.96875,4.47329 9.96875,9.96875 0,5.49546 -4.47329,9.9375 -9.96875,9.9375 -5.49546,0 -9.9375,-4.44204 -9.9375,-9.9375 0,-5.49546 4.44204,-9.96875 9.9375,-9.96875 z"
+             id="path8816-8-1-7"
+             style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:31.65541077;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+        </g>
+        <g
+           transform="translate(7.6014394,100.04702)"
+           id="g3692">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 87.734225,-34.387985 c -39.283803,0 -71.169758,31.8859513 -71.169785,71.169787 0,39.283809 31.885975,71.169818 71.169785,71.169798 39.283785,0 71.169745,-31.886016 71.169775,-71.169798 0,-39.2838087 -31.88598,-71.169814 -71.169775,-71.169787 z"
+             id="path8808-2-3"
+             style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:22.8933773;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 208.28125,11.5 c -11.22916,0.14022 -27.86406,1.78473 -36.71875,9.5625 -14.1675,12.44444 -13.21875,28.15625 -13.21875,28.15625 0,0 4.20526,26.42885 27.5625,29.875 C 209.26349,82.5399 228.03125,72 228.03125,72 l -9.5625,-21.625 c 0,0 -20.12351,7.6376 -26.25,4 -6.12648,-3.6376 -8.6103,-10.90513 -4.78125,-15.5 3.82906,-4.59486 13.04013,-8.59449 24.71875,-5.53125 L 219.8125,11.875 c 0,0 -4.79376,-0.45913 -11.53125,-0.375 z M 262.875,22.21875 c -16.27502,0 -29.46875,13.22498 -29.46875,29.5 0,16.27502 13.19374,29.46875 29.46875,29.46875 16.27502,0 29.5,-13.19373 29.5,-29.46875 0,-16.27502 -13.22498,-29.5 -29.5,-29.5 z M 564.9375,23.625 c -1.22762,0.0445 -2.6007,0.18889 -4.15625,0.5 -12.44443,2.48889 -11.47987,18.39141 -13.96875,31.21875 -2.48889,12.82733 -18.96875,8.21875 -18.96875,8.21875 l 0,15.90625 c 0,0 14.75493,2.49358 26.625,-3.25 11.87007,-5.74358 5.5499,-22.97479 9.1875,-30.25 3.63761,-7.27521 9.1875,-2.5 9.1875,-2.5 l 1.71875,-14.75 c 0,0 -1.03169,-5.405
 23 -9.625,-5.09375 z m -157.15625,0.1875 c -0.77654,-0.005 -1.58273,0.005 -2.375,0.0312 C 394.84268,24.18965 383.3125,27 383.3125,27 l 9.1875,52.65625 15.3125,-0.375 -2.09375,-16.65625 c 0,0 5.72047,0.19764 14.71875,-9.375 8.99828,-9.57264 7.84561,-19.16625 0.1875,-26.25 -2.51282,-2.32437 -7.40797,-3.1543 -12.84375,-3.1875 z m 89.4375,0.125 -6.125,55.53125 22.40625,0 6.6875,-53.40625 -22.96875,-2.125 z M 353.0625,24.125 335.8125,43.09375 317.4375,25.875 297.71875,75.25 l 18.96875,6.3125 9.5625,-21.25 12.0625,11.3125 9,-11.6875 11.875,18.375 18,-6.3125 -24.125,-47.875 z m 92.65625,0.40625 -12.0625,48.625 16.09375,4.78125 4.59375,-17.625 c 9.76409,1.53162 9.1875,19.15625 9.1875,19.15625 l 17.03125,-0.375 -6.3125,-21.25 c 9.95555,-3.6376 10.34375,-8.625 10.34375,-8.625 0,0 2.4868,-10.72517 -7.46875,-16.46875 -9.95554,-5.74358 -31.40625,-8.21875 -31.40625,-8.21875 z M 402.0625,36 c 2.69691,-0.0806 8.16845,0.47817 8.8125,4.5 0.85872,5.36242 -7.74997,6.21878 -7.75,6.21875 L 400.53
 125,36.1875 c 0,-0.0536 0.63228,-0.16055 1.53125,-0.1875 z m 56.28125,1.9375 c 4.59487,0.38291 10.72703,4.76864 8.8125,8.40625 C 465.24172,49.98135 456.0625,47.5 456.0625,47.5 l 2.28125,-9.5625 z M 262.875,41.75 c 5.49546,0 9.96875,4.47329 9.96875,9.96875 0,5.49546 -4.47329,9.9375 -9.96875,9.9375 -5.49546,0 -9.9375,-4.44204 -9.9375,-9.9375 0,-5.49546 4.44204,-9.96875 9.9375,-9.96875 z"
+             id="path8816-8-1"
+             style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+        </g>
+        <g
+           transform="matrix(0.90837487,0,0,0.90837487,-3.4003122,47.509893)"
+           id="g16242">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 108.69519,20.60953 c -42.898655,0 -77.71872,34.82006 -77.71875,77.71875 0,42.89865 34.820087,77.71877 77.71875,77.71874 42.89865,0 77.71872,-34.82012 77.71875,-77.71874 0,-42.89866 -34.82009,-77.71878 -77.71875,-77.71875 z m 0,17.71875 c 33.12967,0 60.03125,26.87034 60.03125,60 3e-5,33.12966 -26.90158,60.03124 -60.03125,60.03124 -33.129629,0 -60,-26.90158 -60,-60.03124 3e-5,-33.12966 26.870369,-60 60,-60 z m -1.875,15 c -20.390579,0 -40.78125,24.63098 -40.78125,45.40625 0,20.77528 11.921098,44.62499 43.46875,44.62499 31.54765,0 46.16741,-16.55852 40.78125,-55.03124 l -38.875,12.31249 7.3125,7.6875 4.625,-1.125 c 0,0 7.6981,9.61734 -3.84375,11.15625 -11.54181,1.53891 -21.929837,-1.56786 -23.46875,-16.1875 -1.538913,-14.61964 10.00331,-24.98965 23.46875,-19.21874 l 19.625,-18.09375 c 0,0 -11.92195,-11.53125 -32.3125,-11.53125 z"
+             id="path8808-2"
+             style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:10.62992096;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 108.70384,20.624589 c -42.898655,0 -77.714941,34.816257 -77.714971,77.714941 0,42.89865 34.816318,77.71497 77.714981,77.71494 42.89865,0 77.71494,-34.81632 77.71497,-77.71494 0,-42.898656 -34.81632,-77.714973 -77.71498,-77.714941 z m 0,17.697466 c 33.12967,0 60.01751,26.887813 60.01751,60.017475 3e-5,33.12966 -26.88784,60.0175 -60.01751,60.0175 -33.129629,0 -60.017504,-26.88784 -60.017504,-60.0175 3e-5,-33.12966 26.887873,-60.017474 60.017504,-60.017475 z"
+             id="path8808"
+             style="fill:#fde445;fill-opacity:1;stroke:#beac34;stroke-width:6.00979376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 139.12682,64.868225 c 0,0 -11.92655,-11.541816 -32.3171,-11.541815 -20.390583,0 -40.781162,24.62257 -40.781162,45.39784 0,20.77528 11.92659,44.6284 43.474242,44.6284 31.54765,0 46.16729,-16.5433 40.78113,-55.01602 l -38.85751,12.31126 7.30983,7.69454 4.61673,-1.15417 c 0,0 7.69457,9.61819 -3.84728,11.1571 -11.54181,1.53891 -21.92946,-1.53891 -23.468373,-16.15855 C 94.498414,87.56717 106.04026,77.17953 119.5057,82.95044 l 19.62112,-18.082215 z"
+             id="path8810"
+             style="fill:#757ab7;fill-opacity:1;fill-rule:evenodd;stroke:#585c8a;stroke-width:4.54017973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+          <path
+             inkscape:connector-curvature="0"
+             d="M 88.285538,65.635783 C 77.930405,73.63459 70.225469,87.06174 70.22547,99.10253 c 0,18.57602 10.651107,39.88622 38.85911,39.88622 15.49691,0 26.45013,-4.48079 32.35405,-14.2084 -6.0137,3.71225 -13.90045,5.47794 -23.62362,5.47794 -28.208002,0 -38.859082,-21.3102 -38.859082,-39.88619 0,-8.32652 3.645291,-17.32008 9.32961,-24.736317 z"
+             id="path8812"
+             style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 116.32318,31.837136 c -2.23381,0.657985 17.54529,3.258097 22.39998,7.658111 19.47063,7.750989 33.13582,36.741813 34.74868,49.107643 2.32185,-31.606806 -25.65415,-59.298108 -57.14866,-56.765754 z M 38.723411,96.39107 C 34.948177,138.21889 74.286243,174.03778 115.97461,169.2045 75.991643,166.9188 41.401913,135.04761 38.819138,95.14662 l -0.09573,1.24445 z"
+             id="path8832"
+             style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;display:inline" />
+        </g>
+        <g
+           id="g16231">
+          <path
+             inkscape:connector-curvature="0"
+             d="m 215.88269,111.54702 c -11.22916,0.14022 -27.86406,1.78473 -36.71875,9.5625 -14.1675,12.44444 -13.21875,28.15625 -13.21875,28.15625 0,0 4.20526,26.42885 27.5625,29.875 23.35724,3.44615 42.125,-7.09375 42.125,-7.09375 l -9.5625,-21.625 c 0,0 -20.12351,7.6376 -26.25,4 -6.12648,-3.6376 -8.6103,-10.90513 -4.78125,-15.5 3.82906,-4.59486 13.04013,-8.59449 24.71875,-5.53125 l 7.65625,-21.46875 c 0,0 -4.79376,-0.45913 -11.53125,-0.375 z m 54.59375,10.71875 c -16.27502,0 -29.46875,13.22498 -29.46875,29.5 0,16.27502 13.19374,29.46875 29.46875,29.46875 16.27502,0 29.5,-13.19373 29.5,-29.46875 0,-16.27502 -13.22498,-29.5 -29.5,-29.5 z m 302.0625,1.40625 c -1.22762,0.0445 -2.6007,0.18889 -4.15625,0.5 -12.44443,2.48889 -11.47987,18.39141 -13.96875,31.21875 -2.48889,12.82733 -18.96875,8.21875 -18.96875,8.21875 l 0,15.90625 c 0,0 14.75493,2.49358 26.625,-3.25 11.87007,-5.74358 5.5499,-22.97479 9.1875,-30.25 3.63761,-7.27521 9.1875,-2.5 9.1875,-2.5 l 1.71875,-14.75 c 0,0 -1.
 03169,-5.40523 -9.625,-5.09375 z m -157.15625,0.1875 c -0.77654,-0.005 -1.58273,0.005 -2.375,0.0312 -10.56357,0.34595 -22.09375,3.1563 -22.09375,3.1563 l 9.1875,52.65625 15.3125,-0.375 -2.09375,-16.65625 c 0,0 5.72047,0.19764 14.71875,-9.375 8.99828,-9.57264 7.84561,-19.16625 0.1875,-26.25 -2.51282,-2.32437 -7.40797,-3.1543 -12.84375,-3.1875 z m 89.4375,0.125 -6.125,55.53125 22.40625,0 6.6875,-53.40625 -22.96875,-2.125 z m -144.15625,0.1875 -17.25,18.96875 -18.375,-17.21875 -19.71875,49.375 18.96875,6.3125 9.5625,-21.25 12.0625,11.3125 9,-11.6875 11.875,18.375 18,-6.3125 -24.125,-47.875 z m 92.65625,0.40625 -12.0625,48.625 16.09375,4.78125 4.59375,-17.625 c 9.76409,1.53162 9.1875,19.15625 9.1875,19.15625 l 17.03125,-0.375 -6.3125,-21.25 c 9.95555,-3.6376 10.34375,-8.625 10.34375,-8.625 0,0 2.4868,-10.72517 -7.46875,-16.46875 -9.95554,-5.74358 -31.40625,-8.21875 -31.40625,-8.21875 z m -43.65625,11.46875 c 2.69691,-0.0806 8.16845,0.47817 8.8125,4.5 0.85872,5.36242 -7.74997,6.2
 1878 -7.75,6.21875 l -2.59375,-10.53125 c 0,-0.0536 0.63228,-0.16055 1.53125,-0.1875 z m 56.28125,1.9375 c 4.59487,0.38291 10.72703,4.76864 8.8125,8.40625 -1.91453,3.6376 -11.09375,1.15625 -11.09375,1.15625 l 2.28125,-9.5625 z m -195.46875,3.8125 c 5.49546,0 9.96875,4.47329 9.96875,9.96875 0,5.49546 -4.47329,9.9375 -9.96875,9.9375 -5.49546,0 -9.9375,-4.44204 -9.9375,-9.9375 0,-5.49546 4.44204,-9.96875 9.9375,-9.96875 z"
+             id="path8816-8"
+             style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10.62992096;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 219.74646,133.37538 7.65812,-21.44271 c 0,0 -34.0786,-3.2547 -48.24611,9.18973 -14.1675,12.44444 -13.21024,28.14356 -13.21024,28.14356 0,0 4.21196,26.42049 27.5692,29.86664 23.35724,3.44615 42.11962,-7.08376 42.11962,-7.08376 l -9.57264,-21.63416 c 0,0 -20.10255,7.65811 -26.22904,4.02051 -6.12648,-3.6376 -8.61537,-10.91281 -4.78632,-15.50768 3.82906,-4.59486 13.01879,-8.61537 24.69741,-5.55213 z"
+             id="path8816"
+             style="fill:#fde445;fill-opacity:1;fill-rule:evenodd;stroke:#beac34;stroke-width:4.54017973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 270.48145,122.27112 c -16.27502,0 -29.48373,13.20871 -29.48373,29.48373 0,16.27502 13.20872,29.48373 29.48373,29.48373 16.27502,0 29.48373,-13.20871 29.48373,-29.48373 0,-16.27502 -13.20871,-29.48373 -29.48373,-29.48373 z m 0,19.52818 c 5.49546,0 9.95555,4.46009 9.95555,9.95555 0,5.49546 -4.46009,9.95554 -9.95555,9.95554 -5.49546,0 -9.95554,-4.46008 -9.95554,-9.95554 0,-5.49546 4.46008,-9.95555 9.95554,-9.95555 z"
+             id="path8818"
+             style="fill:#47ac50;fill-opacity:1;stroke:#35823c;stroke-width:4.54017973;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 305.32586,175.30354 19.71964,-49.39482 18.37947,17.23075 17.23075,-18.95382 24.12305,47.86319 -17.99656,6.31794 -11.87008,-18.37946 -8.99828,11.67862 -12.06152,-11.29572 -9.57264,21.25126 -18.95383,-6.31794 z"
+             id="path8820"
+             style="fill:#c73938;fill-opacity:1;fill-rule:evenodd;stroke:#962b2a;stroke-width:4.54017973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 413.01805,123.89847 c -10.56357,0.3459 -22.11279,3.15897 -22.11279,3.15897 l 9.18973,52.64951 15.31622,-0.3829 -2.10598,-16.6564 c 0,0 5.74359,0.19146 14.74187,-9.38118 8.99828,-9.57264 7.84956,-19.14528 0.19145,-26.22903 -2.87179,-2.65642 -8.88237,-3.36651 -15.2205,-3.15897 z m -3.35042,12.15725 c 2.69691,-0.0806 8.16278,0.47731 8.80683,4.49914 0.85872,5.36242 -7.75381,6.22224 -7.75384,6.22221 l -2.58461,-10.5299 c 0,-0.0536 0.63265,-0.1645 1.53162,-0.19145 z"
+             id="path8822"
+             style="fill:#757ab7;fill-opacity:1;fill-rule:evenodd;stroke:#585c8a;stroke-width:4.54017973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 453.31886,124.56855 -12.06152,48.62901 16.08203,4.78632 4.59487,-17.61366 c 9.76409,1.53162 9.18973,19.14528 9.18973,19.14528 l 17.0393,-0.38291 -6.31794,-21.25126 c 9.95555,-3.6376 10.33845,-8.61537 10.33845,-8.61537 0,0 2.48889,-10.72136 -7.46666,-16.46494 -9.95554,-5.74358 -31.39826,-8.23247 -31.39826,-8.23247 z m 12.63589,13.40169 c 4.59487,0.38291 10.72136,4.78632 8.80683,8.42393 -1.91453,3.6376 -11.10426,1.14871 -11.10426,1.14871 l 2.29743,-9.57264 z"
+             id="path8824"
+             style="fill:#fde445;fill-opacity:1;fill-rule:evenodd;stroke:#beac34;stroke-width:4.54017973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 504.81966,123.99419 22.97434,2.10598 -6.70085,53.41533 -22.39997,0 6.12648,-55.52131 z"
+             id="path8826"
+             style="fill:#47ac50;fill-opacity:1;fill-rule:evenodd;stroke:#35823c;stroke-width:4.54017973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 535.45211,163.62492 c 0,0 16.46494,4.59486 18.95383,-8.23247 2.48888,-12.82734 1.53162,-28.71792 13.97605,-31.20681 12.44443,-2.48888 13.7846,4.59487 13.7846,4.59487 l -1.72307,14.74186 c 0,0 -5.55213,-4.78632 -9.18974,2.48889 -3.6376,7.27521 2.68034,24.50596 -9.18973,30.24954 -11.87007,5.74358 -26.61194,3.2547 -26.61194,3.2547 l 0,-15.89058 z"
+             id="path8828"
+             style="fill:#c73938;fill-opacity:1;fill-rule:evenodd;stroke:#962b2a;stroke-width:4.54017973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 181.66554,123.81368 c -0.71071,0.49658 -0.75411,0.47695 -1.38924,1.03482 -14.16751,12.44444 -10.35357,24.29325 -10.35357,24.29325 0,0 1.47949,23.067 24.83673,26.51315 23.35724,3.44615 35.53685,-5.34491 35.53685,-5.34491 l -1.47467,-4.82268 c -7.70318,2.58357 -14.30879,7.95497 -27.6461,5.98718 -23.35724,-3.44615 -27.5692,-29.86664 -27.5692,-29.86664 0,0 -0.1293,-6.87049 8.0592,-17.79417 z m 325.8866,3.90661 -5.13286,48.69012 15.56878,-1.24202 0.0879,-4.30463 -11.72463,0.99363 2.93358,-44.18375 -1.73273,0.0466 z m -51.87341,0.94697 -10.32268,41.92204 9.62346,3.17168 0.53013,-4.47001 -5.35217,-0.89486 7.34729,-39.36414 c -3.13784,-0.50072 -1.82603,-0.36471 -1.82603,-0.36471 z m 115.90646,-1.90181 c -12.1517,3.3892 -10.71391,11.83417 -13.08054,24.03149 2.67106,1.39889 4.50453,-7.83961 5.52606,-11.59625 1.51263,-7.79593 4.80553,-6.07255 7.55448,-12.43524 z m -172.09305,2.1708 c -5.00947,0.83393 -3.86716,1.97147 -3.86716,1.97147 l 7.20249,44.94895 8.73346,0.61072
  -0.33625,-4.3616 -3.47158,-0.057 -8.26096,-43.11259 z m -73.3288,2.18899 -15.12413,41.44582 11.25323,4.20648 2.65427,-7.03949 -7.24301,-1.96841 10.07121,-34.97585 -1.61157,-1.66855 z m -71.59306,0.91061 c -7.74404,5.31501 -9.97067,9.99617 -9.97067,20.09161 0,16.27502 12.33929,24.14299 28.61431,24.14299 10.09544,0 13.53456,-3.34445 18.84956,-11.08848 -4.74021,3.25338 -7.99275,6.78386 -14.17233,6.78386 -16.27501,0 -28.73851,-8.8616 -28.73851,-25.13662 0,-6.17957 2.16426,-10.05314 5.41764,-14.79336 z m 175.55431,13.35376 c -5.80111,4.48281 -10.52748,6.39066 -10.52748,6.39066 l 0.97546,3.86781 c 1.92292,-1.36097 2.65411,-2.22809 5.11466,-4.84569 0.84359,-0.89744 3.76914,-4.5174 4.43736,-5.41278 z m -69.08597,11.53446 -2.50402,2.81724 10.23485,14.02996 11.04119,-3.83389 -2.10598,-3.83935 -7.11463,3.12019 -9.55141,-12.29415 z m -12.68254,5.69145 -2.75548,3.46915 -10.08698,-9.30056 12.84246,5.83141 z m 118.60323,-4.64633 3.70726,4.40341 c 4.61276,5.39208 3.68668,13.4168 3.68668,13
 .4168 l 8.8419,0.48653 -0.71129,-4.11317 -4.81961,-0.18104 c 0,0 -0.94085,-12.48079 -10.70494,-14.01241 z m 72.34309,17.94442 c 0,0 7.6623,3.1099 19.53238,-2.63368 3.32303,-1.60793 5.47671,-2.5311 6.56634,-5.46912 -11.61534,4.96638 -19.98253,3.59643 -19.98253,3.59643 l -7.10982,-1.27535 0.99363,5.78172 z"
+             id="path8830"
+             style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+        </g>
+      </g>
+      <g
+         transform="matrix(0.34947415,4.0751243e-4,-4.1401989e-4,0.34398121,-116.93416,-44.361925)"
+         id="g10754-5-7"
+         style="display:inline">
+        <g
+           transform="translate(0,4.0000024)"
+           id="g10722-9-5">
+          <g
+             transform="matrix(1.7752943,0,0,1.7752943,-469.15878,-292.30871)"
+             id="SHOWER_ON-5-5"
+             style="display:inline;enable-background:new">
+            <path
+               inkscape:connector-curvature="0"
+               d="m 886.91992,337.61826 c 0.25214,-0.008 -0.38322,3.9242 -0.1069,3.76401 1.36035,-0.78869 1.96018,5.92149 2.15452,4.97507 0.19433,-0.94642 1.46324,-13.56652 -2.99953,-11.18594 l -0.77704,1.57826 c 0,0 0.73978,0.90146 1.72895,0.8686 z"
+               id="path6801-9-5-4"
+               style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.4664501;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new" />
+            <g
+               transform="matrix(0.1747013,0,0,0.1486377,855.43291,319.07474)"
+               id="g6791-3-0"
+               style="fill:#ff7f2a;fill-opacity:1;stroke:#aa4400;stroke-width:2.89462686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none">
+              <rect
+                 width="8.0812206"
+                 height="13.131983"
+                 x="119.38962"
+                 y="189.19467"
+                 id="rect6793-2-5"
+                 style="fill:#ff7f2a;fill-opacity:1;fill-rule:evenodd;stroke:#aa4400;stroke-width:2.89462686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+              <rect
+                 width="8.0812206"
+                 height="13.131983"
+                 x="140.83061"
+                 y="188.68959"
+                 id="rect6795-8-2"
+                 style="fill:#ff7f2a;fill-opacity:1;fill-rule:evenodd;stroke:#aa4400;stroke-width:2.89462686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 119.5131,200.49794 c 0,0 8.11085,-0.52281 8.67684,1.12017 0.56602,1.64299 1.9183,4.2061 3.63772,5.56444 1.71942,1.35834 -6.78803,2.54625 -11.51958,1.52611 -4.73155,-1.02014 -7.59683,-1.16385 -11.15997,-0.60865 -3.56311,0.5552 -10.005972,2.28701 -13.760456,0.92445 -3.754491,-1.36256 1.505485,-3.34939 -5.400478,-2.96186 -6.905961,0.38755 -14.495295,0.15369 -13.62114,-0.48743 0.874157,-0.64115 27.512834,-5.9592 43.147064,-5.07723 z"
+                 id="path6797-5-7"
+                 style="fill:#ff7f2a;fill-opacity:1;fill-rule:evenodd;stroke:#aa4400;stroke-width:2.89462686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 148.60842,200.49794 c 0,0 -8.11083,-0.52281 -8.67682,1.12017 -0.56601,1.64299 -1.9183,4.2061 -3.63772,5.56444 -1.71942,1.35834 6.78803,2.54625 11.51957,1.52611 4.73156,-1.02014 7.59685,-1.16385 11.15997,-0.60865 3.56312,0.5552 10.00598,2.28701 13.76046,0.92445 3.7545,-1.36256 -1.50548,-3.34939 5.40047,-2.96186 6.90597,0.38755 14.49531,0.15369 13.62115,-0.48743 -0.87416,-0.64115 -27.51283,-5.9592 -43.14708,-5.07723 z"
+                 id="path6799-2-3"
+                 style="fill:#ff7f2a;fill-opacity:1;fill-rule:evenodd;stroke:#aa4400;stroke-width:2.89462686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            </g>
+            <path
+               inkscape:connector-curvature="0"
+               d="m 870.65392,337.61826 c -0.25214,-0.008 0.38322,3.9242 0.1069,3.76401 -1.36035,-0.78869 -1.96018,5.92149 -2.15452,4.97507 -0.19433,-0.94642 -1.46324,-13.56652 2.99953,-11.18594 l 0.77704,1.57826 c 0,0 -0.73978,0.90146 -1.72895,0.8686 z"
+               id="path6801-3-0"
+               style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.4664501;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 878.8535,320.64299 c -4.80964,0 -8.71347,4.26451 -8.71347,9.51852 0,1.08733 0.16788,2.13219 0.47568,3.1057 -0.90288,1.5836 -1.42336,3.44699 -1.42336,5.44069 0,5.7475 4.32816,10.41142 9.66115,10.41142 5.333,0 9.66116,-4.66392 9.66116,-10.41142 0,-1.9937 -0.52048,-3.85709 -1.42336,-5.44069 0.3078,-0.97351 0.47568,-2.01837 0.47568,-3.1057 0,-5.25401 -3.90384,-9.51852 -8.71348,-9.51852 z"
+               id="path6803-6-5"
+               style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.4664501;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 885.91454,329.57849 c 2.1e-4,3.05576 -2.03488,5.53308 -4.54537,5.53308 -2.51048,0 -4.54557,-2.47732 -4.54536,-5.53308 -2.1e-4,-3.05576 2.03488,-5.53308 4.54536,-5.53308 2.51049,0 4.54558,2.47732 4.54537,5.53308 l 0,0 z"
+               id="path6805-8-7"
+               style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.4664501;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 880.74787,329.57849 c 2.1e-4,3.05652 -1.97429,5.53446 -4.41004,5.53446 -2.43574,0 -4.41025,-2.47794 -4.41004,-5.53446 -2.1e-4,-3.05652 1.9743,-5.53446 4.41004,-5.53446 2.43575,0 4.41025,2.47794 4.41004,5.53446 l 0,0 z"
+               id="path6807-7-5"
+               style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.46645004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 885.50954,340.5603 c 0,5.0033 -2.9819,7.18744 -6.65604,7.18744 -3.67413,0 -6.65604,-2.18414 -6.65604,-7.18744 0,-5.0033 2.98191,-9.06395 6.65604,-9.06395 3.67414,0 6.65604,4.06065 6.65604,9.06395 z"
+               id="path6809-8-9"
+               style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.42729312;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            <g
+               transform="matrix(0.1875939,0,0,0.1886297,835.45641,339.88306)"
+               id="g6811-8-3"
+               style="stroke-width:1.74461734;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none">
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 485.71428,129.50504 c 0.0129,149.91495 -121.51361,271.45186 -271.42856,271.45186 -149.914952,0 -271.441427,-121.53691 -271.428558,-271.45186 -0.01287,-149.914953 121.513606,-271.45186 271.428558,-271.45186 149.91495,0 271.44143,121.536907 271.42856,271.45186 l 0,0 z"
+                 transform="matrix(0.03338411,0,0,0.03338411,213.86605,-64.483747)"
+                 id="path6813-0-7"
+                 style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:83.68009186;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 485.71428,129.50504 c 0.0129,149.91495 -121.51361,271.45186 -271.42856,271.45186 -149.914952,0 -271.441427,-121.53691 -271.428558,-271.45186 -0.01287,-149.914953 121.513606,-271.45186 271.428558,-271.45186 149.91495,0 271.44143,121.536907 271.42856,271.45186 l 0,0 z"
+                 transform="matrix(0.01320264,0,0,0.01320264,222.55121,-67.051323)"
+                 id="path6815-7-6"
+                 style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:211.59298706;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            </g>
+            <g
+               transform="matrix(0.03676479,0,0,0.03296609,895.82635,317.30877)"
+               id="g6817-7-5"
+               style="fill:#ff6600;fill-opacity:1;stroke:#803300;stroke-width:8.65219402;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none">
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m -461.66042,402.2523 c 26.85317,0 113.18037,48.33587 113.18037,48.33587 0,0 -66.35922,58.70882 -112.64192,58.90466 -46.07394,0 -113.71882,-58.90466 -113.71882,-58.90466 0,0 86.31008,-48.33587 113.18037,-48.33587 z"
+                 id="path6819-7-6"
+                 style="fill:#ff7f2a;fill-rule:evenodd;stroke-width:12.71111393;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m -574.73196,450.41599 112.64192,34.50561 113.50116,-34.50561"
+                 id="path6821-6-4"
+                 style="fill:#ff7f2a;fill-opacity:1;fill-rule:evenodd;stroke:#803300;stroke-width:12.71111393;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 67.25,354.54968 c 0,0.72487 -0.195875,1.3125 -0.4375,1.3125 -0.241625,0 -0.4375,-0.58763 -0.4375,-1.3125 0,-0.72487 0.195875,-1.3125 0.4375,-1.3125 0.241625,0 0.4375,0.58763 0.4375,1.3125 z"
+                 transform="matrix(7.1663567,2.838336,-2.7400776,7.4233401,22.879161,-2397.9053)"
+                 id="path6823-3-8"
+                 style="fill:#803300;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 67.25,354.54968 c 0,0.72487 -0.195875,1.3125 -0.4375,1.3125 -0.241625,0 -0.4375,-0.58763 -0.4375,-1.3125 0,-0.72487 0.195875,-1.3125 0.4375,-1.3125 0.241625,0 0.4375,0.58763 0.4375,1.3125 z"
+                 transform="matrix(-7.1663567,2.838336,2.7400776,7.4233401,-947.15905,-2397.9053)"
+                 id="path6825-4-5"
+                 style="fill:#803300;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+            </g>
+            <g
+               transform="matrix(0.128421,0,0,0.1291301,852.40506,336.55036)"
+               id="g6827-3-3"
+               style="stroke-width:2.54848862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none">
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 485.71428,129.50504 c 0.0129,149.91495 -121.51361,271.45186 -271.42856,271.45186 -149.914952,0 -271.441427,-121.53691 -271.428558,-271.45186 -0.01287,-149.914953 121.513606,-271.45186 271.428558,-271.45186 149.91495,0 271.44143,121.536907 271.42856,271.45186 l 0,0 z"
+                 transform="matrix(0.03338411,0,0,0.03338411,213.86605,-64.483747)"
+                 id="path6829-6-5"
+                 style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:122.23755646;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 485.71428,129.50504 c 0.0129,149.91495 -121.51361,271.45186 -271.42856,271.45186 -149.914952,0 -271.441427,-121.53691 -271.428558,-271.45186 -0.01287,-149.914953 121.513606,-271.45186 271.428558,-271.45186 149.91495,0 271.44143,121.536907 271.42856,271.45186 l 0,0 z"
+                 transform="matrix(0.01320264,0,0,0.01320264,222.55121,-67.051323)"
+                 id="path6831-2-1"
+                 style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:309.08917236;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            </g>
+          </g>
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1076.039,299.56523 c 0,0 -0.8103,-0.64822 -1.2964,0.16205 -0.4862,0.81027 0.3241,2.75492 0.3241,2.75492 0,0 4.3754,2.91697 9.3991,3.40314 5.0237,0.48616 12.9643,1.78259 22.3635,-3.07903 0,0 0.6482,-0.81027 0.6482,-1.62054 0,-0.81027 -0.4862,-1.13438 -1.4585,-0.97233 -0.9723,0.16206 -12.6402,6.80627 -29.98,-0.64821 z"
+             id="path10615-4-3"
+             style="fill:#ff0000;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1100.7231,302.21103 c 0,0 -1.8445,-1.59276 -3.5585,-1.25646 -1.714,0.3363 -4.8221,2.70409 -6.0766,2.99649 -1.2545,0.29242 -17.1287,-5.7416 -20.2419,-7.86033 -3.1132,-2.11872 -16.0317,-12.31804 -26.9717,-11.79084 0,0 -7.0759,-0.39409 -11.5365,-6.18084 0,0 0.057,3.27356 -1.6069,5.11512 -1.6639,1.84152 -7.9719,-0.0991 -5.5016,4.06574 0,0 3.3465,7.39216 17.1013,7.15693 13.7549,-0.23522 21.4474,3.34445 26.5005,5.57989 5.0531,2.23546 18.1202,7.02757 23.2621,6.01864 5.1423,-1.00886 4.7101,-3.54598 5.7145,-3.65718"
+             id="path10617-6-3"
+             style="fill:#ff0000;stroke:#000000;stroke-width:1.25866485;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1077.5454,285.51309 c 0,0 13.2696,-3.79307 27.0391,0 l 0.1581,0 c 0,0 0.3162,-1.38178 -1.1069,-1.95074 -1.4231,-0.56896 -7.3526,-1.46305 -12.887,-1.46305 -5.5343,0 -10.7524,1.13793 -11.9384,1.38178 -1.1858,0.24383 -1.2649,2.03201 -1.2649,2.03201 z"
+             id="path10619-1-4"
+             style="fill:#c87137;stroke:#000000;stroke-width:1.30149007;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+          <rect
+             width="8.9619694"
+             height="7.7352548"
+             rx="2.7694008"
+             ry="3.8676274"
+             x="1082.0524"
+             y="279.23978"
+             id="rect10654-21-3"
+             style="color:#000000;fill:#c87137;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31831646;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <rect
+             width="8.9619694"
+             height="7.7352548"
+             rx="2.7694008"
+             ry="3.8676274"
+             x="1091.1057"
+             y="279.23978"
+             id="rect10654-2-0-9"
+             style="color:#000000;fill:#c87137;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31831646;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <rect
+             width="5.4638352"
+             height="4.7159452"
+             rx="1.6884179"
+             ry="2.3579726"
+             x="1083.8014"
+             y="280.74942"
+             id="rect10654-0-90-6"
+             style="color:#000000;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.80373669;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <rect
+             width="5.4638352"
+             height="4.7159452"
+             rx="1.6884179"
+             ry="2.3579726"
+             x="1092.8884"
+             y="280.74942"
+             id="rect10654-0-9-5-0"
+             style="color:#000000;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.80373669;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        </g>
+        <g
+           transform="translate(20,0)"
+           id="g10169-6-6">
+          <g
+             transform="translate(0,-20)"
+             id="g11337-5-3">
+            <path
+               inkscape:connector-curvature="0"
+               d="m 1216.0451,367.5226 c 0,4.22305 -7.0911,7.6465 -23.8607,7.6465 -5.6005,0 3.5796,-3.42345 3.5796,-7.6465 0,-4.22305 -9.1801,-7.6465 -3.5796,-7.6465 17.0954,0 23.8607,3.42345 23.8607,7.6465 z"
+               id="path9886-9-6"
+               style="color:#000000;fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 1207.413,362.19808 -0.4584,-62.40761 c 0.047,-4.37821 -2.2884,-10.53235 -5.4916,-3.70341 -3.3767,7.19871 -3.2038,47.28937 -0.2288,67.52264"
+               id="path9891-4-6"
+               style="fill:#784421;fill-opacity:1;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 1207.413,372.44759 -0.4584,62.40761 c 0.047,4.37821 -2.2884,10.53235 -5.4916,3.70341 -3.3767,-7.19871 -3.2038,-47.28937 -0.2288,-67.52264"
+               id="path9891-8-3-9"
+               style="fill:#784421;fill-opacity:1;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+            <rect
+               width="7.5974507"
+               height="14.644708"
+               rx="1.544358"
+               ry="1.5681502"
+               x="1200.4694"
+               y="360.11432"
+               id="rect9889-1-9"
+               style="color:#000000;fill:#784421;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          </g>
+          <g
+             transform="translate(0,-20)"
+             id="g9882-0-3"
+             style="stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none">
+            <rect
+               width="6.3201084"
+               height="37.110382"
+               x="1139.7262"
+               y="403.50842"
+               id="rect9858-1-4"
+               style="color:#000000;fill:#f8d600;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+            <rect
+               width="6.1245208"
+               height="54.740742"
+               x="301.03711"
+               y="1125.2662"
+               transform="matrix(0.57635987,-0.817196,0.817196,0.57635987,0,0)"
+               id="rect9858-7-2-9"
+               style="color:#000000;fill:#f8d600;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          </g>
+          <path
+             inkscape:connector-curvature="0"
+             d="m 988.2057,314.63543 c 0,0 28.3475,-3.8893 64.6476,-5.18573 0,0 1.9446,9.07503 27.5492,11.01967 0,0 17.8259,-0.3241 13.2884,-8.75092 0,0 65.8133,-0.3241 81.8493,-0.3241 16.8536,0 20.1431,3.98382 20.1431,34.88888 0,27.02355 3.1927,38.68366 -25.3288,38.68366 -28.5215,0 -91.7226,0.32411 -133.8567,-10.04735 -42.13404,-10.37146 -95.28778,-31.11438 -108.57621,-40.18941 -13.28843,-9.07503 -13.28843,-15.23308 -13.28843,-23.01168 0,-7.77859 5.83394,-27.87329 12.31611,-32.41081 6.48216,-4.53751 25.60454,-15.23308 38.56886,-4.86162 12.96433,10.37146 20.41882,23.984 22.68757,40.18941 z"
+             id="path9759-79-0"
+             style="fill:#f8d600;fill-opacity:1;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 928.4375,283.65625 c -8.13927,7.66693 -10.39596,19.4688 -11.875,30 -0.88652,8.5212 4.40663,16.12384 11.875,19.71875 19.76951,12.18784 42.38997,18.90727 64.02814,26.96475 34.25566,12.08536 70.04266,19.88556 106.52906,20.99553 26.9041,1.34888 54.0262,2.73678 80.8803,0.63347 7.7576,-1.8786 -3.3731,-1.01112 -6.2188,-1.1875 -51.1225,0.0673 -103.2588,-1.37918 -152.0937,-17.8125 -28.07344,-8.75022 -56.19552,-18.61165 -81.96875,-32.71875 -9.52233,-5.74374 -17.25648,-16.16329 -15.3125,-27.875 0.24797,-6.35608 2.50397,-13.10492 4.15625,-18.71875 z"
+             id="path9759-7-2-1"
+             style="opacity:0.25;fill:#ffffff;fill-opacity:1;stroke:none;display:inline" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1145.3037,312.09584 c 0,0 5.269,35.42098 0,72.22861"
+             id="path9915-9-7"
+             style="fill:none;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 953.46875,272.09375 c -3.22892,0.19176 -6.43684,0.82845 -9.46875,1.9375 10.95671,-0.5411 19.58399,7.03545 25.92612,15.01429 6.85937,8.34237 11.48055,18.41135 13.51138,29.04821 21.6521,-2.60319 43.4224,-4.17028 65.2187,-4.84375 -0.815,7.27479 8.6069,8.06967 13.6563,9.6875 6.2069,1.31699 13.9547,2.72478 19.3437,-0.71875 -10.229,-0.55585 -22.0685,-2.32355 -29.0312,-10.65625 -21.9893,0.9033 -44.0221,2.66872 -65.78125,5.59375 -1.71532,-17.74186 -10.69672,-36.76603 -27.53125,-44.5 -1.89459,-0.50143 -3.88009,-0.65762 -5.84375,-0.5625 z m 224.37505,41.3125 c -25.7874,0.39599 -52.2131,-0.44275 -77.625,0.71875 -1.4778,3.76076 7.4188,0.33652 9.75,1.46875 22.7247,0.12291 45.7097,-1.28124 68.2812,0.65625 10.2883,2.90287 13.1212,14.88052 12.9051,24.27523 0.8972,10.64908 0.5743,22.44064 0.4074,32.41227 4.29,-10.41619 1.105,-22.15678 2.0574,-33.12491 -0.2096,-8.11581 0.5671,-17.37502 -4.5887,-24.06259 -3.0863,-2.51764 -7.392,-2.42209 -11.1874,-2.34375 z"
+             id="path9759-7-6-7-0"
+             style="opacity:0.25;fill:#ffffff;fill-opacity:1;stroke:none;display:inline" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1162.738,238.10695 a 19.85165,19.85165 0 1 1 -39.7033,0 19.85165,19.85165 0 1 1 39.7033,0 z"
+             transform="translate(0,180)"
+             id="path9812-1-4"
+             style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1162.738,238.10695 a 19.85165,19.85165 0 1 1 -39.7033,0 19.85165,19.85165 0 1 1 39.7033,0 z"
+             transform="matrix(0.64964078,0,0,0.64964078,400.42075,263.42297)"
+             id="path9812-3-6-6"
+             style="color:#000000;fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.02498102;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1162.738,238.10695 a 19.85165,19.85165 0 1 1 -39.7033,0 19.85165,19.85165 0 1 1 39.7033,0 z"
+             transform="matrix(0.18780362,0,0,0.18780362,928.24814,373.38961)"
+             id="path9812-3-2-5-6"
+             style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:7.00471163;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1180.8971,342.07428 c 0,1.8353 -2.3095,3.3231 -7.6255,3.3231 -5.316,0 -11.6255,-1.4878 -11.6255,-3.3231 0,-1.8353 6.3095,-3.3231 11.6255,-3.3231 5.316,0 7.6255,1.4878 7.6255,3.3231 z"
+             id="path9917-5-9"
+             style="color:#000000;fill:#f8d600;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1178.8971,322.07428 c 0,1.8353 -2.3095,3.3231 -7.6255,3.3231 -5.316,0 -11.6255,-1.4878 -11.6255,-3.3231 0,-1.8353 6.3095,-3.3231 11.6255,-3.3231 5.316,0 7.6255,1.4878 7.6255,3.3231 z"
+             id="path9917-9-29-4"
+             style="color:#000000;fill:#f8d600;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1180.8971,362.07428 c 0,1.8353 -2.3095,3.3231 -7.6255,3.3231 -5.316,0 -11.6255,-1.4878 -11.6255,-3.3231 0,-1.8353 6.3095,-3.3231 11.6255,-3.3231 5.316,0 7.6255,1.4878 7.6255,3.3231 z"
+             id="path9917-9-2-3-0"
+             style="color:#000000;fill:#f8d600;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1180.9686,379.0466 c 0,1.33781 -2.3266,2.42231 -7.6821,2.42231 -5.3555,0 -11.7119,-1.0845 -11.7119,-2.42231 0,-1.3378 6.3564,-2.4223 11.7119,-2.4223 5.3555,0 7.6821,1.0845 7.6821,2.4223 z"
+             id="path9917-9-2-9-6-9"
+             style="color:#000000;fill:#f8d600;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.12731349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 987.76175,314.75 c 0,0 -45.60663,7.33373 -45.60663,26.58477"
+             id="path9988-5-0"
+             style="fill:none;stroke:#000000;stroke-width:1.31551015px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 975.38608,286.3318 -35.98111,0 0,52.25282"
+             id="path9990-9-6"
+             style="fill:none;stroke:#000000;stroke-width:1.31551015px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 986.84502,324.14635 c 0,2.02515 -1.08238,3.66686 -17.22033,3.66686 -16.13794,0 -41.22032,-1.64171 -41.22032,-3.66686 0,-2.02516 25.08238,-3.66687 41.22032,-3.66687 16.13795,0 17.22033,1.64171 17.22033,3.66687 z"
+             id="path9992-8-7"
+             style="color:#000000;fill:#f8d600;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <g
+             transform="matrix(0.15309935,0,0,0.15309935,992.2979,320.67813)"
+             id="layer1-2-9-5-8-1-7-1"
+             style="stroke:#696da3;stroke-width:1.31551015;stroke-opacity:1;display:inline">
+            <g
+               transform="translate(0,4e-5)"
+               id="g3692-6-4-8-4-2-2-9"
+               style="fill:#000000;stroke:#000000;stroke-width:39.46530533;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none">
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 101.09375,20.5625 c -42.898656,0 -77.718721,34.82006 -77.71875,77.71875 0,42.89866 34.820086,77.71878 77.71875,77.71875 42.89865,0 77.71872,-34.82012 77.71875,-77.71875 0,-42.89866 -34.82009,-77.71878 -77.71875,-77.71875 z"
+                 id="path8808-2-3-4-3-7-0-2-0-2"
+                 style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:39.46530533;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 208.28125,111.5 c -11.22916,0.14022 -27.86406,1.78473 -36.71875,9.5625 -14.1675,12.44444 -13.21875,28.15625 -13.21875,28.15625 0,0 4.20526,26.42885 27.5625,29.875 23.35724,3.44615 42.125,-7.09375 42.125,-7.09375 l -9.5625,-21.625 c 0,0 -20.12351,7.6376 -26.25,4 -6.12648,-3.6376 -8.6103,-10.90513 -4.78125,-15.5 3.82906,-4.59486 13.04013,-8.59449 24.71875,-5.53125 L 219.8125,111.875 c 0,0 -4.79376,-0.45913 -11.53125,-0.375 z m 54.59375,10.71875 c -16.27502,0 -29.46875,13.22498 -29.46875,29.5 0,16.27502 13.19374,29.46875 29.46875,29.46875 16.27502,0 29.5,-13.19373 29.5,-29.46875 0,-16.27502 -13.22498,-29.5 -29.5,-29.5 z m 302.0625,1.40625 c -1.22762,0.0445 -2.6007,0.18889 -4.15625,0.5 -12.44443,2.48889 -11.47987,18.39141 -13.96875,31.21875 -2.48889,12.82733 -18.96875,8.21875 -18.96875,8.21875 l 0,15.90625 c 0,0 14.75493,2.49358 26.625,-3.25 11.87007,-5.74358 5.5499,-22.97479 9.1875,-30.25 3.63761,-7.27521 9.1875,-2.5 9.1875,-2.5 l 1.71875,-14.75 c 0,0 -1.0
 3169,-5.40523 -9.625,-5.09375 z m -157.15625,0.1875 c -0.77654,-0.005 -1.58273,0.005 -2.375,0.0312 C 394.84268,124.18965 383.3125,127 383.3125,127 l 9.1875,52.65625 15.3125,-0.375 -2.09375,-16.65625 c 0,0 5.72047,0.19764 14.71875,-9.375 8.99828,-9.57264 7.84561,-19.16625 0.1875,-26.25 -2.51282,-2.32437 -7.40797,-3.1543 -12.84375,-3.1875 z m 89.4375,0.125 -6.125,55.53125 22.40625,0 6.6875,-53.40625 -22.96875,-2.125 z m -144.15625,0.1875 -17.25,18.96875 -18.375,-17.21875 -19.71875,49.375 18.96875,6.3125 9.5625,-21.25 12.0625,11.3125 9,-11.6875 11.875,18.375 18,-6.3125 -24.125,-47.875 z m 92.65625,0.40625 -12.0625,48.625 16.09375,4.78125 4.59375,-17.625 c 9.76409,1.53162 9.1875,19.15625 9.1875,19.15625 l 17.03125,-0.375 -6.3125,-21.25 c 9.95555,-3.6376 10.34375,-8.625 10.34375,-8.625 0,0 2.4868,-10.72517 -7.46875,-16.46875 -9.95554,-5.74358 -31.40625,-8.21875 -31.40625,-8.21875 z M 402.0625,136 c 2.69691,-0.0806 8.16845,0.47817 8.8125,4.5 0.85872,5.36242 -7.74997,6.21878 -7.75,
 6.21875 l -2.59375,-10.53125 c 0,-0.0536 0.63228,-0.16055 1.53125,-0.1875 z m 56.28125,1.9375 c 4.59487,0.38291 10.72703,4.76864 8.8125,8.40625 -1.91453,3.6376 -11.09375,1.15625 -11.09375,1.15625 l 2.28125,-9.5625 z M 262.875,141.75 c 5.49546,0 9.96875,4.47329 9.96875,9.96875 0,5.49546 -4.47329,9.9375 -9.96875,9.9375 -5.49546,0 -9.9375,-4.44204 -9.9375,-9.9375 0,-5.49546 4.44204,-9.96875 9.9375,-9.96875 z"
+                 id="path8816-8-1-7-5-8-1-4-6-8"
+                 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:39.46530533;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            </g>
+            <g
+               transform="translate(0,100)"
+               id="g3692-1-0-0-7-4-3"
+               style="stroke-width:1.31551015">
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 101.09375,-79.4375 c -42.898656,0 -77.718721,34.82006 -77.71875,77.71875 0,42.89866 34.820086,77.71878 77.71875,77.71875 42.89865,0 77.71872,-34.82012 77.71875,-77.71875 0,-42.89866 -34.82009,-77.71878 -77.71875,-77.71875 z"
+                 id="path8808-2-3-7-5-2-4-6-1"
+                 style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:32.88775635;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+              <path
+                 inkscape:connector-curvature="0"
+                 d="m 208.28125,11.5 c -11.22916,0.14022 -27.86406,1.78473 -36.71875,9.5625 -14.1675,12.44444 -13.21875,28.15625 -13.21875,28.15625 0,0 4.20526,26.42885 27.5625,29.875 C 209.26349,82.5399 228.03125,72 228.03125,72 l -9.5625,-21.625 c 0,0 -20.12351,7.6376 -26.25,4 -6.12648,-3.6376 -8.6103,-10.90513 -4.78125,-15.5 3.82906,-4.59486 13.04013,-8.59449 24.71875,-5.53125 L 219.8125,11.875 c 0,0 -4.79376,-0.45913 -11.53125,-0.375 z M 262.875,22.21875 c -16.27502,0 -29.46875,13.22498 -29.46875,29.5 0,16.27502 13.19374,29.46875 29.46875,29.46875 16.27502,0 29.5,-13.19373 29.5,-29.46875 0,-16.27502 -13.22498,-29.5 -29.5,-29.5 z M 564.9375,23.625 c -1.22762,0.0445 -2.6007,0.18889 -4.15625,0.5 -12.44443,2.48889 -11.47987,18.39141 -13.96875,31.21875 -2.48889,12.82733 -18.96875,8.21875 -18.96875,8.21875 l 0,15.90625 c 0,0 14.75493,2.49358 26.625,-3.25 11.87007,-5.74358 5.5499,-22.97479 9.1875,-30.25 3.63761,-7.27521 9.1875,-2.5 9.1875,-2.5 l 1.71875,-14.75 c 0,0 -1.03169,-5
 .40523 -9.625,-5.09375 z m -157.15625,0.1875 c -0.77654,-0.005 -1.58273,0.005 -2.375,0.0312 C 394.84268,24.18965 383.3125,27 383.3125,27 l 9.1875,52.65625 15.3125,-0.375 -2.09375,-16.65625 c 0,0 5.72047,0.19764 14.71875,-9.375 8.99828,-9.57264 7.84561,-19.16625 0.1875,-26.25 -2.51282,-2.32437 -7.40797,-3.1543 -12.84375,-3.1875 z m 89.4375,0.125 -6.125,55.53125 22.40625,0 6.6875,-53.40625 -22.96875,-2.125 z M 353.0625,24.125 335.8125,43.09375 317.4375,25.875 297.71875,75.25 l 18.96875,6.3125 9.5625,-21.25 12.0625,11.3125 9,-11.6875 11.875,18.375 18,-6.3125 -24.125,-47.875 z m 92.65625,0.40625 -12.0625,48.625 16.09375,4.78125 4.59375,-17.625 c 9.76409,1.53162 9.1875,19.15625 9.1875,19.15625 l 17.03125,-0.375 -6.3125,-21.25 c 9.95555,-3.6376 10.34375,-8.625 10.34375,-8.625 0,0 2.4868,-10.72517 -7.46875,-16.46875 -9.95554,-5.74358 -31.40625,-8.21875 -31.40625,-8.21875 z M 402.0625,36 c 2.69691,-0.0806 8.16845,0.47817 8.8125,4.5 0.85872,5.36242 -7.74997,6.21878 -7.75,6.21875 L 40
 0.53125,36.1875 c 0,-0.0536 0.63228,-0.16055 1.53125,-0.1875 z m 56.28125,1.9375 c 4.59487,0.38291 10.72703,4.76864 8.8125,8.40625 C 465.24172,49.98135 456.0625,47.5 456.0625,47.5 l 2.28125,-9.5625 z M 262.875,41.75 c 5.49546,0 9.96875,4.47329 9.96875,9.96875 0,5.49546 -4.47329,9.9375 -9.96875,9.9375 -5.49546,0 -9.9375,-4.44204 -9.9375,-9.9375 0,-5.49546 4.44204,-9.96875 9.9375,-9.96875 z"
+                 id="path8816-8-1-4-2-1-9-5-4"
+                 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:32.88775635;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            </g>
+            <path
+               inkscape:connector-curvature="0"
+               d="m 101.09375,20.5625 c -42.898655,0 -77.71872,34.82006 -77.71875,77.71875 0,42.89866 34.820087,77.71878 77.71875,77.71875 42.89865,0 77.71872,-34.82012 77.71875,-77.71875 0,-42.89866 -34.82009,-77.71878 -77.71875,-77.71875 z m 0,17.71875 c 33.12967,0 60.03125,26.87034 60.03125,60 3e-5,33.12967 -26.90158,60.03125 -60.03125,60.03125 -33.129629,0 -60,-26.90158 -60,-60.03125 3e-5,-33.12966 26.870369,-60 60,-60 z m -1.875,15 c -20.390579,0 -40.78125,24.63098 -40.78125,45.40625 0,20.77529 11.921098,44.625 43.46875,44.625 31.54765,0 46.16741,-16.55852 40.78125,-55.03125 l -38.875,12.3125 7.3125,7.6875 4.625,-1.125 c 0,0 7.6981,9.61734 -3.84375,11.15625 C 100.36444,119.85141 89.976413,116.74464 88.4375,102.125 86.898587,87.50535 98.44081,77.13534 111.90625,82.90625 l 19.625,-18.09375 c 0,0 -11.92195,-11.53125 -32.3125,-11.53125 z"
+               id="path8808-2-31-8-5-5-1-5"
+               style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:13.98377037;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 101.1024,20.577559 c -42.898655,0 -77.714941,34.816257 -77.714971,77.714941 0,42.89866 34.816318,77.71498 77.714981,77.71495 42.89865,0 77.71494,-34.81632 77.71497,-77.71495 0,-42.898656 -34.81632,-77.714973 -77.71498,-77.714941 z m 0,17.697466 c 33.12967,0 60.01751,26.887813 60.01751,60.017475 3e-5,33.12967 -26.88784,60.01751 -60.01751,60.01751 -33.129629,0 -60.017504,-26.88784 -60.017504,-60.01751 3e-5,-33.12966 26.887873,-60.017474 60.017504,-60.017475 z"
+               id="path8808-4-5-4-8-5-7"
+               style="fill:#fde445;fill-opacity:1;stroke:#beac34;stroke-width:7.90594482;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 131.52538,64.821195 c 0,0 -11.92655,-11.541816 -32.317104,-11.541815 -20.390579,0 -40.781158,24.622575 -40.781158,45.39784 0,20.77529 11.92659,44.62841 43.474242,44.62841 31.54765,0 46.16729,-16.5433 40.78113,-55.01603 l -38.85751,12.31127 7.30983,7.69454 4.61673,-1.15417 c 0,0 7.69457,9.61819 -3.84728,11.1571 C 100.36245,119.83725 89.9748,116.75943 88.435887,102.13979 86.896974,87.52014 98.43882,77.132498 111.90426,82.90341 l 19.62112,-18.082215 z"
+               id="path8810-6-7-0-4-9-8"
+               style="fill:#757ab7;fill-opacity:1;fill-rule:evenodd;stroke:#585c8a;stroke-width:5.97265291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+            <path
+               inkscape:connector-curvature="0"
+               d="M 80.684098,65.588753 C 70.328965,73.587558 62.624029,87.01471 62.62403,99.0555 c 0,18.57603 10.651107,39.88623 38.85911,39.88623 15.49691,0 26.45013,-4.48079 32.35405,-14.2084 -6.0137,3.71225 -13.90045,5.47794 -23.62362,5.47794 -28.208002,0 -38.859082,-21.3102 -38.859082,-39.8862 0,-8.32652 3.645291,-17.32008 9.32961,-24.736317 z"
+               id="path8812-9-2-9-2-4-2"
+               style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 208.28125,111.5 c -11.22916,0.14022 -27.86406,1.78473 -36.71875,9.5625 -14.1675,12.44444 -13.21875,28.15625 -13.21875,28.15625 0,0 4.20526,26.42885 27.5625,29.875 23.35724,3.44615 42.125,-7.09375 42.125,-7.09375 l -9.5625,-21.625 c 0,0 -20.12351,7.6376 -26.25,4 -6.12648,-3.6376 -8.6103,-10.90513 -4.78125,-15.5 3.82906,-4.59486 13.04013,-8.59449 24.71875,-5.53125 L 219.8125,111.875 c 0,0 -4.79376,-0.45913 -11.53125,-0.375 z m 54.59375,10.71875 c -16.27502,0 -29.46875,13.22498 -29.46875,29.5 0,16.27502 13.19374,29.46875 29.46875,29.46875 16.27502,0 29.5,-13.19373 29.5,-29.46875 0,-16.27502 -13.22498,-29.5 -29.5,-29.5 z m 302.0625,1.40625 c -1.22762,0.0445 -2.6007,0.18889 -4.15625,0.5 -12.44443,2.48889 -11.47987,18.39141 -13.96875,31.21875 -2.48889,12.82733 -18.96875,8.21875 -18.96875,8.21875 l 0,15.90625 c 0,0 14.75493,2.49358 26.625,-3.25 11.87007,-5.74358 5.5499,-22.97479 9.1875,-30.25 3.63761,-7.27521 9.1875,-2.5 9.1875,-2.5 l 1.71875,-14.75 c 0,0 -1.031
 69,-5.40523 -9.625,-5.09375 z m -157.15625,0.1875 c -0.77654,-0.005 -1.58273,0.005 -2.375,0.0312 C 394.84268,124.18965 383.3125,127 383.3125,127 l 9.1875,52.65625 15.3125,-0.375 -2.09375,-16.65625 c 0,0 5.72047,0.19764 14.71875,-9.375 8.99828,-9.57264 7.84561,-19.16625 0.1875,-26.25 -2.51282,-2.32437 -7.40797,-3.1543 -12.84375,-3.1875 z m 89.4375,0.125 -6.125,55.53125 22.40625,0 6.6875,-53.40625 -22.96875,-2.125 z m -144.15625,0.1875 -17.25,18.96875 -18.375,-17.21875 -19.71875,49.375 18.96875,6.3125 9.5625,-21.25 12.0625,11.3125 9,-11.6875 11.875,18.375 18,-6.3125 -24.125,-47.875 z m 92.65625,0.40625 -12.0625,48.625 16.09375,4.78125 4.59375,-17.625 c 9.76409,1.53162 9.1875,19.15625 9.1875,19.15625 l 17.03125,-0.375 -6.3125,-21.25 c 9.95555,-3.6376 10.34375,-8.625 10.34375,-8.625 0,0 2.4868,-10.72517 -7.46875,-16.46875 -9.95554,-5.74358 -31.40625,-8.21875 -31.40625,-8.21875 z M 402.0625,136 c 2.69691,-0.0806 8.16845,0.47817 8.8125,4.5 0.85872,5.36242 -7.74997,6.21878 -7.75,6.
 21875 l -2.59375,-10.53125 c 0,-0.0536 0.63228,-0.16055 1.53125,-0.1875 z m 56.28125,1.9375 c 4.59487,0.38291 10.72703,4.76864 8.8125,8.40625 -1.91453,3.6376 -11.09375,1.15625 -11.09375,1.15625 l 2.28125,-9.5625 z M 262.875,141.75 c 5.49546,0 9.96875,4.47329 9.96875,9.96875 0,5.49546 -4.47329,9.9375 -9.96875,9.9375 -5.49546,0 -9.9375,-4.44204 -9.9375,-9.9375 0,-5.49546 4.44204,-9.96875 9.9375,-9.96875 z"
+               id="path8816-8-4-5-4-7-9-3"
+               style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:13.98377037;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 212.14502,133.32836 7.65812,-21.44271 c 0,0 -34.0786,-3.2547 -48.24611,9.18973 -14.1675,12.44444 -13.21024,28.14356 -13.21024,28.14356 0,0 4.21196,26.42049 27.5692,29.86664 23.35724,3.44615 42.11962,-7.08376 42.11962,-7.08376 l -9.57264,-21.63416 c 0,0 -20.10255,7.65811 -26.22904,4.02051 -6.12648,-3.6376 -8.61537,-10.91281 -4.78632,-15.50768 3.82906,-4.59486 13.01879,-8.61537 24.69741,-5.55213 z"
+               id="path8816-2-7-3-0-1-9"
+               style="fill:#fde445;fill-opacity:1;fill-rule:evenodd;stroke:#beac34;stroke-width:5.97265291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 262.88001,122.2241 c -16.27502,0 -29.48373,13.20871 -29.48373,29.48373 0,16.27502 13.20872,29.48373 29.48373,29.48373 16.27502,0 29.48373,-13.20871 29.48373,-29.48373 0,-16.27502 -13.20871,-29.48373 -29.48373,-29.48373 z m 0,19.52818 c 5.49546,0 9.95555,4.46009 9.95555,9.95555 0,5.49546 -4.46009,9.95554 -9.95555,9.95554 -5.49546,0 -9.95554,-4.46008 -9.95554,-9.95554 0,-5.49546 4.46008,-9.95555 9.95554,-9.95555 z"
+               id="path8818-2-9-3-3-6-3"
+               style="fill:#47ac50;fill-opacity:1;stroke:#35823c;stroke-width:5.97265291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 297.72442,175.25652 19.71964,-49.39482 18.37947,17.23075 17.23075,-18.95382 24.12305,47.86319 -17.99656,6.31794 -11.87008,-18.37946 -8.99828,11.67862 -12.06152,-11.29572 -9.57264,21.25126 -18.95383,-6.31794 z"
+               id="path8820-6-1-2-3-3-9"
+               style="fill:#c73938;fill-opacity:1;fill-rule:evenodd;stroke:#962b2a;stroke-width:5.97265291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 405.41661,123.85145 c -10.56357,0.3459 -22.11279,3.15897 -22.11279,3.15897 l 9.18973,52.64951 15.31622,-0.3829 -2.10598,-16.6564 c 0,0 5.74359,0.19146 14.74187,-9.38118 8.99828,-9.57264 7.84956,-19.14528 0.19145,-26.22903 -2.87179,-2.65642 -8.88237,-3.36651 -15.2205,-3.15897 z m -3.35042,12.15725 c 2.69691,-0.0806 8.16278,0.47731 8.80683,4.49914 0.85872,5.36242 -7.75381,6.22224 -7.75384,6.22221 l -2.58461,-10.5299 c 0,-0.0536 0.63265,-0.1645 1.53162,-0.19145 z"
+               id="path8822-4-7-7-8-0-5"
+               style="fill:#757ab7;fill-opacity:1;fill-rule:evenodd;stroke:#585c8a;stroke-width:5.97265291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 445.71742,124.52153 -12.06152,48.62901 16.08203,4.78632 4.59487,-17.61366 c 9.76409,1.53162 9.18973,19.14528 9.18973,19.14528 l 17.0393,-0.38291 -6.31794,-21.25126 c 9.95555,-3.6376 10.33845,-8.61537 10.33845,-8.61537 0,0 2.48889,-10.72136 -7.46666,-16.46494 -9.95554,-5.74358 -31.39826,-8.23247 -31.39826,-8.23247 z m 12.63589,13.40169 c 4.59487,0.38291 10.72136,4.78632 8.80683,8.42393 -1.91453,3.6376 -11.10426,1.14871 -11.10426,1.14871 l 2.29743,-9.57264 z"
+               id="path8824-1-3-9-3-5-4"
+               style="fill:#fde445;fill-opacity:1;fill-rule:evenodd;stroke:#beac34;stroke-width:5.97265291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 497.21822,123.94717 22.97434,2.10598 -6.70085,53.41533 -22.39997,0 6.12648,-55.52131 z"
+               id="path8826-2-9-7-3-5-9"
+               style="fill:#47ac50;fill-opacity:1;fill-rule:evenodd;stroke:#35823c;stroke-width:5.97265291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 527.85067,163.5779 c 0,0 16.46494,4.59486 18.95383,-8.23247 2.48888,-12.82734 1.53162,-28.71792 13.97605,-31.20681 12.44443,-2.48888 13.7846,4.59487 13.7846,4.59487 l -1.72307,14.74186 c 0,0 -5.55213,-4.78632 -9.18974,2.48889 -3.6376,7.27521 2.68034,24.50596 -9.18973,30.24954 -11.87007,5.74358 -26.61194,3.2547 -26.61194,3.2547 l 0,-15.89058 z"
+               id="path8828-8-6-1-7-9-7"
+               style="fill:#c73938;fill-opacity:1;fill-rule:evenodd;stroke:#962b2a;stroke-width:5.97265291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 174.0641,123.76666 c -0.71071,0.49658 -0.75411,0.47695 -1.38924,1.03482 -14.16751,12.44444 -10.35357,24.29325 -10.35357,24.29325 0,0 1.47949,23.067 24.83673,26.51315 23.35724,3.44615 35.53685,-5.34491 35.53685,-5.34491 l -1.47467,-4.82268 c -7.70318,2.58357 -14.30879,7.95497 -27.6461,5.98718 -23.35724,-3.44615 -27.5692,-29.86664 -27.5692,-29.86664 0,0 -0.1293,-6.87049 8.0592,-17.79417 z m 325.8866,3.90661 -5.13286,48.69012 15.56878,-1.24202 0.0879,-4.30463 -11.72463,0.99363 2.93358,-44.18375 -1.73273,0.0466 z m -51.87341,0.94697 -10.32268,41.92204 9.62346,3.17168 0.53013,-4.47001 -5.35217,-0.89486 7.34729,-39.36414 c -3.13784,-0.50072 -1.82603,-0.36471 -1.82603,-0.36471 z m 115.90646,-1.90181 c -12.1517,3.3892 -10.71391,11.83417 -13.08054,24.03149 2.67106,1.39889 4.50453,-7.83961 5.52606,-11.59625 1.51263,-7.79593 4.80553,-6.07255 7.55448,-12.43524 z m -172.09305,2.1708 c -5.00947,0.83393 -3.86716,1.97147 -3.86716,1.97147 l 7.20249,44.94895 8.73346,0.6107
 2 -0.33625,-4.3616 -3.47158,-0.057 -8.26096,-43.11259 z m -73.3288,2.18899 -15.12413,41.44582 11.25323,4.20648 2.65427,-7.03949 -7.24301,-1.96841 10.07121,-34.97585 -1.61157,-1.66855 z m -71.59306,0.91061 c -7.74404,5.31501 -9.97067,9.99617 -9.97067,20.09161 0,16.27502 12.33929,24.14299 28.61431,24.14299 10.09544,0 13.53456,-3.34445 18.84956,-11.08848 -4.74021,3.25338 -7.99275,6.78386 -14.17233,6.78386 -16.27501,0 -28.73851,-8.8616 -28.73851,-25.13662 0,-6.17957 2.16426,-10.05314 5.41764,-14.79336 z m 175.55431,13.35376 c -5.80111,4.48281 -10.52748,6.39066 -10.52748,6.39066 l 0.97546,3.86781 c 1.92292,-1.36097 2.65411,-2.22809 5.11466,-4.84569 0.84359,-0.89744 3.76914,-4.5174 4.43736,-5.41278 z m -69.08597,11.53446 -2.50402,2.81724 10.23485,14.02996 11.04119,-3.83389 -2.10598,-3.83935 -7.11463,3.12019 -9.55141,-12.29415 z m -12.68254,5.69145 -2.75548,3.46915 -10.08698,-9.30056 12.84246,5.83141 z m 118.60323,-4.64633 3.70726,4.40341 c 4.61276,5.39208 3.68668,13.4168 3.68668,1
 3.4168 l 8.8419,0.48653 -0.71129,-4.11317 -4.81961,-0.18104 c 0,0 -0.94085,-12.48079 -10.70494,-14.01241 z m 72.34309,17.94442 c 0,0 7.6623,3.1099 19.53238,-2.63368 3.32303,-1.60793 5.47671,-2.5311 6.56634,-5.46912 -11.61534,4.96638 -19.98253,3.59643 -19.98253,3.59643 l -7.10982,-1.27535 0.99363,5.78172 z"
+               id="path8830-8-9-8-9-4-3"
+               style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 108.72174,31.790106 c -2.23381,0.657985 17.54529,3.258097 22.39998,7.658111 19.47063,7.750989 33.13582,36.741811 34.74868,49.107643 2.32185,-31.606806 -25.65415,-59.298108 -57.14866,-56.765754 z M 31.121971,96.34404 c -3.775234,41.82783 35.562832,77.64672 77.251199,72.81344 -39.982967,-2.2857 -74.572697,-34.15689 -77.155472,-74.05789 l -0.09573,1.24445 z"
+               id="path8832-92-9-9-9-6-9"
+               style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;display:inline" />
+          </g>
+          <g
+             transform="translate(0,-20)"
+             id="g10159-8-3">
+            <path
+               inkscape:connector-curvature="0"
+               d="m 1116.5572,310.65625 -34.3554,74.21875 9.4062,0 2.8208,-6.09375 53.5321,-53.875 -27.7591,59.96875 9.4062,0 34.3554,-74.21875 -9.4062,0 -1.0848,2.34375 -53.489,53.78125 25.98,-56.125 -9.4062,0 z"
+               id="rect9765-0-9"
+               style="color:#000000;fill:#f8d600;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 1090.2998,311.29964 c 0,0 21.3911,-16.2054 41.8099,-17.17773 20.4188,-0.97232 33.059,0.32411 38.893,10.37146 5.8339,10.04735 1.6205,13.93665 -2.2688,14.26076 -3.8893,0.32411 -48.9403,1.94465 -53.4778,0.32411 -4.5375,-1.62054 -6.1581,-3.8893 -9.075,-4.21341 -2.917,-0.32411 -16.5296,-0.32411 -15.8813,-3.56519 z"
+               id="path9761-3-8"
+               style="fill:#f8d600;fill-opacity:1;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 1070.2051,392.65078 c 0,0 -1.9447,2.59287 1.6205,4.86163 3.5652,2.26875 20.4188,5.83394 37.2724,5.18573 16.8537,-0.64822 27.5492,-0.64822 29.818,-8.10271 2.2687,-7.45448 -1.2964,-16.85362 -18.1501,-18.15005 -16.8536,-1.29644 -38.5688,4.2134 -50.5608,16.2054 z"
+               id="path9763-0-5"
+               style="fill:#f8d600;fill-opacity:1;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+            <path
+               inkscape:connector-curvature="0"
+               d="m 1092.0382,309.31112 16.2717,0 13.407,-13.40697"
+               id="path9986-1-6"
+               style="fill:none;stroke:#000000;stroke-width:1.31551015px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+          </g>
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1143.9473,371.01346 c 0,0 4.0106,0.91672 7.2191,-2.29179 3.2085,-3.20851 6.6462,-2.29179 7.7921,-1.26049 1.1459,1.03131 2.521,5.15653 -1.1459,9.39635 -3.6669,4.23981 -8.365,5.72947 -13.7507,5.84406"
+             id="path10167-6-0"
+             style="fill:#808080;stroke:#000000;stroke-width:1.31551015px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1147.7287,196.80023 a 3.6095703,5.7867713 0 1 1 -7.2191,0 3.6095703,5.7867713 0 1 1 7.2191,0 z"
+             transform="matrix(0.79242746,0,0,1.0091379,237.94607,178.20166)"
+             id="path10165-7-6"
+             style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.31551015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1096.3044,290.28571 c -2.2952,1.6493 6.3467,-0.10955 0,0 z m 16.3126,5.84375 c 2.7863,6.81629 -4.6201,12.29961 -5.9892,18.62318 -7.8248,16.29362 -14.7529,33.03489 -22.9796,49.09557 3.099,-1.40633 1.9617,-5.74396 5,-7.78125 1.7453,-2.11158 3.9687,-3.32783 3.0312,-6.125 6.8501,-18.36601 16.2527,-35.70013 24.0938,-53.6875 -0.9763,-0.0379 -2.3229,-0.26266 -3.1562,-0.125 z m 24.1874,35.625 c -2.2972,5.76245 -6.7997,13.21855 -8.0312,18.03125 3.7489,-5.61558 5.7076,-12.98605 9.0938,-19.09375 l -0.7072,0.70711 -0.3554,0.35539 z m -58.875,37.90625 c -1.6961,1.42 -6.7649,3.14425 -6.4062,5.21875 2.2378,1.30232 7.9819,2.63978 8.2812,1.6875 -1.8968,-1.7999 -2.2816,-4.85598 -1.2812,-7.21875 l -0.5938,0.3125 z"
+             id="rect9765-9-6-6"
+             style="opacity:0.25;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1149.0312,276.21875 c 7.5033,2.62434 13.2773,9.46766 14.875,17.03125 2.3162,-0.50096 8.7223,1.1024 7.9063,-3.125 -1.6727,-10.90088 -14.0811,-14.66065 -23.5937,-14.21875 l 0.8124,0.3125 z M 1153,306.5625 c -3.0291,2.74346 -3.0498,8.029 -5.5955,11.41634 -6.4893,14.00692 -12.9761,28.01496 -19.467,42.02116 -1.6367,-4.12643 -6.4844,0.8308 -3.125,2.3125 3.7971,3.28538 5.3395,8.74623 5.2813,13.28125 4.9126,-0.2716 9.4769,-5.04659 6.9062,-9.96875 -1.3861,-3.35185 -4.9109,-5.09234 -8.0312,-6.5 7.8376,-17.50426 16.7761,-35.26654 24.0312,-52.5625 z m -38.3125,1.03125 c -3.4136,4.8596 -5.189,10.96434 -8,16.28125 3.4255,-4.79843 5.5001,-10.14726 7.9687,-15.34375 -0.1055,-0.18114 0.5838,-1.42435 0.031,-0.9375 z"
+             id="rect9765-7-7-6"
+             style="opacity:0.25;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1204.8542,275.22914 c -2.7253,4.47014 0.9357,9.72962 -0.4249,14.68734 0.2564,17.95371 0.015,36.19268 0.5812,53.96891 3.3281,0.606 6.6574,3.07225 8.2812,5.40625 3.8947,-1.94006 -0.2406,-5.78987 -3.0938,-5.9375 -6.6255,-0.86093 -2.9435,-9.67871 -3.9544,-14.43721 -0.4827,-17.62932 0.4183,-35.43554 -0.8268,-52.96904 -0.1383,-0.12729 -0.2568,-1.4626 -0.5625,-0.71875 z m 1.3437,83.78125 c -3.3625,2.69544 -0.4359,10.05329 -1.4801,14.46836 0.1036,14.87314 -0.6529,30.00569 -0.02,44.71914 1.173,1.19971 1.1789,-3.85982 1.1949,-4.87497 0.07,-18.06026 0.392,-36.46925 0.3051,-54.31253 z"
+             id="path9886-3-7-3"
+             style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             inkscape:connector-curvature="0"
+             d="m 1156.9583,368.23955 c 0.4896,4.50014 -3.7361,7.77191 -4.8126,11.4375 3.2621,-2.22994 8.8309,-7.2849 5.875,-11.5 -0.2225,0.0418 -1.3484,-0.61768 -1.0624,0.0625 z"
+             id="path10167-8-5-9"
+             style="opacity:0.25;fill:#ffffff;stroke:none;display:inline" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>



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