[epiphany] Add new app icons



commit 3c3d9bbe67acd59c101ebccbb5c06a6321f5c5b0
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Wed Sep 21 23:27:37 2016 -0500

    Add new app icons
    
    Thanks Jakub!
    
    https://bugzilla.gnome.org/show_bug.cgi?id=746716

 configure.ac                                       |    1 +
 data/Makefile.am                                   |    2 +-
 data/icons/Makefile.am                             |   56 +
 .../hicolor_apps_16x16_org.gnome.Epiphany.png      |  Bin 0 -> 1116 bytes
 .../hicolor_apps_24x24_org.gnome.Epiphany.png      |  Bin 0 -> 1721 bytes
 .../hicolor_apps_32x32_org.gnome.Epiphany.png      |  Bin 0 -> 2757 bytes
 .../hicolor_apps_48x48_org.gnome.Epiphany.png      |  Bin 0 -> 4395 bytes
 .../hicolor_apps_512x512_org.gnome.Epiphany.png    |  Bin 0 -> 137578 bytes
 ...r_apps_symbolic_org.gnome.Epiphany-symbolic.svg |   33 +
 data/icons/source.svg                              | 6028 ++++++++++++++++++++
 embed/ephy-about-handler.c                         |    4 +-
 src/ephy-main.c                                    |    2 +-
 src/ephy-window.c                                  |    2 +-
 src/window-commands.c                              |    2 +-
 14 files changed, 6124 insertions(+), 6 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index ceb3b38..5ff46f9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -197,6 +197,7 @@ AC_DEFINE_UNQUOTED([LSB_DISTRIBUTOR],["$LSB_DISTRIBUTOR"],[Distributor name])
 AC_CONFIG_FILES([
 Makefile
 data/Makefile
+data/icons/Makefile
 data/pages/Makefile
 doc/Makefile
 help/Makefile
diff --git a/data/Makefile.am b/data/Makefile.am
index faa375d..3bcf53e 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = pages
+SUBDIRS = icons pages
 
 desktop_in_files = epiphany.desktop.in
 desktopdir = $(datadir)/applications
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
new file mode 100644
index 0000000..c895a00
--- /dev/null
+++ b/data/icons/Makefile.am
@@ -0,0 +1,56 @@
+public_icons_themes = hicolor
+
+public_icons = \
+       hicolor_apps_symbolic_org.gnome.Epiphany-symbolic.svg \
+       hicolor_apps_16x16_org.gnome.Epiphany.png \
+       hicolor_apps_24x24_org.gnome.Epiphany.png \
+       hicolor_apps_32x32_org.gnome.Epiphany.png \
+       hicolor_apps_48x48_org.gnome.Epiphany.png \
+       hicolor_apps_512x512_org.gnome.Epiphany.png
+
+EXTRA_DIST = $(public_icons)
+
+dist_noinst_DATA = source.svg
+
+###############################################################################
+
+gtk_update_icon_cache = gtk-update-icon-cache -f -t
+
+update-icon-cache:
+       @-if test -z "$(DESTDIR)"; then \
+               echo "Updating Gtk icon cache."; \
+               for theme in $(public_icons_themes); do \
+                       $(gtk_update_icon_cache) $(datadir)/icons/$$theme; \
+               done; \
+       else \
+               echo "*** Icon cache not updated.  After (un)install, run this:"; \
+               for theme in $(public_icons_themes); do \
+                       echo "***   $(gtk_update_icon_cache) $(datadir)/icons/$$theme"; \
+               done; \
+       fi
+
+install-icons:
+       for icon in $(public_icons); do \
+               THEME=`echo $$icon | cut -d_ -f1`; \
+               CONTEXT=`echo $$icon | cut -d_ -f2`; \
+               SIZE=`echo $$icon | cut -d_ -f3`; \
+               ICONFILE=`echo $$icon | cut -d_ -f4`; \
+               mkdir -p $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \
+               $(INSTALL_DATA) $(srcdir)/$$icon 
$(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
+       done
+
+uninstall-icons:
+       -for icon in $(public_icons); do \
+               THEME=`echo $$icon | cut -d_ -f1`; \
+               CONTEXT=`echo $$icon | cut -d_ -f2`; \
+               SIZE=`echo $$icon | cut -d_ -f3`; \
+               ICONFILE=`echo $$icon | cut -d_ -f4`; \
+               rm -f $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
+       done
+
+install-data-local: install-icons update-icon-cache
+
+uninstall-local: uninstall-icons update-icon-cache
+
+-include $(top_srcdir)/git.mk
+
diff --git a/data/icons/hicolor_apps_16x16_org.gnome.Epiphany.png 
b/data/icons/hicolor_apps_16x16_org.gnome.Epiphany.png
new file mode 100644
index 0000000..029ef75
Binary files /dev/null and b/data/icons/hicolor_apps_16x16_org.gnome.Epiphany.png differ
diff --git a/data/icons/hicolor_apps_24x24_org.gnome.Epiphany.png 
b/data/icons/hicolor_apps_24x24_org.gnome.Epiphany.png
new file mode 100644
index 0000000..18170eb
Binary files /dev/null and b/data/icons/hicolor_apps_24x24_org.gnome.Epiphany.png differ
diff --git a/data/icons/hicolor_apps_32x32_org.gnome.Epiphany.png 
b/data/icons/hicolor_apps_32x32_org.gnome.Epiphany.png
new file mode 100644
index 0000000..86dce55
Binary files /dev/null and b/data/icons/hicolor_apps_32x32_org.gnome.Epiphany.png differ
diff --git a/data/icons/hicolor_apps_48x48_org.gnome.Epiphany.png 
b/data/icons/hicolor_apps_48x48_org.gnome.Epiphany.png
new file mode 100644
index 0000000..54cfef1
Binary files /dev/null and b/data/icons/hicolor_apps_48x48_org.gnome.Epiphany.png differ
diff --git a/data/icons/hicolor_apps_512x512_org.gnome.Epiphany.png 
b/data/icons/hicolor_apps_512x512_org.gnome.Epiphany.png
new file mode 100644
index 0000000..df8353a
Binary files /dev/null and b/data/icons/hicolor_apps_512x512_org.gnome.Epiphany.png differ
diff --git a/data/icons/hicolor_apps_symbolic_org.gnome.Epiphany-symbolic.svg 
b/data/icons/hicolor_apps_symbolic_org.gnome.Epiphany-symbolic.svg
new file mode 100644
index 0000000..ddc8e07
--- /dev/null
+++ b/data/icons/hicolor_apps_symbolic_org.gnome.Epiphany-symbolic.svg
@@ -0,0 +1,33 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg xmlns:dc='http://purl.org/dc/elements/1.1/' 
xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' 
xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' id='svg7384' 
sodipodi:docname='web-browser-symbolic.svg' version='1.1' inkscape:version='0.48.1 r9760' 
xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:cc='http://creativecommons.org/ns#' 
xmlns:svg='http://www.w3.org/2000/svg' width='16' xmlns='http://www.w3.org/2000/svg' height='16.00366'>
+  <metadata id='metadata90'>
+    <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>Gnome Symbolic Icon Theme</dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview inkscape:object-paths='false' inkscape:current-layer='layer11' 
inkscape:bbox-paths='false' inkscape:pageshadow='2' inkscape:snap-bbox='true' inkscape:pageopacity='1' 
inkscape:guide-bbox='true' pagecolor='#555753' bordercolor='#666666' showguides='true' 
inkscape:snap-bbox-midpoints='false' inkscape:window-maximized='0' inkscape:snap-grids='true' 
inkscape:window-width='1595' id='namedview88' inkscape:window-x='2191' inkscape:window-y='111' 
gridtolerance='10' borderopacity='1' showgrid='false' inkscape:cx='21.026784' inkscape:cy='2.9913602' 
inkscape:snap-nodes='false' inkscape:window-height='1162' inkscape:snap-global='true' 
inkscape:object-nodes='false' objecttolerance='10' inkscape:snap-others='false' inkscape:zoom='1' 
guidetolerance='10' inkscape:snap-to-guides='true' showborder='false'>
+    <inkscape:grid enabled='true' type='xygrid' id='grid4866' visible='true' snapvisiblegridlinesonly='true' 
empspacing='2' spacingx='1px' spacingy='1px'/>
+  </sodipodi:namedview>
+  <title id='title9167'>Gnome Symbolic Icon Theme</title>
+  <defs id='defs7386'/>
+  <g style='display:inline' inkscape:groupmode='layer' id='layer9' inkscape:label='status' 
transform='translate(-183,-529)'/>
+  <g inkscape:groupmode='layer' id='layer10' inkscape:label='devices' transform='translate(-183,-529)'/>
+  <g inkscape:groupmode='layer' id='layer11' inkscape:label='apps' transform='translate(-183,-529)'>
+    
+    <path 
style='color:#000000;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate'
 sodipodi:nodetypes='cccccccc' id='path6242' inkscape:connector-curvature='0' d='m 191.0002,533.84553 
0,10.38049 -2.34399,-2.28818 -1.33941,2.73465 c -0.32808,0.73962 -2.03368,0.14492 -1.5487,-0.84412 l 
1.32547,-2.83928 -2.95789,0 6.86452,-7.14356 z'/>
+    <path 
style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans'
 sodipodi:nodetypes='csccssccsssc' id='path23405' inkscape:connector-curvature='0' d='m 190.15645,530.0625 c 
-3.82659,0.46006 -6.57883,3.95775 -6.09375,7.78125 0.13127,1.03473 0.29377,1.38184 0.29377,1.38184 l 
1.67498,-1.63184 c -0.33104,-2.75343 1.62156,-5.23146 4.375,-5.5625 2.75344,-0.33104 5.23146,1.62156 
5.5625,4.375 0.31355,2.60795 -1.39127,5.02493 -3.96875,5.53125 l 0.0312,2 c 0,0 0.52086,-0.1059 
0.62354,-0.13097 3.41561,-0.83
 385 5.70627,-4.1273 5.28271,-7.65028 -0.46006,-3.8266 -3.95466,-6.55381 -7.78125,-6.09375 z'/>
+    <path 
style='opacity:0.3;color:#000000;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate'
 id='path11289' inkscape:connector-curvature='0' d='m 187.11293,536.81497 0,-0.20574 -0.19826,0.0186 c 
0.0165,-0.13095 0.0329,-0.26167 0.0496,-0.3926 l -0.11578,0 -0.11556,0.14959 -0.11578,0.0559 -0.1653,-0.0932 
-0.0165,-0.20575 0.0331,-0.22438 0.24798,-0.18688 0.19826,0 0.0329,-0.11229 0.24786,0.0559 0.18183,0.2246 
0.0331,-0.37419 0.31401,-0.26167 0.11567,-0.28055 0.23133,-0.0934 0.1322,-0.18688 0.29738,-0.0564 
0.14885,-0.22415 c -0.14874,0 -0.29749,0 -0.44623,0 l 0.28094,-0.13095 0.19814,0 0.28106,-0.0937 
0.0331,-0.11186 -0.0992,-0.0937 -0.11567,-0.0375 0.0331,-0.11208 -0.0826,-0.16822 -0.19837,0.0746 
0.0331,-0.14947 -0.23134,-0.13096 -0.18171,0.3177 0.0165,0.11229 -0.18171,0.075 -0.11578,0.24302 
-0.0495,-0.22438 -0.31402,-0.13095 -0.0496,-0.16822 0.41315,-0.24325 0.18
 182,-0.16822 0.0165,-0.20563 -0.0991,-0.0562 -0.13219,-0.0188 -0.0826,0.20575 c 0,0 -0.1382,0.0271 
-0.17373,0.0358 -0.45378,0.41804 -1.37066,1.32044 -1.58368,3.02405 0.008,0.0395 0.15441,0.26854 
0.15441,0.26854 l 0.347,0.20552 0.347,0.0937 m 3.96609,-4.30034 -0.4298,-0.16833 -0.49552,0.0561 
-0.61161,0.16822 -0.11567,0.11229 0.38008,0.26167 0,0.14959 -0.14875,0.14959 0.19846,0.39294 0.13188,-0.075 
0.16561,-0.26168 c 0.2553,-0.0789 0.4842,-0.16833 0.72686,-0.28053 l 0.19846,-0.5048 m 2.52925,0.34192 
-0.375,0.0937 -0.21875,0.15625 0,0.125 -0.375,0.25 0.0937,0.34375 0.21875,-0.15625 0.125,0.15625 
0.15625,0.0937 0.0937,-0.28125 -0.0625,-0.15625 0.0625,-0.0937 0.21875,-0.1875 0.0937,0 -0.0937,0.21875 
0,0.1875 c 0.0892,-0.0242 0.1588,-0.051 0.25,-0.0625 l -0.25,0.1875 0,0.125 -0.3125,0.21875 -0.28125,-0.0625 
0,-0.15625 -0.125,0.0625 0.0625,0.15625 -0.21875,0 -0.125,0.21875 -0.15625,0.15625 -0.0937,0.0312 0,0.1875 
0.0312,0.15625 -0.0312,0 0,0.53125 0.0625,-0.0312 0.0937,-0.21875 0.1
 875,-0.125 0.0312,-0.0937 0.28125,-0.0625 0.15625,0.1875 0.1875,0.0937 -0.0937,0.1875 0.15625,-0.0312 
0.0625,-0.21875 -0.1875,-0.21875 0.0625,0 0.21875,0.15625 0.0312,0.21875 0.15625,0.21875 0.0625,-0.3125 
0.0937,-0.0312 c 0.0959,0.0996 0.1692,0.23163 0.25,0.34375 l 0.28125,0 0.1875,0.125 -0.0937,0.0937 
-0.15625,0.15625 -0.25,0 -0.34375,-0.0937 -0.1875,0 -0.125,0.15625 -0.34375,-0.375 -0.25,-0.0625 
-0.375,0.0625 -0.15625,0.0937 0,2.40625 0.0312,0.0312 0.25,-0.15625 0.0937,0.0937 0.28125,0 0.125,0.15625 
-0.0937,0.3125 0.1875,0.1875 0,0.375 0.125,0.25 -0.0937,0.25 c -0.009,0.16159 0,0.30714 0,0.46875 
0.0795,0.21894 0.14355,0.43575 0.21875,0.65625 l 0.0625,0.34375 0,0.1875 0.125,0 0.21875,-0.125 0.25,0 
0.375,-0.4375 -0.0312,-0.15625 0.25,-0.21875 -0.1875,-0.1875 0.21875,-0.1875 0.21875,-0.125 0.0937,-0.125 
-0.0625,-0.25 0,-0.59375 0.1875,-0.375 0.1875,-0.25 0.25,-0.5625 0,-0.15625 c -0.11654,0.0146 -0.22972,0.0231 
-0.34375,0.0312 -0.0722,0.005 -0.14446,0 -0.21875,0 -0.12359,-0.
 25961 -0.2183,-0.50966 -0.3125,-0.78125 l -0.15625,-0.1875 -0.0937,-0.3125 0.0625,-0.0625 0.21875,0.25 
0.25,0.5625 0.15625,0.15625 -0.0625,0.21875 0.15625,0.15625 0.25,-0.25 0.3125,-0.21875 0.15625,-0.1875 
0,-0.21875 c -0.0389,-0.0732 -0.0547,-0.14545 -0.0937,-0.21875 l -0.15625,0.1875 -0.125,-0.15625 
-0.1875,-0.125 0,-0.28125 0.21875,0.21875 0.21875,-0.0312 c 0.10166,0.0923 0.19205,0.20751 0.28125,0.3125 l 
0.15625,-0.1875 c 0,-0.17463 -0.19976,-1.02044 -0.625,-1.75 -0.42526,-0.72932 -1.15625,-1.40625 
-1.15625,-1.40625 l -0.0625,0.0937 -0.21875,0.21875 -0.25,-0.25 0.25,0 0.125,-0.125 -0.46875,-0.0937 
-0.25,-0.0937 z'/>
+  </g>
+  <g inkscape:groupmode='layer' id='layer13' inkscape:label='places' transform='translate(-183,-529)'/>
+  <g inkscape:groupmode='layer' id='layer14' inkscape:label='mimetypes' transform='translate(-183,-529)'/>
+  <g style='display:inline' inkscape:groupmode='layer' id='layer15' inkscape:label='emblems' 
transform='translate(-183,-529)'/>
+  <g style='display:inline' inkscape:groupmode='layer' id='g71291' inkscape:label='emotes' 
transform='translate(-183,-529)'/>
+  <g style='display:inline' inkscape:groupmode='layer' id='g4953' inkscape:label='categories' 
transform='translate(-183,-529)'/>
+  <g style='display:inline' inkscape:groupmode='layer' id='layer12' inkscape:label='actions' 
transform='translate(-183,-529)'/>
+</svg>
diff --git a/data/icons/source.svg b/data/icons/source.svg
new file mode 100644
index 0000000..5a5c98f
--- /dev/null
+++ b/data/icons/source.svg
@@ -0,0 +1,6028 @@
+<?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";
+   inkscape:export-ydpi="90.000000"
+   inkscape:export-xdpi="90.000000"
+   inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
+   width="650"
+   height="600"
+   id="svg11300"
+   sodipodi:version="0.32"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="epiphany-jimmac.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   version="1.0"
+   style="display:inline;enable-background:new"
+   viewBox="0 0 650 600">
+  <defs
+     id="defs3">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient17030">
+      <stop
+         style="stop-color:#f6f6f5;stop-opacity:1;"
+         offset="0"
+         id="stop17026" />
+      <stop
+         id="stop17036"
+         offset="0.74219346"
+         style="stop-color:#d9d9d8;stop-opacity:1;" />
+      <stop
+         id="stop17034"
+         offset="0.84582925"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         style="stop-color:#c6c6c6;stop-opacity:1"
+         offset="1"
+         id="stop17028" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient17012">
+      <stop
+         style="stop-color:#afbcce;stop-opacity:1"
+         offset="0"
+         id="stop17008" />
+      <stop
+         style="stop-color:#244672;stop-opacity:1"
+         offset="1"
+         id="stop17010" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7683">
+      <stop
+         style="stop-color:#c7d9ec;stop-opacity:1"
+         offset="0.0000000"
+         id="stop7671" />
+      <stop
+         id="stop7673"
+         offset="0.43687943"
+         style="stop-color:#88aed7;stop-opacity:1" />
+      <stop
+         style="stop-color:#4676ad;stop-opacity:1"
+         offset="0.70800841"
+         id="stop7675" />
+      <stop
+         id="stop7677"
+         offset="0.82192427"
+         style="stop-color:#3b689e;stop-opacity:1" />
+      <stop
+         id="stop7679"
+         offset="0.93266732"
+         style="stop-color:#6491c8;stop-opacity:1" />
+      <stop
+         style="stop-color:#2e5990;stop-opacity:1"
+         offset="1"
+         id="stop7681" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient7667">
+      <stop
+         style="stop-color:#f5f8fc;stop-opacity:1"
+         offset="0"
+         id="stop7663" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.1671159"
+         offset="1"
+         id="stop7665" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7659"
+       inkscape:collect="always">
+      <stop
+         id="stop7655"
+         offset="0"
+         style="stop-color:#204a87;stop-opacity:1" />
+      <stop
+         id="stop7657"
+         offset="1"
+         style="stop-color:#3f7ab9;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5764">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:0"
+         offset="0"
+         id="stop5766" />
+      <stop
+         id="stop5772"
+         offset="0.84045273"
+         style="stop-color:#729fcf;stop-opacity:0" />
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1"
+         offset="1"
+         id="stop5768" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5705">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0"
+         offset="0"
+         id="stop5707" />
+      <stop
+         id="stop5713"
+         offset="0.29667869"
+         style="stop-color:#ffffff;stop-opacity:0" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop5709" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4611">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0"
+         offset="0"
+         id="stop4613" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1"
+         offset="1"
+         id="stop4615" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5022">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5024" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5026" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4964">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop4966" />
+      <stop
+         style="stop-color:#babdb6;stop-opacity:1"
+         offset="1"
+         id="stop4968" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7490-3">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0.0000000"
+         id="stop4711" />
+      <stop
+         id="stop4713"
+         offset="0.43687943"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         style="stop-color:#eeeeee;stop-opacity:1"
+         offset="0.71177262"
+         id="stop4715" />
+      <stop
+         id="stop4717"
+         offset="0.84187651"
+         style="stop-color:#d6d8d4;stop-opacity:1" />
+      <stop
+         id="stop4719"
+         offset="0.9053244"
+         style="stop-color:#e6e6e6;stop-opacity:1" />
+      <stop
+         style="stop-color:#ebedee;stop-opacity:1"
+         offset="1"
+         id="stop4721" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7490">
+      <stop
+         id="stop7482"
+         offset="0.0000000"
+         style="stop-color:#c7d9ec;stop-opacity:1" />
+      <stop
+         style="stop-color:#88aed7;stop-opacity:1"
+         offset="0.43687943"
+         id="stop7484" />
+      <stop
+         id="stop7486"
+         offset="0.71177262"
+         style="stop-color:#4676ad;stop-opacity:1" />
+      <stop
+         style="stop-color:#3b689e;stop-opacity:1"
+         offset="0.87011158"
+         id="stop7494" />
+      <stop
+         style="stop-color:#6491c8;stop-opacity:1"
+         offset="0.93638301"
+         id="stop7492" />
+      <stop
+         id="stop7488"
+         offset="1"
+         style="stop-color:#2e5990;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4235">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0"
+         id="stop4237" />
+      <stop
+         id="stop4243"
+         offset="0.40215105"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.137"
+         offset="1"
+         id="stop4239" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4389">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop4391" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.30735931"
+         offset="1"
+         id="stop4393" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5284">
+      <path
+         inkscape:connector-curvature="0"
+         id="path5286"
+         d="m 252.88542,155.05319 c 0,59.37287 -48.14649,107.50446 -107.52889,107.50446 -59.387855,0 
-107.531611,-48.13213 -107.531611,-107.50446 0,-59.370135 48.143756,-107.49681 107.531611,-107.49681 
59.3824,0 107.52889,48.126675 107.52889,107.49681 z"
+         
style="display:inline;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#edd400;enable-background:new" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3962-0-2"
+       id="radialGradient5148"
+       cx="141.28969"
+       cy="135.01369"
+       fx="141.28969"
+       fy="135.01369"
+       r="75.289673"
+       gradientTransform="matrix(1.6161086,-1.0279474e-7,1.0276643e-7,1.6156636,-90.753173,-105.67944)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3962-0-2">
+      <stop
+         style="stop-color:#c7d9ec;stop-opacity:1"
+         offset="0.0000000"
+         id="stop3964-8-7" />
+      <stop
+         id="stop5326"
+         offset="0.43687943"
+         style="stop-color:#88aed7;stop-opacity:1" />
+      <stop
+         style="stop-color:#4676ad;stop-opacity:1"
+         offset="0.71177262"
+         id="stop5328" />
+      <stop
+         style="stop-color:#2e5990;stop-opacity:1"
+         offset="1"
+         id="stop3966-3-8" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter5316"
+       x="-0.035995044"
+       width="1.0719901"
+       y="-0.036004961"
+       height="1.0720099">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.2254633"
+         id="feGaussianBlur5318" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter5389"
+       x="-0.023174696"
+       width="1.0463494"
+       y="-0.024886256"
+       height="1.0497725">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.0760177"
+         id="feGaussianBlur5391" />
+    </filter>
+    <radialGradient
+       r="75.289673"
+       fy="133.05569"
+       fx="143.78351"
+       cy="133.05569"
+       cx="143.78351"
+       gradientTransform="matrix(1.8356931,0.00481049,-0.00629625,2.4026615,-118.00784,-221.21405)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4890"
+       xlink:href="#linearGradient7683"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4389"
+       id="radialGradient4395"
+       cx="-558.91675"
+       cy="149.78072"
+       fx="-558.91675"
+       fy="149.78072"
+       r="75.26672"
+       gradientTransform="matrix(1.3301292,0,0,1.4349494,182.7417,-62.239983)"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter4423"
+       x="-0.01159157"
+       width="1.0231831"
+       y="-0.012438263"
+       height="1.0248765">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.73348704"
+         id="feGaussianBlur4425" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4715">
+      <path
+         inkscape:connector-curvature="0"
+         
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#edd400;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new"
+         d="m 277.1772,-188.84892 -23.83725,2.63877 -29.37883,8.09239 -5.62948,5.45358 18.29581,12.57828 
0,7.21278 -7.12481,7.12484 9.49978,18.91143 6.33312,-3.60632 8.00441,-12.57834 c 12.28134,-3.79596 
23.33498,-8.06043 35.00831,-13.45799 l 9.49969,-24.27706 z m -56.47062,1.7592 -10.20337,1.49531 
-4.83785,4.83785 -8.00441,1.14346 -7.1248,3.34251 -3.43043,1.67123 -2.11107,2.81478 10.29137,1.75915 
3.95824,-3.60638 8.00441,-1.75915 c 5.44614,-2.648 10.93379,-4.46473 16.71245,-6.33318 z m -32.54537,21.55029 
-7.21273,1.84715 -3.16659,6.33318 -3.95819,-8.09233 -1.58333,3.51835 0.79165,9.05996 -6.33318,5.36561 
-3.95822,9.93953 7.91644,0 3.95827,-9.05996 c 3.42834,-2.42382 6.88735,-4.87962 10.37932,-7.21276 l 
7.91643,2.72681 c 5.2974,3.59801 10.61898,7.22656 15.92087,10.81913 l 7.91644,-7.21275 -8.70812,-3.60638 
-3.95822,-8.09236 -15.12919,-1.75925 z m -33.42497,7.21276 -3.95819,9.93953 c -3e-5,0 -6.64691,1.24928 
-8.35625,1.67128 -21.82983,20.11003 -65.926563,63.532082 -76.173822,
 145.4866423 0.40588,1.90013 7.388703,12.9301797 7.388703,12.9301797 l 16.712471,9.93953 16.712498,4.48595 
7.12481,8.97198 11.17097,8.09239 6.33315,-0.87963 4.74991,2.11107 0,1.4953 -6.33319,17.0644 -4.74987,7.21275 
1.58331,3.60638 -3.95827,13.45791 14.24964,26.124298 14.33757,12.57833 6.33315,8.97195 -0.79166,18.91152 
4.83785,10.81913 -4.83785,20.67072 c -0.0767,0.0611 -0.19295,0.38215 0.26379,1.93518 0.61473,2.07175 
24.80446,16.92425 26.3847,15.74999 1.57481,-1.19608 2.90273,-2.28693 2.90273,-2.28693 l -1.58325,-4.39806 
7.04023,-7.3938 2.37488,-6.33316 10.3794,-3.60638 7.91641,-19.79108 -2.37494,-5.36561 5.54156,-8.09236 
11.96257,-2.72677 6.33315,-14.33759 -1.58325,-18.03186 9.49969,-13.457988 1.58334,-13.54591 c 
-13.05136,-6.47006 -25.92462,-13.12966 -38.87853,-19.79106 l -6.4211,-12.57839 -11.87473,-2.72675 
-6.4211,-17.06436 -15.8329,1.84717 -13.54585,-9.93953 -14.33757,12.57833 0,2.0231 c -4.33077,-1.24965 
-9.60191,-1.41196 -13.45802,-3.7823 l -3.16653,-8.97193 0,-9.9395
 3 -9.58769,0.8796 c 0.7962,-6.2995797 1.57333,-12.5250997 2.37493,-18.8235697 l -5.54152,0 -5.54153,7.12478 
-5.629417,2.72684 -7.916491,-4.48604 -0.791627,-9.93953 1.58331,-10.7312103 11.962655,-8.9719 9.49969,0 
1.58328,-5.45355 11.96265,2.72677 8.70807,10.81913 1.58331,-18.03191 15.12916,-12.57839 5.54152,-13.54588 
11.17103,-4.48601 6.3331,-8.97192 14.33754,-2.72678 7.12486,-10.73119 -21.4624,0 13.54597,-6.33315 9.49968,0 
13.54594,-4.486012 1.58325,-5.3656 -4.74984,-4.57393 -5.62947,-1.75923 1.58331,-5.36552 -3.95825,-8.09238 
-9.49974,3.51837 1.58333,-7.12475 -11.171,-6.33315 -8.70809,15.30505 0.7916,5.36564 -8.70803,3.60637 
-5.62948,11.698762 -2.37493,-10.819162 -15.12922,-6.2452 -2.37491,-8.0923 19.87906,-11.69879 8.79604,-8.09239 
0.79168,-9.9395 -4.74993,-2.63883 -6.4211,-0.96757 z m 222.71596,0 -15.12922,3.6064 -9.49977,6.33313 
0,5.36563 -15.12916,9.93953 3.16659,14.33751 8.79606,-6.24512 5.54147,6.24512 6.33315,3.60641 
4.04617,-10.73116 -2.46291,-6.33316 2.46291,-4.486
  8.70809,-8.09239 3.95819,0 -3.95819,8.97202 0,8.09238 c 3.65275,-0.99384 7.34501,-1.2946 11.08305,-1.75923 
l -10.2914,7.12475 -0.79165,4.57401 -11.9626,9.85153 -11.87471,-2.72678 0,-7.12475 -5.54147,3.60632 
2.37494,6.24521 -8.79601,0 -4.7499,8.092382 -5.98132,6.77292 -10.73115,2.19904 6.33315,6.33318 1.6712,6.24515 
-8.00435,0 -10.2914,5.45358 0,16.18471 4.74984,0 4.39806,4.92577 9.93953,-4.92577 3.95825,-9.93956 
7.12472,-4.48597 1.58337,-3.60641 11.96254,-2.63875 6.33318,7.21279 7.21278,3.51834 -4.04616,8.09242 
6.42107,-1.75923 3.16665,-8.09239 -8.00447,-8.97193 3.25454,0 7.91644,6.24516 1.58328,9.05995 7.12483,8.09236 
1.58326,-11.69876 4.04625,-1.84718 c 3.93044,4.0791 6.98089,8.9552 10.29137,13.54594 l 11.9626,0.8796 
7.12478,4.48601 -3.16654,4.48597 -7.12483,6.33316 -10.37932,0 -13.54591,-4.48598 -7.12484,0.87957 
-5.18963,5.8054 -14.68943,-14.77735 -10.29137,-2.72678 -15.12916,1.7592 -13.54594,3.60641 c -7.58319,8.59438 
-15.07657,17.19854 -22.25402,26.12421 l -8.70812,20.
 6707703 3.95824,4.48598 -7.12475,10.8191297 7.91644,18.91149 c 6.75964,7.64432 13.48107,15.21995 
20.2309,22.86973 l 9.93953,-8.53217 4.39806,5.0138 10.7311,-6.77303 3.60641,4.04614 10.73121,0 6.15721,6.949 
-3.78227,12.40239 7.56459,8.53217 -0.43984,14.86529 5.62947,10.731208 -4.04622,9.05993 c -0.39581,6.61877 
-0.79157,13.17118 -0.79157,19.79106 3.25791,8.96836 6.51125,17.88316 9.58772,26.91596 l 2.37488,14.42551 
0,7.21272 5.54153,0 8.79603,-5.36552 10.29137,0 15.48103,-17.59216 -1.93512,-5.80536 10.29137,-9.05993 
-7.56456,-8.53217 9.14785,-7.6526 8.79609,-5.36552 3.95824,-4.48604 -2.37499,-9.93953 0,-25.156688 
7.12481,-15.30508 8.79606,-9.85159 9.49969,-23.39752 0,-6.33315 c -4.73827,0.59669 -9.35003,1.16209 
-13.98569,1.4953 l 9.58766,-9.58763 13.10615,-8.9719797 7.21278,-8.09239 0,-9.05993 c -1.59125,-3.0000403 
-3.23574,-5.9719703 -4.83782,-8.9719503 l -6.33315,7.2127503 -4.74993,-5.3656103 -7.12478,-5.45358 
0,-11.69867 8.35628,9.49968 9.0599,-1.40736 c 4.16448,3.77957 8.3
 0994,7.39557 11.96263,11.69874 l 5.98134,-6.68494 c 0,-7.1535 -8.17732,-42.41938 -25.59651,-72.30358 
-17.41927,-29.874282 -47.93851,-57.174282 -47.93848,-57.174282 l -2.37494,3.9582 -8.00443,8.97204 
-10.29135,-10.81916 10.29135,0 4.7499,-5.36561 -18.99947,-3.60638 z m -78.81257,11.69873 -6.33318,3.60643 
-3.16662,-0.87965 -0.79157,5.3656 5.54147,3.60644 9.49972,-6.24524 z m -104.93687,1.84717 -6.33318,4.48601 
7.91644,5.36564 6.33318,0 0,-6.24524 z m 125.60753,20.67075 0,5.36555 3.16662,3.6064 0,8.09233 
-1.58334,10.819192 8.79609,-1.75923 6.33319,-6.333182 -5.54156,-5.36555 c -1.86898,-4.9756 -4.08188,-9.65328 
-6.4211,-14.42551 z m -3.16653,10.8191 -5.54153,1.75923 1.58331,9.93956 7.12475,-3.6064 z m 
-109.68677,16.184742 2.37496,12.57839 4.7499,-7.21278 z m 207.58674,70.19251 9.14788,10.29137 
10.73121,22.9576503 6.33313,7.2127797 -3.16651,8.09236 6.06926,6.86088 c -2.7898,0.18906 -5.57569,0.3519 
-8.4442,0.3519 -5.06239,-10.63451 -8.89929,-21.3320397 -12.75433,-32.4574497 l -6.
 77292,-7.6525403 -3.51843,-13.01818 z"
+         id="path4717"
+         
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
 />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4235"
+       id="radialGradient4241"
+       cx="246.30942"
+       cy="-71.048645"
+       fx="246.30942"
+       fy="-71.048645"
+       r="211.16611"
+       gradientTransform="matrix(0.91938778,0,0,0.85900604,19.493304,-4.051704)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       r="12.289036"
+       fy="63.965389"
+       fx="15.115514"
+       cy="63.965389"
+       cx="15.115514"
+       gradientTransform="scale(1.64399,0.608276)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient13305"
+       xlink:href="#linearGradient4389"
+       inkscape:collect="always" />
+    <radialGradient
+       r="12.289036"
+       fy="63.965389"
+       fx="15.115514"
+       cy="63.965389"
+       cx="15.115514"
+       gradientTransform="matrix(7.7938877,0,0,3.3487845,158.19074,-24.730849)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient13303"
+       xlink:href="#linearGradient4389"
+       inkscape:collect="always" />
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter10592"
+       x="-0.14567067"
+       width="1.2913413"
+       y="-0.39370452"
+       height="1.787409">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.4524933"
+         id="feGaussianBlur10594" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter10612"
+       x="-0.1115141"
+       width="1.2230282"
+       y="-0.25953554"
+       height="1.5190711">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.9148314"
+         id="feGaussianBlur10614" />
+    </filter>
+    <linearGradient
+       id="linearGradient8215">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8211" />
+      <stop
+         style="stop-color:#e4e4e4;stop-opacity:1"
+         offset="1"
+         id="stop8213" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter14700"
+       x="-0.018287096"
+       width="1.0365742"
+       y="-0.011875705"
+       height="1.0237514">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.55693538"
+         id="feGaussianBlur14702" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter14766"
+       x="-0.088387638"
+       width="1.1767753"
+       y="-0.057399243"
+       height="1.1147985">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.6918543"
+         id="feGaussianBlur14768" />
+    </filter>
+    <radialGradient
+       cx="17.81411"
+       cy="24.149399"
+       fx="17.81411"
+       fy="24.149399"
+       gradientTransform="matrix(11.20315,0,-1.2442757e-7,10.738928,234.79845,-86.651607)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4851-7"
+       inkscape:collect="always"
+       r="9.125"
+       xlink:href="#linearGradient8215" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9929">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9931" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop9933" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9929"
+       id="linearGradient8209"
+       x1="367.10706"
+       y1="218.87216"
+       x2="461.06448"
+       y2="229.83232"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7659"
+       id="linearGradient5986"
+       x1="13.578153"
+       y1="40.471546"
+       x2="13.578153"
+       y2="17.33674"
+       gradientUnits="userSpaceOnUse" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5956-9-3">
+      <path
+         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+         sodipodi:nodetypes="cccssccc"
+         id="path5958-9-5"
+         d="m 19.25,17.75 -17,16.5 7.75,0.25 c 0,0 -3.25,6.75 -3.25,6.75 -1,3 3.5,4.125 4.25,1.875 0,0 
3,-6.75 3,-6.75 l 5.5,5.875 z"
+         inkscape:connector-curvature="0" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6010">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.21906419"
+         id="feGaussianBlur6012" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9929"
+       id="radialGradient6008"
+       cx="83.5"
+       cy="203.875"
+       fx="83.5"
+       fy="203.875"
+       r="12.25"
+       gradientTransform="matrix(2.1020408,-4.0306123e-7,2.9936101e-7,1.5612245,238.18758,-62.776044)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       r="75.289673"
+       fy="131.35249"
+       fx="142.66158"
+       cy="131.35249"
+       cx="142.66158"
+       gradientTransform="matrix(4.7040859,0,0,4.7027907,-399.10995,-760.25689)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4890-6"
+       xlink:href="#linearGradient7490-3"
+       inkscape:collect="always" />
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter14927"
+       x="-0.016799999"
+       width="1.0336"
+       y="-0.016799999"
+       height="1.0336">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.0572085"
+         id="feGaussianBlur14929" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4964"
+       id="linearGradient4970"
+       x1="288.56186"
+       y1="70.55368"
+       x2="208.64906"
+       y2="-149.36441"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter4976"
+       x="-0.051555604"
+       width="1.1031112"
+       y="-0.051644472"
+       height="1.1032889">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="9.0273614"
+         id="feGaussianBlur4978" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter5018"
+       x="-0.011989675"
+       width="1.0239794"
+       y="-0.012010342"
+       height="1.0240207">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.0993864"
+         id="feGaussianBlur5020" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="linearGradient5028"
+       x1="299.52448"
+       y1="137.52701"
+       x2="-61.785999"
+       y2="-310.99579"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter4472"
+       x="-0.0108907"
+       width="1.0217814"
+       y="-0.013360909"
+       height="1.0267218">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3983219"
+         id="feGaussianBlur4474" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter4607"
+       x="-0.018514191"
+       width="1.0370284"
+       y="-0.022713545"
+       height="1.0454271">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="4.0771472"
+         id="feGaussianBlur4609" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4611"
+       id="radialGradient4617"
+       cx="241.39645"
+       cy="70.292183"
+       fx="241.39645"
+       fy="70.292183"
+       r="215.438"
+       gradientTransform="matrix(1.0181673,0.94390002,-0.3321455,0.35827916,20.320573,-160.82876)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4611"
+       id="radialGradient4642"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.2224021,-0.12369281,0.04918475,0.48607144,-53.09473,60.511173)"
+       cx="265.69565"
+       cy="-161.36919"
+       fx="265.69565"
+       fy="-161.36919"
+       r="215.438" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4611"
+       id="radialGradient4667"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97243671,-0.87320336,0.36185187,0.4029738,-33.971778,305.88933)"
+       cx="327.43619"
+       cy="119.70666"
+       fx="327.43619"
+       fy="119.70666"
+       r="215.438" />
+    <radialGradient
+       r="75.289673"
+       fy="131.35249"
+       fx="142.66158"
+       cy="131.35249"
+       cx="142.66158"
+       gradientTransform="matrix(2.1916697,0,0,2.1910663,-169.61905,-192.73421)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4890-3"
+       xlink:href="#linearGradient7490"
+       inkscape:collect="always" />
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter4705-9"
+       x="-0.051592894"
+       width="1.1031858"
+       y="-0.05160711"
+       height="1.1032141">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.5921143"
+         id="feGaussianBlur4707-4" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5531-9">
+      <path
+         
style="display:inline;overflow:visible;visibility:visible;opacity:0.344;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;marker:none;enable-background:accumulate"
+         d="m 21,-231 0,512 512,0 0,-512 -512,0 z m 257.0664,36.72656 c 47.7795,0 91.8255,15.96892 
127.1094,42.84571 l 1.6543,0.31445 -0.5039,0.56836 c 1.7678,1.36596 3.5217,2.74946 5.2441,4.16992 l 
0.8906,-1.48438 c 0,0 30.5183,27.29955 47.9375,57.17383 17.4192,29.8842 25.5977,65.15119 25.5977,72.30469 l 
-0.6309,0.70508 c 1.7274,10.83853 2.6368,21.94867 2.6368,33.27344 0,115.9172 -93.9998,209.88867 
-209.9356,209.88867 -33.9844,0 -66.0761,-8.08353 -94.4746,-22.41602 -2.55815,0.38517 -24.84405,-13.30576 
-26.15235,-15.68164 -54.01236,-37.97739 -89.3125,-100.76018 -89.3125,-171.79101 0,-4.15343 0.13499,-8.27345 
0.37305,-12.36719 -1.15947,-2.01777 -2.111,-3.79909 -2.25195,-4.45899 10.24726,-81.95456 54.34398,-125.37825 
76.17383,-145.48828 0.64591,-0.15946 2.02414,-0.43703 3.45507,-0.7207 2.15668,-1.74965 4.34019,-3.46821 
6.56641,-5.13281 l 2.29297,-5.75586 4.76367,0.71679 c 8.38788,-5.74909 17.21323,-10.90369 26.41797,-15.40624 
l 1.1875,-1.58399 3.43163,-1.67187 7.1231,-3.3418 5
 .0527,-0.7207 c 1.3427,-0.51639 2.6891,-1.02425 4.0449,-1.51368 l 3.7461,-3.74609 10.2031,-1.49609 
0.3887,0.64062 c 18.1172,-5.09488 37.2242,-7.82422 56.9707,-7.82422 z"
+         id="path5533-2"
+         inkscape:connector-curvature="0" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter5685"
+       x="-0.038249354"
+       width="1.0764987"
+       y="-0.038551837"
+       height="1.0771037">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.8978455"
+         id="feGaussianBlur5687" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter5701"
+       x="-0.038218121"
+       width="1.0764362"
+       y="-0.038583619"
+       height="1.0771672">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7.8924558"
+         id="feGaussianBlur5703" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5705"
+       id="radialGradient5711"
+       cx="289.21088"
+       cy="100.44889"
+       fx="289.21088"
+       fy="100.44889"
+       r="223.04627"
+       gradientTransform="matrix(1.4922802,-1.4922803,0.58346318,0.58346313,-133.09878,445.30597)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5705"
+       id="radialGradient5740"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-3.0293702,0.08218421,-0.01695557,-0.62499482,1205.1978,-130.36003)"
+       cx="306.24802"
+       cy="-77.362541"
+       fx="306.24802"
+       fy="-77.362541"
+       r="223.04627" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5705"
+       id="radialGradient5753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.2895272,1.7463815,-0.54229904,0.40043333,-124.09821,-361.44935)"
+       cx="247.03883"
+       cy="-36.497307"
+       fx="247.03883"
+       fy="-36.497307"
+       r="223.04627" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5764"
+       id="radialGradient5770"
+       cx="277"
+       cy="25"
+       fx="277"
+       fy="25"
+       r="256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.140625,0,0,1,-38.953125,0)" />
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter5921"
+       x="-0.082302632"
+       width="1.1646053"
+       y="-0.099285714"
+       height="1.1985714">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="13.03125"
+         id="feGaussianBlur5923" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7667"
+       id="radialGradient7669"
+       cx="126"
+       cy="63.220589"
+       fx="126"
+       fy="63.220589"
+       r="70"
+       gradientTransform="matrix(1,0,0,0.97142857,0,1.5857143)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient8245">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8241" />
+      <stop
+         style="stop-color:#dddddd;stop-opacity:1"
+         offset="1"
+         id="stop8243" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5911-7-2-0">
+      <stop
+         id="stop5913-2-5-5"
+         offset="0"
+         style="stop-color: rgb(246, 246, 245); stop-opacity: 1;" />
+      <stop
+         style="stop-color: rgb(236, 236, 233); stop-opacity: 1;"
+         offset="0.38095239"
+         id="stop5921-5-7-3" />
+      <stop
+         style="stop-color: rgb(197, 197, 190); stop-opacity: 1;"
+         offset="0.76190478"
+         id="stop5919-6-6-1" />
+      <stop
+         id="stop5915-2-8-8"
+         offset="1"
+         style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6070-954-9-1">
+      <stop
+         style="stop-color: rgb(246, 246, 245); stop-opacity: 1;"
+         offset="0"
+         id="stop6072-23-5-6" />
+      <stop
+         id="stop6074-8-2-5"
+         offset="0.49916622"
+         style="stop-color: rgb(236, 236, 233); stop-opacity: 1;" />
+      <stop
+         id="stop6076-5-8-9"
+         offset="0.76190478"
+         style="stop-color: rgb(154, 154, 141); stop-opacity: 1;" />
+      <stop
+         style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"
+         offset="1"
+         id="stop6078-20-7-1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6082-6-5-4">
+      <stop
+         style="stop-color: rgb(246, 246, 245); stop-opacity: 1;"
+         offset="0"
+         id="stop6084-1-0-1" />
+      <stop
+         id="stop6086-7-9-0"
+         offset="0.53798574"
+         style="stop-color: rgb(236, 236, 233); stop-opacity: 1;" />
+      <stop
+         id="stop6088-8-2-4"
+         offset="0.85428226"
+         style="stop-color: rgb(151, 151, 138); stop-opacity: 1;" />
+      <stop
+         style="stop-color: rgb(255, 255, 255); stop-opacity: 1;"
+         offset="1"
+         id="stop6090-1-5-1" />
+    </linearGradient>
+    <radialGradient
+       cx="17.81411"
+       cy="24.149399"
+       fx="17.81411"
+       fy="24.149399"
+       gradientTransform="matrix(2.643979,0,-2.93653e-8,2.534421,-28.97514,-41.1733)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4851"
+       inkscape:collect="always"
+       r="9.125"
+       xlink:href="#linearGradient8245" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8251"
+       id="linearGradient8253"
+       x1="15.403804"
+       y1="43.494968"
+       x2="15.403804"
+       y2="22.458544"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8251">
+      <stop
+         style="stop-color:#90938e;stop-opacity:1"
+         offset="0"
+         id="stop8247" />
+      <stop
+         style="stop-color:#bfc1be;stop-opacity:1"
+         offset="1"
+         id="stop8249" />
+    </linearGradient>
+    <radialGradient
+       r="9.125"
+       fy="24.149399"
+       fx="17.81411"
+       cy="24.149399"
+       cx="17.81411"
+       gradientTransform="matrix(2.643979,0,-2.93653e-8,2.534421,-28.97514,-41.1733)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient19950"
+       xlink:href="#linearGradient8245"
+       inkscape:collect="always" />
+    <radialGradient
+       r="9.125"
+       fy="24.149399"
+       fx="17.81411"
+       cy="24.149399"
+       cx="17.81411"
+       gradientTransform="matrix(2.643979,0,-2.93653e-8,2.534421,-28.97514,-41.1733)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient19946"
+       xlink:href="#linearGradient8245"
+       inkscape:collect="always" />
+    <radialGradient
+       r="9.125"
+       fy="24.149399"
+       fx="17.81411"
+       cy="24.149399"
+       cx="17.81411"
+       gradientTransform="matrix(2.643979,0,-2.93653e-8,2.534421,-28.97514,-41.1733)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient19942"
+       xlink:href="#linearGradient8245"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(0.21505108,0,0,0.21505108,-75.60471,-16.148192)"
+       inkscape:collect="always"
+       xlink:href="#linearGradient9929"
+       id="linearGradient8209-9"
+       x1="367.10706"
+       y1="218.87216"
+       x2="461.06448"
+       y2="229.83232"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9205"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.00851,0,0,0.373148,-0.211403,24.39)"
+       cx="24.849752"
+       cy="38.908627"
+       fx="24.849752"
+       fy="38.908627"
+       r="20.203051" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9207"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.37,0,24.5124)"
+       cx="24.849752"
+       cy="38.908627"
+       fx="24.849752"
+       fy="38.908627"
+       r="20.203051" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9217"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9215"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9213"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9223"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9221"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9219"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9229"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9227"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9225"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9235"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9233"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9231"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9241"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9239"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9237"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9247"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9245"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9243"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0.656735,2.13614)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9253"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9251"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9249"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9259"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9257"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9265"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9263"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9261"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9269"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient9267"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9283"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9281"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9279"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9289"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9287"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9285"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9295"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9293"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9291"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9301"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9299"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9297"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9307"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9305"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9313"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9311"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9309"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9319"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9317"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9315"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9325"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9323"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9321"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9331"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9329"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient9327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9929"
+       id="radialGradient9333"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.96261,0,0,1.09426,-74.6625,-21.1211)"
+       cx="77.5625"
+       cy="152.51079"
+       fx="77.5625"
+       fy="152.51079"
+       r="13.03125" />
+    <filter
+       id="filter10631-9-5-7"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur10633-6-0-3"
+         stdDeviation="0.5906498"
+         inkscape:collect="always" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8736"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.00851,0,0,0.373148,-0.211403,24.39)"
+       cx="24.849752"
+       cy="38.908627"
+       fx="24.849752"
+       fy="38.908627"
+       r="20.203051" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8738"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.37,0,24.5124)"
+       cx="24.849752"
+       cy="38.908627"
+       fx="24.849752"
+       fy="38.908627"
+       r="20.203051" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8749"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8746"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8744"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8755"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8751"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8761"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8759"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8757"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8767"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8765"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8763"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8773"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8771"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8769"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8779"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8777"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8775"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0.656735,2.13614)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8785"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8783"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8781"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8791"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8789"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8787"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8797"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8795"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8793"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8803"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8801"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8799"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8809"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8807"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6070-954-9-1"
+       id="radialGradient8805"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="23.931307"
+       cy="14.656409"
+       fx="23.931307"
+       fy="14.656409"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8815"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8813"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8811"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8821"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8819"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8817"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8827"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8825"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8823"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8833"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8831"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8829"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8839"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8837"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6082-6-5-4"
+       id="radialGradient8835"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.38067,0,0,1.28624,-9.41958,-3.29356)"
+       cx="24.735497"
+       cy="17.350956"
+       fx="24.735497"
+       fy="17.350956"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8845"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8843"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8841"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8851"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8849"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8847"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8857"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8855"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8853"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8863"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8861"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8859"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9929"
+       id="radialGradient8865"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.96261,0,0,1.09426,-74.6625,-21.1211)"
+       cx="77.5625"
+       cy="152.51079"
+       fx="77.5625"
+       fy="152.51079"
+       r="13.03125" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8354"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8352"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8350"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8360"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8358"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8356"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8366"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8364"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8362"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8372"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8370"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8368"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8378"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8376"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8374"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8384"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8382"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8380"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0.656735,2.13614)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8390"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8388"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8386"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8396"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8394"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8392"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8402"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8400"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8398"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8408"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8406"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8404"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8414"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8412"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6070-954-9-1"
+       id="radialGradient8410"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="23.931307"
+       cy="14.656409"
+       fx="23.931307"
+       fy="14.656409"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8420"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8418"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8416"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8426"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8424"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8422"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8432"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8430"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8428"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8438"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8436"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8434"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8444"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8442"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6082-6-5-4"
+       id="radialGradient8440"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.38067,0,0,1.28624,-9.41958,-3.29356)"
+       cx="24.735497"
+       cy="17.350956"
+       fx="24.735497"
+       fy="17.350956"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8450"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8448"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8446"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8456"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8454"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8452"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8462"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8460"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8458"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8468"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8466"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8464"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9929"
+       id="radialGradient8470"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.96261,0,0,1.09426,-74.6625,-21.1211)"
+       cx="77.5625"
+       cy="152.51079"
+       fx="77.5625"
+       fy="152.51079"
+       r="13.03125" />
+    <filter
+       id="filter10631-9-19"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur10633-6-00"
+         stdDeviation="0.5906498"
+         inkscape:collect="always" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8472"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.00851,0,0,0.373148,-0.211403,24.39)"
+       cx="24.849752"
+       cy="38.908627"
+       fx="24.849752"
+       fy="38.908627"
+       r="20.203051" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8474"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.37,0,24.5124)"
+       cx="24.849752"
+       cy="38.908627"
+       fx="24.849752"
+       fy="38.908627"
+       r="20.203051" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8484"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8482"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8480"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8490"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8488"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8486"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8496"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8494"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8492"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8502"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8500"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8498"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8508"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8506"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8504"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8514"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8512"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8510"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0.656735,2.13614)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8520"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8518"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8516"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8524"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8522"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8532"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8530"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8528"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8538"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8536"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5022"
+       id="radialGradient8534"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.931606,0,1.57305)"
+       cx="24.881451"
+       cy="22.999987"
+       fx="24.881451"
+       fy="22.999987"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8544"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8542"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6070-954-9-1"
+       id="radialGradient8540"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="23.931307"
+       cy="14.656409"
+       fx="23.931307"
+       fy="14.656409"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8550"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8548"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8546"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8556"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8554"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8552"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8562"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8560"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8558"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8568"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8566"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8564"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8574"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8572"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6082-6-5-4"
+       id="radialGradient8570"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.38067,0,0,1.28624,-9.41958,-3.29356)"
+       cx="24.735497"
+       cy="17.350956"
+       fx="24.735497"
+       fy="17.350956"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8580"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8578"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8576"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8586"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8584"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8582"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8592"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8590"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8588"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8598"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8596"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5911-7-2-0"
+       id="radialGradient8594"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.70047,0,0,1.58417,-16.9077,-7.70222)"
+       cx="24.137535"
+       cy="14.213541"
+       fx="24.137535"
+       fy="14.213541"
+       r="19.18985" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9929"
+       id="radialGradient8600"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.96261,0,0,1.09426,-74.6625,-21.1211)"
+       cx="77.5625"
+       cy="152.51079"
+       fx="77.5625"
+       fy="152.51079"
+       r="13.03125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8251"
+       id="linearGradient16969"
+       gradientUnits="userSpaceOnUse"
+       x1="15.403804"
+       y1="43.494968"
+       x2="15.403804"
+       y2="22.458544" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8251"
+       id="linearGradient16971"
+       gradientUnits="userSpaceOnUse"
+       x1="15.403804"
+       y1="43.494968"
+       x2="15.403804"
+       y2="22.458544" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8251"
+       id="linearGradient16973"
+       gradientUnits="userSpaceOnUse"
+       x1="15.403804"
+       y1="43.494968"
+       x2="15.403804"
+       y2="22.458544" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7683"
+       id="radialGradient17006"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.1674769,0,0,0.21920349,105.12982,13.995)"
+       cx="134.16304"
+       cy="107.43826"
+       fx="134.16304"
+       fy="107.43826"
+       r="75.289673" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient17012"
+       id="linearGradient17014"
+       x1="122.84129"
+       y1="34.597599"
+       x2="122.84129"
+       y2="50.683308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0034208,0,0,1.0034208,-0.43533004,-0.15179326)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient17030"
+       id="radialGradient17032"
+       cx="26.411207"
+       cy="16.586479"
+       fx="26.411207"
+       fy="16.586479"
+       r="9.32225"
+       gradientTransform="matrix(2.716704,-0.07797055,0.09937816,3.4646778,-46.988559,-43.363239)"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter5171"
+       x="-0.023996695"
+       width="1.0479934"
+       y="-0.024003306"
+       height="1.0480066">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.6009834"
+         id="feGaussianBlur5173" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     stroke="#ef2929"
+     fill="#f57900"
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="0.25490196"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="411.4711"
+     inkscape:cy="258.69317"
+     inkscape:current-layer="layer9"
+     showgrid="false"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:showpageshadow="false"
+     inkscape:window-width="1920"
+     inkscape:window-height="1016"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     width="400px"
+     height="300px"
+     inkscape:snap-nodes="false"
+     inkscape:snap-bbox="true"
+     objecttolerance="7"
+     gridtolerance="12"
+     guidetolerance="13"
+     inkscape:window-maximized="1"
+     inkscape:pagecheckerboard="false"
+     showguides="false"
+     inkscape:guide-bbox="true"
+     inkscape:locked="false"
+     inkscape:bbox-paths="true"
+     inkscape:snap-bbox-edge-midpoints="true">
+    <inkscape:grid
+       type="xygrid"
+       id="grid5883"
+       spacingx="1px"
+       spacingy="1px"
+       enabled="true"
+       visible="true" />
+    <sodipodi:guide
+       position="277.89297,343.6539"
+       orientation="1,0"
+       id="guide4723"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="299.81328,284.96403"
+       orientation="0,1"
+       id="guide4725"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="1066.317,155.56349"
+       orientation="1,0"
+       id="guide4837"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="565,254"
+       orientation="1,0"
+       id="guide7687"
+       inkscape:locked="false" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata4">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Jakub Steiner</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:source>http://jimmac.musichall.cz</dc:source>
+        <cc:license
+           rdf:resource="" />
+        <dc:title />
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>mp3</rdf:li>
+            <rdf:li>audio</rdf:li>
+            <rdf:li>media</rdf:li>
+            <rdf:li>file</rdf:li>
+            <rdf:li>audio</rdf:li>
+            <rdf:li>sound</rdf:li>
+            <rdf:li>music</rdf:li>
+            <rdf:li>wave</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:date />
+        <dc:rights>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:rights>
+        <dc:publisher>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:publisher>
+        <dc:identifier />
+        <dc:relation />
+        <dc:language />
+        <dc:coverage />
+        <dc:description>mimetypes</dc:description>
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:contributor>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="artwork"
+     inkscape:groupmode="layer"
+     style="display:inline"
+     transform="translate(0,300)">
+    <g
+       inkscape:groupmode="layer"
+       id="layer2"
+       inkscape:label="the darkness"
+       style="display:none">
+      <rect
+         
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         id="rect7685"
+         width="666"
+         height="624"
+         x="-4"
+         y="-307" />
+    </g>
+    <rect
+       
style="display:none;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+       id="256x256"
+       width="256"
+       height="256"
+       x="26.5"
+       y="32.823101"
+       inkscape:label="256x256" />
+    <rect
+       y="32.823101"
+       x="-35.5"
+       height="48"
+       width="48"
+       id="48x48"
+       
style="display:none;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+       inkscape:label="48x48" />
+    <rect
+       
style="display:none;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+       id="24x24"
+       width="24"
+       height="24"
+       x="-120.5"
+       y="32.823101"
+       inkscape:label="24x24" />
+    <rect
+       y="32.823101"
+       x="-152.5"
+       height="16"
+       width="16"
+       id="16x16"
+       
style="display:none;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+       inkscape:label="16x16" />
+    <text
+       xml:space="preserve"
+       
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:56.11526489px;line-height:125%;font-family:Myriad;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;writing-mode:lr-tb;text-anchor:start;display:none;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+       x="-136.6134"
+       y="-51.053188"
+       id="text4713"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan4715"
+         x="-136.6134"
+         y="-51.053188">folder</tspan></text>
+    <rect
+       inkscape:label="32x32"
+       y="32.823101"
+       x="-84.5"
+       height="32"
+       width="32"
+       id="32x32"
+       
style="display:none;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
 />
