[xchat] Add hi-res icons (http://sourceforge.net/p/xchat/bugs/1504/)

Debarshi Ray rishi at fedoraproject.org
Mon Jun 10 11:48:13 UTC 2013


commit 3a9424b4ae9ac84c5aaafb81161fe078220b0dce
Author: Debarshi Ray <debarshir at gnome.org>
Date:   Mon Jun 10 13:30:10 2013 +0200

    Add hi-res icons (http://sourceforge.net/p/xchat/bugs/1504/)

 hicolor_apps_16x16_xchat.png   |  Bin 0 -> 1064 bytes
 hicolor_apps_22x22_xchat.png   |  Bin 0 -> 1536 bytes
 hicolor_apps_24x24_xchat.png   |  Bin 0 -> 1724 bytes
 hicolor_apps_256x256_xchat.png |  Bin 0 -> 28634 bytes
 hicolor_apps_32x32_xchat.png   |  Bin 0 -> 2418 bytes
 hicolor_apps_48x48_xchat.png   |  Bin 0 -> 4018 bytes
 xchat-2.8.8-hires-icons.patch  |   85 ++
 xchat.spec                     |   51 +-
 xchat.svg                      | 1802 ++++++++++++++++++++++++++++++++++++++++
 9 files changed, 1924 insertions(+), 14 deletions(-)
---
diff --git a/hicolor_apps_16x16_xchat.png b/hicolor_apps_16x16_xchat.png
new file mode 100644
index 0000000..b29fc17
Binary files /dev/null and b/hicolor_apps_16x16_xchat.png differ
diff --git a/hicolor_apps_22x22_xchat.png b/hicolor_apps_22x22_xchat.png
new file mode 100644
index 0000000..5f4a083
Binary files /dev/null and b/hicolor_apps_22x22_xchat.png differ
diff --git a/hicolor_apps_24x24_xchat.png b/hicolor_apps_24x24_xchat.png
new file mode 100644
index 0000000..51589bd
Binary files /dev/null and b/hicolor_apps_24x24_xchat.png differ
diff --git a/hicolor_apps_256x256_xchat.png b/hicolor_apps_256x256_xchat.png
new file mode 100644
index 0000000..f5dd9ca
Binary files /dev/null and b/hicolor_apps_256x256_xchat.png differ
diff --git a/hicolor_apps_32x32_xchat.png b/hicolor_apps_32x32_xchat.png
new file mode 100644
index 0000000..59b1850
Binary files /dev/null and b/hicolor_apps_32x32_xchat.png differ
diff --git a/hicolor_apps_48x48_xchat.png b/hicolor_apps_48x48_xchat.png
new file mode 100644
index 0000000..47db53e
Binary files /dev/null and b/hicolor_apps_48x48_xchat.png differ
diff --git a/xchat-2.8.8-hires-icons.patch b/xchat-2.8.8-hires-icons.patch
new file mode 100644
index 0000000..2baba84
--- /dev/null
+++ b/xchat-2.8.8-hires-icons.patch
@@ -0,0 +1,85 @@
+diff -urNp xchat-2.8.8.orig/configure.in xchat-2.8.8/configure.in
+--- xchat-2.8.8.orig/configure.in	2013-06-07 17:33:41.600172433 +0200
++++ xchat-2.8.8/configure.in	2013-06-07 17:39:02.672190284 +0200
+@@ -792,6 +792,7 @@ plugins/python/Makefile
+ plugins/perl/Makefile
+ plugins/tcl/Makefile
+ intl/Makefile
++icons/Makefile
+ po/Makefile.in
+ ])
+ 
+diff -urNp xchat-2.8.8.orig/icons/Makefile.am xchat-2.8.8/icons/Makefile.am
+--- xchat-2.8.8.orig/icons/Makefile.am	1970-01-01 01:00:00.000000000 +0100
++++ xchat-2.8.8/icons/Makefile.am	2013-06-07 17:35:09.053456817 +0200
+@@ -0,0 +1,59 @@
++public_icon_themes = \
++	hicolor	\
++	$(NULL)
++
++public_icons = \
++	hicolor_apps_16x16_xchat.png \
++	hicolor_apps_22x22_xchat.png \
++	hicolor_apps_24x24_xchat.png \
++	hicolor_apps_32x32_xchat.png \
++	hicolor_apps_48x48_xchat.png \
++	hicolor_apps_256x256_xchat.png \
++	$(NULL)
++
++noinst_DATA = \
++	xchat.svg \
++	$(NULL)
++
++EXTRA_DIST = \
++	$(public_icons) \
++	$(noinst_DATA) \
++	$(NULL)
++
++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_icon_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_icon_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
+diff -urNp xchat-2.8.8.orig/Makefile.am xchat-2.8.8/Makefile.am
+--- xchat-2.8.8.orig/Makefile.am	2013-06-07 17:33:41.600172433 +0200
++++ xchat-2.8.8/Makefile.am	2013-06-10 13:25:06.316773350 +0200
+@@ -1,6 +1,6 @@
+ ## Process this file with automake to produce Makefile.in
+ 
+-SUBDIRS = po intl src plugins
++SUBDIRS = po icons intl src plugins
+ 
+ EXTRA_DIST = autogen.sh HACKING INSTALL.w32 faq.html xchat.png \
+ 		xchat.desktop xchat.spec config.h.w32 xchat.ico
diff --git a/xchat.spec b/xchat.spec
index 6855528..3120802 100644
--- a/xchat.spec
+++ b/xchat.spec
@@ -4,12 +4,22 @@
 Summary:   A popular and easy to use graphical IRC (chat) client
 Name:      xchat
 Version:   2.8.8
-Release:   17%{?dist}
+Release:   18%{?dist}
 Epoch:     1
 Group:     Applications/Internet
 License:   GPLv2+
 URL:       http://www.xchat.org
-Source:    http://www.xchat.org/files/source/2.8/xchat-%{version}.tar.xz
+Source0:   http://www.xchat.org/files/source/2.8/xchat-%{version}.tar.xz
+
+# http://sourceforge.net/p/xchat/bugs/1504/
+Source1:   hicolor_apps_16x16_%{name}.png
+Source2:   hicolor_apps_22x22_%{name}.png
+Source3:   hicolor_apps_24x24_%{name}.png
+Source4:   hicolor_apps_32x32_%{name}.png
+Source5:   hicolor_apps_48x48_%{name}.png
+Source6:   hicolor_apps_256x256_%{name}.png
+Source7:   %{name}.svg
+
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 # Patches 0-9 reserved for official xchat.org patches
@@ -36,6 +46,9 @@ Patch52: xchat-2.8.8-libnotify07.patch
 Patch53: xchat-2.8.8-link-against-libnotify.patch
 # Only glib.h can be included and g_thread_init  should no longer be used
 Patch54: xchat-2.8.8-glib.patch
+# http://sourceforge.net/p/xchat/bugs/1504/
+Patch55: xchat-2.8.8-hires-icons.patch
+
 BuildRequires: perl perl(ExtUtils::Embed) python-devel openssl-devel pkgconfig, tcl-devel
 BuildRequires: GConf2-devel
 BuildRequires: dbus-devel >= 0.60, dbus-glib-devel >= 0.60
@@ -48,6 +61,8 @@ BuildRequires: desktop-file-utils >= 0.10
 BuildRequires: libnotify-devel
 # For xchat-2.8.8-link-against-libnotify.patch
 BuildRequires: autoconf
+BuildRequires: automake
+
 # For gconftool-2:
 Requires(post): GConf2 >= %{gconf_version}
 Requires(preun): GConf2 >= %{gconf_version}
@@ -91,9 +106,18 @@ This package contains the X-Chat plugin providing the Tcl scripting interface.
 %patch52 -p1 -b .libnotify07
 %patch53 -p1 -b .link-against-libnotify
 %patch54 -p0 -b .glib
