summaryrefslogtreecommitdiff
path: root/icons
diff options
context:
space:
mode:
authorBenedikt Meurer <benny@xfce.org>2006-02-05 23:32:01 +0000
committerBenedikt Meurer <benny@xfce.org>2006-02-05 23:32:01 +0000
commit3dbb696937e1501413fee2c60ebc592f5bf2e9eb (patch)
tree94c5c33dfaa3a90bc314467002402687b2d7a9e9 /icons
parent543b3dab0a3e8c47efe26237ed8232e6cd546373 (diff)
downloadthunar-3dbb696937e1501413fee2c60ebc592f5bf2e9eb.tar.gz
2006-02-05 Benedikt Meurer <benny@xfce.org>
* thunar/thunar-chooser-dialog.{c,h}: Add a new convenience function thunar_show_chooser_dialog(). * thunar/thunar-launcher.c(thunar_launcher_open_files), thunar/thunar-file.c(thunar_file_launch): Use the new function thunar_show_chooser_dialog() here. * thunar/thunar-gtk-extensions.{c,h}: Add a new convenience function thunar_gtk_ui_manager_get_action_by_name(), which is unfortunately missing from GtkUIManager. * thunar/thunar-details-view.c, thunar/thunar-icon-view.c: Use thunar_gtk_ui_manager_get_action_by_name() to locate the launcher actions in the UI manager. * thunar/thunar-file.{c,h}: Add a new convenience function thunar_file_list_get_applications(), which can be used to determine the set of applications that can be used to open a given set of files. * thunar-uca/thunar-uca-chooser.c(thunar_uca_chooser_delete_clicked): Save the model after removing a custom action. * thunar/thunar-launcher.{c,h}, thunar/thunar-chooser-dialog.{c,h}, thunar/thunar-launcher-ui.xml, thunar/Makefile.am, thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c, thunar/thunar-window-ui.xml, thunar/thunar-window.c: Replace the previous ThunarLauncher class with a more advanced one, which has access to the GtkUIManager. The new implementation also displays which application will be used to open files, based on Jonathan Blandfords suggestion for Nautilus. Bug #1428. * thunar-vfs/thunar-vfs-mime-action-private.h, thunar-vfs/Makefile.am, thunar-vfs/thunar-vfs-mime-action.{c,h},thunar-vfs/thunar-vfs.symbols, thunar-vfs/thunar-vfs-mime-handler-private.h, thunar-vfs/thunar-vfs.h, thunar-vfs/thunar-vfs-mime-handler.{c,h}, thunar-vfs/thunar-vfs-mime-application.{c,h}, thunar-vfs/thunar-vfs-mime-database.c: Import ThunarVfsMimeAction class to support desktop actions in Thunar. The abstract base class ThunarVfsMimeHandler is used to avoid duplicating the existing code for ThunarVfsMimeApplication in ThunarVfsMimeAction, and it will also make it easier to handle both ThunarVfsMimeApplication's and ThunarVfsMimeAction's in the user interface code. Bug #1374. * docs/reference/thunar-vfs/: Update the Thunar-VFS API docs. * thunar/thunar-chooser-button.c, thunar/thunar-chooser-dialog.c, thunar/thunar-chooser-model.c, thunar/thunar-file.c, thunar/thunar-launcher.c: Update to the new ThunarVfsMimeHandler and ThunarVfsMimeApplication interface. * thunar/thunar-launcher.c: Display desktop actions in the file context menu and the "File" menu, based on the newly added ThunarVfsMimeAction class. Bug #1375. * po/POTFILES.in: Update the file list. * po/Thunar.pot, po/*.po: Merge new strings. * po/de.po: Update german translations. * configure.in.in, icons/: Change the Thunar icon to the new one provided by Young Hahn <youngjin.hahn@gmail.com>. Any artists around to make it look even better? (Old svn revision: 19750)
Diffstat (limited to 'icons')
-rw-r--r--icons/16x16/Makefile.am11
-rw-r--r--icons/16x16/Thunar.pngbin0 -> 777 bytes
-rw-r--r--icons/24x24/Thunar.pngbin1951 -> 1300 bytes
-rw-r--r--icons/48x48/Thunar.pngbin5103 -> 3440 bytes
-rw-r--r--icons/Makefile.am3
-rw-r--r--icons/scalable/Makefile.am10
-rw-r--r--icons/scalable/Thunar.svg1949
7 files changed, 1969 insertions, 4 deletions
diff --git a/icons/16x16/Makefile.am b/icons/16x16/Makefile.am
index 9936dc01..7556b940 100644
--- a/icons/16x16/Makefile.am
+++ b/icons/16x16/Makefile.am
@@ -1,12 +1,17 @@
# $Id$
-iconsdir = $(datadir)/icons/hicolor/16x16/stock/generic
-icons_DATA = \
+appsdir = $(datadir)/icons/hicolor/16x16/apps
+apps_DATA = \
+ Thunar.png
+
+stockdir = $(datadir)/icons/hicolor/16x16/stock/generic
+stock_DATA = \
stock_thunar-group.png \
stock_thunar-templates.png \
stock_thunar-user.png
EXTRA_DIST = \
- $(icons_DATA)
+ $(apps_DATA) \
+ $(stock_DATA)
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/icons/16x16/Thunar.png b/icons/16x16/Thunar.png
new file mode 100644
index 00000000..c711b5e1
--- /dev/null
+++ b/icons/16x16/Thunar.png
Binary files differ
diff --git a/icons/24x24/Thunar.png b/icons/24x24/Thunar.png
index de5f3131..95d0225d 100644
--- a/icons/24x24/Thunar.png
+++ b/icons/24x24/Thunar.png
Binary files differ
diff --git a/icons/48x48/Thunar.png b/icons/48x48/Thunar.png
index 367a3735..043a5922 100644
--- a/icons/48x48/Thunar.png
+++ b/icons/48x48/Thunar.png
Binary files differ
diff --git a/icons/Makefile.am b/icons/Makefile.am
index 18dcae1e..c9a589c3 100644
--- a/icons/Makefile.am
+++ b/icons/Makefile.am
@@ -3,6 +3,7 @@
SUBDIRS = \
16x16 \
24x24 \
- 48x48
+ 48x48 \
+ scalable
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/icons/scalable/Makefile.am b/icons/scalable/Makefile.am
new file mode 100644
index 00000000..05004f6f
--- /dev/null
+++ b/icons/scalable/Makefile.am
@@ -0,0 +1,10 @@
+# $Id$
+
+appsdir = $(datadir)/icons/hicolor/scalable/apps
+apps_DATA = \
+ Thunar.svg
+
+EXTRA_DIST = \
+ $(apps_DATA)
+
+# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/icons/scalable/Thunar.svg b/icons/scalable/Thunar.svg
new file mode 100644
index 00000000..4d73a861
--- /dev/null
+++ b/icons/scalable/Thunar.svg
@@ -0,0 +1,1949 @@
+<?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://web.resource.org/cc/"
+ 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://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48.000000px"
+ height="48.000000px"
+ id="svg1314"
+ sodipodi:version="0.32"
+ inkscape:version="0.43"
+ sodipodi:docbase="/tmp"
+ sodipodi:docname="thunar.svg"
+ inkscape:export-filename="/tmp/thunar_48.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs1316">
+ <linearGradient
+ id="linearGradient4370"
+ inkscape:collect="always">
+ <stop
+ id="stop4372"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1.0000000" />
+ <stop
+ id="stop4374"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4364"
+ inkscape:collect="always">
+ <stop
+ id="stop4366"
+ offset="0"
+ style="stop-color:#eeeeec;stop-opacity:1.0000000" />
+ <stop
+ id="stop4368"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1.0000000" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4352"
+ inkscape:collect="always">
+ <stop
+ id="stop4354"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1.0000000" />
+ <stop
+ id="stop4356"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1.0000000" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4346"
+ inkscape:collect="always">
+ <stop
+ id="stop4348"
+ offset="0"
+ style="stop-color:#555753;stop-opacity:1.0000000" />
+ <stop
+ id="stop4350"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:1.0000000" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4334"
+ inkscape:collect="always">
+ <stop
+ id="stop4336"
+ offset="0"
+ style="stop-color:#d3d7cf;stop-opacity:1.0000000" />
+ <stop
+ id="stop4338"
+ offset="1"
+ style="stop-color:#2e3436;stop-opacity:1.0000000" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4327">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1.0000000"
+ offset="0"
+ id="stop4329" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1.0000000"
+ offset="1"
+ id="stop4331" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4321"
+ inkscape:collect="always">
+ <stop
+ id="stop4323"
+ offset="0"
+ style="stop-color:#fbfbfb;stop-opacity:1.0000000" />
+ <stop
+ id="stop4325"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0.0000000" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4313">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1.0000000"
+ offset="0"
+ id="stop4315" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0.0000000"
+ offset="1"
+ id="stop4317" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4291"
+ inkscape:collect="always">
+ <stop
+ id="stop4293"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1.0000000" />
+ <stop
+ id="stop4295"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1.0000000" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4285"
+ inkscape:collect="always">
+ <stop
+ id="stop4287"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1.0000000" />
+ <stop
+ id="stop4289"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1.0000000" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3309">
+ <stop
+ style="stop-color:#8f5902;stop-opacity:1.0000000"
+ offset="0"
+ id="stop3311" />
+ <stop
+ style="stop-color:#3f2700;stop-opacity:1.0000000"
+ offset="1"
+ id="stop3313" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3301">
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1.0000000"
+ offset="0"
+ id="stop3303" />
+ <stop
+ style="stop-color:#1d2122;stop-opacity:1.0000000"
+ offset="1"
+ id="stop3305" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3293">
+ <stop
+ style="stop-color:#555753;stop-opacity:1.0000000"
+ offset="0"
+ id="stop3295" />
+ <stop
+ style="stop-color:#1d2122;stop-opacity:1.0000000"
+ offset="1"
+ id="stop3297" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3285">
+ <stop
+ style="stop-color:#555753;stop-opacity:1.0000000"
+ offset="0"
+ id="stop3287" />
+ <stop
+ style="stop-color:#1d2122;stop-opacity:1.0000000"
+ offset="1"
+ id="stop3289" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3213">
+ <stop
+ style="stop-color:#1f2020;stop-opacity:1;"
+ offset="0"
+ id="stop3215" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1.0000000"
+ offset="1"
+ id="stop3217" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3205">
+ <stop
+ style="stop-color:#000000;stop-opacity:1.0000000"
+ offset="0"
+ id="stop3207" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1.0000000"
+ offset="1"
+ id="stop3209" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3148">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1.0000000"
+ offset="0"
+ id="stop3150" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1.0000000"
+ offset="1"
+ id="stop3152" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3140">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1.0000000"
+ offset="0"
+ id="stop3142" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1.0000000"
+ offset="1"
+ id="stop3144" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3128">
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1.0000000"
+ offset="0"
+ id="stop3130" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:0.0000000"
+ offset="1"
+ id="stop3132" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3063">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1.0000000"
+ offset="0"
+ id="stop3065" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1.0000000"
+ offset="1"
+ id="stop3067" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3047">
+ <stop
+ style="stop-color:#fbfbfb;stop-opacity:1.0000000"
+ offset="0"
+ id="stop3049" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1.0000000"
+ offset="1"
+ id="stop3051" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2836">
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1;"
+ offset="0"
+ id="stop2838" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:0;"
+ offset="1"
+ id="stop2840" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2811">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop2813" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:0;"
+ offset="1"
+ id="stop2815" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2801">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop2803" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1.0000000"
+ offset="1"
+ id="stop2805" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2720">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1.0000000"
+ offset="0"
+ id="stop2722" />
+ <stop
+ style="stop-color:#060606;stop-opacity:1.0000000"
+ offset="1"
+ id="stop2724" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2710">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop2712" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1.0000000"
+ offset="1"
+ id="stop2714" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2700">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop2702" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1.0000000"
+ offset="1"
+ id="stop2704" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2670"
+ inkscape:collect="always">
+ <stop
+ id="stop2672"
+ offset="0"
+ style="stop-color:#d3d7cf;stop-opacity:1;" />
+ <stop
+ id="stop2674"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1.0000000" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2660">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1.0000000"
+ offset="0"
+ id="stop2662" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1.0000000"
+ offset="1"
+ id="stop2664" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2645">
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="0"
+ id="stop2647" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1.0000000"
+ offset="1"
+ id="stop2649" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2600">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1.0000000"
+ offset="0"
+ id="stop2602" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1.0000000"
+ offset="1"
+ id="stop2604" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2570">
+ <stop
+ style="stop-color:#898b86;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop2572" />
+ <stop
+ id="stop2598"
+ offset="0.50000000"
+ style="stop-color:#5e625f;stop-opacity:1.0000000;" />
+ <stop
+ style="stop-color:#1d2122;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop2574" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2536">
+ <stop
+ style="stop-color:#f4dbb3;stop-opacity:1;"
+ offset="0"
+ id="stop2538" />
+ <stop
+ style="stop-color:#f4dbb3;stop-opacity:0;"
+ offset="1"
+ id="stop2540" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2516">
+ <stop
+ style="stop-color:#e9b96e;stop-opacity:1.0000000"
+ offset="0"
+ id="stop2518" />
+ <stop
+ style="stop-color:#c17d11;stop-opacity:1.0000000"
+ offset="1"
+ id="stop2520" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2508">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop2510" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1.0000000"
+ offset="1"
+ id="stop2512" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2498">
+ <stop
+ style="stop-color:#555753;stop-opacity:1.0000000"
+ offset="0"
+ id="stop2500" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1.0000000"
+ offset="1"
+ id="stop2502" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2488">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1.0000000"
+ offset="0"
+ id="stop2490" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1.0000000"
+ offset="1"
+ id="stop2492" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3140"
+ id="linearGradient3913"
+ gradientUnits="userSpaceOnUse"
+ x1="10.243904"
+ y1="31.474367"
+ x2="36.256096"
+ y2="45.828430" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3148"
+ id="linearGradient3915"
+ gradientUnits="userSpaceOnUse"
+ x1="10.243904"
+ y1="31.474367"
+ x2="36.256096"
+ y2="45.828430" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3063"
+ id="linearGradient3917"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(4.144551,0.750000)"
+ x1="29.824352"
+ y1="40.151402"
+ x2="22.636547"
+ y2="34.151402" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3047"
+ id="linearGradient3919"
+ gradientUnits="userSpaceOnUse"
+ x1="38.330265"
+ y1="41.020145"
+ x2="39.851955"
+ y2="44.202126" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3128"
+ id="radialGradient3921"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.000000,0.000000,0.000000,0.312500,0.000000,25.43750)"
+ cx="24.000000"
+ cy="37.000000"
+ fx="24.000000"
+ fy="37.000000"
+ r="16.000000" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2508"
+ id="linearGradient3978"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.996611,0.284770)"
+ x1="12.073041"
+ y1="36.172928"
+ x2="15.983243"
+ y2="29.540051" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2720"
+ id="linearGradient3980"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.699309,-0.607131)"
+ x1="9.1500913"
+ y1="30.290050"
+ x2="23.950090"
+ y2="30.700176" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2600"
+ id="linearGradient3983"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.075201,0.000000,0.000000,1.075201,-2.642295,5.323943)"
+ x1="24.655788"
+ y1="28.917265"
+ x2="32.797878"
+ y2="36.090683" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2710"
+ id="linearGradient3985"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.075201,0.000000,0.000000,1.075201,-2.642295,5.323943)"
+ x1="24.655788"
+ y1="28.917265"
+ x2="32.620346"
+ y2="31.583088" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3301"
+ id="linearGradient3988"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.182708,0.000000,0.000000,1.182708,-7.256195,-0.599871)"
+ x1="23.428712"
+ y1="34.088126"
+ x2="38.556122"
+ y2="34.088126" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2700"
+ id="linearGradient3991"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.996611,0.284770)"
+ x1="12.686795"
+ y1="28.186703"
+ x2="8.3465776"
+ y2="36.886799" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2516"
+ id="linearGradient4028"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.996611,-2.390932)"
+ x1="13.241320"
+ y1="7.6370878"
+ x2="18.305454"
+ y2="12.233282" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3309"
+ id="linearGradient4030"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.182708,0.000000,0.000000,1.182708,-7.256195,-0.599871)"
+ x1="17.547098"
+ y1="4.0808506"
+ x2="22.490458"
+ y2="7.7058506" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2536"
+ id="linearGradient4032"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.996611,-2.390932)"
+ x1="12.904699"
+ y1="8.9323502"
+ x2="20.240931"
+ y2="7.0761948" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3285"
+ id="linearGradient4034"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.182708,0.000000,0.000000,1.182708,-7.256195,-0.599871)"
+ x1="14.434047"
+ y1="9.3562202"
+ x2="38.186804"
+ y2="16.692453" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2488"
+ id="radialGradient4036"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.267414,0.315515,-0.251438,1.010024,-4.402386,-1.475035)"
+ cx="16.791676"
+ cy="11.707835"
+ fx="16.791676"
+ fy="11.707835"
+ r="14.400000" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2645"
+ id="linearGradient4038"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.996611,0.582070)"
+ x1="15.563757"
+ y1="7.9082789"
+ x2="25.160458"
+ y2="13.185163" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2570"
+ id="radialGradient4040"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.763515,1.252381e-14,-1.119389e-14,0.677382,3.694341,6.715782)"
+ cx="15.621862"
+ cy="20.759830"
+ fx="15.621862"
+ fy="20.759830"
+ r="0.84002739" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3293"
+ id="linearGradient4042"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.182708,0.000000,0.000000,1.182708,-7.256195,-0.599871)"
+ x1="8.2106591"
+ y1="25.674127"
+ x2="35.615616"
+ y2="28.060614" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2570"
+ id="radialGradient4044"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.763515,1.252381e-14,-1.119389e-14,0.677382,3.694341,6.715782)"
+ cx="15.621862"
+ cy="20.759830"
+ fx="15.621862"
+ fy="20.759830"
+ r="0.84002739" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2670"
+ id="radialGradient4046"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.370840,0.235504,-0.120034,-0.698704,37.75370,36.40946)"
+ cx="16.236513"
+ cy="19.748014"
+ fx="16.236513"
+ fy="19.748014"
+ r="15.400000" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2660"
+ id="linearGradient4048"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.996611,0.582070)"
+ x1="12.292107"
+ y1="20.153751"
+ x2="17.634300"
+ y2="30.788061" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2498"
+ id="linearGradient4050"
+ gradientUnits="userSpaceOnUse"
+ x1="30.486519"
+ y1="20.619411"
+ x2="29.230413"
+ y2="13.193694" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3205"
+ id="linearGradient4052"
+ gradientUnits="userSpaceOnUse"
+ x1="27.280222"
+ y1="21.713293"
+ x2="26.293383"
+ y2="13.864183" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2836"
+ id="linearGradient4054"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.996611,-2.390932)"
+ x1="26.779949"
+ y1="18.479218"
+ x2="29.489973"
+ y2="22.055546" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2516"
+ id="linearGradient4056"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.996611,-0.309830)"
+ x1="33.104156"
+ y1="10.245938"
+ x2="38.245445"
+ y2="16.779818" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3309"
+ id="linearGradient4058"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.182708,0.000000,0.000000,1.182708,-7.256195,-0.599871)"
+ x1="31.672344"
+ y1="10.160965"
+ x2="36.539341"
+ y2="19.535965" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2536"
+ id="linearGradient4060"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.996611,-0.309830)"
+ x1="31.184426"
+ y1="12.113161"
+ x2="40.886247"
+ y2="12.113161" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2801"
+ id="linearGradient4062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.996611,-2.390932)"
+ x1="18.743164"
+ y1="8.7794323"
+ x2="22.803753"
+ y2="11.765332" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3213"
+ id="linearGradient4064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.182708,0.000000,0.000000,1.182708,-7.256195,-0.599871)"
+ x1="20.493164"
+ y1="15.739577"
+ x2="14.725269"
+ y2="11.408548" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2811"
+ id="linearGradient4066"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.189201,0.000000,0.000000,1.189201,-5.996611,-2.390932)"
+ x1="13.788582"
+ y1="10.905776"
+ x2="21.589458"
+ y2="23.456921" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2570"
+ id="radialGradient4068"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.763515,1.252381e-14,-1.119389e-14,0.677382,3.694341,6.715782)"
+ cx="15.621862"
+ cy="20.759830"
+ fx="15.621862"
+ fy="20.759830"
+ r="0.84002739" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2570"
+ id="radialGradient4070"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.763515,1.252381e-14,-1.119389e-14,0.677382,3.694341,6.715782)"
+ cx="15.621862"
+ cy="20.759830"
+ fx="15.621862"
+ fy="20.759830"
+ r="0.84002739" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2811"
+ id="linearGradient4075"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,-0.850645)"
+ x1="13.788582"
+ y1="10.905776"
+ x2="21.589458"
+ y2="23.456921" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2801"
+ id="linearGradient4078"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,-0.850645)"
+ x1="18.743164"
+ y1="8.7794323"
+ x2="22.803753"
+ y2="11.765332" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3213"
+ id="linearGradient4080"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.241684,0.000000,0.000000,1.241684,-9.523160,1.029727)"
+ x1="20.493164"
+ y1="15.739577"
+ x2="14.725269"
+ y2="11.408548" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2536"
+ id="linearGradient4083"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,1.334231)"
+ x1="31.184426"
+ y1="12.113161"
+ x2="40.886247"
+ y2="12.113161" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2516"
+ id="linearGradient4086"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,1.334231)"
+ x1="33.104156"
+ y1="10.245938"
+ x2="38.245445"
+ y2="16.779818" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3309"
+ id="linearGradient4088"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.241684,0.000000,0.000000,1.241684,-9.523160,1.029727)"
+ x1="31.672344"
+ y1="10.160965"
+ x2="36.539341"
+ y2="19.535965" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2836"
+ id="linearGradient4091"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,-0.850645)"
+ x1="26.779949"
+ y1="18.479218"
+ x2="29.489973"
+ y2="22.055546" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2670"
+ id="radialGradient4095"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.439197,0.247247,-0.126019,-0.733545,37.73115,39.88453)"
+ cx="16.236513"
+ cy="19.748014"
+ fx="16.236513"
+ fy="19.748014"
+ r="15.400000" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2660"
+ id="linearGradient4097"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,2.270606)"
+ x1="12.292107"
+ y1="20.153751"
+ x2="17.634300"
+ y2="30.788061" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3293"
+ id="linearGradient4101"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.241684,0.000000,0.000000,1.241684,-9.523160,1.029727)"
+ x1="8.2106591"
+ y1="25.674127"
+ x2="35.615616"
+ y2="28.060614" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2488"
+ id="radialGradient4105"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.330614,0.331248,-0.263976,1.060389,-6.527046,0.110923)"
+ cx="16.791676"
+ cy="11.707835"
+ fx="16.791676"
+ fy="11.707835"
+ r="14.400000" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2645"
+ id="linearGradient4107"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,2.270606)"
+ x1="15.563757"
+ y1="7.9082789"
+ x2="25.160458"
+ y2="13.185163" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3285"
+ id="linearGradient4110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.241684,0.000000,0.000000,1.241684,-9.523160,1.029727)"
+ x1="14.434047"
+ y1="9.3562202"
+ x2="38.186804"
+ y2="16.692453" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2536"
+ id="linearGradient4113"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,-0.850645)"
+ x1="12.904699"
+ y1="8.9323502"
+ x2="20.240931"
+ y2="7.0761948" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2516"
+ id="linearGradient4116"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,-0.850645)"
+ x1="13.241320"
+ y1="7.6370878"
+ x2="18.305454"
+ y2="12.233282" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3309"
+ id="linearGradient4118"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.241684,0.000000,0.000000,1.241684,-9.523160,1.029727)"
+ x1="17.547098"
+ y1="4.0808506"
+ x2="22.490458"
+ y2="7.7058506" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2516"
+ id="linearGradient4138"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,-0.850645)"
+ x1="13.241320"
+ y1="7.6370878"
+ x2="18.305454"
+ y2="12.233282" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3309"
+ id="linearGradient4140"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.241684,0.000000,0.000000,1.241684,-9.523160,1.029727)"
+ x1="17.547098"
+ y1="4.0808506"
+ x2="22.490458"
+ y2="7.7058506" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2536"
+ id="linearGradient4142"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,-0.850645)"
+ x1="12.904699"
+ y1="8.9323502"
+ x2="20.240931"
+ y2="7.0761948" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3285"
+ id="linearGradient4144"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.241684,0.000000,0.000000,1.241684,-9.523160,1.029727)"
+ x1="14.434047"
+ y1="9.3562202"
+ x2="38.186804"
+ y2="16.692453" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2488"
+ id="radialGradient4146"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.330614,0.331248,-0.263976,1.060389,-6.527046,0.110923)"
+ cx="16.791676"
+ cy="11.707835"
+ fx="16.791676"
+ fy="11.707835"
+ r="14.400000" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2645"
+ id="linearGradient4148"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,2.270606)"
+ x1="15.563757"
+ y1="7.9082789"
+ x2="25.160458"
+ y2="13.185163" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2570"
+ id="radialGradient4150"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.763515,1.252381e-14,-1.119389e-14,0.677382,3.694341,6.715782)"
+ cx="15.621862"
+ cy="20.759830"
+ fx="15.621862"
+ fy="20.759830"
+ r="0.84002739" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3293"
+ id="linearGradient4152"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.241684,0.000000,0.000000,1.241684,-9.523160,1.029727)"
+ x1="8.2106591"
+ y1="25.674127"
+ x2="35.615616"
+ y2="28.060614" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2570"
+ id="radialGradient4154"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.763515,1.252381e-14,-1.119389e-14,0.677382,3.694341,6.715782)"
+ cx="15.621862"
+ cy="20.759830"
+ fx="15.621862"
+ fy="20.759830"
+ r="0.84002739" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2670"
+ id="radialGradient4156"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.439197,0.247247,-0.126019,-0.733545,37.73115,39.88453)"
+ cx="16.236513"
+ cy="19.748014"
+ fx="16.236513"
+ fy="19.748014"
+ r="15.400000" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2660"
+ id="linearGradient4158"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,2.270606)"
+ x1="12.292107"
+ y1="20.153751"
+ x2="17.634300"
+ y2="30.788061" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4346"
+ id="linearGradient4160"
+ gradientUnits="userSpaceOnUse"
+ x1="30.486519"
+ y1="20.619411"
+ x2="29.230413"
+ y2="13.193694" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3205"
+ id="linearGradient4162"
+ gradientUnits="userSpaceOnUse"
+ x1="27.280222"
+ y1="21.713293"
+ x2="26.293383"
+ y2="13.864183" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2836"
+ id="linearGradient4164"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,-0.850645)"
+ x1="26.779949"
+ y1="18.479218"
+ x2="29.489973"
+ y2="22.055546" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2516"
+ id="linearGradient4166"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,1.334231)"
+ x1="33.104156"
+ y1="10.245938"
+ x2="38.245445"
+ y2="16.779818" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3309"
+ id="linearGradient4168"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.241684,0.000000,0.000000,1.241684,-9.523160,1.029727)"
+ x1="31.672344"
+ y1="10.160965"
+ x2="36.539341"
+ y2="19.535965" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2536"
+ id="linearGradient4170"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,1.334231)"
+ x1="31.184426"
+ y1="12.113161"
+ x2="40.886247"
+ y2="12.113161" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2801"
+ id="linearGradient4172"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,-0.850645)"
+ x1="18.743164"
+ y1="8.7794323"
+ x2="22.803753"
+ y2="11.765332" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3213"
+ id="linearGradient4174"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.241684,0.000000,0.000000,1.241684,-9.523160,1.029727)"
+ x1="20.493164"
+ y1="15.739577"
+ x2="14.725269"
+ y2="11.408548" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2811"
+ id="linearGradient4176"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.248501,0.000000,0.000000,1.248501,-8.200767,-0.850645)"
+ x1="13.788582"
+ y1="10.905776"
+ x2="21.589458"
+ y2="23.456921" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2570"
+ id="radialGradient4178"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.763515,1.252381e-14,-1.119389e-14,0.677382,3.694341,6.715782)"
+ cx="15.621862"
+ cy="20.759830"
+ fx="15.621862"
+ fy="20.759830"
+ r="0.84002739" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2570"
+ id="radialGradient4180"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.763515,1.252381e-14,-1.119389e-14,0.677382,3.694341,6.715782)"
+ cx="15.621862"
+ cy="20.759830"
+ fx="15.621862"
+ fy="20.759830"
+ r="0.84002739" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4370"
+ id="linearGradient4191"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.226149,0,0,1.226149,-6.471722,-2.035867)"
+ x1="13.788582"
+ y1="10.905776"
+ x2="21.589458"
+ y2="23.456921" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2801"
+ id="linearGradient4194"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.226149,0,0,1.226149,-6.471722,-2.035867)"
+ x1="18.743164"
+ y1="8.7794323"
+ x2="22.803753"
+ y2="11.765332" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3213"
+ id="linearGradient4196"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.219454,0,0,1.219454,-7.77044,-0.189159)"
+ x1="20.493164"
+ y1="15.739577"
+ x2="14.725269"
+ y2="11.408548" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2536"
+ id="linearGradient4199"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.226149,0,0,1.226149,-6.471722,0.109893)"
+ x1="33.223328"
+ y1="15.477352"
+ x2="45.881561"
+ y2="4.7731071" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2516"
+ id="linearGradient4202"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.226149,0,0,1.226149,-6.471722,0.109893)"
+ x1="33.104156"
+ y1="10.245938"
+ x2="38.245445"
+ y2="16.779818" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3309"
+ id="linearGradient4204"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.219454,0,0,1.219454,-7.77044,-0.189159)"
+ x1="31.672344"
+ y1="10.160965"
+ x2="36.539341"
+ y2="19.535965" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2836"
+ id="linearGradient4207"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.226149,0,0,1.226149,-6.471722,-2.035867)"
+ x1="26.779949"
+ y1="18.479218"
+ x2="29.489973"
+ y2="22.055546" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4327"
+ id="radialGradient4211"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.413431,0.242821,-0.123763,-0.720412,38.63788,37.97003)"
+ cx="16.236513"
+ cy="19.748014"
+ fx="16.236513"
+ fy="19.748014"
+ r="15.400000" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4352"
+ id="linearGradient4213"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.226149,0,0,1.226149,-6.471722,1.029504)"
+ x1="12.292107"
+ y1="20.153751"
+ x2="17.634300"
+ y2="30.788061" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3293"
+ id="linearGradient4217"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.219454,0.000000,0.000000,1.219454,-7.770440,-0.189159)"
+ x1="8.2106591"
+ y1="25.674127"
+ x2="35.615616"
+ y2="28.060614" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4334"
+ id="radialGradient4221"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.306792,0.325318,-0.25925,1.041405,-4.827965,-1.091514)"
+ cx="16.123058"
+ cy="11.746952"
+ fx="16.123058"
+ fy="11.746952"
+ r="14.400000" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4364"
+ id="linearGradient4223"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.226149,0,0,1.226149,-6.471722,1.029504)"
+ x1="15.563757"
+ y1="7.9082789"
+ x2="25.160458"
+ y2="13.185163" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3285"
+ id="linearGradient4226"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.219454,0,0,1.219454,-7.77044,-0.189159)"
+ x1="14.434047"
+ y1="9.3562202"
+ x2="38.186804"
+ y2="16.692453" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2536"
+ id="linearGradient4229"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.226149,0,0,1.226149,-6.471722,-2.035867)"
+ x1="12.904699"
+ y1="8.9323502"
+ x2="20.240931"
+ y2="7.0761948" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2516"
+ id="linearGradient4232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.226149,0,0,1.226149,-6.471722,-2.035867)"
+ x1="13.241320"
+ y1="7.6370878"
+ x2="18.305454"
+ y2="12.233282" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3309"
+ id="linearGradient4234"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.219454,0,0,1.219454,-7.77044,-0.189159)"
+ x1="17.547098"
+ y1="4.0808506"
+ x2="22.490458"
+ y2="7.7058506" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2508"
+ id="linearGradient4238"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.226149,0,0,1.226149,-6.471722,1.029504)"
+ x1="12.292107"
+ y1="20.153751"
+ x2="17.634300"
+ y2="30.788061" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3047"
+ id="linearGradient4242"
+ gradientUnits="userSpaceOnUse"
+ x1="38.330265"
+ y1="41.020145"
+ x2="39.851955"
+ y2="44.202126"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-4.532078,-2.369861)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3063"
+ id="linearGradient4246"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-0.131319,-1.573498)"
+ x1="29.824352"
+ y1="40.151402"
+ x2="22.636547"
+ y2="34.151402" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3140"
+ id="linearGradient4249"
+ gradientUnits="userSpaceOnUse"
+ x1="10.243904"
+ y1="31.474367"
+ x2="36.256096"
+ y2="45.828430"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-4.532078,-2.369861)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3148"
+ id="linearGradient4251"
+ gradientUnits="userSpaceOnUse"
+ x1="10.243904"
+ y1="31.474367"
+ x2="36.256096"
+ y2="45.828430"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-4.532078,-2.369861)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3140"
+ id="linearGradient4260"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-4.532078,-2.369861)"
+ x1="10.243904"
+ y1="31.474367"
+ x2="36.256096"
+ y2="45.828430" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3148"
+ id="linearGradient4262"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-4.532078,-2.369861)"
+ x1="10.243904"
+ y1="31.474367"
+ x2="36.256096"
+ y2="45.828430" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3063"
+ id="linearGradient4264"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-0.131319,-1.573498)"
+ x1="29.824352"
+ y1="40.151402"
+ x2="22.636547"
+ y2="34.151402" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3047"
+ id="linearGradient4266"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-4.532078,-2.369861)"
+ x1="38.330265"
+ y1="41.020145"
+ x2="39.851955"
+ y2="44.202126" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3128"
+ id="radialGradient4268"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.000000,0.000000,0.000000,0.312500,0.000000,25.43750)"
+ cx="24.000000"
+ cy="37.000000"
+ fx="24.000000"
+ fy="37.000000"
+ r="16.000000" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4321"
+ id="linearGradient4272"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-4.532078,-0.869861)"
+ x1="38.330265"
+ y1="41.020145"
+ x2="39.851955"
+ y2="44.202126" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3063"
+ id="linearGradient4276"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-0.131319,-7.349800e-2)"
+ x1="29.824352"
+ y1="40.151402"
+ x2="22.636547"
+ y2="34.151402" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4291"
+ id="linearGradient4279"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-4.532078,-0.869861)"
+ x1="10.243904"
+ y1="31.474367"
+ x2="36.256096"
+ y2="45.828430" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4285"
+ id="linearGradient4281"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.061818,0.000000,0.000000,1.061818,-4.532078,-0.869861)"
+ x1="10.243904"
+ y1="31.474367"
+ x2="36.256096"
+ y2="45.828430" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3128"
+ id="radialGradient4283"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.000000,0.000000,0.000000,0.312500,0.000000,25.43750)"
+ cx="24.000000"
+ cy="37.000000"
+ fx="24.000000"
+ fy="37.000000"
+ r="16.000000" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4313"
+ id="linearGradient4319"
+ x1="34.763798"
+ y1="41.308498"
+ x2="37.783447"
+ y2="46.064751"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="11.140625"
+ inkscape:cx="25.25"
+ inkscape:cy="23.5"
+ inkscape:current-layer="layer3"
+ showgrid="false"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ gridspacingx="2.0000000px"
+ gridspacingy="2.0000000px"
+ gridtolerance="1.0000000px"
+ inkscape:grid-points="true"
+ inkscape:window-width="1120"
+ inkscape:window-height="890"
+ inkscape:window-x="1363"
+ inkscape:window-y="69"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ inkscape:guide-points="true"
+ guidetolerance="1.0000000px">
+ <sodipodi:guide
+ orientation="vertical"
+ position="39.244426"
+ id="guide4182" />
+ <sodipodi:guide
+ orientation="horizontal"
+ position="20.859650"
+ id="guide4184" />
+ <sodipodi:guide
+ orientation="vertical"
+ position="3.7123106"
+ id="guide4186" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata1319">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="layer1"
+ inkscape:label="Palette"
+ inkscape:groupmode="layer"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g1444"
+ transform="matrix(0.145447,0,0,0.145447,-36.80275,-2.762314)">
+ <path
+ id="rect139_1_"
+ d="M 164.5164,135.3145 L 176.6932,135.3145 C 179.6698,135.3145 182.0828,137.7295 182.0828,140.7071 L 182.0828,152.8829 C 182.0828,155.8604 179.6697,158.2735 176.6932,158.2735 L 164.5164,158.2735 C 161.5398,158.2735 159.1248,155.8604 159.1248,152.8829 L 159.1248,140.7071 C 159.1248,137.7295 161.5398,135.3145 164.5164,135.3145 z "
+ style="fill:#8ae234;fill-opacity:1" />
+ <path
+ id="rect145_1_"
+ d="M 194.1248,135.3145 L 206.2996,135.3145 C 209.2781,135.3145 211.6912,137.7295 211.6912,140.7071 L 211.6912,152.8829 C 211.6912,155.8604 209.2781,158.2735 206.2996,158.2735 L 194.1248,158.2735 C 191.1463,158.2735 188.7322,155.8604 188.7322,152.8829 L 188.7322,140.7071 C 188.7322,137.7295 191.1462,135.3145 194.1248,135.3145 z "
+ style="fill:#73d216;fill-opacity:1" />
+ <path
+ id="rect157_1_"
+ d="M 223.7312,135.3145 L 235.907,135.3145 C 238.8845,135.3145 241.2976,137.7295 241.2976,140.7071 L 241.2976,152.8829 C 241.2976,155.8604 238.8845,158.2735 235.907,158.2735 L 223.7312,158.2735 C 220.7537,158.2735 218.3396,155.8604 218.3396,152.8829 L 218.3396,140.7071 C 218.3396,137.7295 220.7537,135.3145 223.7312,135.3145 z "
+ style="fill:#4e9a06;fill-opacity:1" />
+ <path
+ id="rect140_1_"
+ d="M 164.5164,76.099602 L 176.6932,76.099602 C 179.6698,76.099602 182.0828,78.514602 182.0828,81.492202 L 182.0828,93.668002 C 182.0828,96.645502 179.6697,99.058602 176.6932,99.058602 L 164.5164,99.058602 C 161.5398,99.058602 159.1248,96.645502 159.1248,93.668002 L 159.1248,81.492202 C 159.1248,78.514702 161.5398,76.099602 164.5164,76.099602 z "
+ style="fill:#fcaf3e" />
+ <path
+ id="rect146_1_"
+ d="M 194.1248,76.099602 L 206.2996,76.099602 C 209.2781,76.099602 211.6912,78.514602 211.6912,81.492202 L 211.6912,93.668002 C 211.6912,96.645502 209.2781,99.058602 206.2996,99.058602 L 194.1248,99.058602 C 191.1463,99.058602 188.7322,96.645502 188.7322,93.668002 L 188.7322,81.492202 C 188.7322,78.514702 191.1462,76.099602 194.1248,76.099602 z "
+ style="fill:#f57900" />
+ <path
+ id="rect158_1_"
+ d="M 223.7312,76.099602 L 235.907,76.099602 C 238.8845,76.099602 241.2976,78.514602 241.2976,81.492202 L 241.2976,93.668002 C 241.2976,96.645502 238.8845,99.058602 235.907,99.058602 L 223.7312,99.058602 C 220.7537,99.058602 218.3396,96.645502 218.3396,93.668002 L 218.3396,81.492202 C 218.3396,78.514702 220.7537,76.099602 223.7312,76.099602 z "
+ style="fill:#ce5c00" />
+ <path
+ id="rect141_3_"
+ d="M 164.5164,164.9238 L 176.6932,164.9238 C 179.6698,164.9238 182.0828,167.3369 182.0828,170.3144 L 182.0828,182.4892 C 182.0828,185.4677 179.6697,187.8818 176.6932,187.8818 L 164.5164,187.8818 C 161.5398,187.8818 159.1248,185.4677 159.1248,182.4892 L 159.1248,170.3144 C 159.1248,167.3369 161.5398,164.9238 164.5164,164.9238 z "
+ style="fill:#729fcf" />
+ <path
+ id="rect147_3_"
+ d="M 194.1248,164.9238 L 206.2996,164.9238 C 209.2781,164.9238 211.6912,167.3369 211.6912,170.3144 L 211.6912,182.4892 C 211.6912,185.4677 209.2781,187.8818 206.2996,187.8818 L 194.1248,187.8818 C 191.1463,187.8818 188.7322,185.4677 188.7322,182.4892 L 188.7322,170.3144 C 188.7322,167.3369 191.1462,164.9238 194.1248,164.9238 z "
+ style="fill:#3465a4" />
+ <path
+ id="rect159_3_"
+ d="M 223.7312,164.9238 L 235.907,164.9238 C 238.8845,164.9238 241.2976,167.3369 241.2976,170.3144 L 241.2976,182.4892 C 241.2976,185.4677 238.8845,187.8818 235.907,187.8818 L 223.7312,187.8818 C 220.7537,187.8818 218.3396,185.4677 218.3396,182.4892 L 218.3396,170.3144 C 218.3396,167.3369 220.7537,164.9238 223.7312,164.9238 z "
+ style="fill:#204a87" />
+ <path
+ id="rect168_1_"
+ d="M 164.5164,268.9414 L 176.6932,268.9414 C 179.6698,268.9414 182.0828,271.3545 182.0828,274.333 L 182.0828,286.5098 C 182.0828,289.4864 179.6697,291.9014 176.6932,291.9014 L 164.5164,291.9014 C 161.5398,291.9014 159.1248,289.4864 159.1248,286.5098 L 159.1248,274.333 C 159.1248,271.3545 161.5398,268.9414 164.5164,268.9414 z "
+ style="fill:#eeeeec" />
+ <path
+ id="rect169_1_"
+ d="M 194.1248,268.9414 L 206.2996,268.9414 C 209.2781,268.9414 211.6912,271.3545 211.6912,274.333 L 211.6912,286.5098 C 211.6912,289.4864 209.2781,291.9014 206.2996,291.9014 L 194.1248,291.9014 C 191.1463,291.9014 188.7322,289.4864 188.7322,286.5098 L 188.7322,274.333 C 188.7322,271.3545 191.1462,268.9414 194.1248,268.9414 z "
+ style="fill:#d3d7cf" />
+ <path
+ id="rect181_1_"
+ d="M 223.7312,268.9414 L 235.907,268.9414 C 238.8845,268.9414 241.2976,271.3545 241.2976,274.333 L 241.2976,286.5098 C 241.2976,289.4864 238.8845,291.9014 235.907,291.9014 L 223.7312,291.9014 C 220.7537,291.9014 218.3396,289.4864 218.3396,286.5098 L 218.3396,274.333 C 218.3396,271.3545 220.7537,268.9414 223.7312,268.9414 z "
+ style="fill:#babdb6" />
+ <path
+ id="rect171_1_"
+ d="M 194.1248,298.5488 L 206.2996,298.5488 C 209.2781,298.5488 211.6912,300.9648 211.6912,303.9404 L 211.6912,316.1162 C 211.6912,319.0947 209.2781,321.5068 206.2996,321.5068 L 194.1248,321.5068 C 191.1463,321.5068 188.7322,319.0947 188.7322,316.1162 L 188.7322,303.9404 C 188.7322,300.9648 191.1462,298.5488 194.1248,298.5488 z "
+ style="fill:#555753" />
+ <path
+ id="rect183_1_"
+ d="M 223.7312,298.5488 L 235.907,298.5488 C 238.8845,298.5488 241.2976,300.9648 241.2976,303.9404 L 241.2976,316.1162 C 241.2976,319.0947 238.8845,321.5068 235.907,321.5068 L 223.7312,321.5068 C 220.7537,321.5068 218.3396,319.0947 218.3396,316.1162 L 218.3396,303.9404 C 218.3396,300.9648 220.7537,298.5488 223.7312,298.5488 z "
+ style="fill:#2e3436" />
+ <path
+ id="rect193_1_"
+ d="M 164.5164,298.5488 L 176.6932,298.5488 C 179.6698,298.5488 182.0828,300.9648 182.0828,303.9404 L 182.0828,316.1162 C 182.0828,319.0947 179.6697,321.5068 176.6932,321.5068 L 164.5164,321.5068 C 161.5398,321.5068 159.1248,319.0947 159.1248,316.1162 L 159.1248,303.9404 C 159.1248,300.9648 161.5398,298.5488 164.5164,298.5488 z "
+ style="fill:#888a85" />
+ <path
+ id="rect301_1_"
+ d="M 164.5164,46.493202 L 176.6932,46.493202 C 179.6698,46.493202 182.0828,48.906302 182.0828,51.883802 L 182.0828,64.059602 C 182.0828,67.037102 179.6697,69.451202 176.6932,69.451202 L 164.5164,69.451202 C 161.5398,69.451202 159.1248,67.037102 159.1248,64.059602 L 159.1248,51.883802 C 159.1248,48.906302 161.5398,46.493202 164.5164,46.493202 z "
+ style="fill:#fce94f" />
+ <path
+ id="rect302_1_"
+ d="M 194.1248,46.493202 L 206.2996,46.493202 C 209.2781,46.493202 211.6912,48.906302 211.6912,51.883802 L 211.6912,64.059602 C 211.6912,67.037102 209.2781,69.451202 206.2996,69.451202 L 194.1248,69.451202 C 191.1463,69.451202 188.7322,67.037102 188.7322,64.059602 L 188.7322,51.883802 C 188.7322,48.906302 191.1462,46.493202 194.1248,46.493202 z "
+ style="fill:#edd400" />
+ <path
+ id="rect303_1_"
+ d="M 223.7312,46.493202 L 235.907,46.493202 C 238.8845,46.493202 241.2976,48.906302 241.2976,51.883802 L 241.2976,64.059602 C 241.2976,67.037102 238.8845,69.451202 235.907,69.451202 L 223.7312,69.451202 C 220.7537,69.451202 218.3396,67.037102 218.3396,64.059602 L 218.3396,51.883802 C 218.3396,48.906302 220.7537,46.493202 223.7312,46.493202 z "
+ style="fill:#c4a000" />
+ <path
+ id="rect305_1_"
+ d="M 164.5164,105.708 L 176.6932,105.708 C 179.6698,105.708 182.0828,108.1211 182.0828,111.0996 L 182.0828,123.2744 C 182.0828,126.2519 179.6697,128.666 176.6932,128.666 L 164.5164,128.666 C 161.5398,128.666 159.1248,126.2519 159.1248,123.2744 L 159.1248,111.0996 C 159.1248,108.1211 161.5398,105.708 164.5164,105.708 z "
+ style="fill:#e9b96e" />
+ <path
+ id="rect306_1_"
+ d="M 194.1248,105.708 L 206.2996,105.708 C 209.2781,105.708 211.6912,108.1211 211.6912,111.0996 L 211.6912,123.2744 C 211.6912,126.2519 209.2781,128.666 206.2996,128.666 L 194.1248,128.666 C 191.1463,128.666 188.7322,126.2519 188.7322,123.2744 L 188.7322,111.0996 C 188.7322,108.1211 191.1462,105.708 194.1248,105.708 z "
+ style="fill:#c17d11" />
+ <path
+ id="rect307_1_"
+ d="M 223.7312,105.708 L 235.907,105.708 C 238.8845,105.708 241.2976,108.1211 241.2976,111.0996 L 241.2976,123.2744 C 241.2976,126.2519 238.8845,128.666 235.907,128.666 L 223.7312,128.666 C 220.7537,128.666 218.3396,126.2519 218.3396,123.2744 L 218.3396,111.0996 C 218.3396,108.1211 220.7537,105.708 223.7312,105.708 z "
+ style="fill:#8f5902" />
+ <path
+ id="rect141_2_"
+ d="M 164.5164,194.9238 L 176.6932,194.9238 C 179.6698,194.9238 182.0828,197.3369 182.0828,200.3144 L 182.0828,212.4892 C 182.0828,215.4677 179.6697,217.8818 176.6932,217.8818 L 164.5164,217.8818 C 161.5398,217.8818 159.1248,215.4677 159.1248,212.4892 L 159.1248,200.3144 C 159.1248,197.3369 161.5398,194.9238 164.5164,194.9238 z "
+ style="fill:#ad7fa8" />
+ <path
+ id="rect147_2_"
+ d="M 194.1248,194.9238 L 206.2996,194.9238 C 209.2781,194.9238 211.6912,197.3369 211.6912,200.3144 L 211.6912,212.4892 C 211.6912,215.4677 209.2781,217.8818 206.2996,217.8818 L 194.1248,217.8818 C 191.1463,217.8818 188.7322,215.4677 188.7322,212.4892 L 188.7322,200.3144 C 188.7322,197.3369 191.1462,194.9238 194.1248,194.9238 z "
+ style="fill:#75507b" />
+ <path
+ id="rect159_2_"
+ d="M 223.7312,194.9238 L 235.907,194.9238 C 238.8845,194.9238 241.2976,197.3369 241.2976,200.3144 L 241.2976,212.4892 C 241.2976,215.4677 238.8845,217.8818 235.907,217.8818 L 223.7312,217.8818 C 220.7537,217.8818 218.3396,215.4677 218.3396,212.4892 L 218.3396,200.3144 C 218.3396,197.3369 220.7537,194.9238 223.7312,194.9238 z "
+ style="fill:#5c3566" />
+ <text
+ id="text1529"
+ x="142.30692"
+ y="178.88181"
+ style="fill:#a7a7a7;fill-opacity:1">
+ <tspan
+ x="142.30692"
+ y="178.88181"
+ font-size="8"
+ id="tspan1531"
+ style="font-size:8px" />
+ </text>
+ <text
+ id="text1533"
+ x="106.27762"
+ y="60.861805"
+ style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#a7a7a7;fill-opacity:1;font-family:Trebuchet MS"
+ sodipodi:linespacing="100%">
+ <tspan
+ x="106.27762"
+ y="60.861805"
+ font-size="11"
+ id="tspan1535"
+ style="font-size:11px;font-family:Trebuchet MS">Butter</tspan>
+ </text>
+ <text
+ id="text1537"
+ x="106.36356"
+ y="90.468803"
+ style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#a7a7a7;fill-opacity:1;font-family:Trebuchet MS"
+ sodipodi:linespacing="100%">
+ <tspan
+ x="106.36356"
+ y="90.468803"
+ font-size="11"
+ id="tspan1539"
+ style="font-size:11px;font-family:Trebuchet MS">Orange</tspan>
+ </text>
+ <text
+ id="text1541"
+ x="91.517853"
+ y="120.07671"
+ style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#a7a7a7;fill-opacity:1;font-family:Trebuchet MS"
+ sodipodi:linespacing="100%">
+ <tspan
+ x="91.517853"
+ y="120.07671"
+ font-size="11"
+ id="tspan1543"
+ style="font-size:11px;font-family:Trebuchet MS">Chocolate</tspan>
+ </text>
+ <text
+ id="text1545"
+ x="85.85672"
+ y="149.68359"
+ style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#a7a7a7;fill-opacity:1;font-family:Trebuchet MS"
+ sodipodi:linespacing="100%">
+ <tspan
+ x="85.85672"
+ y="149.68359"
+ font-size="11"
+ id="tspan1547"
+ style="font-size:11px;font-family:Trebuchet MS">Chameleon</tspan>
+ </text>
+ <text
+ id="text1549"
+ x="99.187775"
+ y="179.29199"
+ style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#a7a7a7;fill-opacity:1;font-family:Trebuchet MS"
+ sodipodi:linespacing="100%">
+ <tspan
+ x="99.187775"
+ y="179.29199"
+ font-size="11"
+ id="tspan1551"
+ style="font-size:11px;font-family:Trebuchet MS">Sky Blue</tspan>
+ </text>
+ <text
+ id="text1553"
+ x="142.30692"
+ y="208.88181"
+ style="fill:#a7a7a7;fill-opacity:1">
+ <tspan
+ x="142.30692"
+ y="208.88181"
+ font-size="8"
+ id="tspan1555"
+ style="font-size:8px" />
+ </text>
+ <text
+ id="text1557"
+ x="117.35818"
+ y="209.29199"
+ style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#a7a7a7;fill-opacity:1;font-family:Trebuchet MS"
+ sodipodi:linespacing="100%">
+ <tspan
+ x="117.35818"
+ y="209.29199"
+ font-size="11"
+ id="tspan1559"
+ style="font-size:11px;font-family:Trebuchet MS">Plum</tspan>
+ </text>
+ <text
+ id="text1561"
+ x="84.438751"
+ y="238.89841"
+ style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#a7a7a7;fill-opacity:1;font-family:Trebuchet MS"
+ sodipodi:linespacing="100%">
+ <tspan
+ x="84.438751"
+ y="238.89841"
+ font-size="11"
+ id="tspan1563"
+ style="font-size:11px;font-family:Trebuchet MS">Scarlet Red</tspan>
+ </text>
+ <text
+ id="text1565"
+ x="87.838654"
+ y="283.3096"
+ style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#a7a7a7;fill-opacity:1;font-family:Trebuchet MS"
+ sodipodi:linespacing="100%">
+ <tspan
+ x="87.838654"
+ y="283.3096"
+ font-size="11"
+ id="tspan1567"
+ style="font-size:11px;font-family:Trebuchet MS">Aluminium</tspan>
+ </text>
+ <path
+ id="rect170_1_"
+ d="M 164.5164,224.5293 L 176.6932,224.5293 C 179.6698,224.5293 182.0828,226.9443 182.0828,229.9219 L 182.0828,242.0977 C 182.0828,245.0743 179.6697,247.4903 176.6932,247.4903 L 164.5164,247.4903 C 161.5398,247.4903 159.1248,245.0743 159.1248,242.0977 L 159.1248,229.9219 C 159.1248,226.9443 161.5398,224.5293 164.5164,224.5293 z "
+ style="fill:#ef2929" />
+ <path
+ id="rect182_1_"
+ d="M 194.1248,224.5293 L 206.2996,224.5293 C 209.2781,224.5293 211.6912,226.9443 211.6912,229.9219 L 211.6912,242.0977 C 211.6912,245.0743 209.2781,247.4903 206.2996,247.4903 L 194.1248,247.4903 C 191.1463,247.4903 188.7322,245.0743 188.7322,242.0977 L 188.7322,229.9219 C 188.7322,226.9443 191.1462,224.5293 194.1248,224.5293 z "
+ style="fill:#cc0000" />
+ <path
+ id="rect344_1_"
+ d="M 223.3259,224.5293 L 235.5007,224.5293 C 238.4782,224.5293 240.8943,226.9443 240.8943,229.9219 L 240.8943,242.0977 C 240.8943,245.0743 238.4783,247.4903 235.5007,247.4903 L 223.3259,247.4903 C 220.3484,247.4903 217.9343,245.0743 217.9343,242.0977 L 217.9343,229.9219 C 217.9343,226.9443 220.3484,224.5293 223.3259,224.5293 z "
+ style="fill:#a40000" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Helm"
+ style="display:inline">
+ <g
+ id="g4004"
+ style="display:none">
+ <path
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3991);stroke-width:2.3999958;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 5.6576651,30.657018 C 5.6576651,30.657018 22.306476,25.900215 22.306476,25.900215 C 22.306476,25.900215 16.955073,32.264681 16.955073,39.399886 C 16.955073,39.399886 14.151346,39.587854 10.414468,41.778287 C 10.414468,41.778287 10.414468,30.657018 5.6576651,30.657018 z "
+ id="path2718"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path2708"
+ d="M 21.872375,35.747494 C 21.872375,35.747494 36.925182,31.709416 36.925182,31.709416 C 36.925182,31.709416 32.62438,37.16188 32.62438,43.613082 C 32.62438,43.613082 30.473979,45.763483 26.173177,45.763483 C 26.173177,45.763483 26.173177,35.747494 21.872375,35.747494 z "
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3988);stroke-width:2.3999958;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ style="opacity:1;fill:url(#linearGradient3983);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3985);stroke-width:0.79999912;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 21.872375,35.747494 C 21.872375,35.747494 36.925182,31.709416 36.925182,31.709416 C 36.925182,31.709416 32.62438,36.881889 32.62438,43.333091 C 32.62438,43.333091 30.473979,45.483491 26.173177,45.483491 C 26.173177,45.483491 26.173177,35.747494 21.872375,35.747494 z "
+ id="path2294"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path2299"
+ d="M 5.6576651,30.657018 C 5.6576651,30.657018 22.306476,25.900215 22.306476,25.900215 C 22.306476,25.900215 16.955073,32.264681 16.955073,39.399886 C 16.955073,39.399886 13.601317,39.803589 10.414468,41.778287 C 10.414468,41.778287 10.414468,30.657018 5.6576651,30.657018 z "
+ style="opacity:1;fill:url(#linearGradient3978);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3980);stroke-width:0.7999987;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g4389"
+ transform="translate(-0.448808,4.129032)">
+ <path
+ sodipodi:nodetypes="csscscc"
+ id="path2624"
+ d="M 10.412862,19.248805 C 10.412862,19.248805 7.1512025,14.098814 8.3528671,10.665486 C 9.5545314,7.2321586 13.846189,7.0604922 16.24952,5.0004956 C 18.652848,2.9404993 19.167849,1.9105008 19.167849,1.9105008 C 19.167849,1.9105008 18.13785,8.4338233 16.421185,9.8071544 C 14.704522,11.180485 16.421185,14.442147 16.421185,14.442147 L 10.412862,19.248805 z "
+ style="opacity:1;fill:url(#linearGradient4232);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4234);stroke-width:0.79999894;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="czscscc"
+ id="path2852"
+ d="M 9.3513545,12.276213 C 9.3513545,11.842705 9.4177997,10.553989 10.435127,9.4584059 C 11.452454,8.3628226 12.927802,8.3746338 14.336708,7.6159931 C 15.745613,6.8573524 17.046139,5.5568258 17.046139,5.5568258 C 17.046139,5.5568258 15.745613,8.0495023 14.011577,9.0248974 C 12.27754,10.000293 11.410521,11.842705 11.410521,11.842705 L 9.3513545,12.276213 z "
+ style="opacity:1;fill:url(#linearGradient4229);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.60000002;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:8;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cczc"
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4226);stroke-width:2.39999676;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 6.2878854,27.046841 C 15.002654,32.8994 28.020809,32.915906 36.711694,27.008522 C 39.656036,17.932466 31.788892,8.8953618 20.526971,8.8953618 C 9.1465263,8.8953618 3.8052026,19.885875 6.2878854,27.046841 z "
+ id="path2641" />
+ <path
+ sodipodi:nodetypes="cczc"
+ id="path2264"
+ d="M 6.2878854,27.046841 C 15.002654,32.8994 28.020809,32.915906 36.711694,27.008522 C 39.656036,17.932466 31.107555,8.8953618 20.526971,8.8953618 C 9.2353337,8.8953618 3.8052026,19.885875 6.2878854,27.046841 z "
+ style="opacity:1;fill:url(#radialGradient4221);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4223);stroke-width:0.79999894;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4238);stroke-width:2.4000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 4.9315713,24.988506 C 4.9315713,24.988506 6.7707928,29.893099 21.484574,29.893099 C 36.198355,29.893099 38.037578,24.988506 38.037578,24.988506 C 38.037578,24.988506 39.244426,25.882718 39.244426,27.120155 C 39.244426,27.120155 39.263726,32.345397 39.263726,32.345397 C 39.263726,32.345397 36.198355,37.24999 21.484574,37.24999 C 6.7707928,37.24999 3.7054225,32.345397 3.7054225,32.345397 C 3.7054225,32.345397 3.7123106,27.14035 3.7123106,27.14035 C 3.7123106,25.593554 4.9315713,24.988506 4.9315713,24.988506 z "
+ id="path4236"
+ sodipodi:nodetypes="czcscscsc" />
+ <path
+ sodipodi:type="arc"
+ style="opacity:1;fill:url(#radialGradient4150);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.58700001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path3337"
+ sodipodi:cx="15.820516"
+ sodipodi:cy="20.979118"
+ sodipodi:rx="0.84002739"
+ sodipodi:ry="0.77002507"
+ d="M 16.660543 20.979118 A 0.84002739 0.77002507 0 1 1 14.980488,20.979118 A 0.84002739 0.77002507 0 1 1 16.660543 20.979118 z"
+ transform="matrix(1.495931,0,0,1.495931,-14.89071,-7.207778)" />
+ <path
+ transform="matrix(1.495931,0,0,1.495931,-14.12856,-12.69531)"
+ d="M 16.660543 20.979118 A 0.84002739 0.77002507 0 1 1 14.980488,20.979118 A 0.84002739 0.77002507 0 1 1 16.660543 20.979118 z"
+ sodipodi:ry="0.77002507"
+ sodipodi:rx="0.84002739"
+ sodipodi:cy="20.979118"
+ sodipodi:cx="15.820516"
+ id="path3339"
+ style="opacity:1;fill:url(#radialGradient4154);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.58700001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="czcscscsc"
+ id="path2271"
+ d="M 4.9315713,24.988506 C 4.9315713,24.988506 6.7707928,29.893099 21.484574,29.893099 C 36.198355,29.893099 38.037578,24.988506 38.037578,24.988506 C 38.037578,24.988506 39.244426,25.882718 39.244426,27.120155 C 39.244426,27.120155 39.263726,32.345397 39.263726,32.345397 C 39.263726,32.345397 36.198355,37.24999 21.484574,37.24999 C 6.7707928,37.24999 3.7054225,32.345397 3.7054225,32.345397 C 3.7054225,32.345397 3.7123106,27.14035 3.7123106,27.14035 C 3.7123106,25.593554 4.9315713,24.988506 4.9315713,24.988506 z "
+ style="opacity:1;fill:url(#radialGradient4211);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4213);stroke-width:0.79999894;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ transform="matrix(1.093101,-0.292896,0.292896,1.093101,-6.218654,10.58132)"
+ d="M 34 17 A 4 5 0 1 1 26,17 A 4 5 0 1 1 34 17 z"
+ sodipodi:ry="5"
+ sodipodi:rx="4"
+ sodipodi:cy="17"
+ sodipodi:cx="30"
+ id="path2626"
+ style="opacity:1;fill:url(#linearGradient4160);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4162);stroke-width:0.5189293;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="ccsccc"
+ id="path2831"
+ d="M 29.623023,21.222634 C 28.593441,22.577351 27.590541,21.797393 27.590541,21.797393 C 28.475104,24.665098 30.689201,26.182235 33.033249,25.554148 C 34.106395,25.266597 34.901224,24.758385 35.447228,23.751569 L 35.485546,23.023541 L 29.623023,21.222634 z "
+ style="opacity:1;fill:url(#linearGradient4207);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.60000002;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:8;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="csscssss"
+ id="path2628"
+ d="M 30.100108,17.518382 C 31.131895,15.758277 34.219994,15.6834 35.805273,14.362334 C 37.990226,12.541536 38.051498,10.868058 39.924157,9.6282615 C 41.961066,8.2797255 46.843187,7.4433055 46.843187,7.4433055 C 46.843187,7.4433055 43.687138,9.7496487 42.351886,12.298764 C 41.016637,14.847878 41.75321,17.518384 39.568253,19.94611 C 37.592492,22.141399 34.285586,24.197637 32.770611,23.951864 C 29.071823,23.351811 29.068324,19.278485 30.100108,17.518382 z "
+ style="opacity:1;fill:url(#linearGradient4202);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4204);stroke-width:0.79999894;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="czzczzzz"
+ id="path2526"
+ d="M 31.679181,17.97931 C 32.574418,17.030401 35.093585,16.422001 36.463532,15.479212 C 37.83348,14.536425 38.720706,11.956413 40.132426,10.774594 C 41.565039,9.5752793 42.924313,9.4393424 42.924313,9.4393424 C 42.924313,9.4393424 41.913297,9.8428291 40.860744,11.260138 C 39.80819,12.67745 40.044439,14.98513 37.899342,17.192086 C 35.754247,19.399041 33.239502,20.515698 32.129172,20.485509 C 31.018843,20.455318 30.783944,18.928219 31.679181,17.97931 z "
+ style="opacity:1;fill:url(#linearGradient4199);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.58725345;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="czczcc"
+ id="path2787"
+ d="M 8.9286277,32.901666 C 8.9286277,32.901666 7.4127364,10.037287 18.159512,7.9560372 C 28.885553,5.8788029 32.237595,12.284458 32.237595,12.284458 C 32.237595,12.284458 27.046509,7.2547492 19.96025,9.3804843 C 12.799145,11.528672 12.463056,28.197511 12.463056,28.197511 C 10.619177,29.119452 8.9286277,32.901666 8.9286277,32.901666 z "
+ style="opacity:1;fill:url(#linearGradient4194);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4196);stroke-width:0.59999919;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:8;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="ccscsz"
+ id="path2809"
+ d="M 9.5681082,29.724949 C 9.5681082,29.724949 11.410521,27.557404 11.410521,27.557404 C 11.410521,27.557404 11.729076,15.804241 15.439075,11.644545 C 19.015524,7.6345878 20.276605,8.2662566 20.276605,8.2662566 C 20.276605,8.2662566 14.807405,7.649992 11.844032,14.877267 C 10.429273,18.327671 9.5042981,25.416711 9.5681082,29.724949 z "
+ style="opacity:1;fill:url(#linearGradient4191);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.60000002;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:8;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ transform="matrix(1.495931,0,0,1.495931,-8.549852,-5.48321)"
+ d="M 16.660543 20.979118 A 0.84002739 0.77002507 0 1 1 14.980488,20.979118 A 0.84002739 0.77002507 0 1 1 16.660543 20.979118 z"
+ sodipodi:ry="0.77002507"
+ sodipodi:rx="0.84002739"
+ sodipodi:cy="20.979118"
+ sodipodi:cx="15.820516"
+ id="path3325"
+ style="opacity:1;fill:url(#radialGradient4178);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.58700001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:type="arc"
+ style="opacity:1;fill:url(#radialGradient4180);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.58700001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path3329"
+ sodipodi:cx="15.820516"
+ sodipodi:cy="20.979118"
+ sodipodi:rx="0.84002739"
+ sodipodi:ry="0.77002507"
+ d="M 16.660543 20.979118 A 0.84002739 0.77002507 0 1 1 14.980488,20.979118 A 0.84002739 0.77002507 0 1 1 16.660543 20.979118 z"
+ transform="matrix(1.495931,0,0,1.495931,-7.787695,-10.97075)" />
+ </g>
+ </g>
+</svg>