+    <rect
+       
style="display:none;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+       id="rect6083"
+       width="256"
+       height="256"
+       x="-255.29855"
+       y="117.96112"
+       inkscape:label="256x256" />
+    <rect
+       y="117.96112"
+       x="-317.29855"
+       height="48"
+       width="48"
+       id="rect6085"
+       
style="display:none;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+       inkscape:label="48x48" />
+    <rect
+       
style="display:none;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+       id="rect6087"
+       width="24"
+       height="24"
+       x="-402.29855"
+       y="117.96112"
+       inkscape:label="24x24" />
+    <rect
+       y="117.96112"
+       x="-434.29855"
+       height="16"
+       width="16"
+       id="rect6089"
+       
style="display:none;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+       inkscape:label="16x16" />
+    <text
+       xml:space="preserve"
+       
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:56.11526489px;line-height:125%;font-family:Myriad;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;writing-mode:lr-tb;text-anchor:start;display:none;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+       x="-418.41196"
+       y="34.084831"
+       id="text6091"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan6093"
+         x="-418.41196"
+         y="34.084831">audio-x-generic</tspan></text>
+    <rect
+       inkscape:label="32x32"
+       y="117.96112"
+       x="-366.29855"
+       height="32"
+       width="32"
+       id="rect6095"
+       
style="display:none;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
 />
+    <g
+       inkscape:groupmode="layer"
+       id="layer7"
+       inkscape:label="baseplate"
+       style="display:none"
+       sodipodi:insensitive="true">
+      <rect
+         inkscape:label="48x48"
+         y="-231"
+         x="565"
+         height="48"
+         width="48"
+         id="rect6284"
+         
style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
+      <rect
+         
style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
+         id="rect6592"
+         width="32"
+         height="32"
+         x="565"
+         y="-150"
+         inkscape:label="32x32" />
+      <rect
+         inkscape:label="22x22"
+         y="-99.941162"
+         x="567"
+         height="22"
+         width="22"
+         id="rect6749"
+         
style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
+      <rect
+         
style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
+         id="rect6833"
+         width="16"
+         height="16"
+         x="565"
+         y="-60"
+         inkscape:label="16x16" />
+      <rect
+         
style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
+         id="rect8104"
+         width="24"
+         height="24"
+         x="565"
+         y="-100"
+         inkscape:label="24x24" />
+      <text
+         xml:space="preserve"
+         
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.30133247px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell,
 
Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
+         x="24.970734"
+         y="-268.48639"
+         id="context"
+         inkscape:label="context"
+         sodipodi:linespacing="125%"><tspan
+           sodipodi:role="line"
+           id="tspan2716"
+           x="24.970734"
+           y="-268.48639">apps</tspan></text>
+      <text
+         inkscape:label="icon-name"
+         id="text3021"
+         y="-244.48639"
+         x="24.970703"
+         
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:18.30133247px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell,
 
Bold';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
+         xml:space="preserve"
+         sodipodi:linespacing="125%"><tspan
+           y="-244.48639"
+           x="24.970703"
+           id="tspan3023"
+           sodipodi:role="line">epiphany</tspan></text>
+      <rect
+         
style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
+         id="rect13805"
+         width="512"
+         height="512"
+         x="21"
+         y="-231"
+         inkscape:label="256x256" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path13807"
+         d="m 21.125,-231 v 476 36 H 497 h 36 0.125 V 245 H 533 V -231 H 497 V 245 H 57.125 v -476 z"
+         
style="display:inline;overflow:visible;visibility:visible;opacity:0.29455285;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
+    </g>
+    <g
+       inkscape:groupmode="layer"
+       id="layer8"
+       inkscape:label="small sizes"
+       style="display:inline">
+      <g
+         transform="matrix(0.744573,0,0,0.744573,329.88577,-149.0154)"
+         id="g2627"
+         style="display:inline;enable-background:new"
+         inkscape:export-filename="/home/jimmac/Desktop/text-html.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <g
+           transform="matrix(1.41451,0,0,1.41451,151.042,18.2974)"
+           id="g26046-4"
+           style="display:inline">
+          <ellipse
+             transform="matrix(0.351175,0,0,0.320336,118.44,40.0628)"
+             id="path11165-2"
+             style="fill:url(#radialGradient8472);fill-opacity:1;stroke:none;filter:url(#filter5927)"
+             cx="24.849752"
+             cy="38.908627"
+             rx="20.203051"
+             ry="7.4751287" />
+          <ellipse
+             
style="opacity:0.51836697;fill:url(#radialGradient8474);fill-opacity:1;stroke:none;filter:url(#filter5788)"
+             id="path11167-3"
+             transform="matrix(0.474726,0,0,0.433037,115.37,35.4289)"
+             cx="24.849752"
+             cy="38.908627"
+             rx="20.203051"
+             ry="7.4751287" />
+          <path
+             
style="fill:url(#radialGradient17006);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient17014);stroke-width:0.9645374;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-variant-east_asian:normal;opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dashoffset:0"
+             d="m 136.76906,44.372422 c 0,5.238727 -4.25889,9.485585 -9.51167,9.485585 -5.25326,0 
-9.5119,-4.246907 -9.5119,-9.485585 0,-5.238485 4.25864,-9.48491 9.5119,-9.48491 5.25278,0 9.51167,4.246425 
9.51167,9.48491 z"
+             id="path11169-2"
+             inkscape:connector-curvature="0" />
+          <g
+             id="g11173-8"
+             style="fill:url(#radialGradient8484);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11175-6"
+               style="fill:url(#radialGradient8482);fill-opacity:1">
+              <path
+                 d="m 44.0713,20.7144 c 0,0.2627 0,0 0,0 l -0.5449,0.6172 c -0.334,-0.3936 -0.709,-0.7246 
-1.0898,-1.0703 l -0.8359,0.123 -0.7637,-0.8633 v 1.0684 l 0.6543,0.4951 0.4355,0.4932 0.582,-0.6582 c 
0.1465,0.2744 0.291,0.5488 0.4365,0.8232 v 0.8223 l -0.6553,0.7402 -1.1992,0.8232 -0.9082,0.9063 
-0.582,-0.6602 0.291,-0.7402 -0.5811,-0.6582 -0.9814,-2.0977 -0.8359,-0.9453 -0.2188,0.2461 0.3281,1.1934 
0.6172,0.6992 c 0.3525,1.0176 0.7012,1.9902 1.1641,2.9629 0.7178,0 1.3945,-0.0762 2.1074,-0.166 v 0.5762 l 
-0.8721,2.1392 -0.7998,0.9043 -0.6543,1.4004 c 0,0.7676 0,1.5352 0,2.3027 l 0.2188,0.9063 -0.3633,0.4102 
-0.8008,0.4941 -0.8359,0.6992 0.6914,0.7813 -0.9453,0.8242 0.1816,0.5332 -1.418,1.6055 h -0.9443 l 
-0.7998,0.4941 H 33.6396 V 38.2814 L 33.4228,36.963 c -0.2813,-0.8262 -0.5742,-1.6465 -0.8721,-2.4668 
0,-0.6055 0.0361,-1.2051 0.0723,-1.8105 l 0.3643,-0.8223 -0.5098,-0.9883 0.0371,-1.3574 -0.6914,-0.7813 
0.3457,-1.1309 -0.5625,-0.6382 H 30.624 l -0.3271,-0.3701 -0
 .9814,0.6177 -0.3994,-0.4536 -0.9092,0.7817 c -0.6172,-0.6997 -1.2354,-1.3989 -1.8535,-2.0981 l 
-0.7266,-1.7285 0.6543,-0.9863 -0.3633,-0.4111 0.7988,-1.8936 c 0.6563,-0.8164 1.3418,-1.5996 2.0352,-2.3857 
l 1.2363,-0.3291 1.3809,-0.1641 0.9453,0.2471 1.3447,1.3564 0.4727,-0.5342 0.6533,-0.082 1.2363,0.4111 h 
0.9453 l 0.6543,-0.5762 0.291,-0.4111 -0.6553,-0.4111 -1.0908,-0.082 c -0.3027,-0.4199 -0.584,-0.8613 
-0.9434,-1.2344 l -0.3643,0.1641 -0.1455,1.0703 -0.6543,-0.7402 -0.1445,-0.8242 -0.7266,-0.5742 h -0.292 l 
0.7275,0.8223 -0.291,0.7402 -0.5811,0.1641 0.3633,-0.7402 -0.6553,-0.3281 -0.5801,-0.6582 -1.0918,0.2461 
-0.1445,0.3281 -0.6543,0.4121 -0.3633,0.9053 -0.9082,0.4521 -0.4004,-0.4521 h -0.4355 v -1.4814 l 
0.9453,-0.4941 h 0.7266 l -0.1465,-0.5752 -0.5801,-0.5762 0.9805,-0.2061 0.5449,-0.6162 0.4355,-0.7412 h 
0.8008 l -0.2188,-0.5752 0.5098,-0.3291 v 0.6582 l 1.0898,0.2461 1.0898,-0.9043 0.0732,-0.4121 0.9443,-0.6577 
c -0.3418,0.0425 -0.6836,0.0737 -1.0176,0.1646 V 9.9
 766 L 34.2213,9.1538 H 33.858 l -0.7984,0.7402 -0.2188,0.4116 0.2188,0.5767 -0.3643,0.9863 -0.5811,-0.3291 