+%patch55 -p1 -b .hires-icons
 
 sed -i -e 's/#define GTK_DISABLE_DEPRECATED//g' src/fe-gtk/*.c
 
+cp -p %{SOURCE1} icons/
+cp -p %{SOURCE2} icons/
+cp -p %{SOURCE3} icons/
+cp -p %{SOURCE4} icons/
+cp -p %{SOURCE5} icons/
+cp -p %{SOURCE6} icons/
+cp -p %{SOURCE7} icons/
+
 %build
 # Remove CVS files from source dirs so they're not installed into doc dirs.
 find . -name CVS -type d | xargs rm -rf
@@ -102,8 +126,7 @@ export CFLAGS="$RPM_OPT_FLAGS $(perl -MExtUtils::Embed -e ccopts)"
 export LDFLAGS=$(perl -MExtUtils::Embed -e ldopts)
 
 # For xchat-2.8.8-link-against-libnotify.patch
-autoconf
-autoheader
+./autogen.sh
 
 %configure --disable-textfe \
            --enable-gtkfe \
@@ -152,18 +175,14 @@ EOF
 export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
 gconftool-2 --makefile-install-rule /etc/gconf/schemas/apps_xchat_url_handler.schemas >& /dev/null || :
 
-
-%pre
-if [ "$1" -gt 1 ]; then
-  export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
-  gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/apps_xchat_url_handler.schemas >& /dev/null || :
+%postun
+if [ $1 -eq 0 ] ; then
+    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+    /usr/bin/gtk-update-icon-cache -f %{_datadir}/icons/hicolor &>/dev/null || :
 fi
 
-%preun
-if [ "$1" -eq 0 ]; then
-  export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
-  gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/apps_xchat_url_handler.schemas >& /dev/null || :
-fi
+%posttrans
+/usr/bin/gtk-update-icon-cache -f %{_datadir}/icons/hicolor &>/dev/null || :
 
 %clean
 %{__rm} -rf $RPM_BUILD_ROOT
@@ -178,6 +197,7 @@ fi
 %{_libdir}/xchat/plugins/perl.so
 %{_libdir}/xchat/plugins/python.so
 %{_datadir}/applications/xchat.desktop
+%{_datadir}/icons/hicolor/*/apps/xchat.png
 %{_datadir}/pixmaps/*
 %{_sysconfdir}/gconf/schemas/apps_xchat_url_handler.schemas
 %{_datadir}/dbus-1/services/org.xchat.service.service
@@ -187,6 +207,9 @@ fi
 %{_libdir}/xchat/plugins/tcl.so
 
 %changelog
+* Fri Jun 07 2013 Debarshi Ray <rishi at fedoraproject.org> - 1:2.8.8-18
+- Add hi-res icons (http://sourceforge.net/p/xchat/bugs/1504/)
+
 * Fri Feb 15 2013 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1:2.8.8-17
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
diff --git a/xchat.svg b/xchat.svg
new file mode 100644
index 0000000..c7055d8
--- /dev/null
+++ b/xchat.svg
@@ -0,0 +1,1802 @@
+<?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="400"
+   height="300"
+   id="svg11300"
+   sodipodi:version="0.32"
+   inkscape:version="0.48+devel r10053 custom"
+   sodipodi:docname="xchat.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   version="1.0"
+   style="enable-background:new">
+  <title
+     id="title14089">Pidgin</title>
+  <sodipodi:namedview
+     stroke="#ef2929"
+     fill="#f57900"
+     id="base"
+     pagecolor="#474747"
+     bordercolor="#666666"
+     borderopacity="0.25490196"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="312.49175"
+     inkscape:cy="128.82297"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:showpageshadow="false"
+     inkscape:window-width="1236"
+     inkscape:window-height="836"
+     inkscape:window-x="215"
+     inkscape:window-y="26"
+     width="400px"
+     height="300px"
+     inkscape:snap-nodes="false"
+     inkscape:snap-bbox="true"
+     gridtolerance="10000"
+     inkscape:window-maximized="0"
+     showguides="false"
+     inkscape:guide-bbox="true"
+     inkscape:snap-grids="true">
+    <inkscape:grid
+       empspacing="4"
+       visible="true"
+       enabled="true"
+       type="xygrid"
+       id="grid5883"
+       spacingx="1px"
+       spacingy="1px"
+       dotted="false"
+       color="#0000ff"
+       opacity="0.07058824"
+       snapvisiblegridlinesonly="true" />
+    <sodipodi:guide
+       orientation="0,1"
+       position="147.75,113.5"
+       id="guide238" />
+    <sodipodi:guide
+       orientation="-0.70710678,0.70710678"
+       position="89.25,138.75"
+       id="guide240" />
+    <sodipodi:guide
+       orientation="0,1"
+       position="90,226.25"
+       id="guide242" />
+    <sodipodi:guide
+       orientation="0.70710678,0.70710678"
+       position="96.25,194"
+       id="guide244" />
+    <sodipodi:guide
+       orientation="0.70710678,0.70710678"
+       position="115,226.25"
+       id="guide246" />
+    <sodipodi:guide
+       orientation="-0.70710678,0.70710678"
+       position="114.75,113.5"
+       id="guide248" />
+  </sodipodi:namedview>
+  <defs
+     id="defs3">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4069">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4071" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4073" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4009">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4011" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4013" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5932">
+      <stop
+         style="stop-color:#c4a000;stop-opacity:1;"
+         offset="0"
+         id="stop5934" />
+      <stop
+         style="stop-color:#edd400;stop-opacity:1"
+         offset="1"
+         id="stop5936" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient13451"
+       inkscape:collect="always">
+      <stop
+         id="stop13453"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop13455"
+         offset="1"
+         style="stop-color:#dae5f2;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient13445"
+       inkscape:collect="always">
+      <stop
+         id="stop13447"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:1" />
+      <stop
+         id="stop13449"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient21870">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop21872" />
+      <stop
+         style="stop-color:#babdb6;stop-opacity:1"
+         offset="1"
+         id="stop21874" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4213">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4215" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4217" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9498">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9500" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop9502" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9488">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9490" />
+      <stop
+         style="stop-color:#c7d9eb;stop-opacity:1"
+         offset="1"
+         id="stop9492" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9498"
+       id="linearGradient9506"
+       x1="216.37468"
+       y1="146.0831"
+       x2="216.37468"
+       y2="135.9375"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter9544"
+       x="-0.02418579"
+       width="1.0483716"
+       y="-0.16251157"
+       height="1.3250231">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.364592"
+         id="feGaussianBlur9546" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter9566">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.05375"
+         id="feGaussianBlur9568" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4195">
+      <path
+         style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 136.84375,36 C 127.50937,36 120,43.509373 120,52.84375 l 0,78.3125 C 120,140.49063 127.50937,148 136.84375,148 l 78.65625,0 -15,25 30.28125,-25 16.375,0 C 256.49063,148 264,140.49063 264,131.15625 l 0,-78.3125 C 264,43.509373 256.49063,36 247.15625,36 l -110.3125,0 z"
+         id="path4197" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter4199">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.7025"
+         id="feGaussianBlur4201" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient13445"
+       id="linearGradient4209"
+       x1="176.31876"
+       y1="150.58842"
+       x2="176.31876"
+       y2="34.026363"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4213"
+       id="radialGradient4219"
+       cx="191.97949"
+       cy="38.547268"
+       fx="191.97949"
+       fy="38.547268"
+       r="56.568539"
+       gradientTransform="matrix(0.99681528,0.07974522,-0.03125,0.39062503,1.8160034,8.1802921)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4213"
+       id="radialGradient4223"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.32333272,0.02586662,-0.01013643,0.12670538,-26.780908,-137.4502)"
+       cx="191.97949"
+       cy="38.547268"
+       fx="191.97949"
+       fy="38.547268"
+       r="56.568539" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9488"
+       id="radialGradient8509"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.0425236,0,0,0.5957361,-303.01458,36.099502)"
+       cx="192"
+       cy="-20.64286"
+       fx="192"
+       fy="-20.64286"
+       r="72" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9498"
+       id="linearGradient8511"
+       gradientUnits="userSpaceOnUse"
+       x1="216.37468"
+       y1="146.0831"
+       x2="216.37468"
+       y2="135.9375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4213"
+       id="radialGradient8515"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.5388879,0.1258304,-0.01689405,0.616369,-13.262928,-38.624523)"
+       cx="191.97949"
+       cy="38.547268"
+       fx="191.97949"
+       fy="38.547268"
+       r="56.568539" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21870"
+       id="linearGradient21876"
+       x1="105.74763"
+       y1="60.77557"
+       x2="105.74763"
+       y2="11.279737"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9498-1"
+       id="linearGradient9735-8"
+       gradientUnits="userSpaceOnUse"
+       x1="216.37468"
+       y1="146.0831"
+       x2="216.37468"
+       y2="135.9375" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9498-1">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9500-5" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop9502-3" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter9544-5"
+       x="-0.02418579"
+       width="1.0483716"
+       y="-0.16251157"
+       height="1.3250231">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.364592"
+         id="feGaussianBlur9546-4" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4213-6"
+       id="radialGradient9737-3"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.5388879,0.2560931,-0.01689405,1.2544499,-13.262928,-85.340952)"
+       cx="191.97949"
+       cy="38.547268"
+       fx="191.97949"
+       fy="38.547268"
+       r="56.568539" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4213-6">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4215-5" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4217-9" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9498"
+       id="linearGradient1821"
+       gradientUnits="userSpaceOnUse"
+       x1="216.37468"
+       y1="146.0831"
+       x2="216.37468"
+       y2="135.9375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4213"
+       id="radialGradient1823"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.5388879,0.1258303,-0.01689405,0.616369,-13.262928,-38.624523)"
+       cx="191.97949"
+       cy="38.547268"
+       fx="191.97949"
+       fy="38.547268"
+       r="56.568539" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9498-9"
+       id="linearGradient8511-0"
+       gradientUnits="userSpaceOnUse"
+       x1="216.37468"
+       y1="146.0831"
+       x2="216.37468"
+       y2="135.9375" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9498-9">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9500-2" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop9502-7" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter9544-4"
+       x="-0.02418579"
+       width="1.0483716"
+       y="-0.16251157"
+       height="1.3250231">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.364592"
+         id="feGaussianBlur9546-5" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4213-9">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4215-2" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4217-1" />
+    </linearGradient>
+    <radialGradient
+       r="56.568539"
+       fy="38.547268"
+       fx="191.97949"
+       cy="38.547268"
+       cx="191.97949"
+       gradientTransform="matrix(0.5388879,0.1258304,-0.01689405,0.616369,-13.262928,-38.624523)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient11483"
+       xlink:href="#linearGradient4213-9"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9488-5"
+       id="radialGradient8509-6"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.0425236,0,0,0.5957361,-303.01458,36.099502)"
+       cx="192"
+       cy="-20.64286"
+       fx="192"
+       fy="-20.64286"
+       r="72" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9488-5">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9490-4" />
+      <stop
+         style="stop-color:#c7d9eb;stop-opacity:1"
+         offset="1"
+         id="stop9492-22" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21870-79"
+       id="linearGradient21876-84"
+       x1="105.74763"
+       y1="60.77557"
+       x2="105.74763"
+       y2="11.279737"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient21870-79">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop21872-3" />
+      <stop
+         style="stop-color:#babdb6;stop-opacity:1"
+         offset="1"
+         id="stop21874-8" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9488-68"
+       id="radialGradient8509-3"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.0425236,0,0,0.5957361,-303.01458,36.099502)"
+       cx="192"
+       cy="-20.64286"
+       fx="192"
+       fy="-20.64286"
+       r="72" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9488-68">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9490-12" />
+      <stop
+         style="stop-color:#c7d9eb;stop-opacity:1"
+         offset="1"
+         id="stop9492-8" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21870-54"
+       id="linearGradient21876-1"
+       x1="105.74763"
+       y1="60.77557"
+       x2="105.74763"
+       y2="11.279737"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient21870-54">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop21872-77" />
+      <stop
+         style="stop-color:#babdb6;stop-opacity:1"
+         offset="1"
+         id="stop21874-1" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9488-2"
+       id="radialGradient8509-9"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.0425236,0,0,0.5957361,-303.01458,36.099502)"
+       cx="192"
+       cy="-20.64286"
+       fx="192"
+       fy="-20.64286"
+       r="72" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9488-2">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9490-80" />
+      <stop
+         style="stop-color:#c7d9eb;stop-opacity:1"
+         offset="1"
+         id="stop9492-2" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21870-28"
+       id="linearGradient21876-2"
+       x1="105.74763"
+       y1="60.77557"
+       x2="105.74763"
+       y2="11.279737"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient21870-28">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop21872-81" />
+      <stop
+         style="stop-color:#babdb6;stop-opacity:1"
+         offset="1"
+         id="stop21874-4" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient13451"
+       id="radialGradient3163"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.0425238,0,0,0.5957361,-302.61221,35.216126)"
+       cx="192"
+       cy="-20.64286"
+       fx="192"
+       fy="-20.64286"
+       r="72" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5376-1-5">
+      <stop
+         style="stop-color:#fce94f;stop-opacity:1;"
+         offset="0"
+         id="stop5378-1-7" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop5380-0-9" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5376-1-5-4">
+      <stop
+         style="stop-color:#fce94f;stop-opacity:1;"
+         offset="0"
+         id="stop5378-1-7-8" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop5380-0-9-2" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter5980">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.38999985"
+         id="feGaussianBlur5982" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5376-1-5-4-7">
+      <stop
+         style="stop-color:#fce94f;stop-opacity:1;"
+         offset="0"
+         id="stop5378-1-7-8-9" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop5380-0-9-2-6" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5932-7">
+      <stop
+         style="stop-color:#c4a000;stop-opacity:1;"
+         offset="0"
+         id="stop5934-2" />
+      <stop
+         style="stop-color:#edd400;stop-opacity:1"
+         offset="1"
+         id="stop5936-3" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9488-68-9"
+       id="radialGradient8509-3-2"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.0425236,0,0,0.5957361,-303.01458,36.099502)"
+       cx="192"
+       cy="-20.64286"
+       fx="192"
+       fy="-20.64286"
+       r="72" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9488-68-9">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9490-12-3" />
+      <stop
+         style="stop-color:#c7d9eb;stop-opacity:1"
+         offset="1"
+         id="stop9492-8-9" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21870-54-8"
+       id="linearGradient21876-1-0"
+       x1="105.74763"
+       y1="60.77557"
+       x2="105.74763"
+       y2="11.279737"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient21870-54-8">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop21872-77-8" />
+      <stop
+         style="stop-color:#babdb6;stop-opacity:1"
+         offset="1"
+         id="stop21874-1-5" />
+    </linearGradient>
+    <radialGradient
+       r="72"
+       fy="-20.64286"
+       fx="192"
+       cy="-20.64286"
+       cx="192"
+       gradientTransform="matrix(0.50331803,0,0,0.14559647,217.44468,175.73349)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3204"
+       xlink:href="#linearGradient9488-68-9"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(0.24641969,0,0,0.2443976,292.11344,166.91085)"
+       y2="11.279737"
+       x2="105.74763"
+       y1="60.77557"
+       x1="105.74763"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3206"
+       xlink:href="#linearGradient21870-54-8"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4009"
+       id="radialGradient4015"
+       cx="313.62241"
+       cy="175.20782"
+       fx="313.62241"
+       fy="175.20782"
+       r="9.0625"
+       gradientTransform="matrix(3.551751,0,0,0.97284561,-800.90864,4.9427695)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9488-2-7"
+       id="radialGradient8509-9-3"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.0425236,0,0,0.5957361,-303.01458,36.099502)"
+       cx="192"
+       cy="-20.64286"
+       fx="192"
+       fy="-20.64286"
+       r="72" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9488-2-7">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9490-80-8" />
+      <stop
+         style="stop-color:#c7d9eb;stop-opacity:1"
+         offset="1"
+         id="stop9492-2-8" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21870-28-0"
+       id="linearGradient21876-2-6"
+       x1="105.74763"
+       y1="60.77557"
+       x2="105.74763"
+       y2="11.279737"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient21870-28-0">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop21872-81-4" />
+      <stop
+         style="stop-color:#babdb6;stop-opacity:1"
+         offset="1"
+         id="stop21874-4-6" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4069"
+       id="radialGradient4075"
+       cx="311.03125"
+       cy="214.17506"
+       fx="311.03125"
+       fy="214.17506"
+       r="6.0625"
+       gradientTransform="matrix(5.0922181,1.2687495e-7,-2.4800901e-8,0.99540215,-1272.8077,0.9964947)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5376-1-5-2">
+      <stop
+         style="stop-color:#fce94f;stop-opacity:1;"
+         offset="0"
+         id="stop5378-1-7-2" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop5380-0-9-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5932-1">
+      <stop
+         style="stop-color:#c4a000;stop-opacity:1;"
+         offset="0"
+         id="stop5934-7" />
+      <stop
+         style="stop-color:#edd400;stop-opacity:1"
+         offset="1"
+         id="stop5936-5" />
+    </linearGradient>
+    <linearGradient
+       y2="171.12926"
+       x2="-45.52816"
+       y1="90.778458"
+       x1="-152.99518"
+       gradientTransform="matrix(0.10624999,0.10624996,-0.10624999,0.10624996,32.8,5.174998)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient272"
+       xlink:href="#linearGradient5376-1-5-2"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="translate(-311.5,-51.5)"
+       y2="52.017246"
+       x2="311.5"
+       y1="66.3125"
+       x1="314.8125"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient274"
+       xlink:href="#linearGradient5932-1"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5316-4">
+      <stop
+         style="stop-color:#fce94f;stop-opacity:1;"
+         offset="0"
+         id="stop5318-9" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop5320-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,190.37962,31.112698)"
+       y2="141.29858"
+       x2="-71.921974"
+       y1="95.009911"
+       x1="-182.70885"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1098"
+       xlink:href="#linearGradient5316-4"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1118-0"
+       id="linearGradient1124-9"
+       x1="64.125"
+       y1="184.55972"
+       x2="115"
+       y2="184.55972"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient1118-0">
+      <stop
+         style="stop-color:#edd400;stop-opacity:1;"
+         offset="0"
+         id="stop1120-0" />
+      <stop
+         style="stop-color:#b8a500;stop-opacity:1"
+         offset="1"
+         id="stop1122-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5376-1-5-2-3"
+       id="linearGradient1168-5"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.03776661,0.0377666,-0.03776661,0.0377666,160.03819,2.469267)"
+       x1="-868.11768"
+       y1="1159.4119"
+       x2="-243.19453"
+       y2="1326.8596" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5376-1-5-2-3">
+      <stop
+         style="stop-color:#fce94f;stop-opacity:1;"
+         offset="0"
+         id="stop5378-1-7-2-5" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop5380-0-9-0-1" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1206">
+      <path
+         style="color:#000000;fill:none;stroke:#000000;stroke-width:5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 63.999998,186.5 120.375,130.125 63.999998,73.75 115,73.75 l 30.875,30.875 30.87499,-30.875 50.75,0 L 171.25,130 l 56.50001,56.5 -50.75,0 -31.25001,-31 -31,31 z"
+         id="path1208"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccc" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter1222">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.83957494"
+         id="feGaussianBlur1224" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter1234">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.3978998"
+         id="feGaussianBlur1236" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter1244"
+       x="-0.11482068"
+       width="1.2296414"
+       y="-0.1668572"
+       height="1.3337144">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.7852986"
+         id="feGaussianBlur1246" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5376-1-5"
+       id="linearGradient1305"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.10624999,0.10624996,-0.10624999,0.10624996,344.3,56.674998)"
+       x1="-152.99518"
+       y1="90.778458"
+       x2="-45.52816"
+       y2="171.12926" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5932"
+       id="linearGradient1307"
+       gradientUnits="userSpaceOnUse"
+       x1="314.8125"
+       y1="66.3125"
+       x2="311.5"
+       y2="52.017246" />
+    <filter
+       inkscape:collect="always"
+       id="filter1323">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.0428109"
+         id="feGaussianBlur1325" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5376-1-5-4"
+       id="linearGradient1329"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.06585797,0.06585795,-0.06585797,0.06585795,334.25637,127.31855)"
+       x1="-152.99518"
+       y1="90.778458"
+       x2="-45.52816"
+       y2="171.12926" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5932"
+       id="linearGradient1331"
+       gradientUnits="userSpaceOnUse"
+       x1="316.34631"
+       y1="131.26776"
+       x2="314.08289"
+       y2="122.95926"
+       gradientTransform="matrix(0.8105597,0,0,0.8105597,60.493379,24.721959)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5376-1-5-4-7"
+       id="linearGradient1343"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.04870301,0.04431806,-0.04870301,0.04431806,324.9184,174.44999)"
+       x1="-152.99518"
+       y1="90.778458"
+       x2="-45.52816"
+       y2="171.12926" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5932-7"
+       id="linearGradient1345"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.59942164,0,0,0.54545311,122.46637,105.40927)"
+       x1="316.34631"
+       y1="131.26776"
+       x2="314.08289"
+       y2="122.95926" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient1250-2">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop1252-1" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop1254-0" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1206-8">
+      <path
+         style="color:#000000;fill:none;stroke:#000000;stroke-width:5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 63.999998,186.5 120.375,130.125 63.999998,73.75 115,73.75 l 30.875,30.875 30.87499,-30.875 50.75,0 L 171.25,130 l 56.50001,56.5 -50.75,0 -31.25001,-31 -31,31 z"
+         id="path1208-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccc" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter1222-0">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.83957494"
+         id="feGaussianBlur1224-6" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5316-2">
+      <stop
+         style="stop-color:#fce94f;stop-opacity:1;"
+         offset="0"
+         id="stop5318-5" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop5320-8" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5332-8">
+      <stop
+         style="stop-color:#edd400;stop-opacity:1;"
+         offset="0"
+         id="stop5334-4" />
+      <stop
+         style="stop-color:#fce94f;stop-opacity:1"
+         offset="1"
+         id="stop5336-7" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5316-4-6">
+      <stop
+         style="stop-color:#fce94f;stop-opacity:1;"
+         offset="0"
+         id="stop5318-9-2" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop5320-9-9" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient1118-8">
+      <stop
+         style="stop-color:#edd400;stop-opacity:1;"
+         offset="0"
+         id="stop1120-1" />
+      <stop
+         style="stop-color:#b8a500;stop-opacity:1"
+         offset="1"
+         id="stop1122-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.70710678,0.70710678,0.70710678,0.70710678,-83.305014,-64.54275)"
+       y2="184.55972"
+       x2="115"
+       y1="184.55972"
+       x1="64.125"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1141-1"
+       xlink:href="#linearGradient1160-1"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient1160-1"
+       inkscape:collect="always">
+      <stop
+         id="stop1162-0"
+         offset="0"
+         style="stop-color:#ffed59;stop-opacity:1" />
+      <stop
+         id="stop1164-3"
+         offset="1"
+         style="stop-color:#dfc800;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5376-1-5-2"
+       id="linearGradient565"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.03776661,0.0377666,-0.03776661,0.0377666,160.03819,9.5782761)"
+       x1="-868.11768"
+       y1="1159.4119"
+       x2="-243.19453"
+       y2="1326.8596" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5316-2"
+       id="linearGradient567"
+       gradientUnits="userSpaceOnUse"
+       x1="-182.70885"
+       y1="95.009911"
+       x2="-71.921974"
+       y2="141.29858" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5316-2"
+       id="linearGradient569"
+       gradientUnits="userSpaceOnUse"
+       x1="-80"
+       y1="114"
+       x2="-2.1247385"
+       y2="139.27907" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5332-8"
+       id="linearGradient571"
+       gradientUnits="userSpaceOnUse"
+       x1="-172.49142"
+       y1="135.15036"
+       x2="-91.508568"
+       y2="156.84964" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5332-8"
+       id="linearGradient573"
+       gradientUnits="userSpaceOnUse"
+       x1="-89.19239"
+       y1="141.05025"
+       x2="-21.393398"
+       y2="154.48528" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5332-8"
+       id="linearGradient575"
+       gradientUnits="userSpaceOnUse"
+       x1="-85.126137"
+       y1="180.34283"
+       x2="-70.873856"
+       y2="155.65717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5316-4-6"
+       id="linearGradient577"
+       gradientUnits="userSpaceOnUse"
+       x1="-182.70885"
+       y1="95.009911"
+       x2="-71.921974"
+       y2="141.29858" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1118-8"
+       id="linearGradient579"
+       gradientUnits="userSpaceOnUse"
+       x1="64.125"
+       y1="184.55972"
+       x2="115"
+       y2="184.55972" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1160-1"
+       id="linearGradient581"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.70710678,0.70710678,0.70710678,0.70710678,-83.305014,-64.54275)"
+       x1="64.125"
+       y1="184.55972"
+       x2="115"
+       y2="184.55972" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1250-2"
+       id="radialGradient583"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.35500697,-0.01775035,0.00222157,0.04443131,37.33503,50.70614)"
+       cx="199.125"
+       cy="184.5"
+       fx="199.125"
+       fy="184.5"
+       r="20" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1250-2"
+       id="radialGradient585"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.35500697,-0.01775035,0.00222157,0.04443131,-0.34271782,50.70614)"
+       cx="199.125"
+       cy="184.5"
+       fx="199.125"
+       fy="184.5"
+       r="20" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1250-2"
+       id="radialGradient587"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.35500697,-0.01775035,0.00222157,0.04443131,-47.117982,89.89471)"
+       cx="199.125"
+       cy="184.5"
+       fx="199.125"
+       fy="184.5"
+       r="20" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1250-2"
+       id="radialGradient589"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.69903054,-0.03817184,0.00242567,0.04442063,-87.6976,93.774605)"
+       cx="200.12384"
+       cy="194.55293"
+       fx="200.12384"
+       fy="194.55293"
+       r="20" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1250-2"
+       id="radialGradient591"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.69903054,-0.03817184,0.00242567,0.04442063,-214.58232,-33.110133)"
+       cx="200.12384"
+       cy="194.55293"
+       fx="200.12384"
+       fy="194.55293"
+       r="20" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5376-1-5"
+       id="linearGradient597"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.10624999,0.10624996,-0.10624999,0.10624996,344.3,56.674998)"
+       x1="-152.99518"
+       y1="90.778458"
+       x2="-45.52816"
+       y2="171.12926" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5932"
+       id="linearGradient599"
+       gradientUnits="userSpaceOnUse"
+       x1="314.8125"
+       y1="66.3125"
+       x2="311.5"
+       y2="52.017246" />
+    <filter
+       inkscape:collect="always"
+       id="filter1373"
+       x="-0.083256567"
+       width="1.1665131"
+       y="-0.11990677"
+       height="1.2398135">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.90086207"
+         id="feGaussianBlur1375" />
+    </filter>
+  </defs>
+  <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="LGPL" />
+        <dc:title>Pidgin</dc:title>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>pidgin</rdf:li>
+            <rdf:li>im</rdf:li>
+            <rdf:li>instant</rdf:li>
+            <rdf:li>messaging</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 />
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title>Hylke Bons, Lapo Calamandrei</dc:title>
+          </cc:Agent>
+        </dc:contributor>
+      </cc:Work>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="baseplate"
+     style="display:none">
+    <rect
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect6282"
+       width="256"
+       height="256"
+       x="20"
+       y="20"
+       inkscape:label="256x256" />
+    <rect
+       inkscape:label="48x48"
+       y="39.99633"
+       x="296.0625"
+       height="48"
+       width="48"
+       id="rect6284"
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <rect
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect6592"
+       width="32"
+       height="32"
+       x="303"
+       y="115.99633"
+       inkscape:label="32x32" />
+    <rect
+       inkscape:label="22x22"
+       y="167.05884"
+       x="303"
+       height="22"
+       width="22"
+       id="rect6749"
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <rect
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect6833"
+       width="16"
+       height="16"
+       x="303"
+       y="209"
+       inkscape:label="16x16" />
+    <rect
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect5028"
+       width="24"
+       height="24"
+       x="302"
+       y="166"
+       inkscape:label="24x24" />
+    <text
+       xml:space="preserve"
+       style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
+       x="21"
+       y="-18.999996"
+       id="context"
+       sodipodi:linespacing="125%"
+       inkscape:label="context"><tspan
+         sodipodi:role="line"
+         id="tspan16843"
+         x="21"
+         y="-18.999996">apps</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
+       x="159"
+       y="-18.999996"
+       id="icon-name"
+       sodipodi:linespacing="125%"
+       inkscape:label="icon-name"><tspan
+         sodipodi:role="line"
+         id="tspan16847"
+         x="159"
+         y="-18.999996">xchat</tspan></text>
+  </g>
+  <g
+     id="layer1"
+     inkscape:label="artwork"
+     inkscape:groupmode="layer"
+     style="display:inline">
+    <g
+       id="g6143"
+       transform="matrix(2.8133316,0,0,2.8133316,-105.94049,29.728133)">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9548"
+         transform="matrix(0.5406096,0,0,0.5406096,-14.244677,-13.03211)"
+         d="M 136.84375,36 C 127.50937,36 120,43.509373 120,52.84375 l 0,78.3125 C 120,140.49063 127.50937,148 136.84375,148 l 78.65625,0 -15,25 30.28125,-25 16.375,0 C 256.49063,148 264,140.49063 264,131.15625 l 0,-78.3125 C 264,43.509373 256.49063,36 247.15625,36 l -110.3125,0 0,0 z"
+         style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.54060954;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter9566);enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:url(#radialGradient3163);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.54060954;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 59.734369,5.6189216 c -5.046255,0 -9.105893,4.0596391 -9.105893,9.1058934 l 0,42.336489 c 0,5.046255 4.059638,9.105893 9.105893,9.105893 l 42.522331,0 -8.109151,13.51524 16.370341,-13.51524 8.85248,0 c 5.04626,0 9.10589,-4.059638 9.10589,-9.105893 l 0,-42.336489 c 0,-5.0462543 -4.05963,-9.1058934 -9.10589,-9.1058934 l -59.636001,0 z"
+         id="rect8711" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:url(#linearGradient9506);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter9544);enable-background:accumulate"
+         d="m 127.63277,144.43651 92.27744,0 -3.88909,11.66726 16.26346,-12.02082 16.97056,0 c 6.36396,0.35355 10.6066,-8.13172 10.6066,-8.13172 l -135.41095,0 3.18198,8.48528 0,0 z"
+         id="path9496"
+         transform="matrix(0.5406096,0,0,0.5406096,-14.244677,-13.843024)"
+         sodipodi:nodetypes="cccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         transform="matrix(0.5406096,0,0,0.5406096,-14.244677,-13.843024)"
+         id="path3421"
+         d="M 136.84375,36 C 127.50937,36 120,43.509373 120,52.84375 l 0,78.3125 C 120,140.49063 127.50937,148 136.84375,148 l 78.65625,0 -15,25 30.28125,-25 16.375,0 C 256.49063,148 264,140.49063 264,131.15625 l 0,-78.3125 C 264,43.509373 256.49063,36 247.15625,36 l -110.3125,0 z"
+         style="fill:none;stroke:url(#linearGradient4209);stroke-width:1.31499863;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4199);enable-background:accumulate"
+         clip-path="url(#clipPath4195)" />
+      <rect
+         style="fill:url(#radialGradient4219);fill-opacity:1;stroke:none"
+         id="rect4211"
+         width="113.13708"
+         height="1.767767"
+         x="135.41095"
+         y="37.663383"
+         transform="matrix(0.5406096,0,0,0.5406096,-14.244677,-13.843024)" />
+      <rect
+         y="-127.88689"
+         x="16.552715"
+         height="0.57340306"
+         width="36.697792"
+         id="rect4221"
+         style="fill:url(#radialGradient4223);fill-opacity:1;stroke:none"
+         transform="matrix(0,1,-1,0,0,0)" />
+      <g
+         id="g541"
+         transform="matrix(0.811322,0,0,0.811322,16.889632,6.7334477)">
+        <path
+           d="M 60.40625,15.65625 80.4375,35.6875 60.40625,55.71875 l 18.03125,0 11.03125,-11 11.09375,11 18.0625,0 -20.09375,-20.0625 20,-20 -18.0625,0 L 89.5,26.625 78.53125,15.65625 l -18.125,0 z"
+           inkscape:href="#path1226"
+           id="path1238"
+           style="opacity:0.21810704;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1244);enable-background:accumulate"
+           xlink:href="#path1226"
+           inkscape:original="M 60.40625 15.65625 L 80.4375 35.6875 L 60.40625 55.71875 L 78.4375 55.71875 L 89.46875 44.71875 L 100.5625 55.71875 L 118.625 55.71875 L 98.53125 35.65625 L 118.53125 15.65625 L 100.46875 15.65625 L 89.5 26.625 L 78.53125 15.65625 L 60.40625 15.65625 z "
+           inkscape:radius="0"
+           sodipodi:type="inkscape:offset" />
+        <path
+           transform="translate(0,0.53317569)"
+           d="M 60.40625,15.65625 80.4375,35.6875 60.40625,55.71875 l 18.03125,0 11.03125,-11 11.09375,11 18.0625,0 -20.09375,-20.0625 20,-20 -18.0625,0 L 89.5,26.625 78.53125,15.65625 l -18.125,0 z"
+           inkscape:href="#path250"
+           id="path1226"
+           style="opacity:0.56378605;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1234);enable-background:accumulate"
+           xlink:href="#path250"
+           inkscape:original="M 60.40625 15.65625 L 80.4375 35.6875 L 60.40625 55.71875 L 78.4375 55.71875 L 89.46875 44.71875 L 100.5625 55.71875 L 118.625 55.71875 L 98.53125 35.65625 L 118.53125 15.65625 L 100.46875 15.65625 L 89.5 26.625 L 78.53125 15.65625 L 60.40625 15.65625 z "
+           inkscape:radius="0"
+           sodipodi:type="inkscape:offset" />
+        <path
+           sodipodi:nodetypes="ccccccccccccc"
+           inkscape:connector-curvature="0"
+           id="path250"
+           d="m 60.405424,55.724633 20.03852,-20.03852 -20.03852,-20.03852 18.127974,0 10.974533,10.974533 10.974529,-10.974533 18.03911,0 -19.994084,19.994089 20.082954,20.082951 -18.03911,0 L 89.4635,44.705668 78.444535,55.724633 z"
+           style="color:#000000;fill:url(#linearGradient565);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <g
+           transform="matrix(0.25134143,0.25134143,-0.25134143,0.25134143,145.85284,26.59339)"
+           clip-path="none"
+           id="g5178-9"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient567);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m -153.23744,116 45.23744,0 -4,-4 -44,0 z"
+             id="rect3165-6-2-1-6-6-5-0-2-4"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             style="color:#000000;fill:url(#linearGradient569);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M -0.24249113,116.14555 -80,116 l 4,-4 79.7575089,0.14555 z"
+             id="rect3165-6-2-1-6-6-5-0-2-1-1"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             style="color:#000000;fill:url(#linearGradient571);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M -180.9117,143.19581 -108,144 l -4,4 -79.36405,0.16808 z"
+             id="rect3165-6-2-1-6-6-5-0-2-7-7"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             style="color:#000000;fill:url(#linearGradient573);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M -33.790291,144.08839 -80,144 l 4,4 44,0 z"
+             id="rect3165-6-2-1-6-6-5-0-2-1-4-07"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m -191.75752,148.208 36.06245,-36.06245 2.43511,3.83193 -27.49756,27.23052 z"
+             id="rect3165-6-2-1-6-6-5-0-1-68"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M -80.985247,44.86035 -80,116 l 4,-4 -0.145558,-79.403961 z"
+             id="rect3165-6-2-1-6-6-5-0-2-2-7"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             style="color:#000000;fill:url(#linearGradient575);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M -80.353553,190.47487 -80,144 l 4,4 0,44 z"
+             id="rect3165-6-2-1-6-6-5-0-2-1-7-6"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m -108,72 0,44 -4,-4 0,-44 z"
+             id="rect3165-6-2-1-6-6-5-0-2-7-4-9"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="M -108.38478,218.80777 -108,144 l -4,4 -0.0312,79.93429 z"
+             id="rect3165-6-2-1-6-6-5-0-2-1-4-0-0"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             sodipodi:nodetypes="ccccc"
+             inkscape:connector-curvature="0"
+             id="path1081"
+             d="m -76.499098,32.94959 -35.355312,35.532108 3.83193,3.318993 27.053716,-26.967222 z"
+             style="color:#000000;fill:url(#linearGradient577);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,-289.16148,141.31371)"
+             inkscape:connector-curvature="0"
+             id="path1116"
+             d="m 72.875,182.875 -8.75,3.625 50.875,0 -2.24042,-3.88053 z"
+             style="fill:url(#linearGradient579);fill-opacity:1;stroke:none" />
+          <path
+             sodipodi:nodetypes="ccccc"
+             inkscape:connector-curvature="0"
+             id="path1116-2"
+             d="m -5.5232777,116.29977 8.7504495,-3.62393 -35.3553438,35.35534 -1.778448,-3.70944 z"
+             style="fill:url(#linearGradient581);fill-opacity:1;stroke:none;display:inline;enable-background:new" />
+        </g>
+        <path
+           clip-path="url(#clipPath1206-8)"
+           style="opacity:0.27983542;color:#000000;fill:none;stroke:#000000;stroke-width:2.46511245;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1222-0);enable-background:accumulate"
+           d="M 63.999998,186.5 120.375,130.125 63.999998,73.75 115,73.75 l 30.875,30.875 30.87499,-30.875 50.75,0 L 171.25,130 l 56.50001,56.5 -50.75,0 -31.25001,-31 -31,31 z"
+           id="path1166"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="ccccccccccccc"
+           transform="matrix(0.35545046,0,0,0.35545046,37.656601,-10.566879)" />
+        <rect
+           y="55.235882"
+           x="101.32667"
+           height="0.26658785"
+           width="14.218019"
+           id="rect1248"
+           style="color:#000000;fill:url(#radialGradient583);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <rect
+           style="color:#000000;fill:url(#radialGradient585);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           id="rect1258"
+           width="14.218019"
+           height="0.26658785"
+           x="63.648914"
+           y="55.235882" />
+        <rect
+           transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)"
+           y="94.424454"
+           x="16.87365"
+           height="0.26658785"
+           width="14.218019"
+           id="rect1262"
+           style="opacity:0.77777782;color:#000000;fill:url(#radialGradient587);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <rect
+           style="color:#000000;fill:url(#radialGradient589);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           id="rect1266"
+           width="24.431654"
+           height="0.45809349"
+           x="44.835384"
+           y="94.235939"
+           transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" />
+        <rect
+           transform="matrix(-0.70710678,-0.70710678,-0.70710678,0.70710678,0,0)"
+           y="-32.648796"
+           x="-82.049355"
+           height="0.45809349"
+           width="24.431654"
+           id="rect1270"
+           style="color:#000000;fill:url(#radialGradient591);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      </g>
+    </g>
+    <path
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccccccc"
+       id="path7237-9"
+       d="m 305.98638,47.55498 c -2.46394,0 -4.44614,1.982201 -4.44614,4.446135 l 0,20.090545 c 0,2.463936 1.9822,4.446136 4.44614,4.446136 l 18.42081,0 -1.61788,6.599089 7.99314,-6.599089 4.3224,0 c 2.46394,0 4.44614,-1.9822 4.44614,-4.446136 l 0,-20.090545 c 0,-2.463934 -1.9822,-4.446135 -4.44614,-4.446135 l -29.11847,0 z"
+       style="opacity:0.37719298;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;filter:url(#filter1323)" />
+    <g
+       id="g7233"
+       transform="matrix(0.4882702,0,0,0.4882702,277.01635,43.630097)">
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccc"
+         id="path7237"
+         d="m 59.33196,5.9902884 c -5.046255,0 -9.105893,4.0596386 -9.105893,9.1058916 l 0,41.146366 c 0,5.046256 4.059638,9.105893 9.105893,9.105893 l 37.726681,0 -3.313504,13.515239 16.370333,-13.515239 8.85248,0 c 5.04626,0 9.10589,-4.059637 9.10589,-9.105893 l 0,-41.146366 c 0,-5.046253 -4.05963,-9.1058916 -9.10589,-9.1058916 l -59.63599,0 z"
+         style="fill:url(#radialGradient8509);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient21876);stroke-width:2.04804635;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccc"
+         transform="matrix(0.5406096,0,0,0.5406096,-14.142544,-16.13061)"
+         id="path7239"
+         d="m 127.63277,144.43651 92.27744,0 -14.30719,23.03247 26.68156,-23.38603 16.97056,0 c 6.36396,0.35355 10.6066,-8.13172 10.6066,-8.13172 l -135.41095,0 3.18198,8.48528 z"
+         style="fill:url(#linearGradient8511);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter9544);enable-background:accumulate" />
+      <rect
+         y="7.8969836"
+         x="58.959778"
+         height="2.7893674"
+         width="61.162987"
+         id="rect7243"
+         style="fill:url(#radialGradient8515);fill-opacity:1;stroke:none" />
+    </g>
+    <path
+       inkscape:connector-curvature="0"
+       style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 306.87158,169.5 c -1.23329,0 -2.22546,0.99217 -2.22546,2.22546 l 0,10.56133 c 0,1.23329 0.99217,2.22546 2.22546,2.22546 l 9.76196,0 -0.0907,3.30309 4.00087,-3.30309 0.73081,0 c 1.23329,0 2.22545,-0.99217 2.22545,-2.22546 l 0,-10.56133 c 0,-1.23329 -0.99216,-2.22546 -2.22545,-2.22546 l -14.40297,0 0,0 z"
+       id="path9117-4"
+       sodipodi:nodetypes="cccccccccccc" />
+    <g
+       transform="matrix(0.24641969,0,0,0.2443976,292.11344,166.91085)"
+       id="g9115">
+      <path
+         inkscape:connector-curvature="0"
+         style="color:#000000;fill:url(#radialGradient8509-3);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient21876-1);stroke-width:4.07487059;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 59.33196,6.5023 c -5.046255,0 -9.105893,4.059639 -9.105893,9.105892 l 0,43.213734 c 0,5.046256 4.059638,9.105893 9.105893,9.105893 l 39.94294,0 -0.371004,13.515239 16.370334,-13.515239 2.99025,0 c 5.04626,0 9.10589,-4.059637 9.10589,-9.105893 l 0,-43.213734 c 0,-5.046253 -4.05963,-9.105892 -9.10589,-9.105892 l -58.93252,0 0,0 z"
+         id="path9117"
+         sodipodi:nodetypes="cccccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:url(#linearGradient1821);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter9544);enable-background:accumulate"
+         d="m 127.63277,144.43651 92.27744,0 -3.88909,11.66726 16.26346,-12.02082 16.97056,0 c 6.36396,0.35355 10.6066,-8.13172 10.6066,-8.13172 l -135.41095,0 3.18198,8.48528 0,0 z"
+         id="path9119"
+         transform="matrix(0.5406096,0,0,0.816211,-14.142544,-53.464387)"
+         sodipodi:nodetypes="cccccccc" />
+      <rect
+         style="fill:url(#radialGradient1823);fill-opacity:1;stroke:none"
+         id="rect9121"
+         width="61.162987"
+         height="2.7893674"
+         x="58.959778"
+         y="7.8969836" />
+    </g>
+    <g
+       id="g9499-1"
+       transform="matrix(0.1761496,0,0,0.1761496,295.6527,207.35462)">
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccccc"
+         id="path9501-4"
+         d="m 59.33196,6.5023 c -5.046255,0 -9.105893,4.059639 -9.105893,9.105892 l 0,44.515095 c 0,5.046256 4.059638,9.105893 9.105893,9.105893 l 36.93226,0 5.30599,19.192232 10.69334,-19.192232 2.99025,0 c 5.04626,0 9.10589,-4.059637 9.10589,-9.105893 l 0,-44.515095 c 0,-5.046253 -4.05963,-9.105892 -9.10589,-9.105892 l -55.92184,0 0,0 z"
+         style="color:#000000;fill:url(#radialGradient8509-9);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient21876-2);stroke-width:5.67699289;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccc"
+         transform="matrix(0.5406096,0,0,0.816211,-14.142544,-53.464387)"
+         id="path9503-8"
+         d="m 127.63277,144.43651 88.56474,0 1.97113,14.93396 10.40324,-15.28752 16.97056,0 c 6.36396,0.35355 10.6066,-8.13172 10.6066,-8.13172 l -131.69825,0 3.18198,8.48528 0,0 z"
+         style="fill:url(#linearGradient9735-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter9544-5);enable-background:accumulate" />
+      <rect
+         y="9.3407955"
+         x="58.959778"
+         height="5.676991"
+         width="61.162987"
+         id="rect9505-8"
+         style="fill:url(#radialGradient9737-3);fill-opacity:1;stroke:none" />
+    </g>
+    <path
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccccccccccc"
+       id="path7237-0-2"
+       d="m 308.85575,120.5 c -1.8091,0 -3.2645,1.4554 -3.2645,3.2645 l 0,14.56759 c 0,1.8091 1.4554,3.2645 3.2645,3.2645 l 13.52517,0 -1.1879,4.84527 5.86883,-4.84527 3.17365,0 c 1.80911,0 3.2645,-1.4554 3.2645,-3.2645 l 0,-14.56759 c 0,-1.8091 -1.45539,-3.2645 -3.2645,-3.2645 l -21.37975,0 0,0 z"
+       style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <g
+       style="display:inline;enable-background:new"
+       id="g7233-6"
+       transform="matrix(0.3585042,0,0,0.3585042,287.58499,117.1689)">
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccc"
+         id="path7237-0"
+         d="m 59.33196,6.5023 c -5.046255,0 -9.105893,4.059639 -9.105893,9.105892 l 0,40.634354 c 0,5.046256 4.059638,9.105893 9.105893,9.105893 l 37.726681,0 -3.313504,13.515239 16.370333,-13.515239 8.85248,0 c 5.04626,0 9.10589,-4.059637 9.10589,-9.105893 l 0,-40.634354 c 0,-5.046253 -4.05963,-9.105892 -9.10589,-9.105892 l -59.63599,0 0,0 z"
+         style="color:#000000;fill:url(#radialGradient8509-6);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient21876-84);stroke-width:2.78936768;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccc"
+         transform="matrix(0.5406096,0,0,0.5406096,-14.142544,-16.898627)"
+         id="path7239-8"
+         d="m 127.63277,144.43651 92.27744,0 -3.88909,11.66726 16.26346,-12.02082 16.97056,0 c 6.36396,0.35355 10.6066,-8.13172 10.6066,-8.13172 l -135.41095,0 3.18198,8.48528 0,0 z"
+         style="fill:url(#linearGradient8511-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter9544-4);enable-background:accumulate" />
+      <rect
+         y="7.8969836"
+         x="58.959778"
+         height="2.7893674"
+         width="61.162987"
+         id="rect7243-1"
+         style="fill:url(#radialGradient11483);fill-opacity:1;stroke:none" />
+    </g>
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0"
+       inkscape:original="M 307.65625 51.53125 L 316.6875 60.5 L 307.375 69.5625 L 314.9375 69.5 L 320.5 64.3125 L 325.75 69.5 L 333.34375 69.46875 L 324.3125 60.5 L 333.3125 51.5625 L 325.71875 51.5625 L 320.5 56.6875 L 315.46875 51.5625 L 307.65625 51.53125 z "
+       xlink:href="#rect3165-6-2-1-6-6-5-0-0-2-2-5"
+       style="opacity:0.1535088;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.14663541;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1373);enable-background:accumulate"
+       id="path1303"
+       inkscape:href="#rect3165-6-2-1-6-6-5-0-0-2-2-5"
+       d="M 307.65625,51.53125 316.6875,60.5 307.375,69.5625 314.9375,69.5 320.5,64.3125 325.75,69.5 333.34375,69.46875 324.3125,60.5 l 9,-8.9375 -7.59375,0 -5.21875,5.125 -5.03125,-5.125 -7.8125,-0.03125 z"
+       transform="matrix(0.87283847,0,0,0.87139566,40.737387,8.6893198)" />
+    <g
+       id="g593"
+       transform="matrix(0.85191906,0,0,0.85191906,47.440306,8.9654402)">
+      <path
+         sodipodi:nodetypes="ccccccccccccc"
+         style="color:#000000;fill:url(#linearGradient597);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient599);stroke-width:1.1738205;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 325.70533,51.558058 -5.20533,5.11694 -5.02855,-5.11694 -7.825,-0.04242 9.02855,8.984357 -9.29372,9.072746 7.55984,-0.08661 5.55888,-5.161135 5.24952,5.161135 7.60403,-0.0018 -9.02855,-8.984357 8.98436,-8.940163 z"
+         id="rect3165-6-2-1-6-6-5-0-0-2-2-5"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="ccccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path5875"
+         d="m 314.9375,52.5 -4.875,0 8,8 -8.0625,7.96875 4.4375,-0.125 6.0625,-5.40625 5.6875,5.5 L 331,68.46875 322.9375,60.5 331,52.53125 326.21875,52.4375 320.5,58.0625 z"
+         style="color:#000000;fill:none;stroke:#ffffff;stroke-width:1.1738205;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </g>
+    <path
+       inkscape:connector-curvature="0"
+       id="rect3165-6-2-1-6-6-5-0-0-2-2-5-9-3"
+       d="m 323.12062,124 -3.575,3.575 -3.575,-3.575 -2.925,2.925 3.575,3.575 -3.575,3.575 2.925,2.92499 3.575,-3.57499 3.575,3.57499 2.925,-2.925 -3.575,-3.57499 3.575,-3.575 -2.925,-2.925 z"
+       style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.23371542;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5980);enable-background:accumulate"
+       transform="matrix(0.8105597,0,0,0.8105597,60.493379,24.721959)" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect3165-6-2-1-6-6-5-0-0-2-2-5-9"
+       d="m 322.04732,124.87674 -2.54314,2.44181 -2.49247,-2.54313 -5.10652,0.0405 5.2281,4.8735 -5.93735,5.7347 5.00521,-0.0101 3.30303,-3.35368 3.25237,3.20171 4.70125,0.0608 -5.58274,-5.63338 5.17746,-4.82283 z"
+       style="color:#000000;fill:url(#linearGradient1329);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient1331);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:nodetypes="ccccccccccccc" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect3165-6-2-1-6-6-5-0-0-2-2-5-9-2"
+       d="m 316.15186,172.5 -2.14293,1.94999 -2.14293,-1.94999 -3.46765,0.0354 3.85727,3.50998 -3.69656,3.51 3.30694,0.0354 2.14293,-1.94999 2.14293,1.94999 3.57479,-0.0355 -3.96442,-3.50999 3.64299,-3.50998 z"
+       style="color:#000000;fill:url(#linearGradient1343);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient1345);stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:nodetypes="ccccccccccccc" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect3165-6-2-1-6-6-5-0-0-2-2-5-9-2-6"
+       d="m 312.62501,211.0909 -1.62501,1.625 -1.625,-1.625 -1.32955,1.32955 1.625,1.625 -1.625,1.62501 L 309.375,217 311,215.375 l 1.62501,1.625 1.32954,-1.32955 -1.625,-1.625 1.625,-1.625 z"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:nodetypes="ccccccccccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.92807764"
+       inkscape:original="M 306.71875 168.5 C 305.47525 168.5 304.5 169.48546 304.5 170.71875 L 304.5 181.28125 C 304.5 182.51454 305.47525 183.5 306.71875 183.5 L 316.5625 183.5 L 316.5 186.8125 L 320.53125 183.5 L 321.25 183.5 C 322.49349 183.5 323.5 182.51454 323.5 181.28125 L 323.5 170.71875 C 323.5 169.48546 322.49349 168.5 321.25 168.5 L 306.71875 168.5 z "
+       style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4015);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path3235"
+       d="m 306.71875,169.4375 c -0.75317,0 -1.28125,0.53722 -1.28125,1.28125 l 0,10.5625 c 0,0.74403 0.52808,1.28125 1.28125,1.28125 l 9.84375,0 a 0.92817045,0.92817045 0 0 1 0.9375,0.96875 l -0.0313,1.28125 2.46875,-2.03125 a 0.92817045,0.92817045 0 0 1 0.59375,-0.21875 l 0.71875,0 c 0.75316,0 1.3125,-0.55291 1.3125,-1.28125 l 0,-10.5625 c 0,-0.72834 -0.55934,-1.28125 -1.3125,-1.28125 l -14.53125,0 z" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.96875"
+       inkscape:original="M 306.09375 208.5 C 305.20485 208.5 304.5 209.20485 304.5 210.09375 L 304.5 217.9375 C 304.5 218.8264 305.20485 219.5625 306.09375 219.5625 L 312.625 219.5625 L 313.53125 222.9375 L 315.4375 219.5625 L 315.96875 219.5625 C 316.85765 219.5625 317.5625 218.8264 317.5625 217.9375 L 317.5625 210.09375 C 317.5625 209.20485 316.85765 208.5 315.96875 208.5 L 306.09375 208.5 z "
+       style="color:#000000;fill:none;stroke:url(#radialGradient4075);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path4067"
+       d="m 306.09375,209.46875 c -0.37679,0 -0.625,0.24821 -0.625,0.625 l 0,7.84375 c 0,0.37679 0.27092,0.65625 0.625,0.65625 l 6.53125,0 a 0.96884687,0.96884687 0 0 1 0.9375,0.71875 l 0.28125,1.09375 0.75,-1.3125 a 0.96884687,0.96884687 0 0 1 0.84375,-0.5 l 0.53125,0 c 0.35408,0 0.625,-0.27946 0.625,-0.65625 l 0,-7.84375 c 0,-0.37679 -0.24821,-0.625 -0.625,-0.625 l -9.875,0 z" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0088257"
+       inkscape:original="M 317 124.78125 L 311.90625 124.8125 L 317.125 129.6875 L 311.1875 135.4375 L 316.1875 135.40625 L 319.5 132.0625 L 322.75 135.25 L 327.46875 135.3125 L 321.875 129.6875 L 327.0625 124.875 L 322.0625 124.875 L 319.5 127.3125 L 317 124.78125 z "
+       xlink:href="#rect3165-6-2-1-6-6-5-0-0-2-2-5-9"
+       style="color:#000000;fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path1327"
+       inkscape:href="#rect3165-6-2-1-6-6-5-0-0-2-2-5-9"
+       d="m 316.03125,124.4375 -3.3125,0.0312 4.59375,4.28125 a 1.0089265,1.0089265 0 0 1 0,1.46875 l -5.5625,5.34375 3.28125,0 3.78125,-3.84375 a 1.0089265,1.0089265 0 0 1 1.4375,0 l 3.75,3.65625 2.90625,0.0312 -5.15625,-5.1875 a 1.0089265,1.0089265 0 0 1 0.0312,-1.46875 l 4.5,-4.1875 -3.1875,0 -2.875,2.71875 a 1.0089265,1.0089265 0 0 1 -1.40625,0 l -2.78125,-2.84375 z" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.62207431"
+       inkscape:original="M 311.875 172.5 L 308.40625 172.53125 L 312.25 176.03125 L 308.5625 179.5625 L 311.875 179.59375 L 314 177.65625 L 316.15625 179.59375 L 319.71875 179.5625 L 315.75 176.03125 L 319.40625 172.53125 L 316.15625 172.5 L 314 174.4375 L 311.875 172.5 z "
+       xlink:href="#rect3165-6-2-1-6-6-5-0-0-2-2-5-9-2"
+       style="color:#000000;fill:none;stroke:#ffffff;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path1341"
+       inkscape:href="#rect3165-6-2-1-6-6-5-0-0-2-2-5-9-2"
+       d="m 311.25,172.125 -2.28125,0.0312 3.4375,3.4375 a 0.62213651,0.62213651 0 0 1 0,0.875 l -3.3125,3.46875 2.15625,0.0312 2.3125,-2.3125 a 0.62213651,0.62213651 0 0 1 0.875,0 l 2.3125,2.3125 2.40625,-0.0312 -3.5625,-3.46875 a 0.62213651,0.62213651 0 0 1 0,-0.875 l 3.25,-3.4375 -2.09375,-0.0312 -2.3125,2.3125 a 0.62213651,0.62213651 0 0 1 -0.875,0 L 311.25,172.125 z" />
+  </g>
+</svg>


More information about the scm-commits mailing list