gparted r909 - in trunk: . data data/icons data/icons/svg pixmaps src
- From: gedakc svn gnome org
- To: svn-commits-list gnome org
- Subject: gparted r909 - in trunk: . data data/icons data/icons/svg pixmaps src
- Date: Mon, 22 Sep 2008 22:41:49 +0000 (UTC)
Author: gedakc
Date: Mon Sep 22 22:41:49 2008
New Revision: 909
URL: http://svn.gnome.org/viewvc/gparted?rev=909&view=rev
Log:
Enabled GParted to use themed app icon (Tango theme).
Thanks to Sebastion Kraft for designing the icons.
Thanks to Michael Monreal for the small patch to make use of themed app icon from hicolor.
Added:
trunk/data/
trunk/data/Makefile.am
trunk/data/icons/
trunk/data/icons/Makefile.am
trunk/data/icons/hicolor_apps_16x16_gparted.png (contents, props changed)
trunk/data/icons/hicolor_apps_22x22_gparted.png (contents, props changed)
trunk/data/icons/hicolor_apps_24x24_gparted.png (contents, props changed)
trunk/data/icons/hicolor_apps_32x32_gparted.png (contents, props changed)
trunk/data/icons/hicolor_apps_48x48_gparted.png (contents, props changed)
trunk/data/icons/hicolor_apps_scalable_gparted.svg
trunk/data/icons/svg/
trunk/data/icons/svg/gparted.svg
Removed:
trunk/pixmaps/
Modified:
trunk/AUTHORS
trunk/ChangeLog
trunk/Makefile.am
trunk/configure.in
trunk/src/Makefile.am
trunk/src/Win_GParted.cc
Modified: trunk/AUTHORS
==============================================================================
--- trunk/AUTHORS (original)
+++ trunk/AUTHORS Mon Sep 22 22:41:49 2008
@@ -22,6 +22,12 @@
* Created OperationLabelPartition.h, OperationLabelPartition.cc
* Maintained from official 0.3.5 release onward
+Michael Monreal <michael monreal gmx net>
+ * Wrote small patch to implement themed app icon in hicolor
+
+Sebastian Kraft <kraft sebastion gmail com>
+ * Designed Tango theme icons
+
Bart Harkvoort <gparted users sourceforge net>
* Original author of GParted.
* Created and maintained up to official 0.3.3 release and
Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am (original)
+++ trunk/Makefile.am Mon Sep 22 22:41:49 2008
@@ -1,8 +1,8 @@
### Do not execute make in the help subdirectory if DISABLE_DOC is set
if DISABLE_DOC
-SUBDIRS = compose doc include pixmaps po src
+SUBDIRS = compose data doc include po src
else
-SUBDIRS = help compose doc include pixmaps po src
+SUBDIRS = help compose data doc include po src
endif
@INTLTOOL_DESKTOP_RULE@
Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in (original)
+++ trunk/configure.in Mon Sep 22 22:41:49 2008
@@ -111,11 +111,12 @@
AC_CONFIG_FILES([
Makefile
compose/Makefile
+data/Makefile
+data/icons/Makefile
doc/Makefile
help/Makefile
include/Makefile
src/Makefile
-pixmaps/Makefile
po/Makefile.in
])
Added: trunk/data/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/Makefile.am Mon Sep 22 22:41:49 2008
@@ -0,0 +1 @@
+SUBDIRS = icons
Added: trunk/data/icons/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/Makefile.am Mon Sep 22 22:41:49 2008
@@ -0,0 +1,81 @@
+NULL =
+
+public_icons_themes = \
+ hicolor \
+ $(NULL)
+
+public_icons = \
+ hicolor_apps_16x16_gparted.png \
+ hicolor_apps_22x22_gparted.png \
+ hicolor_apps_24x24_gparted.png \
+ hicolor_apps_32x32_gparted.png \
+ hicolor_apps_48x48_gparted.png \
+ hicolor_apps_scalable_gparted.svg \
+ $(NULL)
+
+private_icons = \
+ $(NULL)
+
+noinst_DATA = \
+ $(NULL)
+
+EXTRA_DIST = \
+ $(public_icons) \
+ $(private_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_icons_themes); do \
+ $(gtk_update_icon_cache) $(datadir)/icons/$$theme; \
+ done; \
+ else \
+ echo "*** Icon cache not updated. After (un)install, run this:"; \
+ for theme in $(public_icons_themes); do \
+ echo "*** $(gtk_update_icon_cache) $(datadir)/icons/$$theme"; \
+ done; \
+ fi
+
+install-icons:
+ for icon in $(public_icons); do \
+ THEME=`echo $$icon | cut -d_ -f1`; \
+ CONTEXT=`echo $$icon | cut -d_ -f2`; \
+ SIZE=`echo $$icon | cut -d_ -f3`; \
+ ICONFILE=`echo $$icon | cut -d_ -f4`; \
+ mkdir -p $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \
+ $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
+ done; \
+ for icon in $(private_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)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \
+ $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(pkgdatadir)/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; \
+ for icon in $(private_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)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
+ done
+
+install-data-local: install-icons update-icon-cache
+
+uninstall-local: uninstall-icons update-icon-cache
Added: trunk/data/icons/hicolor_apps_16x16_gparted.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/hicolor_apps_22x22_gparted.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/hicolor_apps_24x24_gparted.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/hicolor_apps_32x32_gparted.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/hicolor_apps_48x48_gparted.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/hicolor_apps_scalable_gparted.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/hicolor_apps_scalable_gparted.svg Mon Sep 22 22:41:49 2008
@@ -0,0 +1,1038 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.46+devel"
+ version="1.0"
+ sodipodi:docname="gparted.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <title
+ id="title2578">gparted</title>
+ <defs
+ id="defs4">
+ <linearGradient
+ id="linearGradient4122">
+ <stop
+ id="stop4124"
+ offset="0"
+ style="stop-color:white;stop-opacity:1" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1"
+ offset="0.25"
+ id="stop4130" />
+ <stop
+ id="stop4132"
+ offset="0.375"
+ style="stop-color:#eeeeec;stop-opacity:1" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1"
+ offset="0.5"
+ id="stop4126" />
+ <stop
+ id="stop4128"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4108">
+ <stop
+ id="stop4110"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ <stop
+ id="stop4112"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4092">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop4094" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop4096" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4078">
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1"
+ offset="0"
+ id="stop4080" />
+ <stop
+ id="stop4082"
+ offset="0.5"
+ style="stop-color:#babdb6;stop-opacity:1" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:0"
+ offset="1"
+ id="stop4084" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4070">
+ <stop
+ style="stop-color:white;stop-opacity:1"
+ offset="0"
+ id="stop4072" />
+ <stop
+ id="stop4074"
+ offset="0.5"
+ style="stop-color:white;stop-opacity:1;" />
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="1"
+ id="stop4076" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4062">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop4064" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop4066" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4054">
+ <stop
+ style="stop-color:#ef2929;stop-opacity:1"
+ offset="0"
+ id="stop4056" />
+ <stop
+ style="stop-color:#cc0000;stop-opacity:1"
+ offset="1"
+ id="stop4058" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4046">
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:1"
+ offset="0"
+ id="stop4048" />
+ <stop
+ style="stop-color:#f57900;stop-opacity:1"
+ offset="1"
+ id="stop4050" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4038">
+ <stop
+ style="stop-color:#8ae234;stop-opacity:1"
+ offset="0"
+ id="stop4040" />
+ <stop
+ style="stop-color:#73d216;stop-opacity:1"
+ offset="1"
+ id="stop4042" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4018">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop4020" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop4022" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3909">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3911" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3913" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3804">
+ <stop
+ style="stop-color:#2f302e;stop-opacity:1;"
+ offset="0"
+ id="stop3806" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="1"
+ id="stop3808" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2886"
+ inkscape:collect="always">
+ <stop
+ id="stop2888"
+ offset="0"
+ style="stop-color:black;stop-opacity:1;" />
+ <stop
+ id="stop2890"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2900">
+ <stop
+ id="stop2902"
+ offset="0"
+ style="stop-color:black;stop-opacity:0;" />
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0.5"
+ id="stop2908" />
+ <stop
+ id="stop2904"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2909">
+ <stop
+ id="stop2911"
+ offset="0"
+ style="stop-color:white;stop-opacity:0;" />
+ <stop
+ style="stop-color:white;stop-opacity:1;"
+ offset="0.5"
+ id="stop2917" />
+ <stop
+ id="stop2913"
+ offset="1"
+ style="stop-color:white;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3468">
+ <stop
+ id="stop3470"
+ offset="0"
+ style="stop-color:#fdfdfc;stop-opacity:1" />
+ <stop
+ id="stop3472"
+ offset="1"
+ style="stop-color:white;stop-opacity:0.37121212" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2899">
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="0"
+ id="stop2901" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop2903" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5690">
+ <stop
+ id="stop5692"
+ offset="0"
+ style="stop-color:white;stop-opacity:1;" />
+ <stop
+ id="stop5694"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5740">
+ <stop
+ id="stop5742"
+ offset="0"
+ style="stop-color:#d0d0cb;stop-opacity:1;" />
+ <stop
+ id="stop5744"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient8613">
+ <stop
+ id="stop8615"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1" />
+ <stop
+ id="stop8617"
+ offset="1"
+ style="stop-color:#2e3436;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient8710">
+ <stop
+ id="stop8712"
+ offset="0"
+ style="stop-color:black;stop-opacity:1;" />
+ <stop
+ id="stop8714"
+ offset="1"
+ style="stop-color:white;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient9613">
+ <stop
+ id="stop9615"
+ offset="0"
+ style="stop-color:white;stop-opacity:1" />
+ <stop
+ style="stop-color:white;stop-opacity:1;"
+ offset="0.5"
+ id="stop9619" />
+ <stop
+ id="stop9617"
+ offset="1"
+ style="stop-color:#cccfca;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient9633">
+ <stop
+ id="stop9635"
+ offset="0"
+ style="stop-color:#eeeeec;stop-opacity:1" />
+ <stop
+ id="stop9639"
+ offset="1"
+ style="stop-color:#888a85;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient9641">
+ <stop
+ id="stop9643"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1" />
+ <stop
+ id="stop9645"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2967"
+ inkscape:collect="always">
+ <stop
+ id="stop2969"
+ offset="0"
+ style="stop-color:white;stop-opacity:1;" />
+ <stop
+ id="stop2971"
+ offset="1"
+ style="stop-color:white;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2986"
+ inkscape:collect="always">
+ <stop
+ id="stop2988"
+ offset="0"
+ style="stop-color:black;stop-opacity:1;" />
+ <stop
+ id="stop2990"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2986"
+ id="linearGradient2907"
+ gradientUnits="userSpaceOnUse"
+ x1="21.9375"
+ y1="39"
+ x2="21.9375"
+ y2="37.995617" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient8710"
+ id="linearGradient2915"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.602867,-0.797841,0.797841,0.602867,-41.12611,44.62773)"
+ x1="40.617188"
+ y1="30.554688"
+ x2="40.710938"
+ y2="30.359375" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient8710"
+ id="linearGradient2917"
+ gradientUnits="userSpaceOnUse"
+ x1="40.617188"
+ y1="30.554688"
+ x2="40.710938"
+ y2="30.359375" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient8613"
+ id="radialGradient2927"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.662477,0,0,1.61358,-4.989175,-18.65647)"
+ cx="7.5177727"
+ cy="30.573555"
+ fx="7.5177727"
+ fy="30.573555"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9633"
+ id="radialGradient2929"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.569487,0,0,1.523325,-4.288627,-15.92107)"
+ cx="7.5336008"
+ cy="30.307562"
+ fx="7.5336008"
+ fy="30.307562"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient8613"
+ id="radialGradient2931"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.662477,0,0,1.61358,-4.989175,-18.65647)"
+ cx="7.5177727"
+ cy="30.573555"
+ fx="7.5177727"
+ fy="30.573555"
+ r="0.53125" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3468"
+ id="linearGradient2937"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.995556,0,-3.931113)"
+ x1="24.748737"
+ y1="35.354588"
+ x2="24.998737"
+ y2="14.997767" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9613"
+ id="radialGradient2941"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.389748,0,0,1.348872,-2.91982,-10.63815)"
+ cx="7.5191436"
+ cy="30.304251"
+ fx="7.5191436"
+ fy="30.304251"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740"
+ id="radialGradient2945"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.032991,-0.596398,0.575121,0.99614,-12.23456,11.55448)"
+ cx="25.251999"
+ cy="16.47991"
+ fx="25.251999"
+ fy="16.47991"
+ r="21.980215" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2899"
+ id="linearGradient2947"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,50)"
+ x1="53.812813"
+ y1="43.573235"
+ x2="-2.8138931"
+ y2="35.500015" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2967"
+ id="linearGradient2949"
+ gradientUnits="userSpaceOnUse"
+ x1="12.5"
+ y1="43.1875"
+ x2="12.5"
+ y2="34.045513" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient2951"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.42294,10.5,-14.95703)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient2953"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.42294,-0.875,-15.04578)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient2955"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.459833,0,-0.391165,1.370105,40.62503,-13.29892)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2886"
+ id="radialGradient2957"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.095822,0,0,3.101282,-9.53921,-94.5433)"
+ cx="0"
+ cy="17"
+ fx="0"
+ fy="17"
+ r="2" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2886"
+ id="radialGradient2959"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.095822,0,0,3.101282,38.20996,-10.90025)"
+ cx="0"
+ cy="17"
+ fx="0"
+ fy="17"
+ r="2" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2900"
+ id="linearGradient2961"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.047911,0,0,2.067521,1.347566,6.673675)"
+ x1="9.8994951"
+ y1="20"
+ x2="9.8994951"
+ y2="13.979153" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5690"
+ id="linearGradient3794"
+ x1="35.722687"
+ y1="33.221653"
+ x2="11.953137"
+ y2="14.982971"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,3.001212)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9641"
+ id="linearGradient3802"
+ x1="50.505718"
+ y1="37.468567"
+ x2="2.3996398"
+ y2="8.4479914"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,3.001212)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3804"
+ id="linearGradient3810"
+ x1="8.09375"
+ y1="13.796185"
+ x2="20.501734"
+ y2="29.455748"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0029382,0,0,1.0690426,-0.11753,-1.915373)" />
+ <linearGradient
+ id="linearGradient5740-6">
+ <stop
+ id="stop5742-3"
+ offset="0"
+ style="stop-color:#d0d0cb;stop-opacity:1;" />
+ <stop
+ id="stop5744-8"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740-6"
+ id="radialGradient3884"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.29978113,-0.25514914,0.16690409,0.42616552,-2.0855839,27.055878)"
+ cx="25.251999"
+ cy="16.47991"
+ fx="25.251999"
+ fy="16.47991"
+ r="21.980215" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3909"
+ id="radialGradient3915"
+ cx="7.625"
+ cy="30.578125"
+ fx="7.625"
+ fy="30.578125"
+ r="0.53125"
+ gradientTransform="matrix(1.3511662,-3.7918611e-6,1.1741249e-6,1.5765217,-2.6776781,-17.628922)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4070"
+ id="radialGradient4006"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.389748,0,0,1.348872,-2.91982,-10.63815)"
+ cx="7.5191436"
+ cy="30.304251"
+ fx="7.5191436"
+ fy="30.304251"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4078"
+ id="radialGradient4014"
+ cx="7.6249995"
+ cy="30.578125"
+ fx="7.6249995"
+ fy="30.578125"
+ r="0.53125"
+ gradientTransform="matrix(0.9999996,-3.5854879e-7,9.2353616e-8,0.97058851,4.6991103e-7,0.89935113)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4108"
+ id="radialGradient4024"
+ cx="21.885324"
+ cy="21.091515"
+ fx="21.885324"
+ fy="21.091515"
+ r="10.682883"
+ gradientTransform="matrix(0.68596186,-0.9212505,1.444828,0.71285424,-25.655926,33.736687)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4038"
+ id="radialGradient4044"
+ cx="23.570951"
+ cy="22.565657"
+ fx="23.570951"
+ fy="22.565657"
+ r="11.15492"
+ gradientTransform="matrix(1,0,0,0.61209071,0,8.753428)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4046"
+ id="radialGradient4052"
+ cx="25.525513"
+ cy="26.023817"
+ fx="25.525513"
+ fy="26.023817"
+ r="6.5349795"
+ gradientTransform="matrix(0.52341584,-0.91271001,1.0252793,0.67462715,-12.879236,29.477642)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4054"
+ id="radialGradient4060"
+ cx="21.366146"
+ cy="28.457472"
+ fx="21.366146"
+ fy="28.457472"
+ r="4.6209285"
+ gradientTransform="matrix(1.1542747,-1.6047814,1.4632662,1.2076031,-43.596086,25.552294)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4062"
+ id="radialGradient4068"
+ cx="22.518518"
+ cy="27.786009"
+ fx="22.518518"
+ fy="27.786009"
+ r="10.337449"
+ gradientTransform="matrix(1,0,0,0.45222929,0,15.220362)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4018"
+ id="radialGradient4088"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.68596186,-0.9212505,1.444828,0.71285424,-25.655926,33.736687)"
+ cx="24.690754"
+ cy="23.189171"
+ fx="24.690754"
+ fy="23.189171"
+ r="10.682883" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4092"
+ id="radialGradient4098"
+ cx="24"
+ cy="30.265625"
+ fx="24"
+ fy="30.265625"
+ r="14"
+ gradientTransform="matrix(1,0,0,0.3046875,0,21.044067)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4122"
+ id="linearGradient4120"
+ x1="19.679014"
+ y1="20.903482"
+ x2="23.185186"
+ y2="32.096901"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4122"
+ id="linearGradient4138"
+ gradientUnits="userSpaceOnUse"
+ x1="19.679014"
+ y1="20.903482"
+ x2="23.185186"
+ y2="32.096901" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4122"
+ id="linearGradient4141"
+ gradientUnits="userSpaceOnUse"
+ x1="19.679014"
+ y1="20.903482"
+ x2="23.185186"
+ y2="32.096901" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="4.5"
+ inkscape:cx="36.566659"
+ inkscape:cy="-11.71867"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ borderlayer="false"
+ inkscape:showpageshadow="false"
+ inkscape:snap-nodes="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="10000"
+ inkscape:window-width="1276"
+ inkscape:window-height="977"
+ inkscape:window-x="0"
+ inkscape:window-y="0">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2483"
+ empspacing="5"
+ visible="true"
+ enabled="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Sebastian Kraft</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:title>gparted</dc:title>
+ <dc:description>apps</dc:description>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>system</rdf:li>
+ <rdf:li>partition</rdf:li>
+ <rdf:li>harddisk</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:date>2008-09-16</dc:date>
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
+ <dc:contributor>
+ <cc:Agent>
+ <dc:title>Jakub Steiner, Lapo Calamandrei</dc:title>
+ </cc:Agent>
+ </dc:contributor>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="artwork"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline"
+ transform="translate(-318,-42)">
+ <g
+ id="g3519"
+ style="opacity:0.7;display:inline"
+ transform="matrix(1.030831,0,0,1.151147,317.61089,32.717216)"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <path
+ transform="scale(-1,-1)"
+ style="fill:url(#radialGradient2957);fill-opacity:1;stroke:none"
+ d="m -9.5392103,-48.024086 8.1916437,0 0,12.405126 -8.1916437,0 0,-12.405126 z"
+ id="rect2884" />
+ <path
+ style="fill:url(#radialGradient2959);fill-opacity:1;stroke:none"
+ d="m 38.209965,35.618961 8.191643,0 0,12.405126 -8.191643,0 0,-12.405126 z"
+ id="rect2894" />
+ <path
+ style="fill:url(#linearGradient2961);fill-opacity:1;stroke:none"
+ d="m 9.5392103,35.618961 28.6707537,0 0,12.405126 -28.6707537,0 0,-12.405126 z"
+ id="rect2898" />
+ </g>
+ <g
+ style="display:inline"
+ id="g5672"
+ transform="translate(318,-3.996258)">
+ <path
+ sodipodi:nodetypes="ccccccccccccc"
+ id="rect2010"
+ d="m 4.5182287,80.500013 38.9635393,0 c 0.564099,0 1.018229,0.45413 1.018229,1.018229 l 0,2.963543 c 0,1.315584 -0.450231,3.018228 -2.455729,3.018228 L 40.5,87.5 l 0,1 -33,0 0,-1 -1.8567713,1.3e-5 c -1.2712053,0 -2.1432282,-0.884627 -2.1432282,-2.255665 l 0,-3.726106 c 0,-0.564099 0.4541297,-1.018229 1.0182282,-1.018229 z"
+ style="color:#000000;fill:url(#linearGradient2947);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
+ <path
+ transform="translate(0,50)"
+ style="opacity:0.1;color:#000000;fill:none;stroke:url(#linearGradient2949);stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:1.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 4.59375,31.59375 0,3.729743 c 0,0.599619 0.3756505,1.104854 0.8863276,1.104854 l 36.9463294,0 c 0.512469,0 0.979843,-0.507235 0.979843,-1.016466 l 0,-3.818131 -38.8125,0 z"
+ id="path2076"
+ sodipodi:nodetypes="ccccccc" />
+ <g
+ transform="translate(0,50)"
+ style="opacity:0.5"
+ id="g4706">
+ <path
+ style="opacity:0.10952382;fill:url(#linearGradient2951);fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="m 26.144738,32.088747 c 0,0 -1.502602,5.533939 -3.226175,5.911253 0,0 6.231378,-0.125771 6.231378,-0.125771 1.387072,-0.317461 3.358758,-5.785482 3.358758,-5.785482 l -6.363961,0 z"
+ id="path2907"
+ sodipodi:nodetypes="ccccc"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90" />
+ <path
+ inkscape:export-ydpi="90"
+ inkscape:export-xdpi="90"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ sodipodi:nodetypes="ccccc"
+ id="path2892"
+ d="m 14.769738,32 c 0,0 -1.502602,5.533939 -3.226175,5.911253 0,0 6.231378,-0.125771 6.231378,-0.125771 C 19.162013,37.468021 21.133699,32 21.133699,32 l -6.363961,0 z"
+ style="opacity:0.10952382;fill:url(#linearGradient2953);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+ <path
+ inkscape:export-ydpi="90"
+ inkscape:export-xdpi="90"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ sodipodi:nodetypes="ccccc"
+ id="path2896"
+ d="m 34.886139,32 c 0,0 -2.212224,5.328458 -3.108503,5.691761 0,0 2.899969,-0.121101 2.899969,-0.121101 C 35.402697,37.264987 37.8125,32 37.8125,32 l -2.926361,0 z"
+ style="opacity:0.10952382;fill:url(#linearGradient2955);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+ </g>
+ </g>
+ <path
+ style="fill:url(#radialGradient2945);fill-opacity:1;stroke:#888a85;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline"
+ d="m 11.693127,10.498788 24.572566,0 c 1.68417,0 2.396517,0.117479 3.040019,2.385005 l 5.074491,17.881119 c 0.501024,1.765471 -1.355848,2.735101 -3.040018,2.735101 l -34.7215538,0 c -1.868408,0 -3.4893833,-1.181417 -3.0400182,-2.735101 L 8.8290448,12.611497 c 0.5683008,-1.964905 1.1799122,-2.112709 2.8640822,-2.112709 z"
+ id="rect1879"
+ sodipodi:nodetypes="cczzcczzc"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ transform="translate(318,45.001212)" />
+ <path
+ style="opacity:1;color:#000000;fill:url(#linearGradient3802);stroke:none;stroke-width:1.00000036000000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;fill-opacity:1"
+ d="M 14.3125 15.53125 L 10.46875 18.09375 L 6.84375 30.6875 C 8.2906206 31.387249 10.632675 32.16518 10.4375 34.53125 L 12.5 34.53125 L 12.5 30.5 C 15.236722 32.934807 19.588342 34.5 24.5 34.5 C 32.278123 34.5 38.690048 30.55511 39.4375 25.5 L 39.65625 25.5 L 37.5 18.09375 L 32.34375 15.53125 L 14.3125 15.53125 z "
+ transform="translate(318,42)"
+ id="path1997" />
+ <path
+ style="opacity:1;color:#000000;fill:url(#linearGradient3810);stroke:none;stroke-width:0.91991049000000003;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;fill-opacity:1"
+ d="M 14.25,20 10.375,22.75 8,31.53125 c 1.2464561,0.670958 2.489039,1.591357 2.34375,3.46875 0,0 14.15625,-0.5 14.15625,-0.5 6.703235,0 12.389849,-2.923325 14.3125,-6.96875 L 37.5,22.75 32.3125,20 14.25,20 z"
+ transform="translate(318,42)"
+ id="path3008"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ style="opacity:1;color:#000000;fill:url(#linearGradient4141);fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:0.96564066000000004;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 24,16 c -7.728,0 -14,3.584001 -14,8 l 0,8.8125 c 0.304858,0.464446 0.49599,1.009687 0.4375,1.71875 0,0 14.0625,-0.03125 14.0625,-0.03125 5.854688,0 10.995851,-2.23874 13.5,-5.5 l 0,-5 c 0,-4.415999 -6.272001,-8 -14,-8 z"
+ transform="matrix(0.96652645,0,0,0.97471764,318.80337,42.87315)"
+ id="path4134" />
+ <path
+ style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 10 25 L 10 32.8125 C 10.304858 33.276946 10.49599 33.822187 10.4375 34.53125 C 10.4375 34.53125 24.5 34.5 24.5 34.5 C 30.354688 34.5 35.495851 32.26126 38 29 L 38 25 C 38 29.415999 31.727999 33 24 33 C 16.272 33 10 29.415999 10 25 z "
+ transform="translate(318,42)"
+ id="path3982" />
+ <path
+ style="opacity:1;color:#000000;fill:url(#radialGradient4098);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 10 26 L 10 32.8125 C 10.304858 33.276946 10.49599 33.822187 10.4375 34.53125 C 10.4375 34.53125 24.5 34.5 24.5 34.5 C 30.354688 34.5 35.495851 32.26126 38 29 L 38 26 C 38 30.415999 31.727999 34 24 34 C 16.272 34 10 30.415999 10 26 z "
+ transform="translate(318,42)"
+ id="path3979" />
+ <path
+ transform="matrix(1.4004865,0,0,1.0762795,312.53279,39.417324)"
+ style="color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 10.330132,31.20256 3.570187,0 0,3.716507 -3.570187,0 0,-3.716507 z"
+ id="rect3869" />
+ <path
+ transform="matrix(0.33857511,0,0,0.42781677,320.87579,62.112679)"
+ style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path3814" />
+ <path
+ transform="matrix(6.5882368,0,0,-3.8787869,278.2647,191.60603)"
+ style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path3903" />
+ <path
+ transform="matrix(4.7058792,0,0,-2.9090911,292.61767,161.45455)"
+ style="color:#000000;fill:url(#radialGradient3915);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path3907" />
+ <path
+ style="opacity:1;color:#000000;fill:url(#radialGradient3884);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.53841114000000001;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 7.5,31 C 6.0322077,29.683128 5.8193873,30.305642 4.648834,34.173068 5.0028872,35.894701 6.478588,35.599283 8,36 c 1.6559996,0 3.175583,0.04044 2.736626,-1.765889 C 10.216043,32.678552 9.0629242,31.461221 7.5,31 z"
+ transform="translate(318,42)"
+ id="path3882"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:none;stroke:url(#linearGradient2937);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline"
+ d="m 11.6875,11.500005 c -0.803124,0 -1.097168,0.07051 -1.21875,0.155556 -0.121582,0.08504 -0.357707,0.40212 -0.6875,1.306667 l -5.25,18.137786 c -0.1337204,0.366765 -0.054827,0.533865 0.3125,0.84 0.3673267,0.306136 1.066693,0.56 1.78125,0.560001 l 34.71875,0 c 0.639793,0 1.393345,-0.237954 1.78125,-0.52889 0.387905,-0.290935 0.488311,-0.382809 0.3125,-0.871111 L 38.375,13.242228 c -0.377206,-1.04766 -0.68208,-1.439297 -0.84375,-1.555556 -0.16167,-0.116259 -0.443711,-0.186667 -1.25,-0.186667 l -24.59375,0 z"
+ id="path3394"
+ sodipodi:nodetypes="csccsccsccscc"
+ transform="translate(318,45.001212)" />
+ <g
+ id="g5657"
+ transform="translate(325,44.001212)"
+ style="opacity:0.3028571;display:inline">
+ <path
+ style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:1.00000024;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.4;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 19.251297,35.500008 12.497402,0 c 0.416221,0 0.751301,0.333216 0.751301,0.747122 l 0,0.505747 C 32.5,37.166783 32.16492,37.5 31.748699,37.5 l -12.497402,0 c -0.416221,0 -0.751301,-0.333217 -0.751301,-0.747123 l 0,-0.505747 c 0,-0.413906 0.33508,-0.747122 0.751301,-0.747122 z"
+ id="rect5641" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 19,36 1,0 0,1 -1,0 0,-1 z"
+ id="rect5645" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 22,36 1,0 0,1 -1,0 0,-1 z"
+ id="rect5647" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 24,36 1,0 0,1 -1,0 0,-1 z"
+ id="rect5649" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 26,36 1,0 0,1 -1,0 0,-1 z"
+ id="rect5651" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 29,36 2,0 0,1 -2,0 0,-1 z"
+ id="rect5653" />
+ </g>
+ <path
+ transform="matrix(-2.628602,0,0,1.777765,378.79309,21.223822)"
+ style="color:#000000;fill:url(#radialGradient2929);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.46259445;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path8660" />
+ <path
+ transform="matrix(1.411772,0,0,0.969697,347.98523,45.849697)"
+ style="color:#000000;fill:url(#radialGradient2927);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path8662" />
+ <path
+ style="opacity:0.4;fill:none;stroke:url(#linearGradient2917);stroke-width:0.29999995;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+ d="m 40.328109,30.261401 0.874999,0.430332"
+ id="path8700"
+ transform="translate(318,45.001212)" />
+ <path
+ transform="translate(318,45.001212)"
+ style="opacity:0.12000002;color:#000000;fill:url(#linearGradient2907);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.68183619;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8,38 32.03125,0 0,1 L 8,39 8,38 z"
+ id="rect2984" />
+ <path
+ transform="matrix(-2.628602,0,0,1.777765,345.79309,21.223822)"
+ style="color:#000000;fill:url(#radialGradient2941);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path8621" />
+ <path
+ transform="matrix(1.411772,0,0,0.969697,314.98523,45.849697)"
+ style="color:#000000;fill:url(#radialGradient2931);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path8611" />
+ <path
+ style="opacity:0.4;fill:none;stroke:url(#linearGradient2915);stroke-width:0.29999995;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+ d="M 7.330186,30.695906 8.201031,30.257228"
+ id="path9603"
+ transform="translate(318,45.001212)" />
+ <path
+ transform="matrix(-1.3542993,0,0,1.7112675,372.49682,18.450707)"
+ style="color:#000000;fill:url(#radialGradient4068);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.68167292999999995;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path3812" />
+ <path
+ transform="matrix(-1.0711586,0,0,1,367.84887,42.263374)"
+ style="color:#000000;fill:url(#radialGradient4060);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;opacity:0.88259109"
+ d="m 24.131688,31.736626 c -3.607309,0 -6.691105,-0.781854 -9.241857,-2.343146 l 9.241856,-5.656854 z"
+ id="path3957" />
+ <path
+ transform="matrix(-1.0711586,0,0,1,367.84887,42.263374)"
+ style="color:#000000;fill:url(#radialGradient4044);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;opacity:0.76518219"
+ d="m 14.889831,29.39348 c -5.101505,-3.122584 -5.101505,-8.191125 0,-11.313709 5.101504,-3.122583 13.382207,-3.122583 18.483712,0 l -9.241856,5.656855 z"
+ id="path3959" />
+ <path
+ transform="matrix(-1.0711586,0,0,1,367.84887,42.263374)"
+ style="color:#000000;fill:url(#radialGradient4052);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;opacity:0.90688259"
+ d="m 33.373543,18.079771 c 2.550753,1.561292 3.828103,3.448855 3.828103,5.656855 l -13.069959,0 z"
+ id="path3961" />
+ <path
+ style="opacity:1;color:#000000;fill:none;stroke:url(#linearGradient3794);stroke-width:1.00000036000000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="M 39.546875,25.5 37.5,18.09375 l -5.15625,-2.5625 -18.03125,0 -3.84375,2.5625 -3.625,12.59375 c 1.4468706,0.699749 3.788925,1.47768 3.59375,3.84375 0,0 14.0625,-0.03125 14.0625,-0.03125 7.778123,0 14.299423,-3.94489 15.046875,-9 z"
+ transform="translate(318,42)"
+ id="path3786"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ transform="matrix(-7.529413,0,0,-3.8787893,399.41177,184.6061)"
+ style="color:#000000;fill:url(#radialGradient4006);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path4004" />
+ <path
+ id="path3992"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ style="color:#000000;fill:url(#radialGradient4014);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(-5.6470566,0,0,2.9090912,385.05881,-22.454553)" />
+ <path
+ id="path4016"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ style="color:#000000;fill:none;stroke:url(#radialGradient4024);stroke-width:0.77122480000000004;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;opacity:0.66801619000000001"
+ transform="matrix(-1.2091958,0,0,1.3904051,369.2293,27.366192)" />
+ <path
+ transform="matrix(-1.3059315,0,0,1.6043135,371.40764,21.422531)"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.69086813999999996;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;opacity:0.26315789000000001"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path4026" />
+ <path
+ transform="matrix(-0.43531041,0,0,0.5347712,351.80254,51.140842)"
+ style="opacity:1;color:#000000;fill:none;stroke:url(#radialGradient4088);stroke-width:2.07260441999999978;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path4086" />
+ <path
+ id="path4090"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ style="opacity:0.20242914;color:#000000;fill:none;stroke:#000000;stroke-width:1.71139669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(-0.53204623,0,0,0.64172535,353.98089,47.669014)" />
+ </g>
+</svg>
Added: trunk/data/icons/svg/gparted.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/svg/gparted.svg Mon Sep 22 22:41:49 2008
@@ -0,0 +1,2311 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="220"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.46+devel"
+ version="1.0"
+ sodipodi:docname="gparted.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <title
+ id="title2578">gparted</title>
+ <defs
+ id="defs4">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 110 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="48 : 110 : 1"
+ inkscape:persp3d-origin="24 : 73.333333 : 1"
+ id="perspective2925" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4083">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop4085" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop4087" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4067">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop4069" />
+ <stop
+ style="stop-color:#555753;stop-opacity:0;"
+ offset="1"
+ id="stop4071" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4059">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop4061" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop4063" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4011">
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1;"
+ offset="0"
+ id="stop4013" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:0;"
+ offset="1"
+ id="stop4015" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3986">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3988" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3990" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3964">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3966" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3968" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4122">
+ <stop
+ id="stop4124"
+ offset="0"
+ style="stop-color:white;stop-opacity:1" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1"
+ offset="0.25"
+ id="stop4130" />
+ <stop
+ id="stop4132"
+ offset="0.375"
+ style="stop-color:#eeeeec;stop-opacity:1" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1"
+ offset="0.5"
+ id="stop4126" />
+ <stop
+ id="stop4128"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4108">
+ <stop
+ id="stop4110"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ <stop
+ id="stop4112"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4092">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop4094" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop4096" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4078">
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1"
+ offset="0"
+ id="stop4080" />
+ <stop
+ id="stop4082"
+ offset="0.5"
+ style="stop-color:#babdb6;stop-opacity:1" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:0"
+ offset="1"
+ id="stop4084" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4070">
+ <stop
+ style="stop-color:white;stop-opacity:1"
+ offset="0"
+ id="stop4072" />
+ <stop
+ id="stop4074"
+ offset="0.5"
+ style="stop-color:white;stop-opacity:1;" />
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="1"
+ id="stop4076" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4062">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop4064" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop4066" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4054">
+ <stop
+ style="stop-color:#ef2929;stop-opacity:1"
+ offset="0"
+ id="stop4056" />
+ <stop
+ style="stop-color:#cc0000;stop-opacity:1"
+ offset="1"
+ id="stop4058" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4046">
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:1"
+ offset="0"
+ id="stop4048" />
+ <stop
+ style="stop-color:#f57900;stop-opacity:1"
+ offset="1"
+ id="stop4050" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4038">
+ <stop
+ style="stop-color:#8ae234;stop-opacity:1"
+ offset="0"
+ id="stop4040" />
+ <stop
+ style="stop-color:#73d216;stop-opacity:1"
+ offset="1"
+ id="stop4042" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4018">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop4020" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop4022" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3909">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3911" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3913" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3804">
+ <stop
+ style="stop-color:#2f302e;stop-opacity:1;"
+ offset="0"
+ id="stop3806" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="1"
+ id="stop3808" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2886"
+ inkscape:collect="always">
+ <stop
+ id="stop2888"
+ offset="0"
+ style="stop-color:black;stop-opacity:1;" />
+ <stop
+ id="stop2890"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2900">
+ <stop
+ id="stop2902"
+ offset="0"
+ style="stop-color:black;stop-opacity:0;" />
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0.5"
+ id="stop2908" />
+ <stop
+ id="stop2904"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2909">
+ <stop
+ id="stop2911"
+ offset="0"
+ style="stop-color:white;stop-opacity:0;" />
+ <stop
+ style="stop-color:white;stop-opacity:1;"
+ offset="0.5"
+ id="stop2917" />
+ <stop
+ id="stop2913"
+ offset="1"
+ style="stop-color:white;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3468">
+ <stop
+ id="stop3470"
+ offset="0"
+ style="stop-color:#fdfdfc;stop-opacity:1" />
+ <stop
+ id="stop3472"
+ offset="1"
+ style="stop-color:white;stop-opacity:0.37121212" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2899">
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="0"
+ id="stop2901" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop2903" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5690">
+ <stop
+ id="stop5692"
+ offset="0"
+ style="stop-color:white;stop-opacity:1;" />
+ <stop
+ id="stop5694"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5740">
+ <stop
+ id="stop5742"
+ offset="0"
+ style="stop-color:#d0d0cb;stop-opacity:1;" />
+ <stop
+ id="stop5744"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient9613">
+ <stop
+ id="stop9615"
+ offset="0"
+ style="stop-color:white;stop-opacity:1" />
+ <stop
+ style="stop-color:white;stop-opacity:1;"
+ offset="0.5"
+ id="stop9619" />
+ <stop
+ id="stop9617"
+ offset="1"
+ style="stop-color:#cccfca;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient9633">
+ <stop
+ id="stop9635"
+ offset="0"
+ style="stop-color:#eeeeec;stop-opacity:1" />
+ <stop
+ id="stop9639"
+ offset="1"
+ style="stop-color:#888a85;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient9641">
+ <stop
+ id="stop9643"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1" />
+ <stop
+ id="stop9645"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2967"
+ inkscape:collect="always">
+ <stop
+ id="stop2969"
+ offset="0"
+ style="stop-color:white;stop-opacity:1;" />
+ <stop
+ id="stop2971"
+ offset="1"
+ style="stop-color:white;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2986"
+ inkscape:collect="always">
+ <stop
+ id="stop2988"
+ offset="0"
+ style="stop-color:black;stop-opacity:1;" />
+ <stop
+ id="stop2990"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2986"
+ id="linearGradient2907"
+ gradientUnits="userSpaceOnUse"
+ x1="21.9375"
+ y1="39"
+ x2="21.9375"
+ y2="37.995617" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9633"
+ id="radialGradient2929"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.569487,0,0,1.523325,-4.288627,-15.92107)"
+ cx="7.5336008"
+ cy="30.307562"
+ fx="7.5336008"
+ fy="30.307562"
+ r="0.53125" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3468"
+ id="linearGradient2937"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.995556,0,-3.931113)"
+ x1="24.748737"
+ y1="35.354588"
+ x2="24.998737"
+ y2="14.997767" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9613"
+ id="radialGradient2941"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.389748,0,0,1.348872,-2.91982,-10.63815)"
+ cx="7.5191436"
+ cy="30.304251"
+ fx="7.5191436"
+ fy="30.304251"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740"
+ id="radialGradient2945"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.032991,-0.596398,0.575121,0.99614,-12.23456,11.55448)"
+ cx="25.251999"
+ cy="16.47991"
+ fx="25.251999"
+ fy="16.47991"
+ r="21.980215" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2899"
+ id="linearGradient2947"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,50)"
+ x1="53.812813"
+ y1="43.573235"
+ x2="-2.8138931"
+ y2="35.500015" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2967"
+ id="linearGradient2949"
+ gradientUnits="userSpaceOnUse"
+ x1="12.5"
+ y1="43.1875"
+ x2="12.5"
+ y2="34.045513" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient2951"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.42294,10.5,-14.95703)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient2953"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.42294,-0.875,-15.04578)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient2955"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.459833,0,-0.391165,1.370105,40.62503,-13.29892)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2886"
+ id="radialGradient2957"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.095822,0,0,3.101282,-9.53921,-94.5433)"
+ cx="0"
+ cy="17"
+ fx="0"
+ fy="17"
+ r="2" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2886"
+ id="radialGradient2959"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.095822,0,0,3.101282,38.20996,-10.90025)"
+ cx="0"
+ cy="17"
+ fx="0"
+ fy="17"
+ r="2" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2900"
+ id="linearGradient2961"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.047911,0,0,2.067521,1.347566,6.673675)"
+ x1="9.8994951"
+ y1="20"
+ x2="9.8994951"
+ y2="13.979153" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5690"
+ id="linearGradient3794"
+ x1="35.722687"
+ y1="33.221653"
+ x2="11.953137"
+ y2="14.982971"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,3.001212)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9641"
+ id="linearGradient3802"
+ x1="50.505718"
+ y1="37.468567"
+ x2="2.3996398"
+ y2="8.4479914"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,3.001212)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3804"
+ id="linearGradient3810"
+ x1="8.09375"
+ y1="13.796185"
+ x2="20.501734"
+ y2="29.455748"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0029382,0,0,1.0690426,-0.11753,-1.915373)" />
+ <linearGradient
+ id="linearGradient5740-6">
+ <stop
+ id="stop5742-3"
+ offset="0"
+ style="stop-color:#d0d0cb;stop-opacity:1;" />
+ <stop
+ id="stop5744-8"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740-6"
+ id="radialGradient3884"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.29978113,-0.25514914,0.16690409,0.42616552,-2.0855839,27.055878)"
+ cx="25.251999"
+ cy="16.47991"
+ fx="25.251999"
+ fy="16.47991"
+ r="21.980215" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3909"
+ id="radialGradient3915"
+ cx="7.625"
+ cy="30.578125"
+ fx="7.625"
+ fy="30.578125"
+ r="0.53125"
+ gradientTransform="matrix(1.3511662,-3.7918611e-6,1.1741249e-6,1.5765217,-2.6776781,-17.628922)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4070"
+ id="radialGradient4006"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.389748,0,0,1.348872,-2.91982,-10.63815)"
+ cx="7.5191436"
+ cy="30.304251"
+ fx="7.5191436"
+ fy="30.304251"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4078"
+ id="radialGradient4014"
+ cx="7.6249995"
+ cy="30.578125"
+ fx="7.6249995"
+ fy="30.578125"
+ r="0.53125"
+ gradientTransform="matrix(0.9999996,-3.5854879e-7,9.2353616e-8,0.97058851,4.6991103e-7,0.89935113)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4108"
+ id="radialGradient4024"
+ cx="21.885324"
+ cy="21.091515"
+ fx="21.885324"
+ fy="21.091515"
+ r="10.682883"
+ gradientTransform="matrix(0.68596186,-0.9212505,1.444828,0.71285424,-25.655926,33.736687)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4038"
+ id="radialGradient4044"
+ cx="23.570951"
+ cy="22.565657"
+ fx="23.570951"
+ fy="22.565657"
+ r="11.15492"
+ gradientTransform="matrix(1,0,0,0.61209071,0,8.753428)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4046"
+ id="radialGradient4052"
+ cx="25.525513"
+ cy="26.023817"
+ fx="25.525513"
+ fy="26.023817"
+ r="6.5349793"
+ gradientTransform="matrix(0.52341584,-0.91271001,1.0252793,0.67462715,-12.879236,29.477642)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4054"
+ id="radialGradient4060"
+ cx="21.366146"
+ cy="28.457472"
+ fx="21.366146"
+ fy="28.457472"
+ r="4.6209283"
+ gradientTransform="matrix(1.1542747,-1.6047814,1.4632662,1.2076031,-43.596086,25.552294)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4062"
+ id="radialGradient4068"
+ cx="22.518518"
+ cy="27.786009"
+ fx="22.518518"
+ fy="27.786009"
+ r="10.337449"
+ gradientTransform="matrix(1,0,0,0.45222929,0,15.220362)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4018"
+ id="radialGradient4088"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.68596186,-0.9212505,1.444828,0.71285424,-25.655926,33.736687)"
+ cx="24.690754"
+ cy="23.189171"
+ fx="24.690754"
+ fy="23.189171"
+ r="10.682883" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4092"
+ id="radialGradient4098"
+ cx="24"
+ cy="30.265625"
+ fx="24"
+ fy="30.265625"
+ r="14"
+ gradientTransform="matrix(1,0,0,0.3046875,0,21.044067)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4122"
+ id="linearGradient4141"
+ gradientUnits="userSpaceOnUse"
+ x1="19.679014"
+ y1="20.903482"
+ x2="23.185186"
+ y2="32.096901" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2886"
+ id="radialGradient2893"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.095822,0,0,3.101282,-9.53921,-94.5433)"
+ cx="0"
+ cy="17"
+ fx="0"
+ fy="17"
+ r="2" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2886"
+ id="radialGradient2895"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.095822,0,0,3.101282,38.20996,-10.90025)"
+ cx="0"
+ cy="17"
+ fx="0"
+ fy="17"
+ r="2" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2900"
+ id="linearGradient2897"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.047911,0,0,2.067521,1.347566,6.673675)"
+ x1="9.8994951"
+ y1="20"
+ x2="9.8994951"
+ y2="13.979153" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2899"
+ id="linearGradient2901"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,50)"
+ x1="53.812813"
+ y1="43.573235"
+ x2="-2.8138931"
+ y2="35.500015" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2967"
+ id="linearGradient2903"
+ gradientUnits="userSpaceOnUse"
+ x1="12.5"
+ y1="43.1875"
+ x2="12.5"
+ y2="34.045513" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient2905"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.42294,10.5,-14.95703)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient2908"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.42294,-0.875,-15.04578)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient2910"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.459833,0,-0.391165,1.370105,40.62503,-13.29892)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740"
+ id="radialGradient2912"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.032991,-0.596398,0.575121,0.99614,-12.23456,11.55448)"
+ cx="25.251999"
+ cy="16.47991"
+ fx="25.251999"
+ fy="16.47991"
+ r="21.980215" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9641"
+ id="linearGradient2914"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,3.001212)"
+ x1="50.505718"
+ y1="37.468567"
+ x2="2.3996398"
+ y2="8.4479914" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3804"
+ id="linearGradient2916"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0029382,0,0,1.0690426,-0.11753,-1.915373)"
+ x1="8.09375"
+ y1="13.796185"
+ x2="20.501734"
+ y2="29.455748" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4122"
+ id="linearGradient2918"
+ gradientUnits="userSpaceOnUse"
+ x1="19.679014"
+ y1="20.903482"
+ x2="23.185186"
+ y2="32.096901" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4092"
+ id="radialGradient2920"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.3046875,0,21.044067)"
+ cx="24"
+ cy="30.265625"
+ fx="24"
+ fy="30.265625"
+ r="14" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3909"
+ id="radialGradient2922"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.3511662,-3.7918611e-6,1.1741249e-6,1.5765217,-2.6776781,-17.628922)"
+ cx="7.625"
+ cy="30.578125"
+ fx="7.625"
+ fy="30.578125"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740-6"
+ id="radialGradient2924"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.29978113,-0.25514914,0.16690409,0.42616552,-2.0855839,27.055878)"
+ cx="25.251999"
+ cy="16.47991"
+ fx="25.251999"
+ fy="16.47991"
+ r="21.980215" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9633"
+ id="radialGradient2928"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.569487,0,0,1.523325,-4.288627,-15.92107)"
+ cx="7.5336008"
+ cy="30.307562"
+ fx="7.5336008"
+ fy="30.307562"
+ r="0.53125" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2986"
+ id="linearGradient2934"
+ gradientUnits="userSpaceOnUse"
+ x1="21.9375"
+ y1="39"
+ x2="21.9375"
+ y2="37.995617" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9613"
+ id="radialGradient2936"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.389748,0,0,1.348872,-2.91982,-10.63815)"
+ cx="7.5191436"
+ cy="30.304251"
+ fx="7.5191436"
+ fy="30.304251"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4062"
+ id="radialGradient2942"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.45222929,0,15.220362)"
+ cx="22.518518"
+ cy="27.786009"
+ fx="22.518518"
+ fy="27.786009"
+ r="10.337449" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4054"
+ id="radialGradient2944"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1542747,-1.6047814,1.4632662,1.2076031,-43.596086,25.552294)"
+ cx="21.366146"
+ cy="28.457472"
+ fx="21.366146"
+ fy="28.457472"
+ r="4.6209283" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4038"
+ id="radialGradient2946"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.61209071,0,8.753428)"
+ cx="23.570951"
+ cy="22.565657"
+ fx="23.570951"
+ fy="22.565657"
+ r="11.15492" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4046"
+ id="radialGradient2948"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.52341584,-0.91271001,1.0252793,0.67462715,-12.879236,29.477642)"
+ cx="25.525513"
+ cy="26.023817"
+ fx="25.525513"
+ fy="26.023817"
+ r="6.5349793" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5690"
+ id="linearGradient2950"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,3.001212)"
+ x1="35.722687"
+ y1="33.221653"
+ x2="11.953137"
+ y2="14.982971" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4078"
+ id="radialGradient2954"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9999996,-3.5854879e-7,9.2353616e-8,0.97058851,4.6991094e-7,0.89935113)"
+ cx="7.6249995"
+ cy="30.578125"
+ fx="7.6249995"
+ fy="30.578125"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4108"
+ id="radialGradient2956"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.68596186,-0.9212505,1.444828,0.71285424,-25.655926,33.736687)"
+ cx="21.885324"
+ cy="21.091515"
+ fx="21.885324"
+ fy="21.091515"
+ r="10.682883" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4018"
+ id="radialGradient2958"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.68596186,-0.9212505,1.444828,0.71285424,-25.655926,33.736687)"
+ cx="24.690754"
+ cy="23.189171"
+ fx="24.690754"
+ fy="23.189171"
+ r="10.682883" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3468"
+ id="linearGradient3008"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.995556,0,-3.931113)"
+ x1="24.748737"
+ y1="35.354588"
+ x2="24.998737"
+ y2="14.997767" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4070"
+ id="radialGradient3016"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.389748,0,0,1.348872,-2.91982,-10.63815)"
+ cx="7.5191436"
+ cy="30.304251"
+ fx="7.5191436"
+ fy="30.304251"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2886"
+ id="radialGradient3108"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.095822,0,0,3.101282,-9.53921,-94.5433)"
+ cx="0"
+ cy="17"
+ fx="0"
+ fy="17"
+ r="2" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2886"
+ id="radialGradient3110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.095822,0,0,3.101282,38.20996,-10.90025)"
+ cx="0"
+ cy="17"
+ fx="0"
+ fy="17"
+ r="2" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2900"
+ id="linearGradient3112"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.047911,0,0,2.067521,1.347566,6.673675)"
+ x1="9.8994951"
+ y1="20"
+ x2="9.8994951"
+ y2="13.979153" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2899"
+ id="linearGradient3114"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,50)"
+ x1="53.812813"
+ y1="43.573235"
+ x2="-2.8138931"
+ y2="35.500015" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2967"
+ id="linearGradient3116"
+ gradientUnits="userSpaceOnUse"
+ x1="12.5"
+ y1="43.1875"
+ x2="12.5"
+ y2="34.045513" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient3118"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.42294,10.5,-14.95703)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient3120"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.42294,-0.875,-15.04578)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2909"
+ id="linearGradient3122"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.459833,0,-0.391165,1.370105,40.62503,-13.29892)"
+ x1="15.335379"
+ y1="33.06237"
+ x2="20.329321"
+ y2="36.37693" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740"
+ id="radialGradient3124"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.032991,-0.596398,0.575121,0.99614,-12.23456,11.55448)"
+ cx="25.251999"
+ cy="16.47991"
+ fx="25.251999"
+ fy="16.47991"
+ r="21.980215" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9641"
+ id="linearGradient3126"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,3.001212)"
+ x1="50.505718"
+ y1="37.468567"
+ x2="2.3996398"
+ y2="8.4479914" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3804"
+ id="linearGradient3128"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0029382,0,0,1.0690426,-0.11753,-1.915373)"
+ x1="8.09375"
+ y1="13.796185"
+ x2="20.501734"
+ y2="29.455748" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4122"
+ id="linearGradient3130"
+ gradientUnits="userSpaceOnUse"
+ x1="19.679014"
+ y1="20.903482"
+ x2="23.185186"
+ y2="32.096901" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4092"
+ id="radialGradient3132"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.3046875,0,21.044067)"
+ cx="24"
+ cy="30.265625"
+ fx="24"
+ fy="30.265625"
+ r="14" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3909"
+ id="radialGradient3136"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.3511662,-3.7918611e-6,1.1741249e-6,1.5765217,-2.6776781,-17.628922)"
+ cx="7.625"
+ cy="30.578125"
+ fx="7.625"
+ fy="30.578125"
+ r="0.53125" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3468"
+ id="linearGradient3138"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.995556,0,-3.931113)"
+ x1="24.748737"
+ y1="35.354588"
+ x2="24.998737"
+ y2="14.997767" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9633"
+ id="radialGradient3140"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.569487,0,0,1.523325,-4.288627,-15.92107)"
+ cx="7.5336008"
+ cy="30.307562"
+ fx="7.5336008"
+ fy="30.307562"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9613"
+ id="radialGradient3144"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.389748,0,0,1.348872,-2.91982,-10.63815)"
+ cx="7.5191436"
+ cy="30.304251"
+ fx="7.5191436"
+ fy="30.304251"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4054"
+ id="radialGradient3148"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1542747,-1.6047814,1.4632662,1.2076031,-43.596086,25.552294)"
+ cx="21.366146"
+ cy="28.457472"
+ fx="21.366146"
+ fy="28.457472"
+ r="4.6209283" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4038"
+ id="radialGradient3150"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.61209071,0,8.753428)"
+ cx="23.570951"
+ cy="22.565657"
+ fx="23.570951"
+ fy="22.565657"
+ r="11.15492" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4046"
+ id="radialGradient3152"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.52341584,-0.91271001,1.0252793,0.67462715,-12.879236,29.477642)"
+ cx="25.525513"
+ cy="26.023817"
+ fx="25.525513"
+ fy="26.023817"
+ r="6.5349793" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4070"
+ id="radialGradient3154"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.389748,0,0,1.348872,-2.91982,-10.63815)"
+ cx="7.5191436"
+ cy="30.304251"
+ fx="7.5191436"
+ fy="30.304251"
+ r="0.53125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4078"
+ id="radialGradient3156"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9999996,-3.5854879e-7,9.2353616e-8,0.97058851,4.6991092e-7,0.89935113)"
+ cx="7.6249995"
+ cy="30.578125"
+ fx="7.6249995"
+ fy="30.578125"
+ r="0.53125" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5690"
+ id="linearGradient3162"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,3.001212)"
+ x1="35.722687"
+ y1="33.221653"
+ x2="11.953137"
+ y2="14.982971" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740-6"
+ id="radialGradient3164"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.29978113,-0.25514914,0.16690409,0.42616552,-2.0855839,27.055878)"
+ cx="25.251999"
+ cy="16.47991"
+ fx="25.251999"
+ fy="16.47991"
+ r="21.980215" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4018"
+ id="radialGradient3166"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.68596186,-0.9212505,1.444828,0.71285424,-25.655926,33.736687)"
+ cx="24.690754"
+ cy="23.189171"
+ fx="24.690754"
+ fy="23.189171"
+ r="10.682883" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4108"
+ id="radialGradient3938"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.68596186,-0.9212505,1.444828,0.71285424,-25.655926,33.736687)"
+ cx="21.885324"
+ cy="21.091515"
+ fx="21.885324"
+ fy="21.091515"
+ r="10.682883" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4062"
+ id="radialGradient3940"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.45222929,0,15.220362)"
+ cx="22.518518"
+ cy="27.786009"
+ fx="22.518518"
+ fy="27.786009"
+ r="10.337449" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3964"
+ id="linearGradient3970"
+ x1="10.498711"
+ y1="212.3989"
+ x2="10.498711"
+ y2="194.31012"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3986"
+ id="radialGradient4001"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.6420142,0,0,1.7894286,-9.6588589,-162.08533)"
+ cx="5.9749765"
+ cy="205.03082"
+ fx="5.9749765"
+ fy="205.03082"
+ r="7.2465863" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4011"
+ id="linearGradient4017"
+ x1="-0.85987335"
+ y1="199.18289"
+ x2="10.36277"
+ y2="211.68135"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4122"
+ id="linearGradient4041"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1649508,0,0,0.99048907,-0.82955,1.891319)"
+ x1="4.4765906"
+ y1="204.04938"
+ x2="11.87136"
+ y2="214.34622" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4059"
+ id="radialGradient4065"
+ cx="9.383935"
+ cy="206.78555"
+ fx="9.383935"
+ fy="206.78555"
+ r="4.3115377"
+ gradientTransform="matrix(1,0,0,0.78280537,0,44.912713)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4067"
+ id="linearGradient4073"
+ x1="1.8436215"
+ y1="209.88751"
+ x2="5.091907"
+ y2="209.88751"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4059"
+ id="radialGradient4077"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.78280537,0,44.912713)"
+ cx="9.383935"
+ cy="206.78555"
+ fx="9.383935"
+ fy="206.78555"
+ r="4.3115377" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4083"
+ id="radialGradient4089"
+ cx="11.626994"
+ cy="203.97969"
+ fx="11.626994"
+ fy="203.97969"
+ r="4.7921438"
+ gradientTransform="matrix(2.1952566,0,0,1.7662769,-13.897242,-155.75663)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.59375"
+ inkscape:cx="48.819112"
+ inkscape:cy="19.287746"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer2"
+ showgrid="true"
+ borderlayer="false"
+ inkscape:showpageshadow="false"
+ inkscape:snap-nodes="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="10000"
+ inkscape:window-width="1276"
+ inkscape:window-height="977"
+ inkscape:window-x="0"
+ inkscape:window-y="0">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2483"
+ empspacing="5"
+ visible="true"
+ enabled="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Sebastian Kraft</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:title>gparted</dc:title>
+ <dc:description>apps</dc:description>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>system</rdf:li>
+ <rdf:li>partition</rdf:li>
+ <rdf:li>harddisk</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:date>2008-09-16</dc:date>
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
+ <dc:contributor>
+ <cc:Agent>
+ <dc:title>Jakub Steiner, Lapo Calamandrei</dc:title>
+ </cc:Agent>
+ </dc:contributor>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="plate"
+ style="display:none"
+ transform="translate(-318,-42)">
+ <rect
+ style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+ id="rect2518"
+ width="48"
+ height="48"
+ x="318"
+ y="42" />
+ <rect
+ y="122"
+ x="318"
+ height="32"
+ width="32"
+ id="rect2520"
+ style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none" />
+ <rect
+ style="opacity:0.05;fill:#000000;fill-opacity:1;stroke:none"
+ id="rect2522"
+ width="24"
+ height="24"
+ x="318"
+ y="182" />
+ <path
+ style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none"
+ d="m 318,242 16,0 0,16 -16,0 0,-16 z"
+ id="rect2524" />
+ <rect
+ y="184"
+ x="318"
+ height="22"
+ width="22"
+ id="rect2487"
+ style="opacity:0.05;fill:#000000;fill-opacity:1;stroke:none"
+ transform="translate(1,-1)" />
+ </g>
+ <g
+ inkscape:label="artwork"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline"
+ transform="translate(-318,-42)"
+ sodipodi:insensitive="true">
+ <path
+ style="opacity:1;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.03774905;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 0.5,201.5 0,13 1,0 0,1 13,0 0,-1 1,0 0,-13 -15,0 z"
+ transform="matrix(1,0,0,0.92857143,318,56.392857)"
+ id="rect3957" />
+ <path
+ transform="matrix(0.96293586,0,0,1.0044575,318.62331,41.789735)"
+ style="color:#000000;fill:none;stroke:#555753;stroke-width:1.01680005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 0.91043031,201.8107 13.50038169,0 0,10.95118 -13.50038169,0 0,-10.95118 z"
+ id="rect3972" />
+ <g
+ id="g3519"
+ style="opacity:0.7;display:inline"
+ transform="matrix(1.030831,0,0,1.151147,317.61089,32.717216)"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <path
+ transform="scale(-1,-1)"
+ style="fill:url(#radialGradient2957);fill-opacity:1;stroke:none"
+ d="m -9.5392103,-48.024086 8.1916437,0 0,12.405126 -8.1916437,0 0,-12.405126 z"
+ id="rect2884" />
+ <path
+ style="fill:url(#radialGradient2959);fill-opacity:1;stroke:none"
+ d="m 38.209965,35.618961 8.191643,0 0,12.405126 -8.191643,0 0,-12.405126 z"
+ id="rect2894" />
+ <path
+ style="fill:url(#linearGradient2961);fill-opacity:1;stroke:none"
+ d="m 9.5392103,35.618961 28.6707537,0 0,12.405126 -28.6707537,0 0,-12.405126 z"
+ id="rect2898" />
+ </g>
+ <g
+ style="display:inline"
+ id="g5672"
+ transform="translate(318,-3.996258)">
+ <path
+ sodipodi:nodetypes="ccccccccccccc"
+ id="rect2010"
+ d="m 4.5182287,80.500013 38.9635393,0 c 0.564099,0 1.018229,0.45413 1.018229,1.018229 l 0,2.963543 c 0,1.315584 -0.450231,3.018228 -2.455729,3.018228 L 40.5,87.5 l 0,1 -33,0 0,-1 -1.8567713,1.3e-5 c -1.2712053,0 -2.1432282,-0.884627 -2.1432282,-2.255665 l 0,-3.726106 c 0,-0.564099 0.4541297,-1.018229 1.0182282,-1.018229 z"
+ style="color:#000000;fill:url(#linearGradient2947);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
+ <path
+ transform="translate(0,50)"
+ style="opacity:0.1;color:#000000;fill:none;stroke:url(#linearGradient2949);stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:1.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 4.59375,31.59375 0,3.729743 c 0,0.599619 0.3756505,1.104854 0.8863276,1.104854 l 36.9463294,0 c 0.512469,0 0.979843,-0.507235 0.979843,-1.016466 l 0,-3.818131 -38.8125,0 z"
+ id="path2076"
+ sodipodi:nodetypes="ccccccc" />
+ <g
+ transform="translate(0,50)"
+ style="opacity:0.5"
+ id="g4706">
+ <path
+ style="opacity:0.10952382;fill:url(#linearGradient2951);fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="m 26.144738,32.088747 c 0,0 -1.502602,5.533939 -3.226175,5.911253 0,0 6.231378,-0.125771 6.231378,-0.125771 1.387072,-0.317461 3.358758,-5.785482 3.358758,-5.785482 l -6.363961,0 z"
+ id="path2907"
+ sodipodi:nodetypes="ccccc"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90" />
+ <path
+ inkscape:export-ydpi="90"
+ inkscape:export-xdpi="90"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ sodipodi:nodetypes="ccccc"
+ id="path2892"
+ d="m 14.769738,32 c 0,0 -1.502602,5.533939 -3.226175,5.911253 0,0 6.231378,-0.125771 6.231378,-0.125771 C 19.162013,37.468021 21.133699,32 21.133699,32 l -6.363961,0 z"
+ style="opacity:0.10952382;fill:url(#linearGradient2953);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+ <path
+ inkscape:export-ydpi="90"
+ inkscape:export-xdpi="90"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ sodipodi:nodetypes="ccccc"
+ id="path2896"
+ d="m 34.886139,32 c 0,0 -2.212224,5.328458 -3.108503,5.691761 0,0 2.899969,-0.121101 2.899969,-0.121101 C 35.402697,37.264987 37.8125,32 37.8125,32 l -2.926361,0 z"
+ style="opacity:0.10952382;fill:url(#linearGradient2955);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+ </g>
+ </g>
+ <path
+ style="fill:url(#radialGradient2945);fill-opacity:1;stroke:#888a85;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline"
+ d="m 11.693127,10.498788 24.572566,0 c 1.68417,0 2.396517,0.117479 3.040019,2.385005 l 5.074491,17.881119 c 0.501024,1.765471 -1.355848,2.735101 -3.040018,2.735101 l -34.7215538,0 c -1.868408,0 -3.4893833,-1.181417 -3.0400182,-2.735101 L 8.8290448,12.611497 c 0.5683008,-1.964905 1.1799122,-2.112709 2.8640822,-2.112709 z"
+ id="rect1879"
+ sodipodi:nodetypes="cczzcczzc"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ transform="translate(318,45.001212)" />
+ <path
+ style="opacity:1;color:#000000;fill:url(#linearGradient3802);fill-opacity:1;stroke:none;stroke-width:1.00000036;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 14.3125,15.53125 -3.84375,2.5625 -3.625,12.59375 c 1.4468706,0.699749 3.788925,1.47768 3.59375,3.84375 l 2.0625,0 0,-4.03125 c 2.736722,2.434807 7.088342,4 12,4 7.778123,0 14.190048,-3.94489 14.9375,-9 l 0.21875,0 -2.15625,-7.40625 -5.15625,-2.5625 -18.03125,0 z"
+ transform="translate(318,42)"
+ id="path1997" />
+ <path
+ style="opacity:1;color:#000000;fill:url(#linearGradient3810);fill-opacity:1;stroke:none;stroke-width:0.91991049;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="M 14.25,20 10.375,22.75 8,31.53125 c 1.2464561,0.670958 2.489039,1.591357 2.34375,3.46875 0,0 14.15625,-0.5 14.15625,-0.5 6.703235,0 12.389849,-2.923325 14.3125,-6.96875 L 37.5,22.75 32.3125,20 14.25,20 z"
+ transform="translate(318,42)"
+ id="path3008"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ style="opacity:1;color:#000000;fill:url(#linearGradient4141);fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:0.96564066;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 24,16 c -7.728,0 -14,3.584001 -14,8 l 0,8.8125 c 0.304858,0.464446 0.49599,1.009687 0.4375,1.71875 0,0 14.0625,-0.03125 14.0625,-0.03125 5.854688,0 10.995851,-2.23874 13.5,-5.5 l 0,-5 c 0,-4.415999 -6.272001,-8 -14,-8 z"
+ transform="matrix(0.96652645,0,0,0.97471764,318.80337,42.87315)"
+ id="path4134" />
+ <path
+ style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 10,25 0,7.8125 c 0.304858,0.464446 0.49599,1.009687 0.4375,1.71875 0,0 14.0625,-0.03125 14.0625,-0.03125 5.854688,0 10.995851,-2.23874 13.5,-5.5 l 0,-4 c 0,4.415999 -6.272001,8 -14,8 -7.728,0 -14,-3.584001 -14,-8 z"
+ transform="translate(318,42)"
+ id="path3982" />
+ <path
+ style="opacity:1;color:#000000;fill:url(#radialGradient4098);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 10,26 0,6.8125 c 0.304858,0.464446 0.49599,1.009687 0.4375,1.71875 0,0 14.0625,-0.03125 14.0625,-0.03125 5.854688,0 10.995851,-2.23874 13.5,-5.5 l 0,-3 c 0,4.415999 -6.272001,8 -14,8 -7.728,0 -14,-3.584001 -14,-8 z"
+ transform="translate(318,42)"
+ id="path3979" />
+ <path
+ transform="matrix(1.4004865,0,0,1.0762795,312.53279,39.417324)"
+ style="color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 10.330132,31.20256 3.570187,0 0,3.716507 -3.570187,0 0,-3.716507 z"
+ id="rect3869" />
+ <path
+ transform="matrix(0.33857511,0,0,0.42781677,320.87579,62.112679)"
+ style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path3814" />
+ <path
+ transform="matrix(6.5882368,0,0,-3.8787869,278.2647,191.60603)"
+ style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path3903" />
+ <path
+ transform="matrix(4.7058792,0,0,-2.9090911,292.61767,161.45455)"
+ style="color:#000000;fill:url(#radialGradient3915);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path3907" />
+ <path
+ style="opacity:1;color:#000000;fill:url(#radialGradient3884);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.53841114;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 7.5,31 C 6.0322077,29.683128 5.8193873,30.305642 4.648834,34.173068 5.0028872,35.894701 6.478588,35.599283 8,36 9.6559996,36 11.175583,36.04044 10.736626,34.234111 10.216043,32.678552 9.0629242,31.461221 7.5,31 z"
+ transform="translate(318,42)"
+ id="path3882"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:none;stroke:url(#linearGradient2937);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline"
+ d="m 11.6875,11.500005 c -0.803124,0 -1.097168,0.07051 -1.21875,0.155556 -0.121582,0.08504 -0.357707,0.40212 -0.6875,1.306667 l -5.25,18.137786 c -0.1337204,0.366765 -0.054827,0.533865 0.3125,0.84 0.3673267,0.306136 1.066693,0.56 1.78125,0.560001 l 34.71875,0 c 0.639793,0 1.393345,-0.237954 1.78125,-0.52889 0.387905,-0.290935 0.488311,-0.382809 0.3125,-0.871111 L 38.375,13.242228 c -0.377206,-1.04766 -0.68208,-1.439297 -0.84375,-1.555556 -0.16167,-0.116259 -0.443711,-0.186667 -1.25,-0.186667 l -24.59375,0 z"
+ id="path3394"
+ sodipodi:nodetypes="csccsccsccscc"
+ transform="translate(318,45.001212)" />
+ <g
+ id="g5657"
+ transform="translate(325,44.001212)"
+ style="opacity:0.3028571;display:inline">
+ <path
+ style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:1.00000024;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:1.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 19.251297,35.500008 12.497402,0 c 0.416221,0 0.751301,0.333216 0.751301,0.747122 l 0,0.505747 C 32.5,37.166783 32.16492,37.5 31.748699,37.5 l -12.497402,0 c -0.416221,0 -0.751301,-0.333217 -0.751301,-0.747123 l 0,-0.505747 c 0,-0.413906 0.33508,-0.747122 0.751301,-0.747122 z"
+ id="rect5641" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 19,36 1,0 0,1 -1,0 0,-1 z"
+ id="rect5645" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 22,36 1,0 0,1 -1,0 0,-1 z"
+ id="rect5647" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 24,36 1,0 0,1 -1,0 0,-1 z"
+ id="rect5649" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 26,36 1,0 0,1 -1,0 0,-1 z"
+ id="rect5651" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 29,36 2,0 0,1 -2,0 0,-1 z"
+ id="rect5653" />
+ </g>
+ <path
+ transform="matrix(-2.628602,0,0,1.777765,378.79309,21.223822)"
+ style="color:#000000;fill:url(#radialGradient2929);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.46259445;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path8660" />
+ <path
+ transform="matrix(1.411772,0,0,0.969697,347.98523,45.849697)"
+ style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path8662" />
+ <path
+ transform="translate(318,45.001212)"
+ style="opacity:0.12000002;color:#000000;fill:url(#linearGradient2907);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.68183619;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8,38 32.03125,0 0,1 L 8,39 8,38 z"
+ id="rect2984" />
+ <path
+ transform="matrix(-2.628602,0,0,1.777765,345.79309,21.223822)"
+ style="color:#000000;fill:url(#radialGradient2941);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path8621" />
+ <path
+ transform="matrix(1.411772,0,0,0.969697,314.98523,45.849697)"
+ style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path8611" />
+ <path
+ transform="matrix(-1.3542993,0,0,1.7112675,372.49682,18.450707)"
+ style="color:#000000;fill:url(#radialGradient4068);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.68167293;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path3812" />
+ <path
+ transform="matrix(-1.0711586,0,0,1,367.84887,42.263374)"
+ style="opacity:0.88259128;color:#000000;fill:url(#radialGradient4060);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 24.131688,31.736626 c -3.607309,0 -6.691105,-0.781854 -9.241857,-2.343146 l 9.241856,-5.656854 z"
+ id="path3957" />
+ <path
+ transform="matrix(-1.0711586,0,0,1,367.84887,42.263374)"
+ style="opacity:0.7651822;color:#000000;fill:url(#radialGradient4044);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 14.889831,29.39348 c -5.101505,-3.122584 -5.101505,-8.191125 0,-11.313709 5.101504,-3.122583 13.382207,-3.122583 18.483712,0 l -9.241856,5.656855 z"
+ id="path3959" />
+ <path
+ transform="matrix(-1.0711586,0,0,1,367.84887,42.263374)"
+ style="opacity:0.90688261;color:#000000;fill:url(#radialGradient4052);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 33.373543,18.079771 c 2.550753,1.561292 3.828103,3.448855 3.828103,5.656855 l -13.069959,0 z"
+ id="path3961" />
+ <path
+ style="opacity:1;color:#000000;fill:none;stroke:url(#linearGradient3794);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="M 39.546875,25.5 37.5,18.09375 l -5.15625,-2.5625 -18.03125,0 -3.84375,2.5625 -3.625,12.59375 c 1.4468706,0.699749 3.788925,1.47768 3.59375,3.84375 0,0 14.0625,-0.03125 14.0625,-0.03125 7.778123,0 14.299423,-3.94489 15.046875,-9 z"
+ transform="translate(318,42)"
+ id="path3786"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ transform="matrix(-7.529413,0,0,-3.8787893,399.41177,184.6061)"
+ style="color:#000000;fill:url(#radialGradient4006);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path4004" />
+ <path
+ id="path3992"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ style="color:#000000;fill:url(#radialGradient4014);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(-5.6470566,0,0,2.9090912,385.05881,-22.454553)" />
+ <path
+ id="path4016"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ style="opacity:0.6680162;color:#000000;fill:none;stroke:url(#radialGradient4024);stroke-width:0.7712248;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(-1.2091958,0,0,1.3904051,369.2293,27.366192)" />
+ <path
+ transform="matrix(-1.3059315,0,0,1.6043135,371.40764,21.422531)"
+ style="opacity:0.26315792;color:#000000;fill:none;stroke:#000000;stroke-width:0.69086814;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path4026" />
+ <path
+ transform="matrix(-0.43531041,0,0,0.5347712,351.80254,51.140842)"
+ style="opacity:1;color:#000000;fill:none;stroke:url(#radialGradient4088);stroke-width:2.07260442;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path4086" />
+ <path
+ id="path4090"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ style="opacity:0.20242914;color:#000000;fill:none;stroke:#000000;stroke-width:1.71139669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(-0.53204623,0,0,0.64172535,353.98089,47.669014)" />
+ <g
+ inkscape:export-ydpi="90"
+ inkscape:export-xdpi="90"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ transform="matrix(0.71025815,0,0,0.80611869,317.04288,114.28689)"
+ style="opacity:0.7;display:inline"
+ id="g2747">
+ <path
+ id="path2749"
+ d="m -9.5392103,-48.024086 8.1916437,0 0,12.405126 -8.1916437,0 0,-12.405126 z"
+ style="fill:url(#radialGradient2893);fill-opacity:1;stroke:none"
+ transform="scale(-1,-1)" />
+ <path
+ id="path2751"
+ d="m 38.209965,35.618961 8.191643,0 0,12.405126 -8.191643,0 0,-12.405126 z"
+ style="fill:url(#radialGradient2895);fill-opacity:1;stroke:none" />
+ <path
+ id="path2753"
+ d="m 9.5392103,35.618961 28.6707537,0 0,12.405126 -28.6707537,0 0,-12.405126 z"
+ style="fill:url(#linearGradient2897);fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ transform="matrix(0.68342033,0,0,0.73897404,317.10433,85.097927)"
+ id="g2755"
+ style="display:inline">
+ <path
+ style="color:#000000;fill:url(#linearGradient2901);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.40715361;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 4.5182287,80.500013 38.9635393,0 c 0.564099,0 1.018229,0.45413 1.018229,1.018229 l 0,2.963543 c 0,1.315584 -0.450231,3.018228 -2.455729,3.018228 L 40.5,87.5 l 0,1 -33,0 0,-1 -1.8567713,1.3e-5 c -1.2712053,0 -2.1432282,-0.884627 -2.1432282,-2.255665 l 0,-3.726106 c 0,-0.564099 0.4541297,-1.018229 1.0182282,-1.018229 z"
+ id="path2757"
+ sodipodi:nodetypes="ccccccccccccc" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path2759"
+ d="m 4.59375,31.59375 0,3.729743 c 0,0.599619 0.3756505,1.104854 0.8863276,1.104854 l 36.9463294,0 c 0.512469,0 0.979843,-0.507235 0.979843,-1.016466 l 0,-3.818131 -38.8125,0 z"
+ style="opacity:0.1;color:#000000;fill:none;stroke:url(#linearGradient2903);stroke-width:1.34322655;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:1.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(0.98019806,0,0,1.1196197,0.46585572,45.688148)" />
+ <g
+ id="g2761"
+ style="opacity:0.5"
+ transform="translate(0,50)">
+ <path
+ inkscape:export-ydpi="90"
+ inkscape:export-xdpi="90"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ sodipodi:nodetypes="ccccc"
+ id="path2763"
+ d="m 26.144738,32.088747 c 0,0 -1.502602,5.533939 -3.226175,5.911253 0,0 6.231378,-0.125771 6.231378,-0.125771 1.387072,-0.317461 3.358758,-5.785482 3.358758,-5.785482 l -6.363961,0 z"
+ style="opacity:0.10952382;fill:url(#linearGradient2905);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+ <path
+ style="opacity:0.10952382;fill:url(#linearGradient2908);fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="m 14.769738,32 c 0,0 -1.502602,5.533939 -3.226175,5.911253 0,0 6.231378,-0.125771 6.231378,-0.125771 C 19.162013,37.468021 21.133699,32 21.133699,32 l -6.363961,0 z"
+ id="path2765"
+ sodipodi:nodetypes="ccccc"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90" />
+ <path
+ style="opacity:0.10952382;fill:url(#linearGradient2910);fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="m 34.886139,32 c 0,0 -2.212224,5.328458 -3.108503,5.691761 0,0 2.899969,-0.121101 2.899969,-0.121101 C 35.402697,37.264987 37.8125,32 37.8125,32 l -2.926361,0 z"
+ id="path2767"
+ sodipodi:nodetypes="ccccc"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90" />
+ </g>
+ </g>
+ <path
+ transform="matrix(0.68358647,0,0,0.69561499,317.10544,123.19689)"
+ inkscape:export-ydpi="90"
+ inkscape:export-xdpi="90"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ sodipodi:nodetypes="cczzcczzc"
+ id="path2769"
+ d="m 11.693127,10.498788 24.572566,0 c 1.68417,0 2.396517,0.117479 3.040019,2.385005 l 5.074491,17.881119 c 0.501024,1.765471 -1.355848,2.735101 -3.040018,2.735101 l -34.7215538,0 c -1.868408,0 -3.4893833,-1.181417 -3.0400182,-2.735101 L 8.8290448,12.611497 c 0.5683008,-1.964905 1.1799122,-2.112709 2.8640822,-2.112709 z"
+ style="fill:url(#radialGradient2912);fill-opacity:1;stroke:#888a85;stroke-width:1.45017004;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline" />
+ <path
+ id="path2771"
+ transform="matrix(0.60952376,0,0,0.68421085,318.82857,121.37334)"
+ d="m 14.3125,15.53125 -3.84375,2.5625 -3.625,12.59375 c 1.4468706,0.699749 3.788925,1.47768 3.59375,3.84375 l 2.0625,0 0,-4.03125 c 2.736722,2.434807 7.088342,4 12,4 7.778123,0 14.190048,-3.94489 14.9375,-9 l 0.21875,0 -2.15625,-7.40625 -5.15625,-2.5625 -18.03125,0 z"
+ style="color:#000000;fill:url(#linearGradient2914);fill-opacity:1;stroke:none;stroke-width:1.00000036;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="path2773"
+ transform="matrix(0.68901512,0,0,0.68901512,317.08642,121.1983)"
+ d="M 14.25,20 10.375,22.75 8,31.53125 c 1.2464561,0.670958 2.489039,1.591357 2.34375,3.46875 0,0 14.15625,-0.5 14.15625,-0.5 6.703235,0 12.389849,-2.923325 14.3125,-6.96875 L 37.5,22.75 32.3125,20 14.25,20 z"
+ style="color:#000000;fill:url(#linearGradient2916);fill-opacity:1;stroke:none;stroke-width:0.91991049;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
+ <path
+ id="path2775"
+ transform="matrix(0.64509791,0,0,0.59697757,318.01765,122.91699)"
+ d="m 24,16 c -7.728,0 -14,3.584001 -14,8 l 0,8.8125 c 0.304858,0.464446 0.49599,1.009687 0.4375,1.71875 0,0 14.0625,-0.03125 14.0625,-0.03125 5.854688,0 10.995851,-2.23874 13.5,-5.5 l 0,-5 c 0,-4.415999 -6.272001,-8 -14,-8 z"
+ style="color:#000000;fill:url(#linearGradient2918);fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1.51032364;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ id="path2777"
+ transform="matrix(0.68901512,0,0,0.68901512,317.08642,121.1983)"
+ d="m 10,25 0,7.8125 c 0.304858,0.464446 0.49599,1.009687 0.4375,1.71875 0,0 14.0625,-0.03125 14.0625,-0.03125 5.854688,0 10.995851,-2.23874 13.5,-5.5 l 0,-4 c 0,4.415999 -6.272001,8 -14,8 -7.728,0 -14,-3.584001 -14,-8 z"
+ style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ id="path2779"
+ transform="matrix(0.68901512,0,0,0.68901512,317.08642,121.1983)"
+ d="m 10,26 0,6.8125 c 0.304858,0.464446 0.49599,1.009687 0.4375,1.71875 0,0 14.0625,-0.03125 14.0625,-0.03125 5.854688,0 10.995851,-2.23874 13.5,-5.5 l 0,-3 c 0,4.415999 -6.272001,8 -14,8 -7.728,0 -14,-3.584001 -14,-8 z"
+ style="color:#000000;fill:url(#radialGradient2920);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ id="path2781"
+ d="m 10.330132,31.20256 3.570187,0 0,3.716507 -3.570187,0 0,-3.716507 z"
+ style="color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(0.96495637,0,0,0.74157285,313.31943,119.41879)" />
+ <path
+ id="path2783"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(0.29020683,0,0,0.32086216,317.46497,134.58452)" />
+ <path
+ id="path2785"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(4.7058857,0,0,-2.9090908,288.61762,231.45454)" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path2789"
+ transform="matrix(0.81111359,0,0,0.71088604,316.22927,120.40805)"
+ d="M 7.5,31 C 6.0322077,29.683128 5.8193873,30.305642 4.648834,34.173068 5.0028872,35.894701 6.478588,35.599283 8,36 9.6559996,36 11.175583,36.04044 10.736626,34.234111 10.216043,32.678552 9.0629242,31.461221 7.5,31 z"
+ style="color:#000000;fill:url(#radialGradient2924);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.53841114;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ id="path2787"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ style="color:#000000;fill:url(#radialGradient2922);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(2.8235277,0,0,-1.9393921,302.9706,201.30297)" />
+ <path
+ transform="matrix(0.665801,0,0,0.66666647,317.52363,123.83333)"
+ sodipodi:nodetypes="csccsccsccscc"
+ id="path2791"
+ d="m 11.6875,11.500005 c -0.803124,0 -1.097168,0.07051 -1.21875,0.155556 -0.121582,0.08504 -0.357707,0.40212 -0.6875,1.306667 l -5.25,18.137786 c -0.1337204,0.366765 -0.054827,0.533865 0.3125,0.84 0.3673267,0.306136 1.066693,0.56 1.78125,0.560001 l 34.71875,0 c 0.639793,0 1.393345,-0.237954 1.78125,-0.52889 0.387905,-0.290935 0.488311,-0.382809 0.3125,-0.871111 L 38.375,13.242228 c -0.377206,-1.04766 -0.68208,-1.439297 -0.84375,-1.555556 -0.16167,-0.116259 -0.443711,-0.186667 -1.25,-0.186667 l -24.59375,0 z"
+ style="fill:none;stroke:url(#linearGradient3008);stroke-width:1.50097561;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline" />
+ <g
+ style="opacity:0.3028571;display:inline"
+ transform="matrix(0.71427477,0,0,0.99633248,321.28592,112.13019)"
+ id="g2793">
+ <path
+ id="path2795"
+ d="m 19.251297,35.500008 12.497402,0 c 0.416221,0 0.751301,0.333216 0.751301,0.747122 l 0,0.505747 C 32.5,37.166783 32.16492,37.5 31.748699,37.5 l -12.497402,0 c -0.416221,0 -0.751301,-0.333217 -0.751301,-0.747123 l 0,-0.505747 c 0,-0.413906 0.33508,-0.747122 0.751301,-0.747122 z"
+ style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:1.24951303;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:1.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(0.90001351,0,0,1,1.8497497,0)" />
+ <path
+ id="path2797"
+ d="m 19,36 1,0 0,1 -1,0 0,-1 z"
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(1.4000218,0,0,1.0036815,-7.400507,-0.13437074)" />
+ <path
+ id="path2799"
+ d="m 22,36 1,0 0,1 -1,0 0,-1 z"
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(1.4000218,0,0,1.0036815,-8.8005297,-0.13437074)" />
+ <path
+ id="path2803"
+ d="m 26,36 1,0 0,1 -1,0 0,-1 z"
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(1.4000214,0,0,1.0036808,-11.600563,-0.1343453)" />
+ <path
+ id="path2805"
+ d="m 29,36 2,0 0,1 -2,0 0,-1 z"
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(1.4000208,0,0,1.0036808,-13.000566,-0.1343453)" />
+ </g>
+ <path
+ id="path2807"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ style="color:#000000;fill:url(#radialGradient2928);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.46259445;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(-1.8955041,0,0,1.3107951,358.95321,104.27222)" />
+ <path
+ id="path2809"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(1.0180391,0,0,0.7149843,336.73744,122.42957)" />
+ <path
+ id="path2813"
+ d="m 8,38 32.03125,0 0,1 L 8,39 8,38 z"
+ style="opacity:0.12000002;color:#000000;fill:url(#linearGradient2934);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.68183619;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(0.71804892,0,0,1.0000022,316.2556,110.99992)" />
+ <path
+ id="path2815"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ style="color:#000000;fill:url(#radialGradient2936);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(-1.8111465,0,0,1.224907,336.23628,106.88319)" />
+ <path
+ id="path2817"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(0.97273225,0,0,0.66813589,315.0092,123.85079)" />
+ <path
+ id="path2821"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ style="color:#000000;fill:url(#radialGradient2942);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.68167293;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(-0.91898869,0,0,1.390405,354.19427,99.866194)" />
+ <path
+ id="path2823"
+ d="m 24.131688,31.736626 c -3.607309,0 -6.691105,-0.781854 -9.241857,-2.343146 l 9.241856,-5.656854 z"
+ style="opacity:0.88259128;color:#000000;fill:url(#radialGradient2944);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(-0.72691249,0,0,0.75005661,351.04234,120.19573)" />
+ <path
+ id="path2825"
+ d="m 14.889831,29.39348 c -5.101505,-3.122584 -5.101505,-8.191125 0,-11.313709 5.101504,-3.122583 13.382207,-3.122583 18.483712,0 l -9.241856,5.656855 z"
+ style="opacity:0.7651822;color:#000000;fill:url(#radialGradient2946);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(-0.72691249,0,0,0.75005661,351.04234,120.19573)" />
+ <path
+ id="path2827"
+ d="m 33.373543,18.079771 c 2.550753,1.561292 3.828103,3.448855 3.828103,5.656855 l -13.069959,0 z"
+ style="opacity:0.90688261;color:#000000;fill:url(#radialGradient2948);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(-0.72691249,0,0,0.75005661,351.04234,120.19573)" />
+ <path
+ id="path2831"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ style="color:#000000;fill:url(#radialGradient3016);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(-4.7058828,0,0,-2.3919233,369.38236,211.37387)" />
+ <path
+ transform="matrix(-4.705883,0,0,1.9393938,369.38236,78.696975)"
+ style="color:#000000;fill:url(#radialGradient2954);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path2833" />
+ <path
+ transform="matrix(-0.7738852,0,0,0.96258823,350.92675,111.25351)"
+ style="opacity:0.6680162;color:#000000;fill:none;stroke:url(#radialGradient2956);stroke-width:1.15862107;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path2835" />
+ <path
+ id="path2837"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ style="opacity:0.26315792;color:#000000;fill:none;stroke:#000000;stroke-width:0.98807508;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(-0.87062131,0,0,1.1764968,353.1051,105.30985)" />
+ <path
+ id="path2839"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ style="color:#000000;fill:none;stroke:url(#radialGradient2958);stroke-width:3.2770741;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(-0.29020701,0,0,0.32086295,340.03503,129.0845)" />
+ <path
+ transform="matrix(-0.38694262,0,0,0.42781737,342.21337,125.61266)"
+ style="opacity:0.20242914;color:#000000;fill:none;stroke:#000000;stroke-width:2.4578054;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path2841" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="path2829"
+ transform="matrix(0.64214056,0,0,0.63157897,318.10535,122.69079)"
+ d="M 39.546875,25.5 37.5,18.09375 l -5.15625,-2.5625 -18.03125,0 -3.84375,2.5625 -3.625,12.59375 c 1.4468706,0.699749 3.788925,1.47768 3.59375,3.84375 0,0 14.0625,-0.03125 14.0625,-0.03125 8.917547,0 15.046875,-3.803211 15.046875,-9 z"
+ style="color:#000000;fill:none;stroke:url(#linearGradient2950);stroke-width:1.57025874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
+ <g
+ id="g3018"
+ style="opacity:0.7;display:inline"
+ transform="matrix(0.48830247,0,0,0.4836709,318.34198,179.77215)"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <path
+ transform="scale(-1,-1)"
+ style="fill:url(#radialGradient3108);fill-opacity:1;stroke:none"
+ d="m -9.5392103,-48.024086 8.1916437,0 0,12.405126 -8.1916437,0 0,-12.405126 z"
+ id="path3020" />
+ <path
+ style="fill:url(#radialGradient3110);fill-opacity:1;stroke:none"
+ d="m 38.209965,35.618961 8.191643,0 0,12.405126 -8.191643,0 0,-12.405126 z"
+ id="path3022" />
+ <path
+ style="fill:url(#linearGradient3112);fill-opacity:1;stroke:none"
+ d="m 9.5392103,35.618961 28.6707537,0 0,12.405126 -28.6707537,0 0,-12.405126 z"
+ id="path3024" />
+ </g>
+ <g
+ style="display:inline"
+ id="g3026"
+ transform="matrix(0.46330457,0,0,0.50127783,318.87844,157.13271)">
+ <path
+ sodipodi:nodetypes="ccccccccccccc"
+ id="path3028"
+ d="m 4.5182287,80.500013 38.9635393,0 c 0.564099,0 1.018229,0.45413 1.018229,1.018229 l 0,2.963543 c 0,1.315584 -0.450231,3.018228 -2.455729,3.018228 L 40.5,87.5 l 0,1 -33,0 0,-1 -1.8567713,1.3e-5 c -1.2712053,0 -2.1432282,-0.884627 -2.1432282,-2.255665 l 0,-3.726106 c 0,-0.564099 0.4541297,-1.018229 1.0182282,-1.018229 z"
+ style="color:#000000;fill:url(#linearGradient3114);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:2.07504439;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="translate(-1.4515415e-5,0)" />
+ <path
+ transform="matrix(0.72294482,0,0,1.6505211,6.6541813,26.387725)"
+ style="opacity:0.1;color:#000000;fill:none;stroke:url(#linearGradient3116);stroke-width:1.89960945;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:1.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 4.59375,31.59375 0,3.729743 c 0,0.599619 0.3756505,1.104854 0.8863276,1.104854 l 36.9463294,0 c 0.512469,0 0.979843,-0.507235 0.979843,-1.016466 l 0,-3.818131 -38.8125,0 z"
+ id="path3030"
+ sodipodi:nodetypes="ccccccc" />
+ <g
+ transform="translate(0,50)"
+ style="opacity:0.5"
+ id="g3032">
+ <path
+ style="opacity:0.10952382;fill:url(#linearGradient3118);fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="m 26.144738,32.088747 c 0,0 -1.502602,5.533939 -3.226175,5.911253 0,0 6.231378,-0.125771 6.231378,-0.125771 1.387072,-0.317461 3.358758,-5.785482 3.358758,-5.785482 l -6.363961,0 z"
+ id="path3034"
+ sodipodi:nodetypes="ccccc"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ transform="matrix(1,0,0,0.91726489,0,2.6548661)" />
+ <path
+ inkscape:export-ydpi="90"
+ inkscape:export-xdpi="90"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ sodipodi:nodetypes="ccccc"
+ id="path3036"
+ d="m 14.769738,32 c 0,0 -1.502602,5.533939 -3.226175,5.911253 0,0 6.231378,-0.125771 6.231378,-0.125771 C 19.162013,37.468021 21.133699,32 21.133699,32 l -6.363961,0 z"
+ style="opacity:0.10952382;fill:url(#linearGradient3120);fill-opacity:1;fill-rule:evenodd;stroke:none"
+ transform="matrix(1,0,0,0.93227812,0,2.1671003)" />
+ <path
+ inkscape:export-ydpi="90"
+ inkscape:export-xdpi="90"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ sodipodi:nodetypes="ccccc"
+ id="path3038"
+ d="m 34.886139,32 c 0,0 -2.212224,5.328458 -3.108503,5.691761 0,0 2.899969,-0.121101 2.899969,-0.121101 C 35.402697,37.264987 37.8125,32 37.8125,32 l -2.926361,0 z"
+ style="opacity:0.10952382;fill:url(#linearGradient3122);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+ </g>
+ </g>
+ <path
+ style="fill:url(#radialGradient3124);fill-opacity:1;stroke:#888a85;stroke-width:2.12317014;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline"
+ d="m 11.693127,10.498788 24.572566,0 c 1.68417,0 2.396517,0.117479 3.040019,2.385005 l 5.074491,17.881119 c 0.501024,1.765471 -1.355848,2.735101 -3.040018,2.735101 l -34.7215538,0 c -1.868408,0 -3.4893833,-1.181417 -3.0400182,-2.735101 L 8.8290448,12.611497 c 0.5683008,-1.964905 1.1799122,-2.112709 2.8640822,-2.112709 z"
+ id="path3040"
+ sodipodi:nodetypes="cczzcczzc"
+ inkscape:export-filename="/home/lapo/Desktop/uhm.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ transform="matrix(0.4638623,0,0,0.47823534,318.87511,182.47911)" />
+ <path
+ style="color:#000000;fill:url(#linearGradient3126);fill-opacity:1;stroke:none;stroke-width:1.00000036;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 14.3125,15.53125 -3.84375,2.5625 -3.625,12.59375 c 1.4468706,0.699749 3.788925,1.47768 3.59375,3.84375 l 2.0625,0 0,-4.03125 c 2.736722,2.434807 7.088342,4 12,4 7.778123,0 14.190048,-3.94489 14.9375,-9 l 0.21875,0 -2.15625,-7.40625 -5.15625,-2.5625 -18.03125,0 z"
+ transform="matrix(0.45714291,0,0,0.52631592,318.87143,179.82565)"
+ id="path3042" />
+ <path
+ style="color:#000000;fill:url(#linearGradient3128);fill-opacity:1;stroke:none;stroke-width:0.91991049;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="M 14.25,20 10.375,22.75 8,31.53125 c 1.2464561,0.670958 2.489039,1.591357 2.34375,3.46875 0,0 14.15625,-0.5 14.15625,-0.5 6.703235,0 12.389849,-2.923325 14.3125,-6.96875 L 37.5,22.75 32.3125,20 14.25,20 z"
+ transform="matrix(0.46680839,0,0,0.46399096,318.70101,181.58436)"
+ id="path3044"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ style="color:#000000;fill:url(#linearGradient3130);fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:2.23364878;stroke-miterlimit:4;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 24,16 c -7.728,0 -14,3.584001 -14,8 l 0,8.8125 c 0.304858,0.464446 0.49599,1.009687 0.4375,1.71875 0,0 14.0625,-0.03125 14.0625,-0.03125 5.854688,0 10.995851,-2.23874 13.5,-5.5 l 0,-5 c 0,-4.415999 -6.272001,-8 -14,-8 z"
+ transform="matrix(0.46428579,0,0,0.43170304,318.85714,182.59275)"
+ id="path3046" />
+ <path
+ style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 10,25 0,7.8125 c 0.304858,0.464446 0.49599,1.009687 0.4375,1.71875 0,0 14.0625,-0.03125 14.0625,-0.03125 5.854688,0 10.995851,-2.23874 13.5,-5.5 l 0,-4 c 0,4.415999 -6.272001,8 -14,8 -7.728,0 -14,-3.584001 -14,-8 z"
+ transform="matrix(0.46680839,0,0,0.46399096,318.70101,181.58436)"
+ id="path3048" />
+ <path
+ style="color:#000000;fill:url(#radialGradient3132);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 10,26 0,6.8125 c 0.304858,0.464446 0.49599,1.009687 0.4375,1.71875 0,0 14.0625,-0.03125 14.0625,-0.03125 5.854688,0 10.995851,-2.23874 13.5,-5.5 l 0,-3 c 0,4.415999 -6.272001,8 -14,8 -7.728,0 -14,-3.584001 -14,-8 z"
+ transform="matrix(0.49999989,0,0,0.58607996,318,177.76193)"
+ id="path3050" />
+ <path
+ transform="matrix(0.65375884,0,0,0.49938396,316.14887,180.38601)"
+ style="color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 10.330132,31.20256 3.570187,0 0,3.716507 -3.570187,0 0,-3.716507 z"
+ id="path3052" />
+ <path
+ transform="matrix(0.19347152,0,0,0.32086302,319.64331,187.5845)"
+ style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path3054" />
+ <path
+ style="color:#000000;fill:url(#radialGradient3164);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.53841114;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 7.5,31 C 6.0322077,29.683128 5.8193873,30.305642 4.648834,34.173068 5.0028872,35.894701 6.478588,35.599283 8,36 9.6559996,36 11.175583,36.04044 10.736626,34.234111 10.216043,32.678552 9.0629242,31.461221 7.5,31 z"
+ transform="matrix(0.64889115,0,0,0.3554418,317.98341,185.20406)"
+ id="path3058"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:none;stroke:url(#linearGradient3138);stroke-width:2.31514788;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline"
+ d="m 11.6875,11.500005 c -0.803124,0 -1.097168,0.07051 -1.21875,0.155556 -0.121582,0.08504 -0.357707,0.40212 -0.6875,1.306667 l -5.25,18.137786 c -0.1337204,0.366765 -0.054827,0.533865 0.3125,0.84 0.3673267,0.306136 1.066693,0.56 1.78125,0.560001 l 34.71875,0 c 0.639793,0 1.393345,-0.237954 1.78125,-0.52889 0.387905,-0.290935 0.488311,-0.382809 0.3125,-0.871111 L 38.375,13.242228 c -0.377206,-1.04766 -0.68208,-1.439297 -0.84375,-1.555556 -0.16167,-0.116259 -0.443711,-0.186667 -1.25,-0.186667 l -24.59375,0 z"
+ id="path3062"
+ sodipodi:nodetypes="csccsccsccscc"
+ transform="matrix(0.43533112,0,0,0.42857145,319.55392,183.57143)" />
+ <g
+ id="g3064"
+ transform="matrix(0.47680629,0,0,0.5199942,321.6786,181.03089)"
+ style="opacity:0.3028571;display:inline">
+ <path
+ transform="matrix(0.90001351,0,0,1,1.8497497,0)"
+ style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#eeeeec;stroke-width:2.11692429;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:1.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 19.251297,35.500008 12.497402,0 c 0.416221,0 0.751301,0.333216 0.751301,0.747122 l 0,0.505747 C 32.5,37.166783 32.16492,37.5 31.748699,37.5 l -12.497402,0 c -0.416221,0 -0.751301,-0.333217 -0.751301,-0.747123 l 0,-0.505747 c 0,-0.413906 0.33508,-0.747122 0.751301,-0.747122 z"
+ id="path3066" />
+ <path
+ transform="matrix(1.4000218,0,0,1.0036815,-7.400507,-0.13437074)"
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 19,36 1,0 0,1 -1,0 0,-1 z"
+ id="path3068" />
+ <path
+ transform="matrix(1.4000218,0,0,1.0036815,-8.8005297,-0.13437074)"
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 22,36 1,0 0,1 -1,0 0,-1 z"
+ id="path3070" />
+ <path
+ transform="matrix(1.4000214,0,0,1.0036808,-11.600563,-0.1343453)"
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 26,36 1,0 0,1 -1,0 0,-1 z"
+ id="path3072" />
+ <path
+ transform="matrix(1.4000208,0,0,1.0036808,-13.000566,-0.1343453)"
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 29,36 2,0 0,1 -2,0 0,-1 z"
+ id="path3074" />
+ </g>
+ <path
+ transform="matrix(-0.58041386,0,0,0.7486794,343.07006,172.69719)"
+ style="color:#000000;fill:url(#radialGradient3940);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.68167293;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path3086" />
+ <path
+ transform="matrix(2.8235344,0,0,-1.9393894,301.97055,255.30289)"
+ style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path3056" />
+ <path
+ transform="matrix(-0.47319257,0,0,0.38768637,341.41894,183.69614)"
+ style="opacity:0.88259128;color:#000000;fill:url(#radialGradient3148);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 24.131688,31.736626 c -3.607309,0 -6.691105,-0.781854 -9.241857,-2.343146 l 9.241856,-5.656854 z"
+ id="path3088" />
+ <path
+ transform="matrix(-0.45834803,0,0,0.36614836,341.07103,184.23763)"
+ style="opacity:0.7651822;color:#000000;fill:url(#radialGradient3150);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 14.762138,29.553327 c -5.1015046,-3.122584 -4.973812,-8.350972 0.127693,-11.473556 5.101504,-3.122583 13.382207,-3.122583 18.483712,0 l -9.241856,5.656855 -9.369549,5.816701 z"
+ id="path3090"
+ sodipodi:nodetypes="csccc" />
+ <path
+ transform="matrix(-0.45906767,0,0,0.35355422,341.07807,184.60782)"
+ style="opacity:0.90688261;color:#000000;fill:url(#radialGradient3152);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000024;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 33.331046,17.638329 c 2.550753,1.561292 3.8706,3.890297 3.8706,6.098297 l -13.069959,0 9.199359,-6.098297 z"
+ id="path3092"
+ sodipodi:nodetypes="cccc" />
+ <path
+ transform="matrix(-3.7647048,0,0,-0.96969036,358.70587,222.15132)"
+ style="color:#000000;fill:url(#radialGradient3154);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path3094" />
+ <path
+ id="path3096"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ style="color:#000000;fill:url(#radialGradient3156);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ transform="matrix(-3.7647018,0,0,1.9393953,358.70585,133.69693)" />
+ <path
+ id="path3098"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ style="opacity:0.6680162;color:#000000;fill:none;stroke:url(#radialGradient3938);stroke-width:1.8747406;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(-0.53204601,0,0,0.53477163,341.98089,178.14083)" />
+ <path
+ transform="matrix(-0.14510369,0,0,0.21390851,333.26752,186.55634)"
+ style="color:#000000;fill:none;stroke:url(#radialGradient3166);stroke-width:5.67605639;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ id="path3102" />
+ <path
+ id="path3104"
+ d="m 32.855967,27.786009 c 0,2.580543 -4.631177,4.674897 -10.337449,4.674897 -5.706271,0 -10.337448,-2.094354 -10.337448,-4.674897 0,-2.580543 4.631177,-4.674897 10.337448,-4.674897 5.706272,0 10.337449,2.094354 10.337449,4.674897 z"
+ style="opacity:0.20242914;color:#000000;fill:none;stroke:#000000;stroke-width:4.39330626;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(-0.24220871,0,0,0.2139081,335.458,186.55635)" />
+ <path
+ style="color:#000000;fill:none;stroke:url(#linearGradient3162);stroke-width:2.22068048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="M 39.546875,25.5 37.5,18.09375 l -5.15625,-2.5625 -18.03125,0 -3.84375,2.5625 -3.625,12.59375 c 1.4468706,0.699749 3.788925,1.47768 3.59375,3.84375 0,0 14.0625,-0.03125 14.0625,-0.03125 8.917547,0 15.046875,-3.803211 15.046875,-9 z"
+ transform="matrix(0.42809375,0,0,0.47368443,320.57023,181.14309)"
+ id="path3106"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ transform="matrix(2.823527,0,0,-1.9393984,301.97061,255.30317)"
+ style="color:#000000;fill:url(#radialGradient3136);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path3060" />
+ <path
+ transform="matrix(-1.2270534,0,0,0.82486691,331.67506,171.94439)"
+ style="color:#000000;fill:url(#radialGradient3144);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path3082" />
+ <path
+ transform="matrix(0.65902701,0,0,0.44993064,317.2937,183.37057)"
+ style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path3084" />
+ <path
+ transform="matrix(-1.2842058,0,0,0.88270497,347.0658,170.05339)"
+ style="color:#000000;fill:url(#radialGradient3140);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.46259445;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path3076" />
+ <path
+ transform="matrix(0.68972244,0,0,0.48147891,332.0146,182.28077)"
+ style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
+ d="m 8.15625,30.578125 c 0,0.284625 -0.238,0.515625 -0.53125,0.515625 -0.29325,0 -0.53125,-0.231 -0.53125,-0.515625 0,-0.284625 0.238,-0.515625 0.53125,-0.515625 0.29325,0 0.53125,0.231 0.53125,0.515625 z"
+ id="path3078" />
+ <path
+ style="opacity:1;color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99279028;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 1,202 0,9 2,0 0,1 10,0 0,-1 2,0 0,-9 -2,0 -10,0 -2,0 z"
+ transform="translate(318,42)"
+ id="rect3959" />
+ <path
+ transform="matrix(0.9629355,0,0,0.73051508,318.62332,97.074241)"
+ style="opacity:0.86234819;color:#000000;fill:none;stroke:url(#linearGradient3970);stroke-width:1.19230366;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 0.91043031,201.8107 13.50038169,0 0,10.95118 -13.50038169,0 0,-10.95118 z"
+ id="rect3962" />
+ <path
+ transform="matrix(0.91124997,0,0,1.0355101,318.2,34.386613)"
+ style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.07891595;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 3.0727024,204.35666 10.9739366,0 0,5.79424 -10.9739366,0 0,-5.79424 z"
+ id="rect4019" />
+ <path
+ transform="matrix(1.231419,0,0,1.1390623,316.72973,12.42505)"
+ style="color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 5.0919068,209.88751 c 0,0.72692 -0.7276159,1.31687 -1.6241427,1.31687 -0.8965267,0 -1.6241426,-0.58995 -1.6241426,-1.31687 0,-0.72691 0.7276159,-1.31687 1.6241426,-1.31687 0.8965268,0 1.6241427,0.58996 1.6241427,1.31687 z"
+ id="path4043" />
+ <path
+ style="opacity:0.51012148;color:#000000;fill:none;stroke:url(#radialGradient4001);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 0.5,201.5 0,10 2,0 0,1 11,0 0,-1 2,0 0,-10 -15,0 z"
+ transform="translate(318,42)"
+ id="rect3982" />
+ <path
+ style="opacity:1;color:#000000;fill:url(#linearGradient4041);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 6.5625,204 C 5.612629,204.73356 5,205.79455 5,207 c 0,1.20545 0.612629,2.26644 1.5625,3 l 5.875,0 c 0.2105,-0.16256 0.389019,-0.33695 0.5625,-0.53125 l 0,-4.9375 C 12.826519,204.33695 12.648,204.16256 12.4375,204 l -5.875,0 z"
+ transform="matrix(1.125,0,0,1,316.375,42)"
+ id="path4022" />
+ <path
+ id="path4035"
+ transform="matrix(1.125,0,0,1,316.375,42)"
+ d="m 6.5625,204 5.875,6 c 0.2105,-0.16256 0.389019,-0.33695 0.5625,-0.53125 l 0,-4.9375 C 12.826519,204.33695 12.648,204.16256 12.4375,204 l -5.875,0 z"
+ style="opacity:0.8663968;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ transform="matrix(1.0437112,0,0,1.0370091,317.20588,34.56151)"
+ style="opacity:0.39271258;color:#000000;fill:none;stroke:url(#radialGradient4089);stroke-width:0.96121061;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 13.695473,206.78555 c 0,1.86306 -1.931569,3.3751 -4.311538,3.3751 -2.3799689,0 -4.3115378,-1.51204 -4.3115378,-3.3751 0,-1.86305 1.9315689,-3.37509 4.3115378,-3.37509 2.379969,0 4.311538,1.51204 4.311538,3.37509 z"
+ id="path4079" />
+ <path
+ id="path4037"
+ transform="matrix(1.125,0,0,1,316.375,42)"
+ d="m 9.5,210 2.9375,0 C 12.648,209.83744 12.826519,209.66305 13,209.46875 L 9.78125,206.73437 9.5,210 z"
+ style="opacity:0.8663968;color:#000000;fill:#cc0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ style="opacity:0.8663968;color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 6.5625,204 C 5.612629,204.73356 5,205.79455 5,207 L 9.78125,206.73437 6.5625,204 z"
+ transform="matrix(1.125,0,0,1,316.375,42)"
+ id="path4039" />
+ <path
+ transform="matrix(1.1596791,0,0,1.1851523,316.11765,3.9276261)"
+ style="opacity:0.39271258;color:#000000;fill:url(#radialGradient4065);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 13.695473,206.78555 c 0,1.86306 -1.931569,3.3751 -4.311538,3.3751 -2.3799689,0 -4.3115378,-1.51204 -4.3115378,-3.3751 0,-1.86305 1.9315689,-3.37509 4.3115378,-3.37509 2.379969,0 4.311538,1.51204 4.311538,3.37509 z"
+ id="path4055" />
+ <path
+ id="path4051"
+ d="m 5.0919068,209.88751 c 0,0.72692 -0.7276159,1.31687 -1.6241427,1.31687 -0.8965267,0 -1.6241426,-0.58995 -1.6241426,-1.31687 0,-0.72691 0.7276159,-1.31687 1.6241426,-1.31687 0.8965268,0 1.6241427,0.58996 1.6241427,1.31687 z"
+ style="color:#000000;fill:url(#linearGradient4073);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(1.23142,0,0,0.75937984,322.72973,89.615652)" />
+ <path
+ transform="matrix(0.61571043,0,0,0.37968831,324.86486,169.80817)"
+ style="color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 5.0919068,209.88751 c 0,0.72692 -0.7276159,1.31687 -1.6241427,1.31687 -0.8965267,0 -1.6241426,-0.58995 -1.6241426,-1.31687 0,-0.72691 0.7276159,-1.31687 1.6241426,-1.31687 0.8965268,0 1.6241427,0.58996 1.6241427,1.31687 z"
+ id="path4053" />
+ <path
+ id="path4075"
+ d="m 13.695473,206.78555 c 0,1.86306 -1.931569,3.3751 -4.311538,3.3751 -2.3799689,0 -4.3115378,-1.51204 -4.3115378,-3.3751 0,-1.86305 1.9315689,-3.37509 4.3115378,-3.37509 2.379969,0 4.311538,1.51204 4.311538,3.37509 z"
+ style="opacity:0.36437246;color:#000000;fill:url(#radialGradient4077);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.76678097;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ transform="matrix(1.2756474,0,0,1.3332963,315.02941,-26.706414)" />
+ <path
+ transform="matrix(0.81479188,0,0,0.63920073,319.75819,116.50245)"
+ style="opacity:0.86234819;color:#000000;fill:none;stroke:url(#linearGradient4017);stroke-width:1.38566446;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 0.91043031,201.8107 13.50038169,0 0,10.95118 -13.50038169,0 0,-10.95118 z"
+ id="rect4004" />
+ <rect
+ style="opacity:1;color:#000000;fill:#888a85;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ id="rect4091"
+ width="1.0925164"
+ height="0.81938732"
+ x="12.915105"
+ y="213.16507"
+ transform="matrix(0.91531395,0,0,1.2204209,319.17862,-5.1511133)" />
+ <rect
+ transform="matrix(0.91531395,0,0,1.2204209,317.17863,-5.1511061)"
+ y="213.16507"
+ x="12.915105"
+ height="0.81938732"
+ width="1.0925164"
+ id="rect4094"
+ style="opacity:1;color:#000000;fill:#888a85;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ </g>
+</svg>
Modified: trunk/src/Makefile.am
==============================================================================
--- trunk/src/Makefile.am (original)
+++ trunk/src/Makefile.am Mon Sep 22 22:41:49 2008
@@ -1,8 +1,7 @@
INCLUDES = \
$(GTKMM_CFLAGS) \
-DGPARTED_DATADIR=\""$(datadir)"\" \
- -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
- -DGNOME_ICONDIR=\""$(datadir)/pixmaps"\"
+ -DGNOMELOCALEDIR=\""$(datadir)/locale"\"
AM_CFLAGS = -Wall
Modified: trunk/src/Win_GParted.cc
==============================================================================
--- trunk/src/Win_GParted.cc (original)
+++ trunk/src/Win_GParted.cc Mon Sep 22 22:41:49 2008
@@ -71,7 +71,7 @@
try
{
- this ->set_icon_from_file( GNOME_ICONDIR "/gparted.png" ) ;
+ this ->set_default_icon_name( "gparted" ) ;
}
catch ( Glib::Exception & e )
{
@@ -1191,7 +1191,7 @@
dialog .set_transient_for( *this ) ;
dialog .set_name( _("GParted") ) ;
- dialog .set_logo( this ->get_icon() ) ;
+ dialog .set_logo_icon_name( "gparted" ) ;
dialog .set_version( VERSION ) ;
dialog .set_comments( _( "GNOME Partition Editor" ) ) ;
dialog .set_copyright( "Copyright  2004-2008 Bart Hakvoort" ) ;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]