-0.5078,-0.5752 -0.8008,0.5752 -0.291,-1.3159 1.3809,-0.9048 V 8.8247 l 0.873,-0.5757 1.3809,-0.3296 
0.9453,0.3296 1.7441,0.3291 -0.4355,0.4932 H 35.458 l 0.9453,0.9873 0.7266,-0.8223 0.2207,-0.3618 c 0,0 
2.7871,2.498 4.3799,5.2305 1.5928,2.7334 2.3408,5.9551 2.3408,6.6094 z"
+                 id="path11177-8"
+                 style="fill:url(#radialGradient8480);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11179-4"
+             style="fill:url(#radialGradient8490);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11181-6"
+               style="fill:url(#radialGradient8488);fill-opacity:1">
+              <path
+                 d="m 26.0703,9.2363 -0.0732,0.4932 0.5098,0.3291 0.8711,-0.5757 -0.4355,-0.4937 
-0.582,0.3296 -0.29,-0.0825"
+                 id="path11183-7"
+                 style="fill:url(#radialGradient8486);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11185-8"
+             style="fill:url(#radialGradient8496);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11187-3"
+               style="fill:url(#radialGradient8494);fill-opacity:1">
+              <path
+                 d="m 26.8701,5.8633 -1.8906,-0.7407 -2.1797,0.2466 -2.6904,0.7402 -0.5088,0.4941 
1.6719,1.1514 v 0.6582 l -0.6543,0.6582 0.873,1.729 0.5801,-0.3301 0.7285,-1.1514 c 1.123,-0.3472 
2.1299,-0.7407 3.1973,-1.2344 l 0.873,-2.2212"
+                 id="path11189-4"
+                 style="fill:url(#radialGradient8492);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11191-9"
+             style="fill:url(#radialGradient8502);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11193-4"
+               style="fill:url(#radialGradient8500);fill-opacity:1">
+              <path
+                 d="m 28.833,12.7749 -0.291,-0.7412 -0.5098,0.165 0.1465,0.9043 0.6543,-0.3281"
+                 id="path11195-9"
+                 style="fill:url(#radialGradient8498);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11197-1"
+             style="fill:url(#radialGradient8508);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11199-7"
+               style="fill:url(#radialGradient8506);fill-opacity:1">
+              <path
+                 d="m 29.123,12.6089 -0.1455,0.9883 0.7998,-0.165 0.5811,-0.5752 -0.5088,-0.4941 C 
29.6787,11.9078 29.4824,11.483 29.2685,11.0465 H 28.833 v 0.4932 l 0.29,0.3291 v 0.7402"
+                 id="path11201-3"
+                 style="fill:url(#radialGradient8504);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11203-8"
+             style="fill:url(#radialGradient8514);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11205-1"
+               style="fill:url(#radialGradient8512);fill-opacity:1">
+              <path
+                 d="m 19.021933,28.805282 -0.582,-1.1523 -1.0903,-0.2466 -0.5815,-1.5625 -1.4536,0.1641 
-1.2354,-0.9043 -1.3091,1.1514 v 0.1816 c -0.396,-0.1143 -0.8828,-0.1299 -1.2354,-0.3467 l -0.291,-0.8223 v 
-0.9053 l -0.872099,0.082 c 0.0728,-0.5762 0.144999,-1.1514 0.218299,-1.7275 h -0.509298 l -0.5083003,0.6582 
-0.5093,0.2461 -0.7271,-0.4102 -0.0728,-0.9053 0.1455,-0.9873 1.0908,-0.8223 h 0.8720993 l 0.144999,-0.4941 
1.0903,0.2461 0.7998,0.9883 0.1455,-1.6465 1.3813,-1.1514 0.5088,-1.2344 1.0176,-0.4111 0.5815,-0.8223 
1.3081,-0.248 0.6548,-0.9863 c -0.6543,0 -1.3086,0 -1.9629,0 l 1.2358,-0.5762 h 0.8716 l 1.2363,-0.4121 
0.1455,-0.4922 -0.4365,-0.4121 -0.5088,-0.165 0.1455,-0.4932 -0.3633,-0.7402 -0.8726,0.3281 0.1455,-0.6577 
-1.0176,-0.5762 -0.7993,1.3979 0.0723,0.4941 -0.7993,0.3301 -0.5093,1.0693 -0.2178,-0.9873 -1.3813,-0.5762 
-0.2183,-0.7402 1.8174,-1.0703 0.7998,-0.7401985 0.0728,-0.9048 -0.436,-0.2471 -0.5815,-0.0825 -0.3633,0.9053 
c 0,0 -0.6079,0.1191 -0.7642,
 0.1577 -1.9961,1.8393985 -6.0292979,5.8100985 -6.9662979,13.3061985 0.0371,0.1738 0.6792,1.1816 
0.6792,1.1816 l 1.5263996,0.9043 1.5264003,0.4121 0.654798,0.8232 1.0171,0.7402 0.5815,-0.082 0.436,0.1963 v 
0.1328 l -0.5811,1.563 -0.4365,0.6582 0.1455,0.3301 -0.3633,1.2324 1.3086,2.3867 1.3081,1.1523 0.582,0.8223 
-0.0732,1.7285 0.4365,0.9863 -0.4365,1.8926 c 0,0 -0.0342,-0.0117 0.0215,0.1777 0.0562,0.1895 2.3291,1.4512 
2.4736,1.3438 0.144,-0.1094 0.2671,-0.2051 0.2671,-0.2051 l -0.145,-0.4102 0.5811,-0.5762 0.2183,-0.5762 
0.9453,-0.3301 0.7266,-1.8105 -0.2178,-0.4922 0.5078,-0.7402 1.0908,-0.248 0.582,-1.3164 -0.1455,-1.6445 
0.8721,-1.2344 0.1455,-1.2344 c -1.1934,-0.5918 -2.377,-1.2012 -3.5615,-1.8105"
+                 id="path11207-6"
+                 style="fill:url(#radialGradient8510);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11209-2"
+             style="fill:url(#radialGradient8520);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11211-4"
+               style="fill:url(#radialGradient8518);fill-opacity:1">
+              <path
+                 d="m 16.7656,9.5649 0.7266,0.4937 h 0.582 V 9.4829 l -0.7266,-0.3291 -0.582,0.4111"
+                 id="path11213-1"
+                 style="fill:url(#radialGradient8516);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11215-3"
+             style="fill:url(#radialGradient8526);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11217-0"
+               style="fill:url(#radialGradient8524);fill-opacity:1">
+              <path
+                 d="M 14.876,8.9072 14.5122,9.812 h 0.7271 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 
16.5479,8.331 l 0.7271,0.2471 c 0.4844,0.3291 0.9688,0.6582 1.4536,0.9868 L 19.4561,8.9072 18.6558,8.5781 
18.292,7.8374 16.9111,7.6728 16.8383,7.2612 16.184,7.4262 15.8936,8.002 15.5298,7.2613 l -0.145,0.3291 
0.0728,0.8228 -0.5816,0.494"
+                 id="path11219-1"
+                 style="fill:url(#radialGradient8522);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11241-0"
+             style="fill:url(#radialGradient8532);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11243-3"
+               style="fill:url(#radialGradient8530);fill-opacity:1">
+              <path
+                 d="M 17.4922,6.8496 17.856,6.521 18.5831,6.3564 c 0.498,-0.2422 0.998,-0.4053 
1.5264,-0.5762 l -0.29,-0.4937 -0.9385,0.1348 -0.4434,0.4419 -0.731,0.106 -0.6499,0.3052 -0.3159,0.1528 
-0.1929,0.2583 0.9443,0.1641"
+                 id="path11245-1"
+                 style="fill:url(#radialGradient8528);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11247-6"
+             style="fill:url(#radialGradient8538);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11249-7"
+               style="fill:url(#radialGradient8536);fill-opacity:1">
+              <path
+                 d="m 18.7285,14.6665 0.4365,-0.6582 -0.6548,-0.4932 0.2183,1.1514"
+                 id="path11251-6"
+                 style="fill:url(#radialGradient8534);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8544);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11255-8"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8542);fill-opacity:1"
+               id="g11257-6">
+              <path
+                 style="fill:url(#radialGradient8540);fill-opacity:1"
+                 id="path11259-2"
+                 d="m 44.0713,20.7144 c 0,0.2627 0,0 0,0 l -0.5449,0.6172 c -0.334,-0.3936 -0.709,-0.7246 
-1.0898,-1.0703 l -0.8359,0.123 -0.7637,-0.8633 v 1.0684 l 0.6543,0.4951 0.4355,0.4932 0.582,-0.6582 c 
0.1465,0.2744 0.291,0.5488 0.4365,0.8232 v 0.8223 l -0.6553,0.7402 -1.1992,0.8232 -0.9082,0.9063 
-0.582,-0.6602 0.291,-0.7402 -0.5811,-0.6582 -0.9814,-2.0977 -0.8359,-0.9453 -0.2188,0.2461 0.3281,1.1934 
0.6172,0.6992 c 0.3525,1.0176 0.7012,1.9902 1.1641,2.9629 0.7178,0 1.3945,-0.0762 2.1074,-0.166 v 0.5762 l 
-0.8721,2.1392 -0.7998,0.9043 -0.6543,1.4004 c 0,0.7676 0,1.5352 0,2.3027 l 0.2188,0.9063 -0.3633,0.4102 
-0.8008,0.4941 -0.8359,0.6992 0.6914,0.7813 -0.9453,0.8242 0.1816,0.5332 -1.418,1.6055 h -0.9443 l 
-0.7998,0.4941 H 33.6396 V 38.2814 L 33.4228,36.963 c -0.2813,-0.8262 -0.5742,-1.6465 -0.8721,-2.4668 
0,-0.6055 0.0361,-1.2051 0.0723,-1.8105 l 0.3643,-0.8223 -0.5098,-0.9883 0.0371,-1.3574 -0.6914,-0.7813 
0.3457,-1.1309 -0.5625,-0.6382 H 30.624 l -0.3271,-0.3701 -0
 .9814,0.6177 -0.3994,-0.4536 -0.9092,0.7817 c -0.6172,-0.6997 -1.2354,-1.3989 -1.8535,-2.0981 l 
-0.7266,-1.7285 0.6543,-0.9863 -0.3633,-0.4111 0.7988,-1.8936 c 0.6563,-0.8164 1.3418,-1.5996 2.0352,-2.3857 
l 1.2363,-0.3291 1.3809,-0.1641 0.9453,0.2471 1.3447,1.3564 0.4727,-0.5342 0.6533,-0.082 1.2363,0.4111 h 
0.9453 l 0.6543,-0.5762 0.291,-0.4111 -0.6553,-0.4111 -1.0908,-0.082 c -0.3027,-0.4199 -0.584,-0.8613 
-0.9434,-1.2344 l -0.3643,0.1641 -0.1455,1.0703 -0.6543,-0.7402 -0.1445,-0.8242 -0.7266,-0.5742 h -0.292 l 
0.7275,0.8223 -0.291,0.7402 -0.5811,0.1641 0.3633,-0.7402 -0.6553,-0.3281 -0.5801,-0.6582 -1.0918,0.2461 
-0.1445,0.3281 -0.6543,0.4121 -0.3633,0.9053 -0.9082,0.4521 -0.4004,-0.4521 h -0.4355 v -1.4814 l 
0.9453,-0.4941 h 0.7266 l -0.1465,-0.5752 -0.5801,-0.5762 0.9805,-0.2061 0.5449,-0.6162 0.4355,-0.7412 h 
0.8008 l -0.2188,-0.5752 0.5098,-0.3291 v 0.6582 l 1.0898,0.2461 1.0898,-0.9043 0.0732,-0.4121 0.9443,-0.6577 
c -0.3418,0.0425 -0.6836,0.0737 -1.0176,0.1646 V 9.9
 766 L 34.2213,9.1538 H 33.858 l -0.7984,0.7402 -0.2188,0.4116 0.2188,0.5767 -0.3643,0.9863 -0.5811,-0.3291 
-0.5078,-0.5752 -0.8008,0.5752 -0.291,-1.3159 1.3809,-0.9048 V 8.8247 l 0.873,-0.5757 1.3809,-0.3296 
0.9453,0.3296 1.7441,0.3291 -0.4355,0.4932 H 35.458 l 0.9453,0.9873 0.7266,-0.8223 0.2207,-0.3618 c 0,0 
2.7871,2.498 4.3799,5.2305 1.5928,2.7334 2.3408,5.9551 2.3408,6.6094 z"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8550);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11261-6"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8548);fill-opacity:1"
+               id="g11263-2">
+              <path
+                 style="fill:url(#radialGradient8546);fill-opacity:1"
+                 id="path11265-0"
+                 d="m 26.0703,9.2363 -0.0732,0.4932 0.5098,0.3291 0.8711,-0.5757 -0.4355,-0.4937 
-0.582,0.3296 -0.29,-0.0825"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8556);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11267-6"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8554);fill-opacity:1"
+               id="g11269-0">
+              <path
+                 style="fill:url(#radialGradient8552);fill-opacity:1"
+                 id="path11271-4"
+                 d="m 26.8701,5.8633 -1.8906,-0.7407 -2.1797,0.2466 -2.6904,0.7402 -0.5088,0.4941 
1.6719,1.1514 v 0.6582 l -0.6543,0.6582 0.873,1.729 0.5801,-0.3301 0.7285,-1.1514 c 1.123,-0.3472 
2.1299,-0.7407 3.1973,-1.2344 l 0.873,-2.2212"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8562);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11273-0"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8560);fill-opacity:1"
+               id="g11275-1">
+              <path
+                 style="fill:url(#radialGradient8558);fill-opacity:1"
+                 id="path11277-0"
+                 d="m 28.833,12.7749 -0.291,-0.7412 -0.5098,0.165 0.1465,0.9043 0.6543,-0.3281"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8568);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11279-2"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8566);fill-opacity:1"
+               id="g11281-3">
+              <path
+                 style="fill:url(#radialGradient8564);fill-opacity:1"
+                 id="path11283-8"
+                 d="m 29.123,12.6089 -0.1455,0.9883 0.7998,-0.165 0.5811,-0.5752 -0.5088,-0.4941 C 
29.6787,11.9078 29.4824,11.483 29.2685,11.0465 H 28.833 v 0.4932 l 0.29,0.3291 v 0.7402"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8574);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11285-5"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8572);fill-opacity:1"
+               id="g11287-1">
+              <path
+                 style="fill:url(#radialGradient8570);fill-opacity:1"
+                 id="path11289-9"
+                 d="m 18.3652,28.2422 -0.582,-1.1523 -1.0903,-0.2466 -0.5815,-1.5625 -1.4536,0.1641 
-1.2354,-0.9043 -1.3091,1.1514 v 0.1816 c -0.396,-0.1143 -0.8828,-0.1299 -1.2354,-0.3467 l -0.291,-0.8223 v 
-0.9053 l -0.8721,0.082 c 0.0728,-0.5762 0.145,-1.1514 0.2183,-1.7275 H 9.4238 L 8.9155,22.812 8.4062,23.0581 
7.6791,22.6479 7.6063,21.7426 7.7518,20.7553 8.8426,19.933 h 0.8721 l 0.145,-0.4941 1.0903,0.2461 
0.7998,0.9883 0.1455,-1.6465 1.3813,-1.1514 0.5088,-1.2344 1.0176,-0.4111 0.5815,-0.8223 1.3081,-0.248 
0.6548,-0.9863 c -0.6543,0 -1.3086,0 -1.9629,0 l 1.2358,-0.5762 h 0.8716 l 1.2363,-0.4121 0.1455,-0.4922 
-0.4365,-0.4121 -0.5088,-0.165 0.1455,-0.4932 -0.3633,-0.7402 -0.8726,0.3281 0.1455,-0.6577 -1.0176,-0.5762 
-0.7993,1.3979 0.0723,0.4941 -0.7993,0.3301 -0.5093,1.0693 -0.2178,-0.9873 -1.3813,-0.5762 -0.2183,-0.7402 
1.8174,-1.0703 0.7998,-0.7402 0.0728,-0.9048 -0.436,-0.2471 -0.5815,-0.0825 -0.3633,0.9053 c 0,0 
-0.6079,0.1191 -0.7642,0.1577 -1.9961,1.8394 -6.0293,
 5.8101 -6.9663,13.3062 0.0371,0.1738 0.6792,1.1816 0.6792,1.1816 l 1.5264,0.9043 1.5264,0.4121 0.6548,0.8232 
1.0171,0.7402 0.5815,-0.082 0.436,0.1963 v 0.1328 l -0.5811,1.563 -0.4365,0.6582 0.1455,0.3301 -0.3633,1.2324 
1.3086,2.3867 1.3081,1.1523 0.582,0.8223 -0.0732,1.7285 0.4365,0.9863 -0.4365,1.8926 c 0,0 -0.0342,-0.0117 
0.0215,0.1777 0.0562,0.1895 2.3291,1.4512 2.4736,1.3438 0.144,-0.1094 0.2671,-0.2051 0.2671,-0.2051 l 
-0.145,-0.4102 0.5811,-0.5762 0.2183,-0.5762 0.9453,-0.3301 0.7266,-1.8105 -0.2178,-0.4922 0.5078,-0.7402 
1.0908,-0.248 0.582,-1.3164 -0.1455,-1.6445 0.8721,-1.2344 0.1455,-1.2344 C 20.7331,29.4607 19.5495,28.8513 
18.365,28.242"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8580);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11291-1"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8578);fill-opacity:1"
+               id="g11293-6">
+              <path
+                 style="fill:url(#radialGradient8576);fill-opacity:1"
+                 id="path11295-5"
+                 d="m 16.7656,9.5649 0.7266,0.4937 h 0.582 V 9.4829 l -0.7266,-0.3291 -0.582,0.4111"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8586);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11297-3"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8584);fill-opacity:1"
+               id="g11299-9">
+              <path
+                 style="fill:url(#radialGradient8582);fill-opacity:1"
+                 id="path11301-8"
+                 d="M 14.876,8.9072 14.5122,9.812 h 0.7271 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 
16.5479,8.331 l 0.7271,0.2471 c 0.4844,0.3291 0.9688,0.6582 1.4536,0.9868 L 19.4561,8.9072 18.6558,8.5781 
18.292,7.8374 16.9111,7.6728 16.8383,7.2612 16.184,7.4262 15.8936,8.002 15.5298,7.2613 l -0.145,0.3291 
0.0728,0.8228 -0.5816,0.494"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8592);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11323-6"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8590);fill-opacity:1"
+               id="g11325-1">
+              <path
+                 style="fill:url(#radialGradient8588);fill-opacity:1"
+                 id="path11327-3"
+                 d="M 17.4922,6.8496 17.856,6.521 18.5831,6.3564 c 0.498,-0.2422 0.998,-0.4053 
1.5264,-0.5762 l -0.29,-0.4937 -0.9385,0.1348 -0.4434,0.4419 -0.731,0.106 -0.6499,0.3052 -0.3159,0.1528 
-0.1929,0.2583 0.9443,0.1641"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8598);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11329-9"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8596);fill-opacity:1"
+               id="g11331-7">
+              <path
+                 style="fill:url(#radialGradient8594);fill-opacity:1"
+                 id="path11333-0"
+                 d="m 18.7285,14.6665 0.4365,-0.6582 -0.6548,-0.4932 0.2183,1.1514"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <circle
+             
style="display:inline;overflow:visible;visibility:visible;opacity:0.53513495;fill:none;stroke:#ffffff;stroke-width:1.35429001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+             id="path11419-5"
+             transform="matrix(0.626693,0,0,0.626693,7.03247,-75.1735)"
+             cx="191.875"
+             cy="190.75"
+             r="13.875" />
+          <path
+             
style="display:inline;overflow:visible;visibility:visible;opacity:0.53513495;fill:url(#radialGradient8600);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;filter:url(#filter10631-9-5-7)"
+             d="m 64.625,130 c -0.05592,0.48975 -0.09375,0.99536 -0.09375,1.5 0,7.1928 5.838446,13.03125 
13.03125,13.03125 7.192801,0 13.031249,-5.83846 13.03125,-13.03125 0,-0.50479 -0.0378,-1.0101 -0.09375,-1.5 
-0.753425,6.47773 -6.258685,11.53125 -12.9375,11.53125 -6.679033,0 -12.184356,-5.05322 -12.9375,-11.53125 z"
+             transform="matrix(0.6781,0,0,0.6781,74.6825,-44.7084)"
+             id="path11421-5"
+             inkscape:connector-curvature="0" />
+        </g>
+      </g>
+      <g
+         transform="matrix(0.9950108,0,0,0.9950108,253.31494,-195.39513)"
+         id="g2636"
+         style="display:inline;enable-background:new"
+         inkscape:export-filename="/home/jimmac/Desktop/text-html.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <g
+           transform="matrix(0.789211,0,0,0.789211,220.685,108.898)"
+           id="g26046"
+           style="display:inline">
+          <path
+             
style="fill:url(#radialGradient17006);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient17014);stroke-width:1.29363409;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-variant-east_asian:normal;opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dashoffset:0"
+             d="m 136.76906,44.460792 c 0,5.238727 -4.25889,9.485585 -9.51167,9.485585 -5.25326,0 
-9.5119,-4.246907 -9.5119,-9.485585 0,-5.238485 4.25864,-9.48491 9.5119,-9.48491 5.25278,0 9.51167,4.246425 
9.51167,9.48491 z"
+             id="path11169"
+             inkscape:connector-curvature="0" />
+          <g
+             id="g11173"
+             style="fill:url(#radialGradient8354);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11175"
+               style="fill:url(#radialGradient8352);fill-opacity:1">
+              <path
+                 d="m 44.0713,20.7144 c 0,0.2627 0,0 0,0 l -0.5449,0.6172 c -0.334,-0.3936 -0.709,-0.7246 
-1.0898,-1.0703 l -0.8359,0.123 -0.7637,-0.8633 v 1.0684 l 0.6543,0.4951 0.4355,0.4932 0.582,-0.6582 c 
0.1465,0.2744 0.291,0.5488 0.4365,0.8232 v 0.8223 l -0.6553,0.7402 -1.1992,0.8232 -0.9082,0.9063 
-0.582,-0.6602 0.291,-0.7402 -0.5811,-0.6582 -0.9814,-2.0977 -0.8359,-0.9453 -0.2188,0.2461 0.3281,1.1934 
0.6172,0.6992 c 0.3525,1.0176 0.7012,1.9902 1.1641,2.9629 0.7178,0 1.3945,-0.0762 2.1074,-0.166 v 0.5762 l 
-0.8721,2.1392 -0.7998,0.9043 -0.6543,1.4004 c 0,0.7676 0,1.5352 0,2.3027 l 0.2188,0.9063 -0.3633,0.4102 
-0.8008,0.4941 -0.8359,0.6992 0.6914,0.7813 -0.9453,0.8242 0.1816,0.5332 -1.418,1.6055 h -0.9443 l 
-0.7998,0.4941 H 33.6396 V 38.2814 L 33.4228,36.963 c -0.2813,-0.8262 -0.5742,-1.6465 -0.8721,-2.4668 
0,-0.6055 0.0361,-1.2051 0.0723,-1.8105 l 0.3643,-0.8223 -0.5098,-0.9883 0.0371,-1.3574 -0.6914,-0.7813 
0.3457,-1.1309 -0.5625,-0.6382 H 30.624 l -0.3271,-0.3701 -0
 .9814,0.6177 -0.3994,-0.4536 -0.9092,0.7817 c -0.6172,-0.6997 -1.2354,-1.3989 -1.8535,-2.0981 l 
-0.7266,-1.7285 0.6543,-0.9863 -0.3633,-0.4111 0.7988,-1.8936 c 0.6563,-0.8164 1.3418,-1.5996 2.0352,-2.3857 
l 1.2363,-0.3291 1.3809,-0.1641 0.9453,0.2471 1.3447,1.3564 0.4727,-0.5342 0.6533,-0.082 1.2363,0.4111 h 
0.9453 l 0.6543,-0.5762 0.291,-0.4111 -0.6553,-0.4111 -1.0908,-0.082 c -0.3027,-0.4199 -0.584,-0.8613 
-0.9434,-1.2344 l -0.3643,0.1641 -0.1455,1.0703 -0.6543,-0.7402 -0.1445,-0.8242 -0.7266,-0.5742 h -0.292 l 
0.7275,0.8223 -0.291,0.7402 -0.5811,0.1641 0.3633,-0.7402 -0.6553,-0.3281 -0.5801,-0.6582 -1.0918,0.2461 
-0.1445,0.3281 -0.6543,0.4121 -0.3633,0.9053 -0.9082,0.4521 -0.4004,-0.4521 h -0.4355 v -1.4814 l 
0.9453,-0.4941 h 0.7266 l -0.1465,-0.5752 -0.5801,-0.5762 0.9805,-0.2061 0.5449,-0.6162 0.4355,-0.7412 h 
0.8008 l -0.2188,-0.5752 0.5098,-0.3291 v 0.6582 l 1.0898,0.2461 1.0898,-0.9043 0.0732,-0.4121 0.9443,-0.6577 
c -0.3418,0.0425 -0.6836,0.0737 -1.0176,0.1646 V 9.9
 766 L 34.2213,9.1538 H 33.858 l -0.7984,0.7402 -0.2188,0.4116 0.2188,0.5767 -0.3643,0.9863 -0.5811,-0.3291 
-0.5078,-0.5752 -0.8008,0.5752 -0.291,-1.3159 1.3809,-0.9048 V 8.8247 l 0.873,-0.5757 1.3809,-0.3296 
0.9453,0.3296 1.7441,0.3291 -0.4355,0.4932 H 35.458 l 0.9453,0.9873 0.7266,-0.8223 0.2207,-0.3618 c 0,0 
2.7871,2.498 4.3799,5.2305 1.5928,2.7334 2.3408,5.9551 2.3408,6.6094 z"
+                 id="path11177"
+                 style="fill:url(#radialGradient8350);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11179"
+             style="fill:url(#radialGradient8360);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11181"
+               style="fill:url(#radialGradient8358);fill-opacity:1">
+              <path
+                 d="m 26.0703,9.2363 -0.0732,0.4932 0.5098,0.3291 0.8711,-0.5757 -0.4355,-0.4937 
-0.582,0.3296 -0.29,-0.0825"
+                 id="path11183"
+                 style="fill:url(#radialGradient8356);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11185"
+             style="fill:url(#radialGradient8366);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11187"
+               style="fill:url(#radialGradient8364);fill-opacity:1">
+              <path
+                 d="m 26.8701,5.8633 -1.8906,-0.7407 -2.1797,0.2466 -2.6904,0.7402 -0.5088,0.4941 
1.6719,1.1514 v 0.6582 l -0.6543,0.6582 0.873,1.729 0.5801,-0.3301 0.7285,-1.1514 c 1.123,-0.3472 
2.1299,-0.7407 3.1973,-1.2344 l 0.873,-2.2212"
+                 id="path11189"
+                 style="fill:url(#radialGradient8362);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11191"
+             style="fill:url(#radialGradient8372);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11193"
+               style="fill:url(#radialGradient8370);fill-opacity:1">
+              <path
+                 d="m 28.833,12.7749 -0.291,-0.7412 -0.5098,0.165 0.1465,0.9043 0.6543,-0.3281"
+                 id="path11195"
+                 style="fill:url(#radialGradient8368);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11197"
+             style="fill:url(#radialGradient8378);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11199"
+               style="fill:url(#radialGradient8376);fill-opacity:1">
+              <path
+                 d="m 29.123,12.6089 -0.1455,0.9883 0.7998,-0.165 0.5811,-0.5752 -0.5088,-0.4941 C 
29.6787,11.9078 29.4824,11.483 29.2685,11.0465 H 28.833 v 0.4932 l 0.29,0.3291 v 0.7402"
+                 id="path11201"
+                 style="fill:url(#radialGradient8374);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11203"
+             style="fill:url(#radialGradient8384);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11205"
+               style="fill:url(#radialGradient8382);fill-opacity:1">
+              <path
+                 d="m 19.021933,28.805282 -0.582,-1.1523 -1.0903,-0.2466 -0.5815,-1.5625 -1.4536,0.1641 
-1.2354,-0.9043 -1.3091,1.1514 v 0.1816 c -0.396,-0.1143 -0.8828,-0.1299 -1.2354,-0.3467 l -0.291,-0.8223 v 
-0.9053 l -0.872099,0.082 c 0.0728,-0.5762 0.144999,-1.1514 0.218299,-1.7275 h -0.509298 l -0.5083003,0.6582 
-0.5093,0.2461 -0.7271,-0.4102 -0.0728,-0.9053 0.1455,-0.9873 1.0908,-0.8223 h 0.8720993 l 0.144999,-0.4941 
1.0903,0.2461 0.7998,0.9883 0.1455,-1.6465 1.3813,-1.1514 0.5088,-1.2344 1.0176,-0.4111 0.5815,-0.8223 
1.3081,-0.248 0.6548,-0.9863 c -0.6543,0 -1.3086,0 -1.9629,0 l 1.2358,-0.5762 h 0.8716 l 1.2363,-0.4121 
0.1455,-0.4922 -0.4365,-0.4121 -0.5088,-0.165 0.1455,-0.4932 -0.3633,-0.7402 -0.8726,0.3281 0.1455,-0.6577 
-1.0176,-0.5762 -0.7993,1.3979 0.0723,0.4941 -0.7993,0.3301 -0.5093,1.0693 -0.2178,-0.9873 -1.3813,-0.5762 
-0.2183,-0.7402 1.8174,-1.0703 0.7998,-0.7401985 0.0728,-0.9048 -0.436,-0.2471 -0.5815,-0.0825 -0.3633,0.9053 
c 0,0 -0.6079,0.1191 -0.7642,
 0.1577 -1.9961,1.8393985 -6.0292979,5.8100985 -6.9662979,13.3061985 0.0371,0.1738 0.6792,1.1816 
0.6792,1.1816 l 1.5263996,0.9043 1.5264003,0.4121 0.654798,0.8232 1.0171,0.7402 0.5815,-0.082 0.436,0.1963 v 
0.1328 l -0.5811,1.563 -0.4365,0.6582 0.1455,0.3301 -0.3633,1.2324 1.3086,2.3867 1.3081,1.1523 0.582,0.8223 
-0.0732,1.7285 0.4365,0.9863 -0.4365,1.8926 c 0,0 -0.0342,-0.0117 0.0215,0.1777 0.0562,0.1895 2.3291,1.4512 
2.4736,1.3438 0.144,-0.1094 0.2671,-0.2051 0.2671,-0.2051 l -0.145,-0.4102 0.5811,-0.5762 0.2183,-0.5762 
0.9453,-0.3301 0.7266,-1.8105 -0.2178,-0.4922 0.5078,-0.7402 1.0908,-0.248 0.582,-1.3164 -0.1455,-1.6445 
0.8721,-1.2344 0.1455,-1.2344 c -1.1934,-0.5918 -2.377,-1.2012 -3.5615,-1.8105"
+                 id="path11207"
+                 style="fill:url(#radialGradient8380);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11209"
+             style="fill:url(#radialGradient8390);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11211"
+               style="fill:url(#radialGradient8388);fill-opacity:1">
+              <path
+                 d="m 16.7656,9.5649 0.7266,0.4937 h 0.582 V 9.4829 l -0.7266,-0.3291 -0.582,0.4111"
+                 id="path11213"
+                 style="fill:url(#radialGradient8386);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11215"
+             style="fill:url(#radialGradient8396);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11217"
+               style="fill:url(#radialGradient8394);fill-opacity:1">
+              <path
+                 d="M 14.876,8.9072 14.5122,9.812 h 0.7271 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 
16.5479,8.331 l 0.7271,0.2471 c 0.4844,0.3291 0.9688,0.6582 1.4536,0.9868 L 19.4561,8.9072 18.6558,8.5781 
18.292,7.8374 16.9111,7.6728 16.8383,7.2612 16.184,7.4262 15.8936,8.002 15.5298,7.2613 l -0.145,0.3291 
0.0728,0.8228 -0.5816,0.494"
+                 id="path11219"
+                 style="fill:url(#radialGradient8392);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11241"
+             style="fill:url(#radialGradient8402);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11243"
+               style="fill:url(#radialGradient8400);fill-opacity:1">
+              <path
+                 d="M 17.4922,6.8496 17.856,6.521 18.5831,6.3564 c 0.498,-0.2422 0.998,-0.4053 
1.5264,-0.5762 l -0.29,-0.4937 -0.9385,0.1348 -0.4434,0.4419 -0.731,0.106 -0.6499,0.3052 -0.3159,0.1528 
-0.1929,0.2583 0.9443,0.1641"
+                 id="path11245"
+                 style="fill:url(#radialGradient8398);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g11247"
+             style="fill:url(#radialGradient8408);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g11249"
+               style="fill:url(#radialGradient8406);fill-opacity:1">
+              <path
+                 d="m 18.7285,14.6665 0.4365,-0.6582 -0.6548,-0.4932 0.2183,1.1514"
+                 id="path11251"
+                 style="fill:url(#radialGradient8404);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8414);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11255"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8412);fill-opacity:1"
+               id="g11257">
+              <path
+                 style="fill:url(#radialGradient8410);fill-opacity:1"
+                 id="path11259"
+                 d="m 44.0713,20.7144 c 0,0.2627 0,0 0,0 l -0.5449,0.6172 c -0.334,-0.3936 -0.709,-0.7246 
-1.0898,-1.0703 l -0.8359,0.123 -0.7637,-0.8633 v 1.0684 l 0.6543,0.4951 0.4355,0.4932 0.582,-0.6582 c 
0.1465,0.2744 0.291,0.5488 0.4365,0.8232 v 0.8223 l -0.6553,0.7402 -1.1992,0.8232 -0.9082,0.9063 
-0.582,-0.6602 0.291,-0.7402 -0.5811,-0.6582 -0.9814,-2.0977 -0.8359,-0.9453 -0.2188,0.2461 0.3281,1.1934 
0.6172,0.6992 c 0.3525,1.0176 0.7012,1.9902 1.1641,2.9629 0.7178,0 1.3945,-0.0762 2.1074,-0.166 v 0.5762 l 
-0.8721,2.1392 -0.7998,0.9043 -0.6543,1.4004 c 0,0.7676 0,1.5352 0,2.3027 l 0.2188,0.9063 -0.3633,0.4102 
-0.8008,0.4941 -0.8359,0.6992 0.6914,0.7813 -0.9453,0.8242 0.1816,0.5332 -1.418,1.6055 h -0.9443 l 
-0.7998,0.4941 H 33.6396 V 38.2814 L 33.4228,36.963 c -0.2813,-0.8262 -0.5742,-1.6465 -0.8721,-2.4668 
0,-0.6055 0.0361,-1.2051 0.0723,-1.8105 l 0.3643,-0.8223 -0.5098,-0.9883 0.0371,-1.3574 -0.6914,-0.7813 
0.3457,-1.1309 -0.5625,-0.6382 H 30.624 l -0.3271,-0.3701 -0
 .9814,0.6177 -0.3994,-0.4536 -0.9092,0.7817 c -0.6172,-0.6997 -1.2354,-1.3989 -1.8535,-2.0981 l 
-0.7266,-1.7285 0.6543,-0.9863 -0.3633,-0.4111 0.7988,-1.8936 c 0.6563,-0.8164 1.3418,-1.5996 2.0352,-2.3857 
l 1.2363,-0.3291 1.3809,-0.1641 0.9453,0.2471 1.3447,1.3564 0.4727,-0.5342 0.6533,-0.082 1.2363,0.4111 h 
0.9453 l 0.6543,-0.5762 0.291,-0.4111 -0.6553,-0.4111 -1.0908,-0.082 c -0.3027,-0.4199 -0.584,-0.8613 
-0.9434,-1.2344 l -0.3643,0.1641 -0.1455,1.0703 -0.6543,-0.7402 -0.1445,-0.8242 -0.7266,-0.5742 h -0.292 l 
0.7275,0.8223 -0.291,0.7402 -0.5811,0.1641 0.3633,-0.7402 -0.6553,-0.3281 -0.5801,-0.6582 -1.0918,0.2461 
-0.1445,0.3281 -0.6543,0.4121 -0.3633,0.9053 -0.9082,0.4521 -0.4004,-0.4521 h -0.4355 v -1.4814 l 
0.9453,-0.4941 h 0.7266 l -0.1465,-0.5752 -0.5801,-0.5762 0.9805,-0.2061 0.5449,-0.6162 0.4355,-0.7412 h 
0.8008 l -0.2188,-0.5752 0.5098,-0.3291 v 0.6582 l 1.0898,0.2461 1.0898,-0.9043 0.0732,-0.4121 0.9443,-0.6577 
c -0.3418,0.0425 -0.6836,0.0737 -1.0176,0.1646 V 9.9
 766 L 34.2213,9.1538 H 33.858 l -0.7984,0.7402 -0.2188,0.4116 0.2188,0.5767 -0.3643,0.9863 -0.5811,-0.3291 
-0.5078,-0.5752 -0.8008,0.5752 -0.291,-1.3159 1.3809,-0.9048 V 8.8247 l 0.873,-0.5757 1.3809,-0.3296 
0.9453,0.3296 1.7441,0.3291 -0.4355,0.4932 H 35.458 l 0.9453,0.9873 0.7266,-0.8223 0.2207,-0.3618 c 0,0 
2.7871,2.498 4.3799,5.2305 1.5928,2.7334 2.3408,5.9551 2.3408,6.6094 z"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8420);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11261"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8418);fill-opacity:1"
+               id="g11263">
+              <path
+                 style="fill:url(#radialGradient8416);fill-opacity:1"
+                 id="path11265"
+                 d="m 26.0703,9.2363 -0.0732,0.4932 0.5098,0.3291 0.8711,-0.5757 -0.4355,-0.4937 
-0.582,0.3296 -0.29,-0.0825"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8426);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11267"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8424);fill-opacity:1"
+               id="g11269">
+              <path
+                 style="fill:url(#radialGradient8422);fill-opacity:1"
+                 id="path11271"
+                 d="m 26.8701,5.8633 -1.8906,-0.7407 -2.1797,0.2466 -2.6904,0.7402 -0.5088,0.4941 
1.6719,1.1514 v 0.6582 l -0.6543,0.6582 0.873,1.729 0.5801,-0.3301 0.7285,-1.1514 c 1.123,-0.3472 
2.1299,-0.7407 3.1973,-1.2344 l 0.873,-2.2212"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8432);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11273"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8430);fill-opacity:1"
+               id="g11275">
+              <path
+                 style="fill:url(#radialGradient8428);fill-opacity:1"
+                 id="path11277"
+                 d="m 28.833,12.7749 -0.291,-0.7412 -0.5098,0.165 0.1465,0.9043 0.6543,-0.3281"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8438);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11279"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8436);fill-opacity:1"
+               id="g11281">
+              <path
+                 style="fill:url(#radialGradient8434);fill-opacity:1"
+                 id="path11283"
+                 d="m 29.123,12.6089 -0.1455,0.9883 0.7998,-0.165 0.5811,-0.5752 -0.5088,-0.4941 C 
29.6787,11.9078 29.4824,11.483 29.2685,11.0465 H 28.833 v 0.4932 l 0.29,0.3291 v 0.7402"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8444);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11285"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8442);fill-opacity:1"
+               id="g11287">
+              <path
+                 style="fill:url(#radialGradient8440);fill-opacity:1"
+                 id="path11289"
+                 d="m 18.3652,28.2422 -0.582,-1.1523 -1.0903,-0.2466 -0.5815,-1.5625 -1.4536,0.1641 
-1.2354,-0.9043 -1.3091,1.1514 v 0.1816 c -0.396,-0.1143 -0.8828,-0.1299 -1.2354,-0.3467 l -0.291,-0.8223 v 
-0.9053 l -0.8721,0.082 c 0.0728,-0.5762 0.145,-1.1514 0.2183,-1.7275 H 9.4238 L 8.9155,22.812 8.4062,23.0581 
7.6791,22.6479 7.6063,21.7426 7.7518,20.7553 8.8426,19.933 h 0.8721 l 0.145,-0.4941 1.0903,0.2461 
0.7998,0.9883 0.1455,-1.6465 1.3813,-1.1514 0.5088,-1.2344 1.0176,-0.4111 0.5815,-0.8223 1.3081,-0.248 
0.6548,-0.9863 c -0.6543,0 -1.3086,0 -1.9629,0 l 1.2358,-0.5762 h 0.8716 l 1.2363,-0.4121 0.1455,-0.4922 
-0.4365,-0.4121 -0.5088,-0.165 0.1455,-0.4932 -0.3633,-0.7402 -0.8726,0.3281 0.1455,-0.6577 -1.0176,-0.5762 
-0.7993,1.3979 0.0723,0.4941 -0.7993,0.3301 -0.5093,1.0693 -0.2178,-0.9873 -1.3813,-0.5762 -0.2183,-0.7402 
1.8174,-1.0703 0.7998,-0.7402 0.0728,-0.9048 -0.436,-0.2471 -0.5815,-0.0825 -0.3633,0.9053 c 0,0 
-0.6079,0.1191 -0.7642,0.1577 -1.9961,1.8394 -6.0293,
 5.8101 -6.9663,13.3062 0.0371,0.1738 0.6792,1.1816 0.6792,1.1816 l 1.5264,0.9043 1.5264,0.4121 0.6548,0.8232 
1.0171,0.7402 0.5815,-0.082 0.436,0.1963 v 0.1328 l -0.5811,1.563 -0.4365,0.6582 0.1455,0.3301 -0.3633,1.2324 
1.3086,2.3867 1.3081,1.1523 0.582,0.8223 -0.0732,1.7285 0.4365,0.9863 -0.4365,1.8926 c 0,0 -0.0342,-0.0117 
0.0215,0.1777 0.0562,0.1895 2.3291,1.4512 2.4736,1.3438 0.144,-0.1094 0.2671,-0.2051 0.2671,-0.2051 l 
-0.145,-0.4102 0.5811,-0.5762 0.2183,-0.5762 0.9453,-0.3301 0.7266,-1.8105 -0.2178,-0.4922 0.5078,-0.7402 
1.0908,-0.248 0.582,-1.3164 -0.1455,-1.6445 0.8721,-1.2344 0.1455,-1.2344 C 20.7331,29.4607 19.5495,28.8513 
18.365,28.242"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8450);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11291"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8448);fill-opacity:1"
+               id="g11293">
+              <path
+                 style="fill:url(#radialGradient8446);fill-opacity:1"
+                 id="path11295"
+                 d="m 16.7656,9.5649 0.7266,0.4937 h 0.582 V 9.4829 l -0.7266,-0.3291 -0.582,0.4111"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8456);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11297"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8454);fill-opacity:1"
+               id="g11299">
+              <path
+                 style="fill:url(#radialGradient8452);fill-opacity:1"
+                 id="path11301"
+                 d="M 14.876,8.9072 14.5122,9.812 h 0.7271 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 
16.5479,8.331 l 0.7271,0.2471 c 0.4844,0.3291 0.9688,0.6582 1.4536,0.9868 L 19.4561,8.9072 18.6558,8.5781 
18.292,7.8374 16.9111,7.6728 16.8383,7.2612 16.184,7.4262 15.8936,8.002 15.5298,7.2613 l -0.145,0.3291 
0.0728,0.8228 -0.5816,0.494"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8462);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11323"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8460);fill-opacity:1"
+               id="g11325">
+              <path
+                 style="fill:url(#radialGradient8458);fill-opacity:1"
+                 id="path11327"
+                 d="M 17.4922,6.8496 17.856,6.521 18.5831,6.3564 c 0.498,-0.2422 0.998,-0.4053 
1.5264,-0.5762 l -0.29,-0.4937 -0.9385,0.1348 -0.4434,0.4419 -0.731,0.106 -0.6499,0.3052 -0.3159,0.1528 
-0.1929,0.2583 0.9443,0.1641"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:url(#radialGradient8468);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g11329"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient8466);fill-opacity:1"
+               id="g11331">
+              <path
+                 style="fill:url(#radialGradient8464);fill-opacity:1"
+                 id="path11333"
+                 d="m 18.7285,14.6665 0.4365,-0.6582 -0.6548,-0.4932 0.2183,1.1514"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <circle
+             
style="display:inline;overflow:visible;visibility:visible;opacity:0.53513495;fill:none;stroke:#ffffff;stroke-width:2.26463008;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+             id="path11419"
+             transform="matrix(0.60039,0,0,0.60039,12.0794,-70.0678)"
+             cx="191.875"
+             cy="190.75"
+             r="13.875" />
+          <path
+             
style="display:inline;overflow:visible;visibility:visible;opacity:0.53513495;fill:url(#radialGradient8470);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;filter:url(#filter10631-9-19)"
+             d="m 64.625,130 c -0.05592,0.48975 -0.09375,0.99536 -0.09375,1.5 0,7.1928 5.838446,13.03125 
13.03125,13.03125 7.192801,0 13.031249,-5.83846 13.03125,-13.03125 0,-0.50479 -0.0378,-1.0101 -0.09375,-1.5 
-0.753425,6.47773 -6.258685,11.53125 -12.9375,11.53125 -6.679033,0 -12.184356,-5.05322 -12.9375,-11.53125 z"
+             transform="matrix(0.6781,0,0,0.6781,74.6825,-44.7084)"
+             id="path11421"
+             inkscape:connector-curvature="0" />
+        </g>
+      </g>
+      <g
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         inkscape:export-filename="/home/jimmac/Desktop/text-html.png"
+         style="display:inline;enable-background:new"
+         id="g8602"
+         transform="matrix(1.0283356,0,0,1.0283356,240.94536,-218.02755)">
+        <g
+           style="display:inline"
+           id="g8604"
+           transform="matrix(1.41451,0,0,1.41451,151.042,18.2974)">
+          <ellipse
+             style="fill:url(#radialGradient8736);fill-opacity:1;stroke:none;filter:url(#filter5927)"
+             id="path8606"
+             transform="matrix(0.351175,0,0,0.320336,118.44,40.0628)"
+             cx="24.849752"
+             cy="38.908627"
+             rx="20.203051"
+             ry="7.4751287" />
+          <ellipse
+             transform="matrix(0.474726,0,0,0.433037,115.37,35.4289)"
+             id="path8608"
+             
style="opacity:0.51836697;fill:url(#radialGradient8738);fill-opacity:1;stroke:none;filter:url(#filter5788)"
+             cx="24.849752"
+             cy="38.908627"
+             rx="20.203051"
+             ry="7.4751287" />
+          <path
+             id="path8610"
+             d="m 136.88196,44.372419 c 0,5.300916 -4.30944,9.598188 -9.62457,9.598188 -5.31562,0 
-9.62481,-4.297322 -9.62481,-9.598188 0,-5.300671 4.30919,-9.597506 9.62481,-9.597506 5.31513,0 
9.62457,4.296835 9.62457,9.597506 z"
+             
style="fill:url(#radialGradient17006);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient17014);stroke-width:0.6983795;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-variant-east_asian:normal;opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dashoffset:0"
+             inkscape:connector-curvature="0" />
+          <g
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)"
+             style="fill:url(#radialGradient8749);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g8612">
+            <g
+               style="fill:url(#radialGradient8746);fill-opacity:1"
+               id="g8614">
+              <path
+                 style="fill:url(#radialGradient8744);fill-opacity:1"
+                 id="path8616"
+                 d="m 44.0713,20.7144 c 0,0.2627 0,0 0,0 l -0.5449,0.6172 c -0.334,-0.3936 -0.709,-0.7246 
-1.0898,-1.0703 l -0.8359,0.123 -0.7637,-0.8633 v 1.0684 l 0.6543,0.4951 0.4355,0.4932 0.582,-0.6582 c 
0.1465,0.2744 0.291,0.5488 0.4365,0.8232 v 0.8223 l -0.6553,0.7402 -1.1992,0.8232 -0.9082,0.9063 
-0.582,-0.6602 0.291,-0.7402 -0.5811,-0.6582 -0.9814,-2.0977 -0.8359,-0.9453 -0.2188,0.2461 0.3281,1.1934 
0.6172,0.6992 c 0.3525,1.0176 0.7012,1.9902 1.1641,2.9629 0.7178,0 1.3945,-0.0762 2.1074,-0.166 v 0.5762 l 
-0.8721,2.1392 -0.7998,0.9043 -0.6543,1.4004 c 0,0.7676 0,1.5352 0,2.3027 l 0.2188,0.9063 -0.3633,0.4102 
-0.8008,0.4941 -0.8359,0.6992 0.6914,0.7813 -0.9453,0.8242 0.1816,0.5332 -1.418,1.6055 h -0.9443 l 
-0.7998,0.4941 H 33.6396 V 38.2814 L 33.4228,36.963 c -0.2813,-0.8262 -0.5742,-1.6465 -0.8721,-2.4668 
0,-0.6055 0.0361,-1.2051 0.0723,-1.8105 l 0.3643,-0.8223 -0.5098,-0.9883 0.0371,-1.3574 -0.6914,-0.7813 
0.3457,-1.1309 -0.5625,-0.6382 H 30.624 l -0.3271,-0.3701 -0
 .9814,0.6177 -0.3994,-0.4536 -0.9092,0.7817 c -0.6172,-0.6997 -1.2354,-1.3989 -1.8535,-2.0981 l 
-0.7266,-1.7285 0.6543,-0.9863 -0.3633,-0.4111 0.7988,-1.8936 c 0.6563,-0.8164 1.3418,-1.5996 2.0352,-2.3857 
l 1.2363,-0.3291 1.3809,-0.1641 0.9453,0.2471 1.3447,1.3564 0.4727,-0.5342 0.6533,-0.082 1.2363,0.4111 h 
0.9453 l 0.6543,-0.5762 0.291,-0.4111 -0.6553,-0.4111 -1.0908,-0.082 c -0.3027,-0.4199 -0.584,-0.8613 
-0.9434,-1.2344 l -0.3643,0.1641 -0.1455,1.0703 -0.6543,-0.7402 -0.1445,-0.8242 -0.7266,-0.5742 h -0.292 l 
0.7275,0.8223 -0.291,0.7402 -0.5811,0.1641 0.3633,-0.7402 -0.6553,-0.3281 -0.5801,-0.6582 -1.0918,0.2461 
-0.1445,0.3281 -0.6543,0.4121 -0.3633,0.9053 -0.9082,0.4521 -0.4004,-0.4521 h -0.4355 v -1.4814 l 
0.9453,-0.4941 h 0.7266 l -0.1465,-0.5752 -0.5801,-0.5762 0.9805,-0.2061 0.5449,-0.6162 0.4355,-0.7412 h 
0.8008 l -0.2188,-0.5752 0.5098,-0.3291 v 0.6582 l 1.0898,0.2461 1.0898,-0.9043 0.0732,-0.4121 0.9443,-0.6577 
c -0.3418,0.0425 -0.6836,0.0737 -1.0176,0.1646 V 9.9
 766 L 34.2213,9.1538 H 33.858 l -0.7984,0.7402 -0.2188,0.4116 0.2188,0.5767 -0.3643,0.9863 -0.5811,-0.3291 
-0.5078,-0.5752 -0.8008,0.5752 -0.291,-1.3159 1.3809,-0.9048 V 8.8247 l 0.873,-0.5757 1.3809,-0.3296 
0.9453,0.3296 1.7441,0.3291 -0.4355,0.4932 H 35.458 l 0.9453,0.9873 0.7266,-0.8223 0.2207,-0.3618 c 0,0 
2.7871,2.498 4.3799,5.2305 1.5928,2.7334 2.3408,5.9551 2.3408,6.6094 z"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)"
+             style="fill:url(#radialGradient8755);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g8618">
+            <g
+               style="fill:url(#radialGradient8753);fill-opacity:1"
+               id="g8620">
+              <path
+                 style="fill:url(#radialGradient8751);fill-opacity:1"
+                 id="path8622"
+                 d="m 26.0703,9.2363 -0.0732,0.4932 0.5098,0.3291 0.8711,-0.5757 -0.4355,-0.4937 
-0.582,0.3296 -0.29,-0.0825"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)"
+             style="fill:url(#radialGradient8761);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g8624">
+            <g
+               style="fill:url(#radialGradient8759);fill-opacity:1"
+               id="g8626">
+              <path
+                 style="fill:url(#radialGradient8757);fill-opacity:1"
+                 id="path8628"
+                 d="m 26.8701,5.8633 -1.8906,-0.7407 -2.1797,0.2466 -2.6904,0.7402 -0.5088,0.4941 
1.6719,1.1514 v 0.6582 l -0.6543,0.6582 0.873,1.729 0.5801,-0.3301 0.7285,-1.1514 c 1.123,-0.3472 
2.1299,-0.7407 3.1973,-1.2344 l 0.873,-2.2212"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)"
+             style="fill:url(#radialGradient8767);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g8630">
+            <g
+               style="fill:url(#radialGradient8765);fill-opacity:1"
+               id="g8632">
+              <path
+                 style="fill:url(#radialGradient8763);fill-opacity:1"
+                 id="path8634"
+                 d="m 28.833,12.7749 -0.291,-0.7412 -0.5098,0.165 0.1465,0.9043 0.6543,-0.3281"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)"
+             style="fill:url(#radialGradient8773);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g8636">
+            <g
+               style="fill:url(#radialGradient8771);fill-opacity:1"
+               id="g8638">
+              <path
+                 style="fill:url(#radialGradient8769);fill-opacity:1"
+                 id="path8640"
+                 d="m 29.123,12.6089 -0.1455,0.9883 0.7998,-0.165 0.5811,-0.5752 -0.5088,-0.4941 C 
29.6787,11.9078 29.4824,11.483 29.2685,11.0465 H 28.833 v 0.4932 l 0.29,0.3291 v 0.7402"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)"
+             style="fill:url(#radialGradient8779);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g8642">
+            <g
+               style="fill:url(#radialGradient8777);fill-opacity:1"
+               id="g8644">
+              <path
+                 style="fill:url(#radialGradient8775);fill-opacity:1"
+                 id="path8646"
+                 d="m 19.021933,28.805282 -0.582,-1.1523 -1.0903,-0.2466 -0.5815,-1.5625 -1.4536,0.1641 
-1.2354,-0.9043 -1.3091,1.1514 v 0.1816 c -0.396,-0.1143 -0.8828,-0.1299 -1.2354,-0.3467 l -0.291,-0.8223 v 
-0.9053 l -0.872099,0.082 c 0.0728,-0.5762 0.144999,-1.1514 0.218299,-1.7275 h -0.509298 l -0.5083003,0.6582 
-0.5093,0.2461 -0.7271,-0.4102 -0.0728,-0.9053 0.1455,-0.9873 1.0908,-0.8223 h 0.8720993 l 0.144999,-0.4941 
1.0903,0.2461 0.7998,0.9883 0.1455,-1.6465 1.3813,-1.1514 0.5088,-1.2344 1.0176,-0.4111 0.5815,-0.8223 
1.3081,-0.248 0.6548,-0.9863 c -0.6543,0 -1.3086,0 -1.9629,0 l 1.2358,-0.5762 h 0.8716 l 1.2363,-0.4121 
0.1455,-0.4922 -0.4365,-0.4121 -0.5088,-0.165 0.1455,-0.4932 -0.3633,-0.7402 -0.8726,0.3281 0.1455,-0.6577 
-1.0176,-0.5762 -0.7993,1.3979 0.0723,0.4941 -0.7993,0.3301 -0.5093,1.0693 -0.2178,-0.9873 -1.3813,-0.5762 
-0.2183,-0.7402 1.8174,-1.0703 0.7998,-0.7401985 0.0728,-0.9048 -0.436,-0.2471 -0.5815,-0.0825 -0.3633,0.9053 
c 0,0 -0.6079,0.1191 -0.7642,
 0.1577 -1.9961,1.8393985 -6.0292979,5.8100985 -6.9662979,13.3061985 0.0371,0.1738 0.6792,1.1816 
0.6792,1.1816 l 1.5263996,0.9043 1.5264003,0.4121 0.654798,0.8232 1.0171,0.7402 0.5815,-0.082 0.436,0.1963 v 
0.1328 l -0.5811,1.563 -0.4365,0.6582 0.1455,0.3301 -0.3633,1.2324 1.3086,2.3867 1.3081,1.1523 0.582,0.8223 
-0.0732,1.7285 0.4365,0.9863 -0.4365,1.8926 c 0,0 -0.0342,-0.0117 0.0215,0.1777 0.0562,0.1895 2.3291,1.4512 
2.4736,1.3438 0.144,-0.1094 0.2671,-0.2051 0.2671,-0.2051 l -0.145,-0.4102 0.5811,-0.5762 0.2183,-0.5762 
0.9453,-0.3301 0.7266,-1.8105 -0.2178,-0.4922 0.5078,-0.7402 1.0908,-0.248 0.582,-1.3164 -0.1455,-1.6445 
0.8721,-1.2344 0.1455,-1.2344 c -1.1934,-0.5918 -2.377,-1.2012 -3.5615,-1.8105"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)"
+             style="fill:url(#radialGradient8785);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g8648">
+            <g
+               style="fill:url(#radialGradient8783);fill-opacity:1"
+               id="g8650">
+              <path
+                 style="fill:url(#radialGradient8781);fill-opacity:1"
+                 id="path8652"
+                 d="m 16.7656,9.5649 0.7266,0.4937 h 0.582 V 9.4829 l -0.7266,-0.3291 -0.582,0.4111"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)"
+             style="fill:url(#radialGradient8791);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g8654">
+            <g
+               style="fill:url(#radialGradient8789);fill-opacity:1"
+               id="g8656">
+              <path
+                 style="fill:url(#radialGradient8787);fill-opacity:1"
+                 id="path8658"
+                 d="M 14.876,8.9072 14.5122,9.812 h 0.7271 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 
16.5479,8.331 l 0.7271,0.2471 c 0.4844,0.3291 0.9688,0.6582 1.4536,0.9868 L 19.4561,8.9072 18.6558,8.5781 
18.292,7.8374 16.9111,7.6728 16.8383,7.2612 16.184,7.4262 15.8936,8.002 15.5298,7.2613 l -0.145,0.3291 
0.0728,0.8228 -0.5816,0.494"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)"
+             style="fill:url(#radialGradient8797);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g8660">
+            <g
+               style="fill:url(#radialGradient8795);fill-opacity:1"
+               id="g8662">
+              <path
+                 style="fill:url(#radialGradient8793);fill-opacity:1"
+                 id="path8664"
+                 d="M 17.4922,6.8496 17.856,6.521 18.5831,6.3564 c 0.498,-0.2422 0.998,-0.4053 
1.5264,-0.5762 l -0.29,-0.4937 -0.9385,0.1348 -0.4434,0.4419 -0.731,0.106 -0.6499,0.3052 -0.3159,0.1528 
-0.1929,0.2583 0.9443,0.1641"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)"
+             style="fill:url(#radialGradient8803);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4"
+             id="g8666">
+            <g
+               style="fill:url(#radialGradient8801);fill-opacity:1"
+               id="g8668">
+              <path
+                 style="fill:url(#radialGradient8799);fill-opacity:1"
+                 id="path8670"
+                 d="m 18.7285,14.6665 0.4365,-0.6582 -0.6548,-0.4932 0.2183,1.1514"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)"
+             id="g8672"
+             style="fill:url(#radialGradient8809);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4">
+            <g
+               id="g8674"
+               style="fill:url(#radialGradient8807);fill-opacity:1">
+              <path
+                 d="m 44.0713,20.7144 c 0,0.2627 0,0 0,0 l -0.5449,0.6172 c -0.334,-0.3936 -0.709,-0.7246 
-1.0898,-1.0703 l -0.8359,0.123 -0.7637,-0.8633 v 1.0684 l 0.6543,0.4951 0.4355,0.4932 0.582,-0.6582 c 
0.1465,0.2744 0.291,0.5488 0.4365,0.8232 v 0.8223 l -0.6553,0.7402 -1.1992,0.8232 -0.9082,0.9063 
-0.582,-0.6602 0.291,-0.7402 -0.5811,-0.6582 -0.9814,-2.0977 -0.8359,-0.9453 -0.2188,0.2461 0.3281,1.1934 
0.6172,0.6992 c 0.3525,1.0176 0.7012,1.9902 1.1641,2.9629 0.7178,0 1.3945,-0.0762 2.1074,-0.166 v 0.5762 l 
-0.8721,2.1392 -0.7998,0.9043 -0.6543,1.4004 c 0,0.7676 0,1.5352 0,2.3027 l 0.2188,0.9063 -0.3633,0.4102 
-0.8008,0.4941 -0.8359,0.6992 0.6914,0.7813 -0.9453,0.8242 0.1816,0.5332 -1.418,1.6055 h -0.9443 l 
-0.7998,0.4941 H 33.6396 V 38.2814 L 33.4228,36.963 c -0.2813,-0.8262 -0.5742,-1.6465 -0.8721,-2.4668 
0,-0.6055 0.0361,-1.2051 0.0723,-1.8105 l 0.3643,-0.8223 -0.5098,-0.9883 0.0371,-1.3574 -0.6914,-0.7813 
0.3457,-1.1309 -0.5625,-0.6382 H 30.624 l -0.3271,-0.3701 -0
 .9814,0.6177 -0.3994,-0.4536 -0.9092,0.7817 c -0.6172,-0.6997 -1.2354,-1.3989 -1.8535,-2.0981 l 
-0.7266,-1.7285 0.6543,-0.9863 -0.3633,-0.4111 0.7988,-1.8936 c 0.6563,-0.8164 1.3418,-1.5996 2.0352,-2.3857 
l 1.2363,-0.3291 1.3809,-0.1641 0.9453,0.2471 1.3447,1.3564 0.4727,-0.5342 0.6533,-0.082 1.2363,0.4111 h 
0.9453 l 0.6543,-0.5762 0.291,-0.4111 -0.6553,-0.4111 -1.0908,-0.082 c -0.3027,-0.4199 -0.584,-0.8613 
-0.9434,-1.2344 l -0.3643,0.1641 -0.1455,1.0703 -0.6543,-0.7402 -0.1445,-0.8242 -0.7266,-0.5742 h -0.292 l 
0.7275,0.8223 -0.291,0.7402 -0.5811,0.1641 0.3633,-0.7402 -0.6553,-0.3281 -0.5801,-0.6582 -1.0918,0.2461 
-0.1445,0.3281 -0.6543,0.4121 -0.3633,0.9053 -0.9082,0.4521 -0.4004,-0.4521 h -0.4355 v -1.4814 l 
0.9453,-0.4941 h 0.7266 l -0.1465,-0.5752 -0.5801,-0.5762 0.9805,-0.2061 0.5449,-0.6162 0.4355,-0.7412 h 
0.8008 l -0.2188,-0.5752 0.5098,-0.3291 v 0.6582 l 1.0898,0.2461 1.0898,-0.9043 0.0732,-0.4121 0.9443,-0.6577 
c -0.3418,0.0425 -0.6836,0.0737 -1.0176,0.1646 V 9.9
 766 L 34.2213,9.1538 H 33.858 l -0.7984,0.7402 -0.2188,0.4116 0.2188,0.5767 -0.3643,0.9863 -0.5811,-0.3291 
-0.5078,-0.5752 -0.8008,0.5752 -0.291,-1.3159 1.3809,-0.9048 V 8.8247 l 0.873,-0.5757 1.3809,-0.3296 
0.9453,0.3296 1.7441,0.3291 -0.4355,0.4932 H 35.458 l 0.9453,0.9873 0.7266,-0.8223 0.2207,-0.3618 c 0,0 
2.7871,2.498 4.3799,5.2305 1.5928,2.7334 2.3408,5.9551 2.3408,6.6094 z"
+                 id="path8676"
+                 style="fill:url(#radialGradient8805);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)"
+             id="g8678"
+             style="fill:url(#radialGradient8815);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4">
+            <g
+               id="g8680"
+               style="fill:url(#radialGradient8813);fill-opacity:1">
+              <path
+                 d="m 26.0703,9.2363 -0.0732,0.4932 0.5098,0.3291 0.8711,-0.5757 -0.4355,-0.4937 
-0.582,0.3296 -0.29,-0.0825"
+                 id="path8682"
+                 style="fill:url(#radialGradient8811);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)"
+             id="g8684"
+             style="fill:url(#radialGradient8821);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4">
+            <g
+               id="g8686"
+               style="fill:url(#radialGradient8819);fill-opacity:1">
+              <path
+                 d="m 26.8701,5.8633 -1.8906,-0.7407 -2.1797,0.2466 -2.6904,0.7402 -0.5088,0.4941 
1.6719,1.1514 v 0.6582 l -0.6543,0.6582 0.873,1.729 0.5801,-0.3301 0.7285,-1.1514 c 1.123,-0.3472 
2.1299,-0.7407 3.1973,-1.2344 l 0.873,-2.2212"
+                 id="path8688"
+                 style="fill:url(#radialGradient8817);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)"
+             id="g8690"
+             style="fill:url(#radialGradient8827);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4">
+            <g
+               id="g8692"
+               style="fill:url(#radialGradient8825);fill-opacity:1">
+              <path
+                 d="m 28.833,12.7749 -0.291,-0.7412 -0.5098,0.165 0.1465,0.9043 0.6543,-0.3281"
+                 id="path8694"
+                 style="fill:url(#radialGradient8823);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)"
+             id="g8696"
+             style="fill:url(#radialGradient8833);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4">
+            <g
+               id="g8698"
+               style="fill:url(#radialGradient8831);fill-opacity:1">
+              <path
+                 d="m 29.123,12.6089 -0.1455,0.9883 0.7998,-0.165 0.5811,-0.5752 -0.5088,-0.4941 C 
29.6787,11.9078 29.4824,11.483 29.2685,11.0465 H 28.833 v 0.4932 l 0.29,0.3291 v 0.7402"
+                 id="path8700"
+                 style="fill:url(#radialGradient8829);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)"
+             id="g8702"
+             style="fill:url(#radialGradient8839);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4">
+            <g
+               id="g8704"
+               style="fill:url(#radialGradient8837);fill-opacity:1">
+              <path
+                 d="m 18.3652,28.2422 -0.582,-1.1523 -1.0903,-0.2466 -0.5815,-1.5625 -1.4536,0.1641 
-1.2354,-0.9043 -1.3091,1.1514 v 0.1816 c -0.396,-0.1143 -0.8828,-0.1299 -1.2354,-0.3467 l -0.291,-0.8223 v 
-0.9053 l -0.8721,0.082 c 0.0728,-0.5762 0.145,-1.1514 0.2183,-1.7275 H 9.4238 L 8.9155,22.812 8.4062,23.0581 
7.6791,22.6479 7.6063,21.7426 7.7518,20.7553 8.8426,19.933 h 0.8721 l 0.145,-0.4941 1.0903,0.2461 
0.7998,0.9883 0.1455,-1.6465 1.3813,-1.1514 0.5088,-1.2344 1.0176,-0.4111 0.5815,-0.8223 1.3081,-0.248 
0.6548,-0.9863 c -0.6543,0 -1.3086,0 -1.9629,0 l 1.2358,-0.5762 h 0.8716 l 1.2363,-0.4121 0.1455,-0.4922 
-0.4365,-0.4121 -0.5088,-0.165 0.1455,-0.4932 -0.3633,-0.7402 -0.8726,0.3281 0.1455,-0.6577 -1.0176,-0.5762 
-0.7993,1.3979 0.0723,0.4941 -0.7993,0.3301 -0.5093,1.0693 -0.2178,-0.9873 -1.3813,-0.5762 -0.2183,-0.7402 
1.8174,-1.0703 0.7998,-0.7402 0.0728,-0.9048 -0.436,-0.2471 -0.5815,-0.0825 -0.3633,0.9053 c 0,0 
-0.6079,0.1191 -0.7642,0.1577 -1.9961,1.8394 -6.0293,
 5.8101 -6.9663,13.3062 0.0371,0.1738 0.6792,1.1816 0.6792,1.1816 l 1.5264,0.9043 1.5264,0.4121 0.6548,0.8232 
1.0171,0.7402 0.5815,-0.082 0.436,0.1963 v 0.1328 l -0.5811,1.563 -0.4365,0.6582 0.1455,0.3301 -0.3633,1.2324 
1.3086,2.3867 1.3081,1.1523 0.582,0.8223 -0.0732,1.7285 0.4365,0.9863 -0.4365,1.8926 c 0,0 -0.0342,-0.0117 
0.0215,0.1777 0.0562,0.1895 2.3291,1.4512 2.4736,1.3438 0.144,-0.1094 0.2671,-0.2051 0.2671,-0.2051 l 
-0.145,-0.4102 0.5811,-0.5762 0.2183,-0.5762 0.9453,-0.3301 0.7266,-1.8105 -0.2178,-0.4922 0.5078,-0.7402 
1.0908,-0.248 0.582,-1.3164 -0.1455,-1.6445 0.8721,-1.2344 0.1455,-1.2344 C 20.7331,29.4607 19.5495,28.8513 
18.365,28.242"
+                 id="path8706"
+                 style="fill:url(#radialGradient8835);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)"
+             id="g8708"
+             style="fill:url(#radialGradient8845);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4">
+            <g
+               id="g8710"
+               style="fill:url(#radialGradient8843);fill-opacity:1">
+              <path
+                 d="m 16.7656,9.5649 0.7266,0.4937 h 0.582 V 9.4829 l -0.7266,-0.3291 -0.582,0.4111"
+                 id="path8712"
+                 style="fill:url(#radialGradient8841);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)"
+             id="g8714"
+             style="fill:url(#radialGradient8851);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4">
+            <g
+               id="g8716"
+               style="fill:url(#radialGradient8849);fill-opacity:1">
+              <path
+                 d="M 14.876,8.9072 14.5122,9.812 h 0.7271 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 
16.5479,8.331 l 0.7271,0.2471 c 0.4844,0.3291 0.9688,0.6582 1.4536,0.9868 L 19.4561,8.9072 18.6558,8.5781 
18.292,7.8374 16.9111,7.6728 16.8383,7.2612 16.184,7.4262 15.8936,8.002 15.5298,7.2613 l -0.145,0.3291 
0.0728,0.8228 -0.5816,0.494"
+                 id="path8718"
+                 style="fill:url(#radialGradient8847);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)"
+             id="g8720"
+             style="fill:url(#radialGradient8857);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4">
+            <g
+               id="g8722"
+               style="fill:url(#radialGradient8855);fill-opacity:1">
+              <path
+                 d="M 17.4922,6.8496 17.856,6.521 18.5831,6.3564 c 0.498,-0.2422 0.998,-0.4053 
1.5264,-0.5762 l -0.29,-0.4937 -0.9385,0.1348 -0.4434,0.4419 -0.731,0.106 -0.6499,0.3052 -0.3159,0.1528 
-0.1929,0.2583 0.9443,0.1641"
+                 id="path8724"
+                 style="fill:url(#radialGradient8853);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)"
+             id="g8726"
+             style="fill:url(#radialGradient8863);fill-opacity:1;fill-rule:nonzero;stroke-miterlimit:4">
+            <g
+               id="g8728"
+               style="fill:url(#radialGradient8861);fill-opacity:1">
+              <path
+                 d="m 18.7285,14.6665 0.4365,-0.6582 -0.6548,-0.4932 0.2183,1.1514"
+                 id="path8730"
+                 style="fill:url(#radialGradient8859);fill-opacity:1"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <circle
+             transform="matrix(0.6418805,0,0,0.6418805,4.1183435,-78.07054)"
+             id="path8732"
+             
style="display:inline;overflow:visible;visibility:visible;opacity:0.53513495;fill:none;stroke:#ffffff;stroke-width:1.07103813;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+             cx="191.875"
+             cy="190.75"
+             r="13.875" />
+          <path
+             id="path8734"
+             transform="matrix(0.6781,0,0,0.6781,74.6825,-44.7084)"
+             d="m 64.625,130 c -0.05592,0.48975 -0.09375,0.99536 -0.09375,1.5 0,7.1928 5.838446,13.03125 
13.03125,13.03125 7.192801,0 13.031249,-5.83846 13.03125,-13.03125 0,-0.50479 -0.0378,-1.0101 -0.09375,-1.5 
-0.753425,6.47773 -6.258685,11.53125 -12.9375,11.53125 -6.679033,0 -12.184356,-5.05322 -12.9375,-11.53125 z"
+             
style="display:inline;overflow:visible;visibility:visible;opacity:0.53513495;fill:url(#radialGradient8865);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;filter:url(#filter10631-9-5-7)"
+             inkscape:connector-curvature="0" />
+        </g>
+      </g>
+      <g
+         transform="matrix(1.428358,0,0,1.428358,116.10283,-324.8954)"
+         id="g9071"
+         style="display:inline;stroke-width:0.71994257;enable-background:new"
+         inkscape:export-filename="/home/jimmac/Desktop/text-html.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <g
+           transform="matrix(1.41451,0,0,1.41451,151.042,18.2974)"
+           id="g9073"
+           style="display:inline;stroke-width:0.71994257">
+          <ellipse
+             transform="matrix(0.351175,0,0,0.320336,118.44,40.0628)"
+             id="ellipse9075"
+             
style="fill:url(#radialGradient9205);fill-opacity:1;stroke:none;stroke-width:0.71994257;filter:url(#filter5927)"
+             cx="24.849752"
+             cy="38.908627"
+             rx="20.203051"
+             ry="7.4751287" />
+          <ellipse
+             
style="opacity:0.51836697;fill:url(#radialGradient9207);fill-opacity:1;stroke:none;stroke-width:0.71994257;filter:url(#filter5788)"
+             id="ellipse9077"
+             transform="matrix(0.474726,0,0,0.433037,115.37,35.4289)"
+             cx="24.849752"
+             cy="38.908627"
+             rx="20.203051"
+             ry="7.4751287" />
+          <path
+             
style="opacity:1;fill:url(#radialGradient17006);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient17014);stroke-width:0.50279307;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+             d="m 136.91487,44.372418 c 0,5.319049 -4.32418,9.631022 -9.65748,9.631022 -5.33379,0 
-9.65772,-4.312023 -9.65772,-9.631022 0,-5.318803 4.32393,-9.630338 9.65772,-9.630338 5.3333,0 
9.65748,4.311535 9.65748,9.630338 z"
+             id="path9079"
+             inkscape:connector-curvature="0" />
+          <g
+             id="g9081"
+             
style="fill:url(#radialGradient9217);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g9083"
+               style="fill:url(#radialGradient9215);fill-opacity:1;stroke-width:0.71994257">
+              <path
+                 d="m 44.0713,20.7144 c 0,0.2627 0,0 0,0 l -0.5449,0.6172 c -0.334,-0.3936 -0.709,-0.7246 
-1.0898,-1.0703 l -0.8359,0.123 -0.7637,-0.8633 v 1.0684 l 0.6543,0.4951 0.4355,0.4932 0.582,-0.6582 c 
0.1465,0.2744 0.291,0.5488 0.4365,0.8232 v 0.8223 l -0.6553,0.7402 -1.1992,0.8232 -0.9082,0.9063 
-0.582,-0.6602 0.291,-0.7402 -0.5811,-0.6582 -0.9814,-2.0977 -0.8359,-0.9453 -0.2188,0.2461 0.3281,1.1934 
0.6172,0.6992 c 0.3525,1.0176 0.7012,1.9902 1.1641,2.9629 0.7178,0 1.3945,-0.0762 2.1074,-0.166 v 0.5762 l 
-0.8721,2.1392 -0.7998,0.9043 -0.6543,1.4004 c 0,0.7676 0,1.5352 0,2.3027 l 0.2188,0.9063 -0.3633,0.4102 
-0.8008,0.4941 -0.8359,0.6992 0.6914,0.7813 -0.9453,0.8242 0.1816,0.5332 -1.418,1.6055 h -0.9443 l 
-0.7998,0.4941 H 33.6396 V 38.2814 L 33.4228,36.963 c -0.2813,-0.8262 -0.5742,-1.6465 -0.8721,-2.4668 
0,-0.6055 0.0361,-1.2051 0.0723,-1.8105 l 0.3643,-0.8223 -0.5098,-0.9883 0.0371,-1.3574 -0.6914,-0.7813 
0.3457,-1.1309 -0.5625,-0.6382 H 30.624 l -0.3271,-0.3701 -0
 .9814,0.6177 -0.3994,-0.4536 -0.9092,0.7817 c -0.6172,-0.6997 -1.2354,-1.3989 -1.8535,-2.0981 l 
-0.7266,-1.7285 0.6543,-0.9863 -0.3633,-0.4111 0.7988,-1.8936 c 0.6563,-0.8164 1.3418,-1.5996 2.0352,-2.3857 
l 1.2363,-0.3291 1.3809,-0.1641 0.9453,0.2471 1.3447,1.3564 0.4727,-0.5342 0.6533,-0.082 1.2363,0.4111 h 
0.9453 l 0.6543,-0.5762 0.291,-0.4111 -0.6553,-0.4111 -1.0908,-0.082 c -0.3027,-0.4199 -0.584,-0.8613 
-0.9434,-1.2344 l -0.3643,0.1641 -0.1455,1.0703 -0.6543,-0.7402 -0.1445,-0.8242 -0.7266,-0.5742 h -0.292 l 
0.7275,0.8223 -0.291,0.7402 -0.5811,0.1641 0.3633,-0.7402 -0.6553,-0.3281 -0.5801,-0.6582 -1.0918,0.2461 
-0.1445,0.3281 -0.6543,0.4121 -0.3633,0.9053 -0.9082,0.4521 -0.4004,-0.4521 h -0.4355 v -1.4814 l 
0.9453,-0.4941 h 0.7266 l -0.1465,-0.5752 -0.5801,-0.5762 0.9805,-0.2061 0.5449,-0.6162 0.4355,-0.7412 h 
0.8008 l -0.2188,-0.5752 0.5098,-0.3291 v 0.6582 l 1.0898,0.2461 1.0898,-0.9043 0.0732,-0.4121 0.9443,-0.6577 
c -0.3418,0.0425 -0.6836,0.0737 -1.0176,0.1646 V 9.9
 766 L 34.2213,9.1538 H 33.858 l -0.7984,0.7402 -0.2188,0.4116 0.2188,0.5767 -0.3643,0.9863 -0.5811,-0.3291 
-0.5078,-0.5752 -0.8008,0.5752 -0.291,-1.3159 1.3809,-0.9048 V 8.8247 l 0.873,-0.5757 1.3809,-0.3296 
0.9453,0.3296 1.7441,0.3291 -0.4355,0.4932 H 35.458 l 0.9453,0.9873 0.7266,-0.8223 0.2207,-0.3618 c 0,0 
2.7871,2.498 4.3799,5.2305 1.5928,2.7334 2.3408,5.9551 2.3408,6.6094 z"
+                 id="path9085"
+                 style="fill:url(#radialGradient9213);fill-opacity:1;stroke-width:0.71994257"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g9087"
+             
style="fill:url(#radialGradient9223);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g9089"
+               style="fill:url(#radialGradient9221);fill-opacity:1;stroke-width:0.71994257">
+              <path
+                 d="m 26.0703,9.2363 -0.0732,0.4932 0.5098,0.3291 0.8711,-0.5757 -0.4355,-0.4937 
-0.582,0.3296 -0.29,-0.0825"
+                 id="path9091"
+                 style="fill:url(#radialGradient9219);fill-opacity:1;stroke-width:0.71994257"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g9093"
+             
style="fill:url(#radialGradient9229);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g9095"
+               style="fill:url(#radialGradient9227);fill-opacity:1;stroke-width:0.71994257">
+              <path
+                 d="m 26.8701,5.8633 -1.8906,-0.7407 -2.1797,0.2466 -2.6904,0.7402 -0.5088,0.4941 
1.6719,1.1514 v 0.6582 l -0.6543,0.6582 0.873,1.729 0.5801,-0.3301 0.7285,-1.1514 c 1.123,-0.3472 
2.1299,-0.7407 3.1973,-1.2344 l 0.873,-2.2212"
+                 id="path9097"
+                 style="fill:url(#radialGradient9225);fill-opacity:1;stroke-width:0.71994257"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g9099"
+             
style="fill:url(#radialGradient9235);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g9101"
+               style="fill:url(#radialGradient9233);fill-opacity:1;stroke-width:0.71994257">
+              <path
+                 d="m 28.833,12.7749 -0.291,-0.7412 -0.5098,0.165 0.1465,0.9043 0.6543,-0.3281"
+                 id="path9103"
+                 style="fill:url(#radialGradient9231);fill-opacity:1;stroke-width:0.71994257"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g9105"
+             
style="fill:url(#radialGradient9241);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g9107"
+               style="fill:url(#radialGradient9239);fill-opacity:1;stroke-width:0.71994257">
+              <path
+                 d="m 29.123,12.6089 -0.1455,0.9883 0.7998,-0.165 0.5811,-0.5752 -0.5088,-0.4941 C 
29.6787,11.9078 29.4824,11.483 29.2685,11.0465 H 28.833 v 0.4932 l 0.29,0.3291 v 0.7402"
+                 id="path9109"
+                 style="fill:url(#radialGradient9237);fill-opacity:1;stroke-width:0.71994257"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g9111"
+             
style="fill:url(#radialGradient9247);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g9113"
+               style="fill:url(#radialGradient9245);fill-opacity:1;stroke-width:0.71994257">
+              <path
+                 d="m 19.021933,28.805282 -0.582,-1.1523 -1.0903,-0.2466 -0.5815,-1.5625 -1.4536,0.1641 
-1.2354,-0.9043 -1.3091,1.1514 v 0.1816 c -0.396,-0.1143 -0.8828,-0.1299 -1.2354,-0.3467 l -0.291,-0.8223 v 
-0.9053 l -0.872099,0.082 c 0.0728,-0.5762 0.144999,-1.1514 0.218299,-1.7275 h -0.509298 l -0.5083003,0.6582 
-0.5093,0.2461 -0.7271,-0.4102 -0.0728,-0.9053 0.1455,-0.9873 1.0908,-0.8223 h 0.8720993 l 0.144999,-0.4941 
1.0903,0.2461 0.7998,0.9883 0.1455,-1.6465 1.3813,-1.1514 0.5088,-1.2344 1.0176,-0.4111 0.5815,-0.8223 
1.3081,-0.248 0.6548,-0.9863 c -0.6543,0 -1.3086,0 -1.9629,0 l 1.2358,-0.5762 h 0.8716 l 1.2363,-0.4121 
0.1455,-0.4922 -0.4365,-0.4121 -0.5088,-0.165 0.1455,-0.4932 -0.3633,-0.7402 -0.8726,0.3281 0.1455,-0.6577 
-1.0176,-0.5762 -0.7993,1.3979 0.0723,0.4941 -0.7993,0.3301 -0.5093,1.0693 -0.2178,-0.9873 -1.3813,-0.5762 
-0.2183,-0.7402 1.8174,-1.0703 0.7998,-0.7401985 0.0728,-0.9048 -0.436,-0.2471 -0.5815,-0.0825 -0.3633,0.9053 
c 0,0 -0.6079,0.1191 -0.7642,
 0.1577 -1.9961,1.8393985 -6.0292979,5.8100985 -6.9662979,13.3061985 0.0371,0.1738 0.6792,1.1816 
0.6792,1.1816 l 1.5263996,0.9043 1.5264003,0.4121 0.654798,0.8232 1.0171,0.7402 0.5815,-0.082 0.436,0.1963 v 
0.1328 l -0.5811,1.563 -0.4365,0.6582 0.1455,0.3301 -0.3633,1.2324 1.3086,2.3867 1.3081,1.1523 0.582,0.8223 
-0.0732,1.7285 0.4365,0.9863 -0.4365,1.8926 c 0,0 -0.0342,-0.0117 0.0215,0.1777 0.0562,0.1895 2.3291,1.4512 
2.4736,1.3438 0.144,-0.1094 0.2671,-0.2051 0.2671,-0.2051 l -0.145,-0.4102 0.5811,-0.5762 0.2183,-0.5762 
0.9453,-0.3301 0.7266,-1.8105 -0.2178,-0.4922 0.5078,-0.7402 1.0908,-0.248 0.582,-1.3164 -0.1455,-1.6445 
0.8721,-1.2344 0.1455,-1.2344 c -1.1934,-0.5918 -2.377,-1.2012 -3.5615,-1.8105"
+                 id="path9115"
+                 style="fill:url(#radialGradient9243);fill-opacity:1;stroke-width:0.71994257"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g9117"
+             
style="fill:url(#radialGradient9253);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g9119"
+               style="fill:url(#radialGradient9251);fill-opacity:1;stroke-width:0.71994257">
+              <path
+                 d="m 16.7656,9.5649 0.7266,0.4937 h 0.582 V 9.4829 l -0.7266,-0.3291 -0.582,0.4111"
+                 id="path9121"
+                 style="fill:url(#radialGradient9249);fill-opacity:1;stroke-width:0.71994257"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g9123"
+             
style="fill:url(#radialGradient9259);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g9125"
+               style="fill:url(#radialGradient9257);fill-opacity:1;stroke-width:0.71994257">
+              <path
+                 d="M 14.876,8.9072 14.5122,9.812 h 0.7271 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 
16.5479,8.331 l 0.7271,0.2471 c 0.4844,0.3291 0.9688,0.6582 1.4536,0.9868 L 19.4561,8.9072 18.6558,8.5781 
18.292,7.8374 16.9111,7.6728 16.8383,7.2612 16.184,7.4262 15.8936,8.002 15.5298,7.2613 l -0.145,0.3291 
0.0728,0.8228 -0.5816,0.494"
+                 id="path9127"
+                 style="fill:url(#radialGradient9255);fill-opacity:1;stroke-width:0.71994257"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g9129"
+             
style="fill:url(#radialGradient9265);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g9131"
+               style="fill:url(#radialGradient9263);fill-opacity:1;stroke-width:0.71994257">
+              <path
+                 d="M 17.4922,6.8496 17.856,6.521 18.5831,6.3564 c 0.498,-0.2422 0.998,-0.4053 
1.5264,-0.5762 l -0.29,-0.4937 -0.9385,0.1348 -0.4434,0.4419 -0.731,0.106 -0.6499,0.3052 -0.3159,0.1528 
-0.1929,0.2583 0.9443,0.1641"
+                 id="path9133"
+                 style="fill:url(#radialGradient9261);fill-opacity:1;stroke-width:0.71994257"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g9135"
+             
style="fill:url(#radialGradient9271);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             transform="matrix(0.451733,0,0,0.451598,115.798,33.8722)">
+            <g
+               id="g9137"
+               style="fill:url(#radialGradient9269);fill-opacity:1;stroke-width:0.71994257">
+              <path
+                 d="m 18.7285,14.6665 0.4365,-0.6582 -0.6548,-0.4932 0.2183,1.1514"
+                 id="path9139"
+                 style="fill:url(#radialGradient9267);fill-opacity:1;stroke-width:0.71994257"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             
style="fill:url(#radialGradient17032);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             id="g9141"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient17032);fill-opacity:1;stroke-width:0.71994257"
+               id="g9143">
+              <path
+                 style="fill:url(#radialGradient17032);fill-opacity:1;stroke-width:0.71994257"
+                 id="path9145"
+                 d="m 44.0713,20.7144 c 0,0.2627 0,0 0,0 l -0.5449,0.6172 c -0.334,-0.3936 -0.709,-0.7246 
-1.0898,-1.0703 l -0.8359,0.123 -0.7637,-0.8633 v 1.0684 l 0.6543,0.4951 0.4355,0.4932 0.582,-0.6582 c 
0.1465,0.2744 0.291,0.5488 0.4365,0.8232 v 0.8223 l -0.6553,0.7402 -1.1992,0.8232 -0.9082,0.9063 
-0.582,-0.6602 0.291,-0.7402 -0.5811,-0.6582 -0.9814,-2.0977 -0.8359,-0.9453 -0.2188,0.2461 0.3281,1.1934 
0.6172,0.6992 c 0.3525,1.0176 0.7012,1.9902 1.1641,2.9629 0.7178,0 1.3945,-0.0762 2.1074,-0.166 v 0.5762 l 
-0.8721,2.1392 -0.7998,0.9043 -0.6543,1.4004 c 0,0.7676 0,1.5352 0,2.3027 l 0.2188,0.9063 -0.3633,0.4102 
-0.8008,0.4941 -0.8359,0.6992 0.6914,0.7813 -0.9453,0.8242 0.1816,0.5332 -1.418,1.6055 h -0.9443 l 
-0.7998,0.4941 H 33.6396 V 38.2814 L 33.4228,36.963 c -0.2813,-0.8262 -0.5742,-1.6465 -0.8721,-2.4668 
0,-0.6055 0.0361,-1.2051 0.0723,-1.8105 l 0.3643,-0.8223 -0.5098,-0.9883 0.0371,-1.3574 -0.6914,-0.7813 
0.3457,-1.1309 -0.5625,-0.6382 H 30.624 l -0.3271,-0.3701 -0
 .9814,0.6177 -0.3994,-0.4536 -0.9092,0.7817 c -0.6172,-0.6997 -1.2354,-1.3989 -1.8535,-2.0981 l 
-0.7266,-1.7285 0.6543,-0.9863 -0.3633,-0.4111 0.7988,-1.8936 c 0.6563,-0.8164 1.3418,-1.5996 2.0352,-2.3857 
l 1.2363,-0.3291 1.3809,-0.1641 0.9453,0.2471 1.3447,1.3564 0.4727,-0.5342 0.6533,-0.082 1.2363,0.4111 h 
0.9453 l 0.6543,-0.5762 0.291,-0.4111 -0.6553,-0.4111 -1.0908,-0.082 c -0.3027,-0.4199 -0.584,-0.8613 
-0.9434,-1.2344 l -0.3643,0.1641 -0.1455,1.0703 -0.6543,-0.7402 -0.1445,-0.8242 -0.7266,-0.5742 h -0.292 l 
0.7275,0.8223 -0.291,0.7402 -0.5811,0.1641 0.3633,-0.7402 -0.6553,-0.3281 -0.5801,-0.6582 -1.0918,0.2461 
-0.1445,0.3281 -0.6543,0.4121 -0.3633,0.9053 -0.9082,0.4521 -0.4004,-0.4521 h -0.4355 v -1.4814 l 
0.9453,-0.4941 h 0.7266 l -0.1465,-0.5752 -0.5801,-0.5762 0.9805,-0.2061 0.5449,-0.6162 0.4355,-0.7412 h 
0.8008 l -0.2188,-0.5752 0.5098,-0.3291 v 0.6582 l 1.0898,0.2461 1.0898,-0.9043 0.0732,-0.4121 0.9443,-0.6577 
c -0.3418,0.0425 -0.6836,0.0737 -1.0176,0.1646 V 9.9
 766 L 34.2213,9.1538 H 33.858 l -0.7984,0.7402 -0.2188,0.4116 0.2188,0.5767 -0.3643,0.9863 -0.5811,-0.3291 
-0.5078,-0.5752 -0.8008,0.5752 -0.291,-1.3159 1.3809,-0.9048 V 8.8247 l 0.873,-0.5757 1.3809,-0.3296 
0.9453,0.3296 1.7441,0.3291 -0.4355,0.4932 H 35.458 l 0.9453,0.9873 0.7266,-0.8223 0.2207,-0.3618 c 0,0 
2.7871,2.498 4.3799,5.2305 1.5928,2.7334 2.3408,5.9551 2.3408,6.6094 z"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             
style="fill:url(#radialGradient9283);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             id="g9147"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient9281);fill-opacity:1;stroke-width:0.71994257"
+               id="g9149">
+              <path
+                 style="fill:url(#radialGradient9279);fill-opacity:1;stroke-width:0.71994257"
+                 id="path9151"
+                 d="m 26.0703,9.2363 -0.0732,0.4932 0.5098,0.3291 0.8711,-0.5757 -0.4355,-0.4937 
-0.582,0.3296 -0.29,-0.0825"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             
style="fill:url(#radialGradient9289);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             id="g9153"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient9287);fill-opacity:1;stroke-width:0.71994257"
+               id="g9155">
+              <path
+                 style="fill:url(#radialGradient9285);fill-opacity:1;stroke-width:0.71994257"
+                 id="path9157"
+                 d="m 26.8701,5.8633 -1.8906,-0.7407 -2.1797,0.2466 -2.6904,0.7402 -0.5088,0.4941 
1.6719,1.1514 v 0.6582 l -0.6543,0.6582 0.873,1.729 0.5801,-0.3301 0.7285,-1.1514 c 1.123,-0.3472 
2.1299,-0.7407 3.1973,-1.2344 l 0.873,-2.2212"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             
style="fill:url(#radialGradient9295);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             id="g9159"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient9293);fill-opacity:1;stroke-width:0.71994257"
+               id="g9161">
+              <path
+                 style="fill:url(#radialGradient9291);fill-opacity:1;stroke-width:0.71994257"
+                 id="path9163"
+                 d="m 28.833,12.7749 -0.291,-0.7412 -0.5098,0.165 0.1465,0.9043 0.6543,-0.3281"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             
style="fill:url(#radialGradient9301);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             id="g9165"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient9299);fill-opacity:1;stroke-width:0.71994257"
+               id="g9167">
+              <path
+                 style="fill:url(#radialGradient9297);fill-opacity:1;stroke-width:0.71994257"
+                 id="path9169"
+                 d="m 29.123,12.6089 -0.1455,0.9883 0.7998,-0.165 0.5811,-0.5752 -0.5088,-0.4941 C 
29.6787,11.9078 29.4824,11.483 29.2685,11.0465 H 28.833 v 0.4932 l 0.29,0.3291 v 0.7402"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             
style="fill:url(#radialGradient9307);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             id="g9171"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient9305);fill-opacity:1;stroke-width:0.71994257"
+               id="g9173">
+              <path
+                 
style="fill:url(#radialGradient17032);fill-opacity:1;stroke-width:0.71994257;font-variant-east_asian:normal;opacity:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+                 id="path9175"
+                 d="m 18.3652,28.2422 -0.582,-1.1523 -1.0903,-0.2466 -0.5815,-1.5625 -1.4536,0.1641 
-1.2354,-0.9043 -1.3091,1.1514 v 0.1816 c -0.396,-0.1143 -0.8828,-0.1299 -1.2354,-0.3467 l -0.291,-0.8223 v 
-0.9053 l -0.8721,0.082 c 0.0728,-0.5762 0.145,-1.1514 0.2183,-1.7275 H 9.4238 L 8.9155,22.812 8.4062,23.0581 
7.6791,22.6479 7.6063,21.7426 7.7518,20.7553 8.8426,19.933 h 0.8721 l 0.145,-0.4941 1.0903,0.2461 
0.7998,0.9883 0.1455,-1.6465 1.3813,-1.1514 0.5088,-1.2344 1.0176,-0.4111 0.5815,-0.8223 1.3081,-0.248 
0.6548,-0.9863 c -0.6543,0 -1.3086,0 -1.9629,0 l 1.2358,-0.5762 h 0.8716 l 1.2363,-0.4121 0.1455,-0.4922 
-0.4365,-0.4121 -0.5088,-0.165 0.1455,-0.4932 -0.3633,-0.7402 -0.8726,0.3281 0.1455,-0.6577 
-1.0176,-0.5761996 -0.7993,1.3978996 0.0723,0.4941 -0.7993,0.3301 -0.5093,1.0693 -0.2178,-0.9873 
-1.3813,-0.5762 -0.2183,-0.7402 1.8174,-1.0702996 0.7998,-0.7402 0.0728,-0.9048 -0.436,-0.2471 
-0.5815,-0.0825 -0.3633,0.9053 c 0,0 -0.6079,0.1191 -0.7642,0.1577 C 10.6618,10.8
 217 6.6286,14.7924 5.6916,22.2885 c 0.0371,0.1738 0.6792,1.1816 0.6792,1.1816 l 1.5264,0.9043 1.5264,0.4121 
0.6548,0.8232 1.0171,0.7402 0.5815,-0.082 0.436,0.1963 v 0.1328 l -0.5811,1.563 -0.4365,0.6582 0.1455,0.3301 
-0.3633,1.2324 1.3086,2.3867 1.3081,1.1523 0.582,0.8223 -0.0732,1.7285 0.4365,0.9863 -0.4365,1.8926 c 0,0 
-0.0342,-0.0117 0.0215,0.1777 0.0562,0.1895 2.3291,1.4512 2.4736,1.3438 0.144,-0.1094 0.2671,-0.2051 
0.2671,-0.2051 l -0.145,-0.4102 0.5811,-0.5762 0.2183,-0.5762 0.9453,-0.3301 0.7266,-1.8105 -0.2178,-0.4922 
0.5078,-0.7402 1.0908,-0.248 0.582,-1.3164 -0.1455,-1.6445 0.8721,-1.2344 0.1455,-1.2344 C 20.7331,29.4607 
19.5495,28.8513 18.365,28.242"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             
style="fill:url(#radialGradient9313);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             id="g9177"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient9311);fill-opacity:1;stroke-width:0.71994257"
+               id="g9179">
+              <path
+                 style="fill:url(#radialGradient9309);fill-opacity:1;stroke-width:0.71994257"
+                 id="path9181"
+                 d="m 16.7656,9.5649 0.7266,0.4937 h 0.582 V 9.4829 l -0.7266,-0.3291 -0.582,0.4111"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             
style="fill:url(#radialGradient9319);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             id="g9183"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient9317);fill-opacity:1;stroke-width:0.71994257"
+               id="g9185">
+              <path
+                 style="fill:url(#radialGradient9315);fill-opacity:1;stroke-width:0.71994257"
+                 id="path9187"
+                 d="M 14.876,8.9072 14.5122,9.812 h 0.7271 L 15.6031,8.9892 C 15.9166,8.7675 16.2286,8.5444 
16.5479,8.331 l 0.7271,0.2471 c 0.4844,0.3291 0.9688,0.6582 1.4536,0.9868 L 19.4561,8.9072 18.6558,8.5781 
18.292,7.8374 16.9111,7.6728 16.8383,7.2612 16.184,7.4262 15.8936,8.002 15.5298,7.2613 l -0.145,0.3291 
0.0728,0.8228 -0.5816,0.494"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             
style="fill:url(#radialGradient9325);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             id="g9189"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient9323);fill-opacity:1;stroke-width:0.71994257"
+               id="g9191">
+              <path
+                 style="fill:url(#radialGradient9321);fill-opacity:1;stroke-width:0.71994257"
+                 id="path9193"
+                 d="M 17.4922,6.8496 17.856,6.521 18.5831,6.3564 c 0.498,-0.2422 0.998,-0.4053 
1.5264,-0.5762 l -0.29,-0.4937 -0.9385,0.1348 -0.4434,0.4419 -0.731,0.106 -0.6499,0.3052 -0.3159,0.1528 
-0.1929,0.2583 0.9443,0.1641"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             
style="fill:url(#radialGradient9331);fill-opacity:1;fill-rule:nonzero;stroke-width:0.71994257;stroke-miterlimit:4"
+             id="g9195"
+             transform="matrix(0.46747,0,0,0.46733,115.469,33.3519)">
+            <g
+               style="fill:url(#radialGradient9329);fill-opacity:1;stroke-width:0.71994257"
+               id="g9197">
+              <path
+                 style="fill:url(#radialGradient9327);fill-opacity:1;stroke-width:0.71994257"
+                 id="path9199"
+                 d="m 18.7285,14.6665 0.4365,-0.6582 -0.6548,-0.4932 0.2183,1.1514"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <circle
+             
style="display:inline;overflow:visible;visibility:visible;opacity:0.53513495;fill:none;stroke:#ffffff;stroke-width:0.49494502;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+             id="circle9201"
+             cx="127.27916"
+             cy="44.368168"
+             r="9.1189566" />
+          <path
+             
style="display:inline;overflow:visible;visibility:visible;opacity:0.53513495;fill:url(#radialGradient9333);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.71994257;marker:none;filter:url(#filter10631-9-5-7)"
+             d="m 64.625,130 c -0.05592,0.48975 -0.09375,0.99536 -0.09375,1.5 0,7.1928 5.838446,13.03125 
13.03125,13.03125 7.192801,0 13.031249,-5.83846 13.03125,-13.03125 0,-0.50479 -0.0378,-1.0101 -0.09375,-1.5 
-0.753425,6.47773 -6.258685,11.53125 -12.9375,11.53125 -6.679033,0 -12.184356,-5.05322 -12.9375,-11.53125 z"
+             transform="matrix(0.6781,0,0,0.6781,74.6825,-44.7084)"
+             id="path9203"
+             inkscape:connector-curvature="0" />
+        </g>
+      </g>
+      <g
+         transform="translate(564.8745,-232.12886)"
+         style="display:inline;enable-background:new"
+         id="g4737">
+        <circle
+           transform="matrix(0.714286,0,0,0.714286,6.267857,6.428571)"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:none;stroke:#ffffff;stroke-width:2.79999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           id="path3066"
+           cx="18"
+           cy="18.125"
+           r="6" />
+        <circle
+           transform="matrix(1.406854,0,0,1.406854,-6.198359,-6.124216)"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:none;stroke:#ffffff;stroke-width:0.71080583;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           id="path3941"
+           cx="18"
+           cy="18.125"
+           r="6" />
+        <circle
+           transform="matrix(2.051269,0,0,2.051269,-17.79782,-17.80423)"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:none;stroke:#ffffff;stroke-width:0.24375159;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           id="path3943"
+           cx="18"
+           cy="18.125"
+           r="6" />
+        <path
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient19942);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient16969);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           sodipodi:nodetypes="cccssccc"
+           id="path3970"
+           d="m 19.25,17.75 -17,16.5 7.75,0.25 c 0,0 -3.25,6.75 -3.25,6.75 -1,3 3.5,4.125 4.25,1.875 0,0 
3,-6.75 3,-6.75 l 5.5,5.875 z"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           sodipodi:nodetypes="cccssccc"
+           id="path4853"
+           d="M 18.092765,20.19141 4.617219,33.377203 11.53908,33.654662 c 0,0 -3.8721363,7.756567 
-3.8721363,7.756567 -0.4027307,1.650134 2.0282755,2.412565 2.5071003,1.152867 0,0 3.683065,-7.844955 
3.683065,-7.844955 l 4.424727,4.708334 z"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient8209-9);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9112215;marker:none;enable-background:new"
+           d="M 18.832887,18.909562 3.3420646,33.944658 10.403892,34.172312 7.4423172,40.323108 c 
-0.439535,1.318606 0.2877989,2.238183 1.234444,2.60834 L 18.833728,18.990631 Z"
+           id="path8196-4"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         transform="matrix(0.67783791,0,0,0.67783791,564.83443,-150.84118)"
+         style="display:inline;enable-background:new"
+         id="g4839">
+        <circle
+           id="path3474"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:none;stroke:#ffffff;stroke-width:4.80000114;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           transform="matrix(0.61469951,0,0,0.61469951,8.1283896,8.3504142)"
+           cx="18"
+           cy="18.125"
+           r="6" />
+        <circle
+           id="path3476"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:none;stroke:#ffffff;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           transform="matrix(1.475279,0,0,1.4752789,-7.3620411,-7.2475871)"
+           cx="18"
+           cy="18.125"
+           r="6" />
+        <circle
+           id="path3478"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:none;stroke:#ffffff;stroke-width:0.36363643;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           transform="matrix(2.0285085,0,0,2.0285086,-17.320173,-17.274876)"
+           cx="18"
+           cy="18.125"
+           r="6" />
+        <path
+           d="M 19.869524,17.315082 2.2128831,34.46746 10.082271,34.52985 c 0,0 -3.2244143,6.41315 
-3.2244143,6.41315 -1,3 3.8922793,4.471532 4.6422793,2.221532 0,0 2.914721,-6.442997 2.914721,-6.442997 l 
5.474417,5.707553 z"
+           id="path3480"
+           sodipodi:nodetypes="cccssccc"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient19946);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient16971);stroke-width:1.47527897;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           inkscape:connector-curvature="0" />
+        <path
+           d="M 18.426951,20.089076 4.7637942,33.496593 11.856211,33.467049 c 0,0 -3.9574135,7.94418 
-3.9574135,7.94418 -0.4027307,1.650134 2.0282755,2.412565 2.5070985,1.152867 0,0 3.683065,-7.844955 
3.683065,-7.844955 l 4.424727,4.708334 -0.08674,-19.338399 z"
+           id="path3482"
+           sodipodi:nodetypes="cccssccc"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffffff;stroke-width:1.47527885;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         style="display:inline;enable-background:new"
+         id="g4881"
+         transform="translate(565.01828,-65.34173)">
+        <path
+           d="M 9.2341319,7.7128594 0.93232543,15.770495 4.7169724,15.89258 c 0,0 -1.58711,3.296306 
-1.58711,3.296306 -0.4883415,1.465025 1.7091954,2.014409 2.0754516,0.91564 0,0 1.4650246,-3.296305 
1.4650246,-3.296305 l 2.685878,2.869007 z"
+           id="path289"
+           sodipodi:nodetypes="cccssccc"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient19950);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient16973);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           inkscape:connector-curvature="0" />
+        <path
+           d="m 8.2583981,10.070224 -5.0620499,4.935735 2.9550265,-0.06654 c 0,0 -2.063025,4.31891 
-2.063025,4.31891 -0.300567,0.531862 0.1967095,0.739236 0.5304491,0.06508 0,0 1.918101,-4.169942 
1.918101,-4.169942 l 1.8664222,2.177559 -0.1449239,-7.2608 z"
+           id="path291"
+           sodipodi:nodetypes="cccssccc"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffffff;stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         transform="translate(566.05128,-99.12887)"
+         style="display:inline;enable-background:new"
+         id="g5745">
+        <circle
+           transform="matrix(0.506784,0,0,0.506784,0.05099101,-0.679031)"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:none;stroke:#ffffff;stroke-width:3.94646215;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           id="path211"
+           cx="18"
+           cy="18.125"
+           r="6" />
+        <circle
+           transform="matrix(1.00172,0,0,1.00172,-8.857861,-9.649745)"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:none;stroke:#ffffff;stroke-width:0.49914151;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           id="path213"
+           cx="18"
+           cy="18.125"
+           r="6" />
+        <path
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4851);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8253);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           sodipodi:nodetypes="cccssccc"
+           id="path215"
+           d="M 9.2341319,7.7128594 0.93232543,15.770495 4.7169724,15.89258 c 0,0 -1.58711,3.296306 
-1.58711,3.296306 -0.4883415,1.465025 1.7091954,2.014409 2.0754516,0.91564 0,0 1.4650246,-3.296305 
1.4650246,-3.296305 l 2.685878,2.869007 z"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffffff;stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+           sodipodi:nodetypes="cccssccc"
+           id="path217"
+           d="m 8.2583981,10.070224 -5.0620499,4.935735 2.9550265,-0.06654 c 0,0 -2.063025,4.31891 
-2.063025,4.31891 -0.300567,0.531862 0.1967095,0.739236 0.5304491,0.06508 0,0 1.918101,-4.169942 
1.918101,-4.169942 l 1.8664222,2.177559 -0.1449239,-7.2608 z"
+           inkscape:connector-curvature="0" />
+      </g>
+    </g>
+    <g
+       inkscape:groupmode="layer"
+       id="layer10"
+       inkscape:label="swoosh baking"
+       style="display:none">
+      <g
+         transform="translate(-2.708533e-8,0.99999775)"
+         id="g4322"
+         
style="display:inline;opacity:0.46799999;fill:#204a87;stroke:none;filter:url(#filter4472);enable-background:new">
+        <path
+           id="path4289-3"
+           d="m 474.95312,-60.921876 c 2.08795,5.38628 3.90504,10.86505 5.46876,16.28907 a 
77.757355,238.75735 83.598149 0 1 34.7207,34.28515 A 77.757355,238.75735 83.598149 0 1 286.54492,93.544924 
77.757355,238.75735 83.598149 0 1 40.605469,42.894534 77.757355,238.75735 83.598149 0 1 67.449219,1.3222744 c 
-0.613383,-1.13735001 -1.109329,-2.12082001 -1.201172,-2.55079 0.590114,-4.71955 1.297655,-9.3045804 
2.101562,-13.7714804 A 85.757355,265.75735 83.598149 0 0 13.773438,45.906254 85.757355,265.75735 83.598149 0 
0 287.4375,101.49609 85.757355,265.75735 83.598149 0 0 541.97461,-13.359376 a 85.757355,265.75735 83.598149 0 
0 -67.02149,-47.5625 z"
+           clip-path="none"
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           clip-path="none"
+           d="m 97.857422,-199.00977 a 289.98312,93.574781 45 0 0 -25.171875,10.22657 289.98312,93.574781 45 
0 0 15.923828,111.806644 c 2.413009,-4.8611 4.923517,-9.4761 7.5,-13.84375 A 260.52187,84.845521 45 0 1 
93.517578,-167.95116 260.52187,84.845521 45 0 1 337.72852,-43.728516 260.52187,84.845521 45 0 1 
461.94922,200.48242 260.52187,84.845521 45 0 1 383.4043,197.18359 c -4.50553,2.61841 -9.1219,5.06683 
-13.83203,7.35157 A 289.98312,93.574781 45 0 0 482.78125,221.31445 289.98312,93.574781 45 0 0 
343.90234,-49.900386 289.98312,93.574781 45 0 0 97.857422,-199.00977 Z"
+           id="path4291-6"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           clip-path="none"
+           d="M 433.69336,-174.2832 A 82.761864,256.47449 45 0 0 219.21094,-42.255856 82.761864,256.47449 45 
0 0 96.378906,197.62109 82.761864,256.47449 45 0 0 169.17969,195.72266 c -5.73229,-3.51677 -11.11811,-7.20419 
-11.74024,-8.33399 -0.75949,-0.53402 -1.50986,-1.08103 -2.26172,-1.625 a 75.041302,230.41759 45 0 1 
-40.37304,-6.56836 75.041302,230.41759 45 0 1 109.86523,-215.992186 75.041302,230.41759 45 0 1 
215.99219,-109.867174 75.041302,230.41759 45 0 1 7.07422,37.26953 c 3.6374,4.77181 7.16195,9.775854 
10.35547,14.898434 a 82.761864,256.47449 45 0 0 0.99609,-70.591794 82.761864,256.47449 45 0 0 
-25.39453,-9.19531 z"
+           id="path4293-7"
+           inkscape:connector-curvature="0" />
+      </g>
+    </g>
+    <g
+       inkscape:groupmode="layer"
+       id="layer9"
+       inkscape:label="hires"
+       style="display:inline">
+      <g
+         transform="translate(24.16544,40.03349)"
+         inkscape:label="dark shading mask"
+         id="layer5" />
+      <ellipse
+         
style="display:inline;opacity:0.869388;fill:url(#radialGradient13303);fill-opacity:1;stroke:none;stroke-width:5.11697483;filter:url(#filter10612);enable-background:new"
+         id="path9120"
+         cx="275.99951"
+         cy="189.47571"
+         rx="95.932243"
+         ry="41.219009" />
+      <ellipse
+         transform="matrix(7.0512525,0,0,8.1883506,106.77812,-126.59747)"
+         id="path9122"
+         
style="display:inline;opacity:0.63265297;fill:url(#radialGradient13305);fill-opacity:1;stroke:none;filter:url(#filter10592);enable-background:new"
+         cx="24.849752"
+         cy="38.908627"
+         rx="20.203051"
+         ry="7.4751287" />
+      <g
+         transform="matrix(1.9523597,0,0,1.9523597,-5.7212488,-287.12129)"
+         style="display:inline;enable-background:new"
+         id="g5269"
+         clip-path="url(#clipPath5284)">
+        <path
+           
style="display:inline;fill:url(#radialGradient4890);fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new;filter:url(#filter5171)"
+           d="m 275.42225,155.05239 c 0,71.81659 -58.23732,130.03588 -130.06543,130.03588 -71.83472,0 
-130.068732,-58.21994 -130.068732,-130.03588 0,-71.813283 58.234012,-130.026634 130.068732,-130.026634 
71.82811,0 130.06543,58.213351 130.06543,130.026634 z"
+           id="path11158"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="display:inline;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0f2341;stroke-width:1.02440131;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5316);enable-background:new"
+           d="m 252.88542,154.05319 c 0,59.37287 -48.14649,107.50446 -107.52889,107.50446 -59.387855,0 
-107.531611,-48.13213 -107.531611,-107.50446 0,-59.370135 48.143756,-107.49681 107.531611,-107.49681 
59.3824,0 107.52889,48.126675 107.52889,107.49681 z"
+           id="path11158-6"
+           inkscape:connector-curvature="0" />
+        <path
+           id="path11234-8"
+           d="m 144.90074,50.33518 -12.20946,1.351582 -15.04786,4.144925 -2.88342,2.793328 9.37113,6.442602 
v 3.694392 l -3.64933,3.649347 4.86579,9.686448 3.24383,-1.84716 4.09986,-6.442632 c 6.29051,-1.944293 
11.95219,-4.128557 17.93128,-6.893192 l 4.86575,-12.43473 z m -28.92429,0.901064 -5.22618,0.765898 
-2.47795,2.477948 -4.09986,0.585685 -3.64933,1.712036 -1.75707,0.856004 -1.081291,1.441732 5.271251,0.901035 
2.02741,-1.847188 4.09987,-0.901036 c 2.78951,-1.35631 5.60029,-2.286838 8.56012,-3.24386 z m 
-16.669765,11.038074 -3.694364,0.94611 -1.62193,3.24386 -2.027388,-4.144896 -0.810986,1.802101 
0.405486,4.640516 -3.24386,2.748268 -2.027402,5.091035 h 4.054804 l 2.02743,-4.640517 c 1.755997,-1.241481 
3.527705,-2.499343 5.316294,-3.694378 l 4.054801,1.396671 c 2.71334,1.842904 5.43905,3.701448 
8.15469,5.541567 l 4.0548,-3.694378 -4.46031,-1.847189 -2.0274,-4.14491 -7.749179,-0.901093 z m 
-17.120294,3.694378 -2.027387,5.091035 c -1.5e-5,0 -3.40455,0.639885 -4.280077,0.856
 032 -11.181253,10.300369 -33.767632,32.541177 -39.016285,74.518357 0.207892,0.97325 3.784499,6.62285 
3.784499,6.62285 l 8.560139,5.09103 8.560154,2.29771 3.649332,4.59546 5.72178,4.14492 3.243846,-0.45055 
2.432902,1.0813 v 0.76589 l -3.24386,8.7404 -2.432888,3.69438 0.810972,1.84719 -2.02743,6.89315 
7.298678,13.38088 7.343709,6.44263 3.243846,4.59544 -0.405486,9.68649 2.477948,5.54157 -2.477948,10.58756 c 
-0.03928,0.0313 -0.09883,0.19573 0.13511,0.9912 0.314865,1.06115 13.067046,8.12534 13.876447,7.52389 
0.806616,-0.61264 1.486778,-1.17137 1.486778,-1.17137 l -0.810944,-2.25269 3.243834,-3.24384 1.21641,-3.24385 
5.31634,-1.84719 4.05479,-10.13701 -1.21645,-2.74827 2.83839,-4.14491 6.12724,-1.39665 3.24385,-7.34373 
-0.81095,-9.23593 4.86575,-6.89319 0.81099,-6.93822 c -6.68492,-3.31398 -13.27861,-6.72502 -19.91361,-10.137 
l -3.28889,-6.44266 -6.08225,-1.39664 -3.288892,-8.74038 -8.109622,0.94612 -6.938195,-5.09103 
-7.34371,6.44263 v 1.03623 c -2.218226,-0.64007 -4.918106,-0.7
 2321 -6.893206,-1.9373 l -1.621902,-4.59542 v -5.09104 l -4.910822,0.45053 c 0.407814,-3.22665 
0.805859,-6.41536 1.216444,-9.64144 h -2.838374 l -2.838374,3.64932 -2.883391,1.39668 -4.054833,-2.29775 
-0.405471,-5.09103 0.810972,-5.49654 6.12728,-4.59541 h 4.865747 l 0.810958,-2.79332 6.12728,1.39666 
4.460276,5.54157 0.810972,-9.23596 7.749167,-6.44266 2.838374,-6.93821 5.721809,-2.29774 3.243817,-4.59542 
7.343696,-1.39666 3.64936,-5.49652 c -3.665114,0 -7.327942,0 -10.993056,0 l 6.938252,-3.243847 h 4.865744 l 
6.93824,-2.297735 0.81094,-2.748268 -2.43287,-2.342767 -2.88342,-0.901079 0.81097,-2.748224 
-2.02741,-4.144925 -4.865778,1.802115 0.810988,-3.649304 -5.721796,-3.243846 -4.46029,7.83926 
0.405458,2.748282 -4.460261,1.847189 -2.88342,5.992113 -1.216444,-5.541581 -7.749196,-3.1988 
-1.21643,-4.144881 10.18207,-5.992128 4.505335,-4.144924 0.405501,-5.091021 -2.432917,-1.351611 
-3.288892,-0.495592 z m 114.075269,0 -7.7492,1.847203 -4.86579,3.243832 v 2.748281 l -7.74916,5.09
 1035 1.62193,7.343682 4.50535,-3.198757 2.83834,3.198757 3.24385,1.847203 2.07245,-5.496507 
-1.26151,-3.243846 1.26151,-2.297735 4.46029,-4.144924 h 2.02738 l -2.02738,4.59547 v 4.144925 c 
1.87094,-0.509046 3.76211,-0.663094 5.67674,-0.901079 l -5.27126,3.649304 -0.40548,2.34281 -6.12726,5.04596 
-6.08223,-1.396657 V 86.73835 l -2.83835,1.84716 1.21645,3.1988 h -4.50532 l -2.43291,4.144924 
-3.06363,3.469091 -5.49651,1.126355 3.24385,3.24386 0.85599,3.19877 h -4.09984 l -5.27126,2.79333 v 8.28982 h 
2.43288 l 2.25269,2.52298 5.09103,-2.52298 2.02742,-5.09105 3.64929,-2.29772 0.811,-1.84721 6.12722,-1.35156 
3.24386,3.69439 3.69439,1.8021 -2.07245,4.14494 3.28888,-0.90108 1.62196,-4.14493 -4.09989,-4.59542 h 1.66697 
l 4.05481,3.19877 0.81096,4.64051 3.64934,4.14491 0.81095,-5.99211 2.07249,-0.94612 c 2.01317,2.08931 
3.57562,4.58685 5.27124,6.93823 l 6.12726,0.45053 3.64931,2.29774 -1.6219,2.29772 -3.64934,3.24385 h -5.3163 
l -6.93822,-2.29772 -3.64935,0.45051 -2.65813,2.97353 -7.
 52394,-7.56897 -5.27125,-1.39665 -7.74916,0.90106 -6.93824,1.8472 c -3.88412,4.40205 -7.72223,8.80911 
-11.39853,13.38084 l -4.4603,10.58759 2.02741,2.29772 -3.6493,5.54157 4.0548,9.68647 c 3.4623,3.91543 
6.90502,7.79567 10.36229,11.7139 l 5.09103,-4.37019 2.25269,2.56807 5.49648,-3.46915 1.8472,2.07244 h 5.49654 
l 3.15372,3.55928 -1.93728,6.35251 3.87459,4.37018 -0.22529,7.61402 2.88342,5.49653 -2.07247,4.64051 c 
-0.20274,3.39014 -0.40545,6.74628 -0.40545,10.13699 1.66871,4.5936 3.33507,9.15977 4.91084,13.78637 l 
1.21642,7.38876 v 3.69436 h 2.83837 l 4.50534,-2.74822 h 5.27124 l 7.9294,-9.01072 -0.99117,-2.97351 
5.27124,-4.6405 -3.87457,-4.37019 4.68553,-3.91966 4.50537,-2.74823 2.02741,-2.29775 -1.21647,-5.09103 c 
0,-4.29789 0,-8.58681 0,-12.88528 l 3.64933,-7.83927 4.50535,-5.04599 4.86575,-11.98423 v -3.24384 c 
-2.42695,0.30562 -4.78909,0.59522 -7.16348,0.76589 l 4.9108,-4.91079 6.71298,-4.59546 3.6944,-4.14492 v 
-4.6405 c -0.81505,-1.53662 -1.65735,-3.05885 -2.47794,-4.5
 9545 l -3.24384,3.69438 -2.43292,-2.74826 -3.64932,-2.79333 v -5.99207 l 4.28009,4.86574 4.64049,-0.72085 c 
2.13305,1.9359 4.25636,3.78802 6.12727,5.9921 l 3.06364,-3.42403 c 0,-3.66403 -4.18842,-21.72723 
-13.11055,-37.03394 C 229.82487,85.313143 214.1929,71.330064 214.19291,71.330064 l -1.21644,2.027388 
-4.09988,4.595485 -5.27123,-5.541581 h 5.27123 l 2.4329,-2.748268 -9.73154,-1.847189 z m -40.36785,5.992099 
-3.24386,1.847217 -1.62195,-0.45056 -0.40544,2.748267 2.83834,1.847218 4.86577,-3.198814 z m 
-53.74874,0.946125 -3.243857,2.297735 4.054807,2.748282 h 3.24386 v -3.198814 z m 64.33626,10.58757 v 
2.748239 l 1.62195,1.847203 v 4.144896 l -0.81099,5.541595 4.50537,-0.901078 3.24386,-3.24386 
-2.83839,-2.74824 c -0.9573,-2.548502 -2.09075,-4.944413 -3.28889,-7.388755 z m -1.6219,5.541552 
-2.83837,0.901079 0.81097,5.091049 3.6493,-1.847203 z m -56.18163,8.289835 1.21646,6.442663 2.4329,-3.6944 z 
m 106.32607,35.952653 4.68555,5.27125 5.49653,11.75892 3.24383,3.69439 -1.62188,
 4.14491 3.10868,3.51415 c -1.42894,0.0968 -2.85587,0.18025 -4.32513,0.18025 -2.59296,-5.44701 
-4.55822,-10.92629 -6.53278,-16.62473 l -3.46909,-3.91964 -1.80214,-6.66792 z"
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient5148);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#filter5389);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <g
+           transform="matrix(1.4282205,0,0,1.4282205,796.58522,-102.12805)"
+           id="g11427-5"
+           style="display:inline;fill:#000000;stroke:#000000;enable-background:new">
+          <g
+             id="g11419-3"
+             transform="translate(90)"
+             style="fill:#000000;stroke:#000000">
+            <path
+               sodipodi:type="inkscape:offset"
+               inkscape:radius="0.099823892"
+               inkscape:original="M -546.29102 107.10938 L -554.83984 108.05469 L -565.37695 110.95703 L 
-567.39453 112.91406 L -560.83398 117.42383 L -560.83398 120.01172 L -563.38867 122.56641 L -559.98242 
129.34766 L -557.71094 128.05469 L -554.83984 123.54492 C -550.4354 122.18358 -546.47155 120.65252 -542.28516 
118.7168 L -538.87891 110.01172 L -546.29102 107.10938 z M -566.54297 107.74023 L -570.20312 108.27539 L 
-571.9375 110.01172 L -574.80859 110.42188 L -577.36328 111.61914 L -578.59375 112.21875 L -579.34961 
113.22852 L -575.66016 113.85938 L -574.24023 112.56641 L -571.36914 111.93555 C -569.416 110.9859 -567.44934 
110.33414 -565.37695 109.66406 L -566.54297 107.74023 z M -578.21484 115.46875 L -580.80078 116.13086 L 
-581.9375 118.40234 L -583.35742 115.5 L -583.92383 116.76172 L -583.64062 120.01172 L -585.91211 121.93555 L 
-587.33203 125.5 L -584.49219 125.5 L -583.07227 122.25 C -581.84277 121.38075 -580.60193 120.50079 
-579.34961 119.66406 L -576.51172 120.64
 258 C -574.61192 121.93293 -572.70219 123.23308 -570.80078 124.52148 L -567.96289 121.93555 L -571.08594 
120.64258 L -572.50586 117.74023 L -577.93164 117.10938 L -578.21484 115.46875 z M -590.20117 118.05469 L 
-591.62109 121.61914 C -591.6211 121.61914 -594.00612 122.06741 -594.61914 122.21875 C -602.44794 129.43078 
-618.26059 145.00328 -621.93555 174.39453 C -621.78999 175.07597 -619.28711 179.03125 -619.28711 179.03125 L 
-613.29297 182.5957 L -607.29883 184.20508 L -604.74414 187.42383 L -600.73828 190.32422 L -598.4668 
190.00977 L -596.76367 190.76758 L -596.76367 191.30273 L -599.03516 197.42383 L -600.73828 200.00977 L 
-600.16992 201.30273 L -601.58984 206.12891 L -596.48047 215.49805 L -591.33789 220.00977 L -589.06641 
223.22656 L -589.34961 230.00977 L -587.61523 233.88867 L -589.34961 241.30273 C -589.37711 241.32463 
-589.41966 241.43913 -589.25586 241.99609 C -589.0354 242.73908 -580.10578 247.68479 -579.53906 247.26367 C 
-578.97429 246.83472 -578.49805 246.44336 -
 578.49805 246.44336 L -579.06641 244.86719 L -576.79492 242.5957 L -575.94336 240.32422 L -572.2207 
239.03125 L -569.38281 231.93359 L -570.23438 230.00977 L -568.24609 227.10742 L -563.95703 226.12891 L 
-561.68555 220.98633 L -562.25391 214.51953 L -558.8457 209.69336 L -558.2793 204.83594 C -562.95989 
202.51559 -567.57506 200.12725 -572.2207 197.73828 L -574.52344 193.22656 L -578.7832 192.25 L -581.08594 
186.12891 L -586.76367 186.79297 L -591.62109 183.22656 L -596.76367 187.73828 L -596.76367 188.46484 C 
-598.31681 188.01668 -600.20693 187.95749 -601.58984 187.10742 L -602.72461 183.89062 L -602.72461 180.32617 
L -606.16406 180.64062 C -605.87852 178.38142 -605.59998 176.14944 -605.3125 173.89062 L -607.29883 173.89062 
L -609.28711 176.44531 L -611.30664 177.42383 L -614.14453 175.81445 L -614.42969 172.25 L -613.86133 
168.40039 L -609.57031 165.18359 L -606.16406 165.18359 L -605.5957 163.22852 L -601.30664 164.20508 L 
-598.18359 168.08594 L -597.61523 161.61914 L -592
 .18945 157.10742 L -590.20117 152.25 L -586.19531 150.64062 L -583.92383 147.42383 L -578.7832 146.44531 L 
-576.22852 142.59766 L -583.92383 142.59766 L -579.06641 140.32617 L -575.66016 140.32617 L -570.80273 
138.7168 L -570.23438 136.79297 L -571.9375 135.15234 L -573.95703 134.52148 L -573.38867 132.59766 L 
-574.80859 129.69531 L -578.21484 130.95703 L -577.64648 128.40234 L -581.65234 126.13086 L -584.77539 
131.61914 L -584.49219 133.54297 L -587.61523 134.83789 L -589.63477 139.0332 L -590.48633 135.15234 L 
-595.91211 132.91211 L -596.76367 130.01172 L -589.63477 125.81445 L -586.48047 122.91406 L -586.19531 
119.34766 L -587.89844 118.40234 L -590.20117 118.05469 z M -510.33008 118.05469 L -515.75586 119.34766 L 
-519.16211 121.61914 L -519.16211 123.54492 L -524.58789 127.10938 L -523.45312 132.25 L -520.29883 130.01172 
L -518.31055 132.25 L -516.03906 133.54297 L -514.58789 129.69531 L -515.4707 127.42383 L -514.58789 
125.81445 L -511.46484 122.91406 L -510.04492 122.9
 1406 L -511.46484 126.13086 L -511.46484 129.0332 C -510.15486 128.67678 -508.8308 128.56897 -507.49023 
128.40234 L -511.18164 130.95703 L -511.46484 132.59766 L -515.75586 136.13086 L -520.01367 135.15234 L 
-520.01367 132.59766 L -522.00195 133.89062 L -521.15039 136.13086 L -524.30469 136.13086 L -526.00781 
139.0332 L -528.15234 141.46094 L -532.00195 142.25 L -529.73047 144.52148 L -529.13086 146.76172 L 
-532.00195 146.76172 L -535.69141 148.7168 L -535.69141 154.52148 L -533.98828 154.52148 L -532.41211 
156.28711 L -528.84766 154.52148 L -527.42773 150.95703 L -524.87109 149.34766 L -524.30469 148.05469 L 
-520.01367 147.10742 L -517.74219 149.69531 L -515.15625 150.95703 L -516.60742 153.85938 L -514.30469 
153.22852 L -513.16797 150.32617 L -516.03906 147.10742 L -514.87305 147.10742 L -512.0332 149.34766 L 
-511.46484 152.59766 L -508.91016 155.5 L -508.3418 151.30469 L -506.89062 150.64062 C -505.48106 152.10351 
-504.3884 153.85363 -503.20117 155.5 L -498.91016 155.8144
 5 L -496.35547 157.42383 L -497.49023 159.0332 L -500.04688 161.30273 L -503.76758 161.30273 L -508.62695 
159.69531 L -511.18164 160.00977 L -513.04297 162.0918 L -518.31055 156.79297 L -522.00195 155.81445 L 
-527.42773 156.44531 L -532.28516 157.73828 C -535.00471 160.82047 -537.69158 163.90642 -540.26562 167.10742 
L -543.38867 174.52148 L -541.96875 176.12891 L -544.52539 180.00977 L -541.68555 186.79297 C -539.26135 
189.53444 -536.85037 192.25071 -534.42969 194.99414 L -530.86523 191.93359 L -529.28906 193.73242 L 
-525.43945 191.30273 L -524.14648 192.75391 L -520.29883 192.75391 L -518.08984 195.24609 L -519.44531 
199.69336 L -516.73242 202.75391 L -516.89062 208.08594 L -514.87305 211.93359 L -516.32422 215.18359 C 
-516.46617 217.55727 -516.60742 219.90717 -516.60742 222.28125 C -515.43904 225.49756 -514.27128 228.69417 
-513.16797 231.93359 L -512.31641 237.10742 L -512.31641 239.69336 L -510.33008 239.69336 L -507.17578 
237.76953 L -503.48438 237.76953 L -497.93164 231
 .46094 L -498.62695 229.37891 L -494.93555 226.12891 L -497.64844 223.06836 L -494.36719 220.32422 L 
-491.21289 218.40039 L -489.79297 216.79102 L -490.64648 213.22656 L -490.64648 204.20508 L -488.08984 
198.7168 L -484.93555 195.18359 L -481.5293 186.79297 L -481.5293 184.52148 C -483.22858 184.73547 -484.88244 
184.93714 -486.54492 185.05664 L -483.10547 181.61914 L -478.40625 178.40039 L -475.81836 175.49805 L 
-475.81836 172.25 C -476.38903 171.1741 -476.98014 170.10713 -477.55469 169.03125 L -479.82617 171.61914 L 
-481.5293 169.69531 L -484.08398 167.73828 L -484.08398 163.54297 L -481.08789 166.95117 L -477.83789 
166.44531 C -476.34439 167.80077 -474.85879 169.09738 -473.54883 170.64062 L -471.40234 168.24414 C 
-471.40234 165.67869 -474.33501 153.02983 -480.58203 142.3125 C -486.82908 131.59873 -497.7754 121.80859 
-497.77539 121.80859 L -498.62695 123.22852 L -501.49805 126.44727 L -505.1875 122.56641 L -501.49805 
122.56641 L -499.79297 120.64258 L -506.60742 119.34766 L
  -510.33008 118.05469 z M -538.59375 122.25 L -540.86523 123.54492 L -542.00195 123.22852 L -542.28516 
125.15234 L -540.29688 126.44727 L -536.89062 124.20703 L -538.59375 122.25 z M -576.22656 122.91406 L 
-578.49805 124.52148 L -575.66016 126.44727 L -573.38867 126.44727 L -573.38867 124.20703 L -576.22656 
122.91406 z M -531.18164 130.32617 L -531.18164 132.25 L -530.04492 133.54297 L -530.04492 136.44531 L 
-530.61328 140.32617 L -527.45898 139.69531 L -525.1875 137.42383 L -527.17578 135.5 C -527.84605 133.71561 
-528.63961 132.03763 -529.47852 130.32617 L -531.18164 130.32617 z M -532.31641 134.20703 L -534.30469 
134.83789 L -533.73633 138.40234 L -531.18164 137.10938 L -532.31641 134.20703 z M -571.6543 140.00977 L 
-570.80078 144.52148 L -569.09766 141.93555 L -571.6543 140.00977 z M -497.20703 165.18359 L -493.92578 
168.875 L -490.07812 177.10742 L -487.80664 179.69531 L -488.94141 182.5957 L -486.76562 185.05664 C 
-487.76612 185.12444 -488.76424 185.18359 -489.79297 185
 .18359 C -491.60849 181.36975 -492.98466 177.53286 -494.36719 173.54297 L -496.79688 170.79883 L -498.05859 
166.13086 L -497.20703 165.18359 z "
+               
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.15800003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4395);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.70017201;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#filter4423);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new"
+               id="path4405"
+               d="m -546.30273,107.00977 -8.54883,0.94531 a 0.09983387,0.09983387 0 0 0 -0.0156,0.004 l 
-10.53711,2.90235 a 0.09983387,0.09983387 0 0 0 -0.043,0.0234 l -2.01757,1.95703 a 0.09983387,0.09983387 0 0 
0 0.0137,0.15429 l 6.51758,4.48047 v 2.49414 l -2.52539,2.52539 a 0.09983387,0.09983387 0 0 0 -0.0195,0.11524 
l 3.40625,6.78125 a 0.09983387,0.09983387 0 0 0 0.13868,0.041 l 2.27148,-1.29297 a 0.09983387,0.09983387 0 0 
0 0.0352,-0.0332 l 2.85156,-4.47851 c 4.39409,-1.35981 8.35268,-2.89016 12.53125,-4.82227 a 
0.09983387,0.09983387 0 0 0 0.0527,-0.0527 l 3.40625,-8.70508 a 0.09983387,0.09983387 0 0 0 -0.0566,-0.13086 
l -7.41211,-2.90235 a 0.09983387,0.09983387 0 0 0 -0.0488,-0.006 z m -20.25391,0.63085 -3.66016,0.53516 a 
0.09983387,0.09983387 0 0 0 -0.0566,0.0293 l -1.71094,1.71289 -2.83789,0.4043 a 0.09983387,0.09983387 0 0 0 
-0.0293,0.01 l -2.55469,1.19727 -1.23047,0.59961 a 0.09983387,0.09983387 0 0 0 -0.0371,0.0293 l 
-0.75586,1.00977 a 0.09983387,0.09983387 0 0 0
  0.0625,0.1582 l 3.68946,0.63086 a 0.09983387,0.09983387 0 0 0 0.084,-0.0234 l 1.40039,-1.27539 
2.8457,-0.625 a 0.09983387,0.09983387 0 0 0 0.0215,-0.008 c 1.94559,-0.94598 3.90852,-1.59569 
5.98047,-2.26562 a 0.09983387,0.09983387 0 0 0 0.0547,-0.14649 l -1.16601,-1.92383 a 0.09983387,0.09983387 0 
0 0 -0.0996,-0.0488 z m -11.66797,7.72852 a 0.09983387,0.09983387 0 0 0 -0.0156,0.002 l -2.58594,0.66211 a 
0.09983387,0.09983387 0 0 0 -0.0644,0.0527 l -1.04688,2.09179 -1.33008,-2.7207 a 0.09983387,0.09983387 0 0 0 
-0.18164,0.002 l -0.5664,1.26172 a 0.09983387,0.09983387 0 0 0 -0.008,0.0488 l 0.2793,3.19922 
-2.23242,1.89063 a 0.09983387,0.09983387 0 0 0 -0.0274,0.0391 l -0.36914,0.92773 0.27735,-3.4707 a 
0.09983387,0.09983387 0 0 0 -0.0508,-0.0957 l -1.70313,-0.94532 a 0.09983387,0.09983387 0 0 0 -0.0332,-0.0117 
l -2.30274,-0.34765 a 0.09983387,0.09983387 0 0 0 -0.10742,0.0625 l -1.40039,3.51562 c -0.0838,0.0158 
-2.33368,0.43593 -2.94922,0.58789 a 0.09983387,0.09983387 0 0 0 -0.04
 49,0.0234 c -7.8322,7.21516 -23.66886,22.81636 -27.34766,52.23828 a 0.09983387,0.09983387 0 0 0 0.002,0.0332 
c 0.0445,0.20822 0.22814,0.57037 0.48437,1.03906 0.25624,0.46868 0.58391,1.02681 0.90625,1.56445 
0.64469,1.07529 1.27149,2.06445 1.27149,2.06445 a 0.09983387,0.09983387 0 0 0 0.0332,0.0332 l 5.99414,3.56445 
a 0.09983387,0.09983387 0 0 0 0.0254,0.01 l 5.96094,1.60156 2.53515,3.19336 a 0.09983387,0.09983387 0 0 0 
0.0195,0.0176 l 4.00585,2.90039 a 0.09983387,0.09983387 0 0 0 0.0723,0.0195 l 2.24414,-0.31055 
1.61719,0.71875 v 0.45313 l -2.26172,6.09375 -1.69727,2.57617 a 0.09983387,0.09983387 0 0 0 -0.008,0.0957 l 
0.55469,1.25781 -1.41016,4.79297 a 0.09983387,0.09983387 0 0 0 0.008,0.0742 l 5.10937,9.36914 a 
0.09983387,0.09983387 0 0 0 0.0215,0.0274 l 5.13477,4.5039 2.24414,3.17969 -0.28125,6.75 a 
0.09983387,0.09983387 0 0 0 0.008,0.0449 l 1.72071,3.84766 -1.72657,7.38086 c -0.0224,0.0436 -0.0323,0.0968 
-0.0273,0.17578 0.007,0.11387 0.04,0.28586 0.12305,0.56836 a 0.099833
 87,0.09983387 0 0 0 0,0.002 c 0.0247,0.0832 0.0816,0.14687 0.16406,0.22852 0.0824,0.0816 0.19294,0.17304 
0.32812,0.27734 0.27038,0.20861 0.64207,0.46242 1.08204,0.74414 0.87993,0.56344 2.03414,1.23968 
3.20117,1.87891 1.16703,0.63922 2.3454,1.24237 3.26953,1.66015 0.46207,0.2089 0.86069,0.37028 1.16602,0.46875 
0.15266,0.0492 0.28222,0.083 0.38867,0.0977 0.10644,0.0146 0.19211,0.0219 0.27148,-0.0371 a 
0.09983387,0.09983387 0 0 0 0.002,0 c 0.56654,-0.43029 1.04297,-0.82422 1.04297,-0.82422 a 
0.09983387,0.09983387 0 0 0 0.0312,-0.10937 l -0.54687,-1.51758 2.22656,-2.22656 a 0.09983387,0.09983387 0 0 
0 0.0234,-0.0352 l 0.83398,-2.22852 3.67969,-1.27734 a 0.09983387,0.09983387 0 0 0 0.0586,-0.0566 l 
2.83789,-7.09766 a 0.09983387,0.09983387 0 0 0 0,-0.0781 l -0.83007,-1.87305 1.93554,-2.82422 4.25,-0.96875 a 
0.09983387,0.09983387 0 0 0 0.0703,-0.0566 l 2.27148,-5.14258 a 0.09983387,0.09983387 0 0 0 0.008,-0.0488 l 
-0.56445,-6.43164 3.38672,-4.79688 a 0.09983387,0.09983387 0 0 0 0.0
 176,-0.0449 l 0.5664,-4.85742 a 0.09983387,0.09983387 0 0 0 -0.0547,-0.10157 c -4.66911,-2.31466 
-9.27487,-4.69637 -13.91015,-7.08007 l -2.28906,-4.48438 a 0.09983387,0.09983387 0 0 0 -0.0684,-0.0527 l 
-4.20703,-0.96485 -2.28321,-6.07031 a 0.09983387,0.09983387 0 0 0 -0.10547,-0.0644 l -5.63867,0.66015 
-4.82617,-3.54297 a 0.09983387,0.09983387 0 0 0 -0.125,0.006 l -5.14258,4.51172 a 0.09983387,0.09983387 0 0 0 
-0.0332,0.0742 v 0.60156 c -1.53574,-0.41998 -3.33352,-0.51104 -4.64649,-1.30468 l -1.11523,-3.16211 v 
-3.54688 a 0.09983387,0.09983387 0 0 0 -0.10938,-0.0996 l -3.31445,0.30274 c 0.2801,-2.21715 0.55372,-4.40947 
0.83594,-6.62696 a 0.09983387,0.09983387 0 0 0 -0.0996,-0.11132 h -1.98633 a 0.09983387,0.09983387 0 0 0 
-0.0781,0.0391 l -1.97461,2.53515 -1.95117,0.94532 -2.7461,-1.55664 -0.28125,-3.5 0.56055,-3.79883 
4.23242,-3.17188 h 3.37305 a 0.09983387,0.09983387 0 0 0 0.0957,-0.0723 l 0.54297,-1.86328 4.16211,0.94726 
3.10156,3.85352 a 0.09983387,0.09983387 0 0 0 0.177
 74,-0.0547 l 0.56445,-6.42383 5.39453,-4.48633 a 0.09983387,0.09983387 0 0 0 0.0273,-0.0391 l 
1.97266,-4.81836 3.9668,-1.59375 a 0.09983387,0.09983387 0 0 0 0.0449,-0.0351 l 2.24805,-3.1836 
5.10156,-0.9707 a 0.09983387,0.09983387 0 0 0 0.0645,-0.043 l 2.55469,-3.84766 a 0.09983387,0.09983387 0 0 0 
-0.084,-0.15429 h -7.24804 l 4.43164,-2.07227 h 3.38476 a 0.09983387,0.09983387 0 0 0 0.0312,-0.004 l 
4.85743,-1.60938 a 0.09983387,0.09983387 0 0 0 0.0644,-0.0684 l 0.56836,-1.92383 a 0.09983387,0.09983387 0 0 
0 -0.0273,-0.0996 l -1.70312,-1.64062 a 0.09983387,0.09983387 0 0 0 -0.0391,-0.0234 l -1.92578,-0.60156 
0.54101,-1.83008 a 0.09983387,0.09983387 0 0 0 -0.006,-0.0703 l -1.41992,-2.90235 a 0.09983387,0.09983387 0 0 
0 -0.125,-0.0508 l -3.23437,1.19727 0.52929,-2.375 a 0.09983387,0.09983387 0 0 0 -0.0488,-0.10742 l 
-4.00586,-2.27149 a 0.09983387,0.09983387 0 0 0 -0.13476,0.0371 l -3.12305,5.48828 a 0.09983387,0.09983387 0 
0 0 -0.0137,0.0625 l 0.27344,1.84766 -3.05274,1.26562 a 
 0.09983387,0.09983387 0 0 0 -0.0508,0.0488 l -1.89453,3.9336 -0.78906,-3.59766 a 0.09983387,0.09983387 0 0 0 
-0.0586,-0.0703 l -5.38281,-2.22266 -0.8164,-2.7793 7.0625,-4.1582 a 0.09983387,0.09983387 0 0 0 
0.0176,-0.0117 l 3.11329,-2.86328 -0.97071,2.4375 a 0.09983387,0.09983387 0 0 0 0.0918,0.13672 h 2.83984 a 
0.09983387,0.09983387 0 0 0 0.0918,-0.0605 l 1.4082,-3.2207 c 1.20941,-0.85507 2.42635,-1.72209 
3.65625,-2.54492 l 2.7793,0.95898 c 1.8959,1.28772 3.80157,2.58524 5.69922,3.8711 a 0.09983387,0.09983387 0 0 
0 0.12304,-0.008 l 2.8379,-2.58593 a 0.09983387,0.09983387 0 0 0 -0.0273,-0.16602 l -3.08984,-1.2793 
-1.40235,-2.86718 a 0.09983387,0.09983387 0 0 0 -0.0781,-0.0567 l -5.35156,-0.62109 -0.27149,-1.56836 a 
0.09983387,0.09983387 0 0 0 -0.10742,-0.082 z m 67.88867,2.58594 a 0.09983387,0.09983387 0 0 0 -0.0176,0.002 
l -5.42578,1.29297 a 0.09983387,0.09983387 0 0 0 -0.0312,0.0137 l -3.40625,2.27149 a 0.09983387,0.09983387 0 
0 0 -0.0449,0.084 v 1.87109 l -5.38086,3.53516 
 a 0.09983387,0.09983387 0 0 0 -0.043,0.10547 l 1.13477,5.14062 a 0.09983387,0.09983387 0 0 0 0.15625,0.0606 
l 3.08008,-2.1875 1.92968,2.17188 a 0.09983387,0.09983387 0 0 0 0.0254,0.0195 l 2.27149,1.29297 a 
0.09983387,0.09983387 0 0 0 0.14258,-0.0508 l 1.45117,-3.84765 a 0.09983387,0.09983387 0 0 0 0,-0.0723 l 
-0.86719,-2.22656 0.85352,-1.55469 3.08203,-2.86328 h 1.22656 l -1.35742,3.07617 a 0.09983387,0.09983387 0 0 
0 -0.008,0.041 v 2.90234 a 0.09983387,0.09983387 0 0 0 0.125,0.0957 c 1.16761,-0.31769 2.35502,-0.43591 
3.55859,-0.57813 l -3.35742,2.32422 a 0.09983387,0.09983387 0 0 0 -0.041,0.0644 l -0.27734,1.60547 
-4.22461,3.47852 -4.13281,-0.95117 v -2.47461 a 0.09983387,0.09983387 0 0 0 -0.1543,-0.084 l -1.98828,1.29297 
a 0.09983387,0.09983387 0 0 0 -0.0391,0.11914 l 0.80078,2.10547 h -3.00977 a 0.09983387,0.09983387 0 0 0 
-0.0859,0.0488 l -0.73829,1.25976 -1.96289,-1.89843 c -0.67024,-1.78046 -1.4613,-3.45356 -2.29687,-5.15821 a 
0.09983387,0.09983387 0 0 0 -0.0898,-0.056
 6 h -1.70312 a 0.09983387,0.09983387 0 0 0 -0.0996,0.0996 V 132.25 a 0.09983387,0.09983387 0 0 0 
0.0254,0.0664 l 1.11133,1.26367 v 2.85742 l -0.56836,3.875 a 0.09983387,0.09983387 0 0 0 0.11914,0.11133 l 
3.1543,-0.63086 a 0.09983387,0.09983387 0 0 0 0.0508,-0.0273 l 2.02148,-2.02148 -0.72265,1.23047 
-2.11524,2.39453 -3.8164,0.7832 a 0.09983387,0.09983387 0 0 0 -0.0508,0.16797 l 2.25196,2.25196 
0.56054,2.08984 h -2.74218 a 0.09983387,0.09983387 0 0 0 -0.0469,0.0117 l -3.68945,1.95508 a 
0.09983387,0.09983387 0 0 0 -0.0527,0.0879 v 5.80468 a 0.09983387,0.09983387 0 0 0 0.0996,0.0996 h 1.65821 l 
1.54687,1.73243 a 0.09983387,0.09983387 0 0 0 0.11914,0.0234 l 3.56446,-1.76562 a 0.09983387,0.09983387 0 0 0 
0.0469,-0.0527 l 1.4082,-3.53515 2.5293,-1.5918 a 0.09983387,0.09983387 0 0 0 0.0391,-0.043 l 
0.54492,-1.24805 4.18555,-0.92382 2.23242,2.54492 a 0.09983387,0.09983387 0 0 0 0.0312,0.0234 l 
2.49414,1.21679 -1.40625,2.8125 a 0.09983387,0.09983387 0 0 0 0.11719,0.14063 l 2.30274,-0
 .63086 a 0.09983387,0.09983387 0 0 0 0.0664,-0.0586 l 1.13672,-2.90234 a 0.09983387,0.09983387 0 0 0 
-0.0195,-0.10351 l -2.72266,-3.05274 h 0.90821 l 2.7832,2.19531 0.5625,3.21289 a 0.09983387,0.09983387 0 0 0 
0.0234,0.0488 l 2.55468,2.90235 a 0.09983387,0.09983387 0 0 0 0.17383,-0.0527 l 0.56055,-4.14062 
1.33398,-0.61133 c 1.37648,1.44257 2.45877,3.16607 3.63477,4.79687 a 0.09983387,0.09983387 0 0 0 0.0723,0.041 
l 4.26757,0.3125 2.44336,1.53906 -1.0664,1.51563 -2.51953,2.23632 h -3.66797 l -4.84375,-1.60351 a 
0.09983387,0.09983387 0 0 0 -0.043,-0.004 l -2.55469,0.31446 a 0.09983387,0.09983387 0 0 0 -0.0625,0.0332 l 
-1.79102,2.00391 -5.19335,-5.22461 a 0.09983387,0.09983387 0 0 0 -0.0449,-0.0254 l -3.6914,-0.97852 a 
0.09983387,0.09983387 0 0 0 -0.0371,-0.004 l -5.42578,0.63086 a 0.09983387,0.09983387 0 0 0 -0.0137,0.004 l 
-4.85743,1.29297 a 0.09983387,0.09983387 0 0 0 -0.0488,0.0293 c -2.71983,3.08251 -5.40871,6.17002 
-7.98437,9.37304 a 0.09983387,0.09983387 0 0 0 -0.0137,0.
 0234 l -3.12305,7.41406 a 0.09983387,0.09983387 0 0 0 0.0176,0.10547 l 1.36914,1.55078 -2.51563,3.81641 a 
0.09983387,0.09983387 0 0 0 -0.008,0.0937 l 2.83985,6.7832 a 0.09983387,0.09983387 0 0 0 0.0176,0.0273 c 
2.42429,2.74156 4.83531,5.45788 7.25586,8.20117 a 0.09983387,0.09983387 0 0 0 0.13868,0.01 l 3.49023,-2.99609 
1.51172,1.72461 a 0.09983387,0.09983387 0 0 0 0.12695,0.0176 l 3.7793,-2.38477 1.23633,1.38867 a 
0.09983387,0.09983387 0 0 0 0.0742,0.0332 h 3.80273 l 2.14258,2.41601 -1.33985,4.39453 a 
0.09983387,0.09983387 0 0 0 0.0215,0.0957 l 2.68555,3.03125 -0.15625,5.29101 a 0.09983387,0.09983387 0 0 0 
0.0117,0.0508 l 1.99414,3.80469 -1.43164,3.20508 a 0.09983387,0.09983387 0 0 0 -0.008,0.0351 c 
-0.14195,2.37366 -0.2832,4.72548 -0.2832,7.10352 a 0.09983387,0.09983387 0 0 0 0.006,0.0332 c 1.1675,3.21391 
2.33542,6.40714 3.4375,9.64258 l 0.84765,5.1582 v 2.57813 a 0.09983387,0.09983387 0 0 0 0.0996,0.0996 h 
1.98633 a 0.09983387,0.09983387 0 0 0 0.0527,-0.0137 l 3.1289,-1.91
 016 h 3.66406 a 0.09983387,0.09983387 0 0 0 0.0742,-0.0332 l 5.55274,-6.3086 a 0.09983387,0.09983387 0 0 0 
0.0195,-0.0977 l -0.67383,-2.01953 3.64258,-3.20704 a 0.09983387,0.09983387 0 0 0 0.008,-0.14062 l 
-2.64453,-2.98242 3.19727,-2.67383 3.14843,-1.91992 a 0.09983387,0.09983387 0 0 0 0.0215,-0.0195 l 
1.41992,-1.60938 a 0.09983387,0.09983387 0 0 0 0.0234,-0.0898 l -0.85157,-3.55274 v -8.98828 l 
2.54102,-5.45508 3.14453,-3.52148 a 0.09983387,0.09983387 0 0 0 0.0176,-0.0293 l 3.40625,-8.39062 a 
0.09983387,0.09983387 0 0 0 0.008,-0.0371 v -2.27149 a 0.09983387,0.09983387 0 0 0 -0.11133,-0.0996 c 
-1.60575,0.20221 -3.17076,0.38872 -4.73828,0.50976 l 3.23828,-3.23633 4.69141,-3.21289 a 
0.09983387,0.09983387 0 0 0 0.0176,-0.0156 l 2.58789,-2.90235 a 0.09983387,0.09983387 0 0 0 0.0254,-0.0664 V 
172.25 a 0.09983387,0.09983387 0 0 0 -0.0117,-0.0469 c -0.57124,-1.07697 -1.16226,-2.14377 -1.73633,-3.21874 
a 0.09983387,0.09983387 0 0 0 -0.16211,-0.0195 l -2.19726,2.50391 -1.62891,-1.83
 984 a 0.09983387,0.09983387 0 0 0 -0.0137,-0.0137 l -2.51563,-1.92578 v -3.88281 l 2.82227,3.21094 a 
0.09983387,0.09983387 0 0 0 0.0898,0.0332 l 3.20313,-0.49805 c 1.48217,1.3444 2.95094,2.62885 4.24414,4.15235 
a 0.09983387,0.09983387 0 0 0 0.15039,0.002 l 2.14649,-2.39648 a 0.09983387,0.09983387 0 0 0 0.0254,-0.0664 c 
0,-0.66038 -0.18532,-1.93101 -0.5586,-3.64844 -0.37328,-1.71742 -0.93547,-3.87697 -1.69336,-6.29101 
-1.51578,-4.82809 -3.81271,-10.67542 -6.9414,-16.04297 -6.25928,-10.73475 -17.21289,-20.52734 
-17.21289,-20.52734 a 0.09983387,0.09983387 0 0 0 -0.15235,0.0234 l -0.8457,1.41211 -2.79297,3.13086 
-3.45508,-3.63476 h 3.45703 a 0.09983387,0.09983387 0 0 0 0.0742,-0.0332 l 1.70508,-1.92383 a 
0.09983387,0.09983387 0 0 0 -0.0547,-0.16406 l -6.80859,-1.29492 -3.71485,-1.28906 a 0.09983387,0.09983387 0 
0 0 -0.0391,-0.006 z m -28.27148,4.19531 a 0.09983387,0.09983387 0 0 0 -0.0352,0.0137 l -2.23633,1.27344 
-1.0957,-0.30469 a 0.09983387,0.09983387 0 0 0 -0.12695,0.082 l -
 0.28321,1.92383 a 0.09983387,0.09983387 0 0 0 0.0449,0.0977 l 1.98828,1.29492 a 0.09983387,0.09983387 0 0 0 
0.10937,0 l 3.40625,-2.24023 a 0.09983387,0.09983387 0 0 0 0.0215,-0.1504 l -1.70313,-1.95703 a 
0.09983387,0.09983387 0 0 0 -0.0898,-0.0332 z m -37.62696,0.66406 a 0.09983387,0.09983387 0 0 0 
-0.0508,0.0176 l -2.27148,1.60742 a 0.09983387,0.09983387 0 0 0 0.002,0.16407 l 2.83789,1.92578 a 
0.09983387,0.09983387 0 0 0 0.0566,0.0176 h 2.27149 a 0.09983387,0.09983387 0 0 0 0.0996,-0.0996 v -2.24024 a 
0.09983387,0.09983387 0 0 0 -0.0586,-0.0918 l -2.83789,-1.29296 a 0.09983387,0.09983387 0 0 0 -0.0488,-0.008 
z m 43.90821,11.29297 a 0.09983387,0.09983387 0 0 0 -0.0195,0.004 l -1.98828,0.63086 a 0.09983387,0.09983387 
0 0 0 -0.0684,0.11133 l 0.56836,3.56445 a 0.09983387,0.09983387 0 0 0 0.14257,0.0742 l 2.55469,-1.29297 a 
0.09983387,0.09983387 0 0 0 0.0488,-0.12695 l -1.13477,-2.90235 a 0.09983387,0.09983387 0 0 0 
-0.10351,-0.0625 z m -39.33399,5.80274 a 0.09983387,0.09983387 
 0 0 0 -0.0918,0.11914 l 0.85351,4.50976 a 0.09983387,0.09983387 0 0 0 0.18164,0.0371 l 1.70313,-2.58594 a 
0.09983387,0.09983387 0 0 0 -0.0234,-0.13476 l -2.55664,-1.92578 a 0.09983387,0.09983387 0 0 0 
-0.0664,-0.0195 z m 74.45313,25.42382 3.19726,3.59571 3.8418,8.2207 a 0.09983387,0.09983387 0 0 0 
0.0156,0.0234 l 2.23046,2.54101 -1.11328,2.84375 a 0.09983387,0.09983387 0 0 0 0.0195,0.10352 l 
2.03906,2.30664 c -0.91009,0.0604 -1.81987,0.11102 -2.75196,0.11328 -1.79912,-3.78894 -3.16965,-7.60333 
-4.54492,-11.57226 a 0.09983387,0.09983387 0 0 0 -0.0195,-0.0332 l -2.41406,-2.72656 -1.24024,-4.59375 z"
+               transform="translate(0,0.35862859)" />
+          </g>
+        </g>
+        <circle
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:0;fill-rule:nonzero;stroke:#320d69;stroke-width:0.70017195;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;filter:url(#filter14927);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           id="path14903"
+           cx="-563.86926"
+           cy="180.1364"
+           r="75.514893"
+           clip-path="none"
+           transform="matrix(1.4295202,0,0,1.4295202,951.24828,-102.11339)" />
+      </g>
+    </g>
+    <g
+       inkscape:groupmode="layer"
+       id="layer3"
+       inkscape:label="ground"
+       style="display:inline">
+      <g
+         id="g4701"
+         clip-path="url(#clipPath4715)">
+        <path
+           
style="display:inline;fill:url(#radialGradient4890-6);fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           d="m 620.93813,15.593583 c 0,189.317907 -153.52117,342.791557 -342.86947,342.791557 -189.365679,0 
-342.878136,-153.47538 -342.878136,-342.791557 0,-189.309183 153.512457,-342.767173 342.878136,-342.767173 
189.3483,0 342.86947,153.45799 342.86947,342.767173 z"
+           id="path11158-9"
+           inkscape:connector-curvature="0" />
+        <g
+           clip-path="none"
+           id="g4486">
+          <g
+             transform="matrix(2.7884001,0,0,2.7884001,1549.4996,-486.51197)"
+             id="g11427"
+             style="display:inline;fill:#4e9a06;enable-background:new">
+            <g
+               id="g11419"
+               transform="translate(90)"
+               style="fill:#4e9a06" />
+          </g>
+        </g>
+        <path
+           
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
+           id="path11234-9-5"
+           d="m 277.1772,-188.84892 -23.83725,2.63877 -29.37883,8.09239 -5.62948,5.4536 18.29581,12.57826 v 
7.21278 l -7.12481,7.12486 9.49978,18.91141 6.33312,-3.6063 8.00441,-12.57834 c 12.28134,-3.79596 
23.33498,-8.06045 35.00831,-13.45801 l 9.49969,-24.27706 z m -56.47062,1.7592 -10.20337,1.49531 
-4.83785,4.83785 -8.00441,1.14346 -7.1248,3.34251 -3.43043,1.67125 -2.11107,2.81477 10.29137,1.75914 
3.95824,-3.60638 8.00441,-1.75914 c 5.44614,-2.64801 10.93379,-4.46474 16.71245,-6.33319 z m 
-32.54537,21.55029 -7.21273,1.84717 -3.16659,6.33317 -3.95819,-8.09232 -1.58333,3.51835 0.79165,9.05994 
-6.33318,5.36563 -3.95822,9.93953 h 7.91644 l 3.95827,-9.05996 c 3.42834,-2.42383 6.88735,-4.87963 
10.37932,-7.21278 l 7.91643,2.72681 c 5.2974,3.59802 10.61898,7.22658 15.92087,10.81915 l 7.91644,-7.21275 
-8.70812,-3.6064 -3.95822,-8.09234 -15.12919,-1.75925 z m -4.40154,368.55955 c 1.5748,-1.19608 
2.90272,-2.28693 2.90272,-2.28693 l -1.58325,-4.39806 7.04023,-7.39381 2.37488,-6.33316 
 10.3794,-3.60638 7.91641,-19.79108 -2.37494,-5.36561 5.54156,-8.09236 11.96257,-2.72677 6.33315,-14.33759 
-1.58325,-18.03186 9.49969,-13.45798 1.58334,-13.54591 C 230.70082,77.182559 217.82756,70.522959 
204.87365,63.861559 l -6.4211,-12.57839 -11.87473,-2.72675 -6.4211,-17.06436 -15.8329,1.84717 
-13.54586,-9.93953 -14.33756,12.57833 v 2.0231 c -4.33077,-1.24965 -9.60191,-1.41196 -13.45802,-3.7823 l 
-3.16653,-8.97193 v -9.93953 l -9.58769,0.8796 c 0.7962,-6.29958 1.57332,-12.5251 2.37493,-18.82357 h 
-5.54152 l -5.54153,7.12478 -5.62942,2.72684 -7.91649,-4.48604 -0.79162,-9.93953 1.58331,-10.73121 
11.96265,-8.9719 h 9.49969 l 1.58328,-5.45355 11.96265,2.72677 8.70807,10.81913 1.5833,-18.03191 
15.12917,-12.57839 5.54152,-13.54588 11.17103,-4.48601 6.3331,-8.97192 14.33754,-2.72678 7.12486,-10.73119 h 
-21.4624 l 13.54597,-6.33315 h 9.49968 l 13.54594,-4.486019 1.58325,-5.3656 -4.74984,-4.57393 
-5.62947,-1.75923 1.58331,-5.36552 -3.95825,-8.09238 -9.49974,3.51837 1.58333,-7.12475
  -11.171,-6.33315 -8.70809,15.30505 0.7916,5.36564 -8.70803,3.60637 -5.62948,11.69877 -2.37493,-10.81917 
-15.12922,-6.2452 -2.37491,-8.0923 19.87906,-11.69879 8.79604,-8.09239 0.79168,-9.9395 -4.74993,-2.63883 
-6.4211,-0.96757 h 9e-5 l -3.95819,9.93953 c -3e-5,0 -6.64691,1.24928 -8.35625,1.67128 M 66.247978,-1.229211 
c 0.40588,1.90013 7.388702,12.93018 7.388702,12.93018 l 16.71247,9.93953 16.7125,4.48595 7.12481,8.97198 
11.17097,8.09239 6.33315,-0.87963 4.74991,2.11107 v 1.4953 l -6.33319,17.0644 -4.74987,7.21275 
1.58331,3.60638 -3.95827,13.457911 14.24964,26.12429 14.33757,12.57833 6.33315,8.97195 -0.79166,18.91152 
4.83785,10.81913 -4.83785,20.67072 c -0.0767,0.0611 -0.19295,0.38215 0.26379,1.93518 m 255.08549,-335.12948 
-2.37494,3.95821 -8.00443,8.97205 -10.29135,-10.81916 h 10.29135 l 4.7499,-5.36563 -18.99947,-3.60638 
-10.37931,-3.6064 -15.12922,3.6064 -9.49977,6.33313 v 5.36563 l -15.12916,9.93954 3.16659,14.3375 
8.79606,-6.2451 5.54147,6.2451 6.33315,3.60642 4.04617,-1
 0.73117 -2.46291,-6.33316 2.46291,-4.48599 8.70809,-8.09239 h 3.95819 l -3.95819,8.97201 v 8.09238 c 
3.65275,-0.99383 7.34501,-1.2946 11.08305,-1.75923 l -10.2914,7.12475 -0.79165,4.57402 -11.9626,9.85154 
-11.87471,-2.72679 v -7.12475 l -5.54147,3.60632 2.37494,6.24521 h -8.79601 l -4.7499,8.09239 
-5.98132,6.772909 -10.73115,2.19904 6.33315,6.33318 1.6712,6.24515 h -8.00435 l -10.2914,5.45358 v 16.18471 h 
4.74984 l 4.39806,4.92577 9.93953,-4.92577 3.95825,-9.93956 7.12472,-4.48597 1.58337,-3.60641 
11.96254,-2.63875 6.33318,7.21279 7.21278,3.51834 -4.04616,8.09242 6.42107,-1.75923 3.16665,-8.09239 
-8.00447,-8.97193 h 3.25454 l 7.91644,6.24516 1.58328,9.05995 7.12483,8.09236 1.58326,-11.69876 
4.04625,-1.84718 c 3.93044,4.0791 6.98089,8.9552 10.29137,13.54594 l 11.9626,0.8796 7.12478,4.48601 
-3.16654,4.48597 -7.12483,6.33316 h -10.37932 l -13.54591,-4.48598 -7.12484,0.87957 -5.18963,5.8054 
-14.68943,-14.77735 -10.29137,-2.72678 -15.12916,1.7592 -13.54594,3.60641 c -7.58319,8.59
 438 -15.07657,17.19854 -22.25402,26.12421 l -8.70812,20.67077 3.95824,4.48598 -7.12475,10.81913 
7.91644,18.91149 c 6.75964,7.64432 13.48107,15.21995 20.2309,22.86973 l 9.93953,-8.53217 4.39806,5.0138 
10.7311,-6.77303 3.60641,4.04614 h 10.73121 l 6.15721,6.949 -3.78227,12.40239 7.56459,8.53217 
-0.43984,14.865291 5.62947,10.7312 -4.04622,9.05993 c -0.39581,6.61877 -0.79157,13.17118 -0.79157,19.79106 
3.25791,8.96836 6.51125,17.88316 9.58772,26.91596 l 2.37488,14.42551 v 7.21272 h 5.54153 l 8.79603,-5.36552 h 
10.29137 l 15.48103,-17.59216 -1.93512,-5.80536 10.29137,-9.05993 -7.56456,-8.53217 9.14785,-7.6526 
8.79609,-5.36552 3.95824,-4.48604 -2.37499,-9.93953 V 81.89342 l 7.12481,-15.305081 8.79606,-9.85159 
9.49969,-23.39752 v -6.33315 c -4.73827,0.59669 -9.35003,1.16209 -13.98569,1.4953 l 9.58766,-9.58763 
13.10615,-8.97198 7.21278,-8.09239 v -9.05993 c -1.59125,-3.00004 -3.23574,-5.97197 -4.83782,-8.97195 l 
-6.33315,7.21275 -4.74993,-5.36561 -7.12478,-5.45358 v -11.69867 l 8.356
 28,9.49968 9.0599,-1.40736 c 4.16448,3.77957 8.30994,7.39557 11.96263,11.69874 l 5.98134,-6.68494 m 
-187.35581,-128.246429 -6.33318,3.60643 -3.16662,-0.87965 -0.79157,5.3656 5.54147,3.60644 9.49972,-6.24524 z 
m -104.93687,1.84717 -6.33318,4.48601 7.91644,5.36564 h 6.33318 v -6.24525 z M 319.31029,-124.11 v 5.36553 l 
3.16662,3.6064 v 8.09235 l -1.58334,10.819179 8.79609,-1.75923 6.33319,-6.333179 -5.54156,-5.36554 c 
-1.86898,-4.97562 -4.08188,-9.65328 -6.4211,-14.42551 z m -3.16653,10.81908 -5.54153,1.75923 1.58331,9.93958 
7.12475,-3.6064 z m -109.68677,16.184749 2.37496,12.57839 4.7499,-7.21278 z m 207.58674,70.19251 
9.14788,10.29137 10.73121,22.95765 6.33313,7.21278 -3.16651,8.09236 6.06926,6.86088 c -2.7898,0.18906 
-5.57569,0.3519 -8.4442,0.3519 -5.06239,-10.63451 -8.89929,-21.33204 -12.75433,-32.45745 l -6.77292,-7.65254 
-3.51843,-13.01818 z"
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4241);stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4970);stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#filter4976);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new"
+           d="m 277.73273,-194.49223 a 209.7574,209.75739 0 0 0 -56.50797,7.77738 l -0.24882,-0.41015 
-10.15471,1.48899 -3.56115,3.56116 a 209.7574,209.75739 0 0 0 -5.62164,1.87775 l -3.60002,0.51319 
-7.08925,3.32594 -3.41536,1.66394 -0.91362,1.21686 a 209.7574,209.75739 0 0 0 -26.9652,15.6325 l 
-4.33674,-0.65313 -2.08965,5.24842 a 209.7574,209.75739 0 0 0 -7.67047,5.7752 c -1.05238,0.21247 
-1.99739,0.40759 -2.49591,0.53067 l 0.17883,1.50649 A 209.7574,209.75739 0 0 0 68.696027,0.84803234 L 
67.249801,-2.1455168 c 0.106313,0.4977472 0.677122,1.63770276 1.444285,3.02853237 A 209.7574,209.75739 0 0 0 
67.974855,15.265621 209.7574,209.75739 0 0 0 277.73273,225.02348 209.7574,209.75739 0 0 0 487.48864,15.265621 
209.7574,209.75739 0 0 0 484.62923,-18.796597 l 0.3771,-0.419878 -0.54428,-0.956381 A 209.7574,209.75739 0 0 
0 414.16631,-143.94996 l -2.34624,-4.13071 -0.87474,1.4579 a 209.7574,209.75739 0 0 0 -5.31256,-4.0374 l 
0.58316,-0.65896 -1.9322,-0.36739 a 209.7574,209.75739 0 0 0
  -126.551,-42.80571 z"
+           id="path11234-9-5-2"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5028);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#filter5018);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new"
+           d="m 277.73273,-194.49223 a 209.7574,209.75739 0 0 0 -56.50797,7.77738 l -0.24882,-0.41015 
-10.15471,1.48899 -3.56115,3.56116 a 209.7574,209.75739 0 0 0 -5.62164,1.87775 l -3.60002,0.51319 
-7.08925,3.32594 -3.41536,1.66394 -0.91362,1.21686 a 209.7574,209.75739 0 0 0 -26.9652,15.6325 l 
-4.33674,-0.65313 -2.08965,5.24842 a 209.7574,209.75739 0 0 0 -7.67047,5.7752 c -1.05238,0.21247 
-1.99739,0.40759 -2.49591,0.53067 l 0.17883,1.50649 A 209.7574,209.75739 0 0 0 68.696027,0.84802673 L 
67.249801,-2.1455233 c 0.106313,0.49775 0.677122,1.63770003 1.444285,3.02853003 A 209.7574,209.75739 0 0 0 
67.974855,15.265617 209.7574,209.75739 0 0 0 277.73273,225.02348 209.7574,209.75739 0 0 0 487.48864,15.265617 
a 209.7574,209.75739 0 0 0 -2.85941,-34.06222 l 0.3771,-0.41988 -0.54428,-0.95638 A 209.7574,209.75739 0 0 0 
414.16631,-143.94996 l -2.34624,-4.13071 -0.87474,1.4579 a 209.7574,209.75739 0 0 0 -5.31256,-4.0374 l 
0.58316,-0.65896 -1.9322,-0.36739 a 209.7574,209.75739 0 0 0 -12
 6.551,-42.80571 z"
+           id="path11234-9-5-2-3"
+           inkscape:connector-curvature="0" />
+      </g>
+    </g>
+    <g
+       inkscape:groupmode="layer"
+       id="layer6"
+       inkscape:label="something else?"
+       style="display:none">
+      <path
+         inkscape:connector-curvature="0"
+         
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ef2929;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:new"
+         d="m 278.06641,-194.27344 c -19.74655,0 -38.85348,2.72934 -56.97071,7.82422 l -0.38867,-0.64062 
-10.20312,1.49609 -3.7461,3.74609 c -1.3558,0.48943 -2.70225,0.99729 -4.04492,1.51368 l -5.05273,0.7207 
-7.12305,3.3418 -3.43164,1.67187 -1.1875,1.58399 c -9.20474,4.50255 -18.03009,9.65714 -26.41797,15.40624 l 
-4.76367,-0.71679 -2.29297,5.75586 c -2.22622,1.6646 -4.40973,3.38316 -6.56641,5.13281 -1.43093,0.28367 
-2.80915,0.56124 -3.45507,0.7207 -21.82984,20.11003 -65.926574,63.53372 -76.173833,145.48828 0.140957,0.6599 
1.092486,2.44122 2.251953,4.45899 -0.238057,4.09374 -0.373047,8.21376 -0.373047,12.36719 0,71.03083 
35.300137,133.81362 89.312497,171.79101 1.3083,2.37588 23.5942,16.06681 26.15235,15.68164 28.39846,14.33249 
60.49022,22.41602 94.47461,22.41602 115.93581,0 209.93554,-93.97147 209.93554,-209.88867 0,-11.32477 
-0.90937,-22.43491 -2.63672,-33.27344 l 0.63086,-0.70508 c 0,-7.1535 -8.17846,-42.42049 -25.59765,-72.30469 
-17.41927,-29.87428 -47.93753,-57.17383 -47
 .9375,-57.17383 l -0.89063,1.48438 c -1.72243,-1.42046 -3.47627,-2.80396 -5.24414,-4.16992 l 
0.50391,-0.56836 -1.6543,-0.31445 c -35.28387,-26.87679 -79.32986,-42.84571 -127.10937,-42.84571 z"
+         id="path4717-6" />
+      <path
+         
style="display:inline;opacity:0.43063588;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+         d="m 278.06872,-546.63679 c -152.94989,0 -276.941767,45.77124 -276.941767,102.238 0,56.46886 
123.991877,102.24847 276.941767,102.24847 152.93581,0 276.93323,-45.7791 276.93323,-102.24847 0,-56.46676 
-123.99742,-102.238 -276.93323,-102.238 z m -0.002,12.24195 c 134.62383,0 243.77512,40.29251 
243.77512,89.99815 0,49.70792 -109.15129,90.00442 -243.77512,90.00442 -134.63621,0 -243.781515,-40.29695 
-243.781515,-90.00442 0,-49.70564 109.145305,-89.99815 243.781515,-89.99815 z"
+         id="path11158-7"
+         inkscape:connector-curvature="0" />
+      <path
+         transform="matrix(1.9523597,0,0,1.9523597,-5.7212488,-287.12129)"
+         
style="display:inline;opacity:0;fill:url(#radialGradient4890-3);fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4705-9);enable-background:new"
+         d="m 275.42225,155.05239 c 0,71.81659 -58.23732,130.03588 -130.06543,130.03588 -71.83472,0 
-130.068732,-58.21994 -130.068732,-130.03588 0,-71.813283 58.234012,-130.026634 130.068732,-130.026634 
71.82811,0 130.06543,58.213351 130.06543,130.026634 z"
+         id="path11158-78"
+         inkscape:connector-curvature="0" />
+      <path
+         inkscape:connector-curvature="0"
+         
style="display:inline;opacity:0.43063588;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+         d="m 278.06922,-560.92406 c -171.17546,0 -309.942267,52.16723 -309.942267,116.52454 0,64.35971 
138.766807,116.53647 309.942267,116.53647 171.15972,0 309.93273,-52.17619 309.93273,-116.53647 0,-64.35731 
-138.77301,-116.52454 -309.93273,-116.52454 z m -0.002,13.95263 c 150.66567,0 272.82347,45.9229 
272.82347,102.5743 0,56.65401 -122.1578,102.58145 -272.82347,102.58145 -150.67953,0 -272.8306316,-45.92795 
-272.8306316,-102.58145 0,-56.6514 122.1511016,-102.5743 272.8306316,-102.5743 z"
+         id="path11158-7-5" />
+      <path
+         
style="display:inline;opacity:0.43063588;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+         d="m 278.06827,-537.61325 c -136.93347,0 -247.941317,41.73168 -247.941317,93.21493 0,51.48516 
111.007847,93.22446 247.941317,93.22446 136.92087,0 247.93368,-41.73884 247.93368,-93.22446 0,-51.48325 
-111.01281,-93.21493 -247.93368,-93.21493 z m -0.002,11.16153 c 120.52646,0 218.24777,36.73648 
218.24777,82.05532 0,45.32091 -97.72131,82.06102 -218.24777,82.06102 -120.53755,0 -218.253506,-36.74052 
-218.253506,-82.06102 0,-45.31884 97.715956,-82.05532 218.253506,-82.05532 z"
+         id="path11158-7-0"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       inkscape:groupmode="layer"
+       id="layer11"
+       inkscape:label="swoosh creator"
+       style="display:none">
+      <g
+         style="display:inline;enable-background:new"
+         id="g4682"
+         transform="translate(780)">
+        <path
+           sodipodi:nodetypes="ccccc"
+           id="path11158-7-5-3"
+           d="m 278.06922,-100.92406 c -152.43039,0 -276.0011416,52.16723 -276.0011416,116.52454 l 
33.0458376,0.0024 c 0,-56.6514 108.774594,-102.5743 242.953534,-102.5743 z"
+           
style="display:inline;opacity:0.43063588;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="ccccc"
+           id="path11158-7-5-6"
+           d="M 278.06745,118.18433 C 143.88851,118.18433 35.113916,72.25638 35.113916,15.60288 L 
2.0680784,15.60048 c 0,64.35971 123.5707516,116.53647 276.0011416,116.53647 z"
+           
style="display:inline;opacity:0.43063588;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path11158-7-5-3-6"
+           d="m 588.00195,15.60048 c 0,-64.35731 -138.77301,-116.52454 -309.93273,-116.52454 l 
-0.002,13.95264 c 150.66567,0 272.82347,45.9229 272.82347,102.5743"
+           
style="display:inline;opacity:0.43063588;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="ccccc"
+           id="path11158-7-5-6-3"
+           d="m 550.89069,15.60288 c 0,56.65401 -122.1578,102.58145 -272.82347,102.58145 l 0.002,13.95262 c 
171.15972,0 309.93273,-52.17619 309.93273,-116.53647 z"
+           
style="display:inline;opacity:0.43063588;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         style="display:inline;fill:#204a87;enable-background:new"
+         id="g4682-6"
+         transform="matrix(0.81292114,0,0,0.81292114,842.01998,2.919636)">
+        <path
+           sodipodi:nodetypes="ccccc"
+           id="path11158-7-5-3-1"
+           d="m 278.06922,-100.92406 c -179.026604,0 -324.158098,52.16723 -324.158098,116.52454 l 
38.8117079,0.0024 c 0,-56.6514 127.7536901,-102.5743 285.3443001,-102.5743 z"
+           
style="display:inline;opacity:0.43063588;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="ccccc"
+           id="path11158-7-5-6-5"
+           d="m 278.06713,118.18433 c -157.59061,0 -285.3443001,-45.92795 -285.3443001,-102.58145 l 
-38.8117079,-0.0024 c 0,64.35971 145.131494,116.53647 324.158098,116.53647 z"
+           
style="display:inline;opacity:0.43063588;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path11158-7-5-3-6-5"
+           d="m 588.00195,15.60048 c 0,-64.35731 -138.77301,-116.52454 -309.93273,-116.52454 l 
-0.002,13.95264 c 150.66567,0 272.82347,45.9229 272.82347,102.5743"
+           
style="display:inline;opacity:0.43063588;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="ccccc"
+           id="path11158-7-5-6-3-4"
+           d="m 550.89069,15.60288 c 0,56.65401 -122.1578,102.58145 -272.82347,102.58145 l 0.002,13.95262 c 
171.15972,0 309.93273,-52.17619 309.93273,-116.53647 z"
+           
style="display:inline;opacity:0.43063588;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+      </g>
+      <path
+         
style="display:inline;overflow:visible;visibility:visible;opacity:0.344;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;marker:none;enable-background:accumulate"
+         d="m 811,-231 v 512 h 512 v -512 z m 257.0664,36.72656 c 47.7795,0 91.8255,15.96892 
127.1094,42.84571 l 1.6543,0.31445 -0.5039,0.56836 c 1.7678,1.36596 3.5217,2.74946 5.2441,4.16992 l 
0.8906,-1.48438 c 0,0 30.5183,27.29955 47.9375,57.17383 17.4192,29.8842 25.5977,65.15119 25.5977,72.30469 l 
-0.6309,0.70508 c 1.7274,10.83853 2.6368,21.94867 2.6368,33.27344 0,115.9172 -93.9998,209.88867 
-209.9356,209.88867 -33.9844,0 -66.0761,-8.08353 -94.4746,-22.41602 -2.55815,0.38517 -24.84405,-13.30576 
-26.15235,-15.68164 -54.01236,-37.97739 -89.3125,-100.76018 -89.3125,-171.79101 0,-4.15343 0.13499,-8.27345 
0.37305,-12.36719 -1.15947,-2.01777 -2.111,-3.79909 -2.25195,-4.45899 10.24726,-81.95456 54.34398,-125.37825 
76.17383,-145.48828 0.64591,-0.15946 2.02414,-0.43703 3.45507,-0.7207 2.15668,-1.74965 4.34019,-3.46821 
6.56641,-5.13281 l 2.29297,-5.75586 4.76367,0.71679 c 8.38788,-5.74909 17.21323,-10.90369 26.41797,-15.40624 
l 1.1875,-1.58399 3.43163,-1.67187 7.1231,-3.3418 5.0527,
 -0.7207 c 1.3427,-0.51639 2.6891,-1.02425 4.0449,-1.51368 l 3.7461,-3.74609 10.2031,-1.49609 0.3887,0.64062 
c 18.1172,-5.09488 37.2242,-7.82422 56.9707,-7.82422 z"
+         id="rect13805-2-7"
+         inkscape:connector-curvature="0" />
+      <g
+         style="display:inline;fill:#edd400;enable-background:new"
+         id="g4682-6-6"
+         transform="matrix(0.9817484,0,0,0.9817484,795.07512,0.28484254)">
+        <path
+           sodipodi:nodetypes="ccccc"
+           id="path11158-7-5-3-1-5"
+           d="m 278.06922,-100.92406 c -156.05974,0 -282.5726707,52.16723 -282.5726707,116.52454 L 
29.3292,15.60288 c 0,-56.6514 111.36449,-102.5743 248.7382,-102.5743 z"
+           
style="display:inline;opacity:0.43063588;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="ccccc"
+           id="path11158-7-5-6-5-6"
+           d="m 278.0674,118.18433 c -137.37371,0 -248.7382,-45.92795 -248.7382,-102.58145 l 
-33.8326507,-0.0024 c 0,64.35971 126.5129307,116.53647 282.5726707,116.53647 z"
+           
style="display:inline;opacity:0.43063588;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path11158-7-5-3-6-5-9"
+           d="m 588.00195,15.60048 c 0,-64.35731 -138.77301,-116.52454 -309.93273,-116.52454 l 
-0.002,13.95264 c 150.66567,0 272.82347,45.9229 272.82347,102.5743"
+           
style="display:inline;opacity:0.43063588;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="ccccc"
+           id="path11158-7-5-6-3-4-3"
+           d="m 550.89069,15.60288 c 0,56.65401 -122.1578,102.58145 -272.82347,102.58145 l 0.002,13.95262 c 
171.15972,0 309.93273,-52.17619 309.93273,-116.53647 z"
+           
style="display:inline;opacity:0.43063588;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:none;enable-background:new"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         inkscape:groupmode="layer"
+         id="layer13"
+         inkscape:label="swooshes linked"
+         style="display:none">
+        <use
+           style="display:inline;enable-background:new"
+           x="0"
+           y="0"
+           xlink:href="#g4682"
+           id="use4777"
+           transform="rotate(-45,668.06455,957.14995)"
+           width="100%"
+           height="100%" />
+        <use
+           style="display:inline;enable-background:new"
+           x="0"
+           y="0"
+           xlink:href="#g4682-6"
+           id="use4839"
+           transform="rotate(16.554023,673.06449,-2699.6464)"
+           width="100%"
+           height="100%" />
+        <use
+           style="display:inline;enable-background:new"
+           x="0"
+           y="0"
+           xlink:href="#g4682-6-6"
+           id="use4896"
+           width="100%"
+           height="100%"
+           transform="rotate(56.123681,673.06446,-725.3501)" />
+        <use
+           style="display:inline;enable-background:new"
+           x="0"
+           y="0"
+           xlink:href="#g4682-6-6"
+           id="use4896-8"
+           width="100%"
+           height="100%"
+           transform="rotate(56.123681,673.06446,-725.3501)" />
+      </g>
+      <g
+         inkscape:label="swooshes"
+         id="g4935"
+         inkscape:groupmode="layer"
+         style="display:inline">
+        <g
+           transform="rotate(-45,278.06455,15.606656)"
+           id="use4937"
+           style="display:inline;enable-background:new" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path5452"
+           d="m 155.30859,-223.43555 c -12.08447,-0.14328 -22.8531,2.66759 -31.86914,8.72071 l 
18.51367,27.57812 c 26.02631,-17.47333 68.63591,-4.21994 114.32618,30.70313 A 40,40 0 0 0 250,-135 a 40,40 0 
0 0 3.31055,15.81445 c -19.29176,15.86961 -38.63962,33.38571 -57.64258,52.38867 C 168.4911,-39.62 
144.97983,-11.3996 125.71094,16.3457 A 29,29 0 0 0 117,15 29,29 0 0 0 98.80273,21.43164 C 66.28917,-3.75104 
49.48517,-29.51474 55.71875,-50.48633 L 25.47656,-59.47852 C 17.45938,-32.50636 42.9986,1.43959 
89.99609,33.50977 A 29,29 0 0 0 88,44 29,29 0 0 0 96.33398,64.33203 C 62.8662,127.78218 55.59207,183.4534 
82.90039,210.76172 l 23.36914,-23.36524 C 84.24939,165.37635 87.78698,122.39933 111.17773,72.40625 A 29,29 0 
0 0 117,73 29,29 0 0 0 139.36523,62.4375 c 32.53515,16.54583 70.42277,31.70155 111.71289,43.97461 
66.5775,19.78945 129.85643,27.56143 178.41407,24.16016 a 21,21 0 0 0 14.73633,9.2207 c 9.99086,47.16594 
5.1991,83.37738 -16.86329,98.18945 l 20.31055,30.24805 c 28.4476,-
 19.09893 31.62623,-69.51077 13.65039,-133.89844 a 21,21 0 0 0 5.79492,-9.35351 c 28.19848,-6.97318 
47.10949,-19.59914 52.45704,-37.58985 L 490.6582,78.79492 c -3.40107,11.44222 -13.04594,20.41445 
-27.49023,26.83203 A 21,21 0 0 0 449.52734,98.16992 C 432.61942,52.482 406.74519,2.02917 373.05078,-48.1582 
357.22869,-71.725 340.49919,-93.47383 323.41211,-113.0625 A 40,40 0 0 0 330,-135 a 40,40 0 0 0 
-4.05469,-17.48047 c 64.27591,-38.19848 120.01946,-49.84578 145.03321,-24.83203 l 26.24023,-26.24414 C 
466.70424,-234.07115 395.94024,-216.57165 316.13867,-165.25 A 40,40 0 0 0 290,-175 a 40,40 0 0 0 
-22.21484,6.77344 c -41.28095,-34.76274 -81.26932,-54.83896 -112.47657,-55.20899 z m 105.99219,116.29883 A 
40,40 0 0 0 290,-95 a 40,40 0 0 0 23.51562,-7.70312 c 16.59,18.52652 32.8566,39.38328 48.16016,62.17773 
33.20304,49.45547 57.79412,99.21268 72.32227,143.03906 a 21,21 0 0 0 -7.64844,12.76953 C 382.11521,121.3124 
320.03514,115.07558 254.30859,95.53906 213.24962,83.33471 176.01056,67.
 89598 145.07812,51.10742 A 29,29 0 0 0 146,44 29,29 0 0 0 138.38672,24.45898 c 17.92055,-27.03883 
40.54033,-54.78251 67.14648,-81.38867 18.37939,-18.37938 37.12396,-35.17625 55.76758,-50.20703 z"
+           
style="display:inline;opacity:0.43063588;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#729fcf;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter5685);enable-background:new"
 />
+        <path
+           
style="display:inline;opacity:0.43063588;fill:url(#radialGradient5770);fill-opacity:1;fill-rule:nonzero;stroke:#729fcf;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter5701);enable-background:new"
+           d="m 123.43945,-214.71484 c -26.53699,17.8162 -32.80494,60.32173 -21.47656,114.4375 
-41.58944,4.81656 -69.8783,18.56749 -76.48633,40.79882 l 30.24219,8.99219 c 4.85605,-16.33717 
23.01775,-27.47072 50.18164,-33.17187 13.00215,49.36154 39.31677,106.63498 77.18359,163.03711 
21.70299,32.32631 44.7378,61.69531 67.97461,87.31445 -62.32662,36.88611 -118.49384,46.99835 
-144.78906,20.70312 l -23.36914,23.36524 c 31.89424,31.89424 102.47524,16.63416 178.95313,-32.44922 
73.56349,77.24662 147.39884,115.71439 185.82226,89.91797 l -20.31055,-30.24805 c -31.9414,21.44458 
-91.68294,-7.56753 -152.76953,-68.13086 28.6208,-19.61275 57.80444,-43.78295 85.8711,-71.84961 
31.74137,-31.74137 59.36053,-64.44298 82.02929,-96.24218 35.91862,26.50443 54.89264,54.3917 48.16211,77.03515 
l 28.91992,8.59375 c 8.48819,-28.55674 -19.01687,-64.45298 -68.89062,-97.39258 57.62305,-84.83397 
78.62784,-161.45614 46.53125,-193.55273 l -26.24023,26.24414 c 26.81128,26.81128 11.52839,88.91704 
-33.44727,159
 .00195 -35.96467,-21.72757 -81.48523,-41.72929 -132.47266,-56.88476 -68.94634,-20.49357 -134.38182,-29.13212 
-184.74609,-26.58203 -5.80501,-40.25021 0.85758,-71.40622 21.64062,-85.35938 z m 31.52735,126.60156 c 
41.82404,0.02219 93.13489,7.82003 146.85937,23.78906 50.54998,15.02545 94.99808,35.46193 128.19336,57.38672 
-21.1974,31.20715 -48.02006,63.67631 -79.41992,95.07617 -28.38488,28.38488 -58.06705,52.24942 
-86.80469,70.69336 -23.6555,-24.83984 -47.27941,-54.23113 -69.33984,-87.08984 -37.14639,-55.32905 
-61.665,-111.61098 -71.40625,-158.14258 9.84329,-1.14004 20.5235,-1.71894 31.91797,-1.71289 z"
+           id="path5454"
+           inkscape:connector-curvature="0"
+           clip-path="url(#clipPath5531-9)"
+           transform="translate(0,-3.2272469e-6)" />
+        <g
+           transform="matrix(0.54722852,0.81508948,-0.81508948,0.54722852,138.6203,-219.58126)"
+           id="use4941"
+           style="display:inline;fill:#edd400;enable-background:new" />
+        <g
+           id="g5755">
+          <path
+             id="rect13805-2"
+             d="M 455.58789,-218.5879 C 393.31077,-219.41032 290.22125,-161.35016 195.66797,-66.796882 
87.883407,40.987688 37.3929,165.25423 82.900391,210.76172 c 23.134919,23.13492 66.630319,21.44919 
117.960939,0.0527 -5.88999,-2.33111 -11.65441,-4.91023 -17.26953,-7.74414 -0.95286,0.14347 -4.64931,-1.67088 
-8.97266,-4.12109 -29.39977,6.48473 -53.58604,3.21084 -68.34961,-11.55274 C 66.210943,147.3379 
110.65436,37.949148 205.5332,-56.929692 312.06992,-163.4664 430.91993,-217.37109 470.97852,-177.3125 c 
19.20632,19.20632 16.80245,56.52968 -2.63282,101.917968 3.53048,7.56084 6.51068,15.08688 8.96094,22.12305 
36.69119,-66.836348 46.4339,-123.763368 19.91211,-150.285168 -9.95476,-9.95476 -24.19327,-14.80097 
-41.63086,-15.03125 z"
+             
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5711);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
+             inkscape:connector-curvature="0" />
+          <path
+             id="rect13805-2-74"
+             d="m 155.30859,-223.43555 c -12.08447,-0.14328 -22.8531,2.66758 -31.86914,8.7207 
-26.548785,17.82412 -32.810117,60.35967 -21.46093,114.50977 5.445,-8.24638 11.02943,-15.50294 
16.44336,-21.86133 -1.13779,-30.35491 6.3927,-53.56396 23.53124,-65.07031 46.17597,-31.00127 
144.54785,34.63946 219.72266,146.611328 82.44855,122.806 111.86541,247.506552 65.68945,278.507812 
-21.55983,14.47468 -55.78704,5.96024 -94.54296,-19.72461 -7.53959,2.0315 -15.24178,3.66602 -23.0918,4.85352 
56.25468,46.17744 107.91591,65.28005 137.94531,45.11914 52.45697,-35.21816 19.03848,-176.878192 
-74.625,-316.388672 C 302.32862,-153.4979 213.53379,-222.74518 155.30859,-223.43555 Z"
+             
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient5753);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+             inkscape:connector-curvature="0" />
+          <g
+             style="display:inline;fill:#204a87;enable-background:new"
+             id="use4939"
+             transform="matrix(0.77922679,0.2316169,-0.2316169,0.77922679,65.003901,-60.95894)">
+            <path
+               inkscape:connector-curvature="0"
+               id="path4986"
+               d="m 29.877901,-59.346644 c -47.398255,20.260427 -75.967475,46.400729 -75.96748,74.94613 
10e-7,64.359708 145.132952,116.538334 324.159549,116.538344 171.15972,-1e-5 309.93282,-52.177193 
309.93281,-116.537476 2e-5,-26.070465 -22.77813,-50.138996 -61.2509,-69.551078 3.14988,11.250708 
5.51173,22.539843 7.0996,33.810235 11.00915,11.1310272 17.03854,23.1712086 17.03853,35.743661 0,56.654004 
-122.15605,102.581518 -272.82172,102.581518 -157.5906,-1e-5 -285.3463007,-45.928139 -285.3463027,-102.581643 
0,-16.48608598 10.8363145,-32.059413 30.0614337,-45.861072 1.92372,-10.364949 4.350758,-20.061835 
7.09448,-29.088619 z"
+               
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient5740);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46026325;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
+          </g>
+          <circle
+             r="21"
+             cy="119"
+             cx="447"
+             id="path5187"
+             
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
+          <circle
+             r="40"
+             cy="-135"
+             cx="290"
+             id="path5187-4"
+             
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
+          <circle
+             r="29"
+             cy="44"
+             cx="117"
+             id="path5187-3"
+             
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
+        </g>
+        <path
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;filter:url(#filter5921);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           d="m 290,125 a 40,40 0 0 0 -40,40 40,40 0 0 0 40,40 40,40 0 0 0 40,-40 40,40 0 0 0 -40,-40 z M 
117,315 a 29,29 0 0 0 -29,29 29,29 0 0 0 29,29 29,29 0 0 0 29,-29 29,29 0 0 0 -29,-29 z m 330,83 a 21,21 0 0 
0 -21,21 21,21 0 0 0 21,21 21,21 0 0 0 21,-21 21,21 0 0 0 -21,-21 z"
+           transform="translate(0,-300)"
+           id="path5187-2"
+           inkscape:connector-curvature="0" />
+      </g>
+    </g>
+    <g
+       style="display:none"
+       inkscape:label="swooshes"
+       id="g4287"
+       inkscape:groupmode="layer">
+      <g
+         transform="translate(3.7292978e-8,4.9e-6)"
+         style="display:inline;fill:#b1cbe5;fill-opacity:1;filter:url(#filter4607);enable-background:new"
+         id="g4550-6">
+        <path
+           id="path4289-3-3-0"
+           d="m 474.95312,-60.921882 c 2.08795,5.38628 3.90504,10.86505 5.46876,16.28907 a 
77.757355,238.75735 83.598149 0 1 34.7207,34.28515 A 77.757355,238.75735 83.598149 0 1 286.54492,93.544918 
77.757355,238.75735 83.598149 0 1 40.605469,42.894528 77.757355,238.75735 83.598149 0 1 67.449219,1.3222679 c 
-0.613383,-1.13735001 -1.109329,-2.12082001 -1.201172,-2.55079 0.590114,-4.71955 1.297655,-9.3045799 
2.101562,-13.7714799 A 85.757355,265.75735 83.598149 0 0 13.77344,45.906248 85.757355,265.75735 83.598149 0 0 
287.4375,101.49609 85.757355,265.75735 83.598149 0 0 541.97461,-13.359382 a 85.757355,265.75735 83.598149 0 0 
-67.02149,-47.5625 z"
+           clip-path="none"
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#b1cbe5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#b1cbe5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           clip-path="none"
+           d="m 97.857422,-199.00977 a 289.98312,93.574781 45 0 0 -25.171875,10.22657 289.98312,93.574781 45 
0 0 15.923828,111.806638 c 2.413009,-4.8611 4.923517,-9.4761 7.5,-13.84375 A 260.52187,84.845521 45 0 1 
93.517578,-167.95116 260.52187,84.845521 45 0 1 337.72852,-43.728522 260.52187,84.845521 45 0 1 
461.94922,200.48242 260.52187,84.845521 45 0 1 383.4043,197.18359 c -4.50553,2.61841 -9.1219,5.06683 
-13.83203,7.35157 A 289.98312,93.574781 45 0 0 482.78125,221.31445 289.98312,93.574781 45 0 0 
343.90234,-49.900392 289.98312,93.574781 45 0 0 97.857422,-199.00977 Z"
+           id="path4291-6-5-6"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#b1cbe5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           clip-path="none"
+           d="M 433.69336,-174.2832 A 82.761864,256.47449 45 0 0 219.21094,-42.255862 82.761864,256.47449 45 
0 0 96.378906,197.62109 82.761864,256.47449 45 0 0 169.17969,195.72266 c -5.73229,-3.51677 -11.11811,-7.20419 
-11.74024,-8.33399 -0.75949,-0.53402 -1.50986,-1.08103 -2.26172,-1.625 a 75.041302,230.41759 45 0 1 
-40.37304,-6.56836 75.041302,230.41759 45 0 1 109.86523,-215.992192 75.041302,230.41759 45 0 1 
215.99219,-109.867168 75.041302,230.41759 45 0 1 7.07422,37.26953 c 3.6374,4.77181 7.16195,9.775848 
10.35547,14.898428 a 82.761864,256.47449 45 0 0 0.99609,-70.591788 82.761864,256.47449 45 0 0 
-25.39453,-9.19531 z"
+           id="path4293-7-6-2"
+           inkscape:connector-curvature="0" />
+        <circle
+           r="38.183765"
+           cy="-96.686905"
+           cx="285.67114"
+           id="path4489-6"
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#b1cbe5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.13852814;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
+        <circle
+           r="19.091883"
+           cy="94.231926"
+           cx="118.79394"
+           id="path4489-2-1"
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#b1cbe5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.13852814;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
+        <circle
+           r="15.556349"
+           cy="63.826336"
+           cx="432.74933"
+           id="path4489-9-8"
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#b1cbe5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.13852814;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
+      </g>
+      <g
+         id="g4550"
+         transform="translate(1.414214)">
+        <path
+           id="path4289-3-3"
+           d="m 474.95312,-60.921882 c 2.08795,5.38628 3.90504,10.86505 5.46876,16.28907 a 
77.757355,238.75735 83.598149 0 1 34.7207,34.28515 A 77.757355,238.75735 83.598149 0 1 286.54492,93.544918 
77.757355,238.75735 83.598149 0 1 40.605469,42.894528 77.757355,238.75735 83.598149 0 1 67.449219,1.3222679 c 
-0.613383,-1.13735001 -1.109329,-2.12082001 -1.201172,-2.55079 0.590114,-4.71955 1.297655,-9.3045799 
2.101562,-13.7714799 A 85.757355,265.75735 83.598149 0 0 13.77344,45.906248 85.757355,265.75735 83.598149 0 0 
287.4375,101.49609 85.757355,265.75735 83.598149 0 0 541.97461,-13.359382 a 85.757355,265.75735 83.598149 0 0 
-67.02149,-47.5625 z"
+           clip-path="none"
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4642);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4617);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           clip-path="none"
+           d="m 97.857422,-199.00977 a 289.98312,93.574781 45 0 0 -25.171875,10.22657 289.98312,93.574781 45 
0 0 15.923828,111.806638 c 2.413009,-4.8611 4.923517,-9.4761 7.5,-13.84375 A 260.52187,84.845521 45 0 1 
93.517578,-167.95116 260.52187,84.845521 45 0 1 337.72852,-43.728522 260.52187,84.845521 45 0 1 
461.94922,200.48242 260.52187,84.845521 45 0 1 383.4043,197.18359 c -4.50553,2.61841 -9.1219,5.06683 
-13.83203,7.35157 A 289.98312,93.574781 45 0 0 482.78125,221.31445 289.98312,93.574781 45 0 0 
343.90234,-49.900392 289.98312,93.574781 45 0 0 97.857422,-199.00977 Z"
+           id="path4291-6-5"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient4667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.95413625;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           clip-path="none"
+           d="M 433.69336,-174.2832 A 82.761864,256.47449 45 0 0 219.21094,-42.255862 82.761864,256.47449 45 
0 0 96.378906,197.62109 82.761864,256.47449 45 0 0 169.17969,195.72266 c -5.73229,-3.51677 -11.11811,-7.20419 
-11.74024,-8.33399 -0.75949,-0.53402 -1.50986,-1.08103 -2.26172,-1.625 a 75.041302,230.41759 45 0 1 
-40.37304,-6.56836 75.041302,230.41759 45 0 1 109.86523,-215.992192 75.041302,230.41759 45 0 1 
215.99219,-109.867168 75.041302,230.41759 45 0 1 7.07422,37.26953 c 3.6374,4.77181 7.16195,9.775848 
10.35547,14.898428 a 82.761864,256.47449 45 0 0 0.99609,-70.591788 82.761864,256.47449 45 0 0 
-25.39453,-9.19531 z"
+           id="path4293-7-6"
+           inkscape:connector-curvature="0" />
+        <circle
+           r="38.183765"
+           cy="-96.686905"
+           cx="285.67114"
+           id="path4489"
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.13852814;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
+        <circle
+           r="19.091883"
+           cy="94.231926"
+           cx="118.79394"
+           id="path4489-2"
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.13852814;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
+        <circle
+           r="15.556349"
+           cy="63.826336"
+           cx="432.74933"
+           id="path4489-9"
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.13852814;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
+      </g>
+    </g>
+    <g
+       inkscape:groupmode="layer"
+       id="layer4"
+       inkscape:label="silly pointer"
+       style="display:inline">
+      <g
+         style="display:inline;enable-background:new"
+         id="g14712"
+         transform="matrix(1.9973369,0,0,1.9973369,-674.4158,-339.72189)">
+        <path
+           inkscape:connector-curvature="0"
+           d="m 439.13952,164.08069 -72.03293,69.91431 32.83854,1.05931 c 0,0 -13.771,28.60131 
-13.771,28.60131 -4.23723,12.71169 14.83031,17.47858 18.00823,7.94481 0,0 12.7117,-28.60131 12.7117,-28.60131 
l 23.30477,24.89373 z"
+           id="path14690"
+           sodipodi:nodetypes="cccssccc"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.43800001;fill:#0f0f0f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.23723125;marker:none;filter:url(#filter14700)"
 />
+        <path
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.43800001;fill:#0f0f0f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.23723125;marker:none;filter:url(#filter14766)"
+           sodipodi:nodetypes="cccssccc"
+           id="path14756"
+           d="m 440.13952,169.08069 -72.03293,69.91431 32.83854,1.05931 c 0,0 -13.771,28.60131 
-13.771,28.60131 -4.23723,12.71169 14.83031,17.47858 18.00823,7.94481 0,0 12.7117,-28.60131 12.7117,-28.60131 
l 23.30477,24.89373 z"
+           inkscape:connector-curvature="0" />
+        <g
+           id="g5705"
+           style="opacity:0.66763006">
+          <circle
+             r="18.159569"
+             cy="169.90556"
+             cx="438.60989"
+             id="path3066-4"
+             
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;stroke:#ffffff;stroke-width:8.47446537;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
 />
+          <circle
+             r="35.766994"
+             cy="169.90559"
+             cx="438.60992"
+             id="path3941-2"
+             
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;stroke:#ffffff;stroke-width:4.23723125;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
 />
+          <circle
+             r="52.150208"
+             cy="169.90562"
+             cx="438.60995"
+             id="path3943-0"
+             
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;stroke:#ffffff;stroke-width:2.11861587;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
 />
+        </g>
+        <path
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient4851-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.23723125;marker:none"
+           sodipodi:nodetypes="cccssccc"
+           id="path3970-7"
+           d="m 439.13952,163.02004 -72.03293,69.91431 32.83854,1.05931 c 0,0 -13.771,28.60131 
-13.771,28.60131 -4.23723,12.71169 14.83031,17.47858 18.00823,7.94481 0,0 12.7117,-28.60131 12.7117,-28.60131 
l 23.30477,24.89373 z"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient8209);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.23723125;marker:none"
+           d="m 439.14026,163.0206 -72.03321,69.91406 32.83789,1.05859 -13.77148,28.60157 c -2.04386,6.13157 
1.33828,10.40765 5.74024,12.1289 l 47.23046,-111.32617 z"
+           id="path8196"
+           inkscape:connector-curvature="0" />
+        <path
+           transform="matrix(4.2372312,0,0,4.2372312,357.57282,87.809184)"
+           d="m 19.25,17.75 -17,16.5 7.75,0.25 c 0,0 -3.25,6.75 -3.25,6.75 -1,3 3.5,4.125 4.25,1.875 0,0 
3,-6.75 3,-6.75 l 5.5,5.875 z"
+           id="path5952"
+           sodipodi:nodetypes="cccssccc"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;stroke:url(#linearGradient5986);stroke-width:0.11815892;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#filter6010)"
+           clip-path="url(#clipPath5956-9-3)"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient6008);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:new"
+           d="m 401.45805,274.64352 16.5,-34.5 8,7.75 -8.25,-11.5 z"
+           id="path6000"
+           inkscape:connector-curvature="0" />
+      </g>
+      <path
+         
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#radialGradient7669);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="M 62,123.5 202,-12.5 199,-4 67.5,123.5 Z"
+         id="path7661"
+         inkscape:connector-curvature="0" />
+    </g>
+  </g>
+</svg>
diff --git a/embed/ephy-about-handler.c b/embed/ephy-about-handler.c
index 1cf9d49..05f6626 100644
--- a/embed/ephy-about-handler.c
+++ b/embed/ephy-about-handler.c
@@ -267,8 +267,8 @@ ephy_about_handler_handle_about (EphyAboutHandler       *handler,
   version = g_strdup_printf (_("Version %s"), VERSION);
 
   icon_info = gtk_icon_theme_lookup_icon (gtk_icon_theme_get_default (),
-                                          "web-browser",
-                                          256,
+                                          "org.gnome.Epiphany",
+                                          512,
                                           GTK_ICON_LOOKUP_GENERIC_FALLBACK);
 
   data = g_strdup_printf ("<html><head><title>%s</title>"
diff --git a/src/ephy-main.c b/src/ephy-main.c
index 0aaa7be..1ddaf78 100644
--- a/src/ephy-main.c
+++ b/src/ephy-main.c
@@ -407,7 +407,7 @@ main (int   argc,
     g_set_prgname ("epiphany");
     g_set_application_name (_("Web"));
 
-    gtk_window_set_default_icon_name ("web-browser");
+    gtk_window_set_default_icon_name ("org.gnome.Epiphany");
   }
 
   _ephy_shell_create_instance (mode);
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 8437ba3..2ee2337 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -3107,7 +3107,7 @@ ephy_window_new (void)
 {
   return g_object_new (EPHY_TYPE_WINDOW,
                        "application", GTK_APPLICATION (ephy_shell_get_default ()),
-                       "icon-name", "web-browser",
+                       "icon-name", "org.gnome.Epiphany",
                        NULL);
 }
 
diff --git a/src/window-commands.c b/src/window-commands.c
index ab007d1..0fdb5de 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -265,7 +265,7 @@ window_cmd_show_about (GSimpleAction *action,
                           * line seperated by newlines (\n).
                           */
                          "translator-credits", _("translator-credits"),
-                         "logo-icon-name", "web-browser",
+                         "logo-icon-name", "org.gnome.Epiphany",
                          "website", "https://wiki.gnome.org/Apps/Web";,
                          "website-label", _("Web Website"),
                          "license-type", GTK_LICENSE_GPL_2_0,


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