2007-04-28 Benny Malengier <bm@cage.ugent.be>

* src/images/.../Makefile.am:
	* src/images/Makefile.am:
        * src/DataViews/_RelationView.py:
        * src/MarkupText.py:
        * src/gramps_main.py:
        * src/images/.../gramps-font-color...: 
        * src/images/.../gramps-font-bgcolor...:
        * src/images/.../gramps-parents-open...:
        * src/images/48x48/gramps-parents-add.png:
	New icons for add/share parents, clean up media icon, icons for fonts as asked by Zsolt, delete of no more needed icons  gramps-sharefamily, gramps-media-all. Reflect changes to images to makefiles. Use the new icons.



svn: r8430
This commit is contained in:
Benny Malengier 2007-04-28 14:25:18 +00:00
parent 26bda1fdae
commit 6544ab67ad
26 changed files with 3460 additions and 1341 deletions

View File

@ -1,3 +1,15 @@
2007-04-28 Benny Malengier <bm@cage.ugent.be>
* src/images/.../Makefile.am:
* src/images/Makefile.am:
* src/DataViews/_RelationView.py:
* src/MarkupText.py:
* src/gramps_main.py:
* src/images/.../gramps-font-color...:
* src/images/.../gramps-font-bgcolor...:
* src/images/.../gramps-parents-open...:
* src/images/48x48/gramps-parents-add.png:
New icons for add/share parents, clean up media icon, icons for fonts as asked by Zsolt, delete of no more needed icons gramps-sharefamily, gramps-media-all. Reflect changes to images to makefiles. Use the new icons.
2007-04-27 Brian Matherly <brian@gramps-project.org>
* src/Filters/Rules/Person/_IsLessThanNthGenerationAncestorOfBookmarked.py:
* src/Filters/Rules/Person/_RelationshopPathBetweenBookmarks.py:

View File

@ -133,7 +133,7 @@ class RelationshipView(PageView.PersonNavView):
self.config_update)
Config.client.notify_add("/apps/gramps/interface/toolbar-on",
self.shade_update)
self.reorder_sensitive = False
self.reorder_sensitive = False
def set_active(self):
PageView.PersonNavView.set_active(self)
@ -268,8 +268,8 @@ class RelationshipView(PageView.PersonNavView):
<menu action="EditMenu">
<menuitem action="Edit"/>
<menuitem action="AddParents"/>
<menuitem action="AddSpouse"/>
<menuitem action="ShareFamily"/>
<menuitem action="AddSpouse"/>
<menuitem action="ChangeOrder"/>
<menuitem action="FilterEdit"/>
</menu>
@ -312,19 +312,19 @@ class RelationshipView(PageView.PersonNavView):
self.order_action = gtk.ActionGroup(self.title + '/ChangeOrder')
self.order_action.add_actions([
('ChangeOrder', gtk.STOCK_SORT_ASCENDING, _('_Reorder'), None ,
_("Reorder the relationships"), self.reorder),
_("Reorder the relationships"), self.reorder),
])
self.family_action = gtk.ActionGroup(self.title + '/Family')
self.family_action.add_actions([
('Edit', gtk.STOCK_EDIT, _('Edit'), None ,
_("Edits the active person"), self.edit_active),
('AddSpouse', 'gramps-spouse', _('Spouse'), None ,
_("Adds a new relationship"), self.add_spouse),
('AddParents', 'gramps-parents', _('Add'), None ,
_("Adds a new set of parents"), self.add_parents),
('ShareFamily', 'gramps-sharefamily', _('Share'), None ,
_("Adds an existing set of parents"), self.select_parents),
_("Edits the active person"), self.edit_active),
('AddSpouse', 'gramps-spouse', _('Add partner'), None ,
_("Add a new relationship"), self.add_spouse),
('AddParents', 'gramps-parents-add', _('Add new parents'), None ,
_("Adds a new set of parents"), self.add_parents),
('ShareFamily', 'gramps-parents-open', _('Add existing parents'), None ,
_("Adds an existing set of parents"), self.select_parents),
])
self.add_action_group(self.order_action)

View File

@ -304,9 +304,9 @@ class MarkupBuffer(gtk.TextBuffer):
format_actions = [
('font', gtk.STOCK_SELECT_FONT, None, None,
_('Font'), self.on_action_activate),
('foreground', gtk.STOCK_SELECT_COLOR, None, None,
('foreground', 'gramps-font-color', None, None,
_('Font Color'), self.on_action_activate),
('background', gtk.STOCK_SELECT_COLOR, None, None,
('background', 'gramps-font-bgcolor', None, None,
_('Background Color'), self.on_action_activate),
('clear', gtk.STOCK_CLEAR, None, None,
_('Clear'), self._format_clear_cb),

View File

@ -105,11 +105,14 @@ def register_stock_icons ():
('gramps-date-edit',_('Edit Date'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-event',_('Events'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-family',_('Family'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-font-color',_('Font Color'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-font-bgcolor',_('Font Background Color'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-lock',_('Public'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-media',_('Media'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-media-all',_('Media'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-notes',_('Notes'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-parents',_('Add Parents'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-parents',_('Parents'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-parents-add',_('Add Parents'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-parents-open',_('Select Parents'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-pedigree',_('Pedigree'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-person',_('Person'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-place',_('Places'),gtk.gdk.CONTROL_MASK,0,''),
@ -128,7 +131,6 @@ def register_stock_icons ():
('gramps-export',_('Export'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-undo-history',_('Undo History'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-url',_('URL'),gtk.gdk.CONTROL_MASK,0,''),
('gramps-sharefamily',_('Share Family'),gtk.gdk.CONTROL_MASK,0,''),
]
# Register our stock items

View File

@ -16,7 +16,6 @@ dist_pkgdata_DATA = \
gramps-event.png \
gramps-family.png \
gramps-lock.png \
gramps-media-all.png \
gramps-media.png \
gramps-notes.png \
gramps-parents.png \

Binary file not shown.

Before

Width:  |  Height:  |  Size: 694 B

View File

@ -16,7 +16,6 @@ dist_pkgdata_DATA = \
gramps-event.png \
gramps-family.png \
gramps-lock.png \
gramps-media-all.png \
gramps-media.png \
gramps-notes.png \
gramps-parents.png \

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -15,11 +15,14 @@ dist_pkgdata_DATA = \
gramps-date.png \
gramps-event.png \
gramps-family.png \
gramps-font-bgcolor.png \
gramps-font-color.png \
gramps-lock.png \
gramps-media-all.png \
gramps-media.png \
gramps-notes.png \
gramps-parents.png \
gramps-parents-add.png \
gramps-parents-open.png \
gramps-pedigree.png \
gramps-person.png \
gramps-place.png \

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -55,11 +55,9 @@ map_tile_images = \
dist_pkgdata_DATA = \
bad.png\
caution.png\
gramps-sharefamily.png\
good.png\
gramps.png\
logo.png\
gramps-parents.svg\
splash.jpg\
gramps-export.png\
gramps-url.png\

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -15,11 +15,14 @@ dist_pkgdata_DATA = \
gramps-date.svg \
gramps-event.svg \
gramps-family.svg \
gramps-font-bgcolor.svg \
gramps-font-color.svg \
gramps-lock.svg \
gramps-media-all.svg \
gramps-media.svg \
gramps-notes.svg \
gramps-parents.svg \
gramps-parents-open.svg \
gramps-parents-add.svg \
gramps-pedigree.svg \
gramps-person.svg \
gramps-place.svg \

View File

@ -0,0 +1,554 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
height="48"
id="svg2556"
sodipodi:version="0.32"
inkscape:version="0.45"
version="1.0"
sodipodi:docbase="/home/benny/programms/gramps/myicons/scalable"
sodipodi:docname="gramps-font-bgcolor.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<defs
id="defs2558">
<linearGradient
id="linearGradient2250"
inkscape:collect="always">
<stop
id="stop2252"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop2254"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2250"
id="linearGradient14344"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-20.547862,13.863133)"
x1="21.289597"
y1="0.9565396"
x2="72.147209"
y2="3.8390646" />
<linearGradient
id="linearGradient2230">
<stop
id="stop2232"
offset="0"
style="stop-color:#d3d7cf;stop-opacity:1;" />
<stop
id="stop2234"
offset="1"
style="stop-color:#818d75;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2230"
id="linearGradient14342"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-20.547851,13.863148)"
x1="48.080193"
y1="-1.1340035"
x2="48.017197"
y2="1.5940925" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4454"
id="radialGradient4590"
gradientUnits="userSpaceOnUse"
cx="18.240929"
cy="21.817987"
fx="18.240929"
fy="21.817987"
r="8.3085051" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2366"
id="linearGradient4586"
gradientUnits="userSpaceOnUse"
x1="18.292673"
y1="13.602121"
x2="17.500893"
y2="25.743469" />
<linearGradient
id="linearGradient4467">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop4469" />
<stop
style="stop-color:#ffffff;stop-opacity:0.24761905;"
offset="1.0000000"
id="stop4471" />
</linearGradient>
<linearGradient
id="linearGradient4454">
<stop
style="stop-color:#729fcf;stop-opacity:0.20784314;"
offset="0.0000000"
id="stop4456" />
<stop
style="stop-color:#729fcf;stop-opacity:0.67619050;"
offset="1.0000000"
id="stop4458" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4487">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop4489" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop4491" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4487"
id="radialGradient4588"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
cx="24.130018"
cy="37.967922"
fx="24.130018"
fy="37.967922"
r="16.528622" />
<linearGradient
id="linearGradient2366">
<stop
id="stop2368"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
style="stop-color:#ffffff;stop-opacity:0.21904762;"
offset="0.50000000"
id="stop2374" />
<stop
id="stop2370"
offset="1.0000000"
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
id="linearGradient4440">
<stop
style="stop-color:#7d7d7d;stop-opacity:1;"
offset="0"
id="stop4442" />
<stop
id="stop4448"
offset="0.50000000"
style="stop-color:#b1b1b1;stop-opacity:1.0000000;" />
<stop
style="stop-color:#686868;stop-opacity:1.0000000;"
offset="1.0000000"
id="stop4444" />
</linearGradient>
<linearGradient
id="linearGradient2846">
<stop
id="stop2848"
offset="0.0000000"
style="stop-color:#8a8a8a;stop-opacity:1.0000000;" />
<stop
id="stop2850"
offset="1.0000000"
style="stop-color:#484848;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
id="linearGradient269">
<stop
id="stop270"
offset="0.0000000"
style="stop-color:#a3a3a3;stop-opacity:1.0000000;" />
<stop
id="stop271"
offset="1"
style="stop-color:#8a8a8a;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient259">
<stop
id="stop260"
offset="0.0000000"
style="stop-color:#fafafa;stop-opacity:1.0000000;" />
<stop
id="stop261"
offset="1.0000000"
style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
id="linearGradient2378">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2380" />
<stop
id="stop4146"
offset="0.25"
style="stop-color:#fefede;stop-opacity:0.91836733;" />
<stop
id="stop2386"
offset="0.5"
style="stop-color:#f5f328;stop-opacity:1;" />
<stop
style="stop-color:#f5f32d;stop-opacity:0.12234043;"
offset="1"
id="stop2382" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4785">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop4787" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop4789" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4785"
id="radialGradient4791"
cx="22.402998"
cy="43.071735"
fx="22.402998"
fy="43.071735"
r="22.318058"
gradientTransform="matrix(1.026073,-4.434013e-3,9.770098e-4,7.524542e-2,-0.626191,41.79022)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient4755">
<stop
style="stop-color:#eeeeec;stop-opacity:1;"
offset="0"
id="stop4757" />
<stop
style="stop-color:#ffffff;stop-opacity:1.0000000"
offset="1"
id="stop4759" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4755"
id="linearGradient4761"
x1="36.668537"
y1="36.383247"
x2="10.303555"
y2="7.4928832"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0175238,0,0,0.9997945,0.1928436,2.4100894e-2)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2378"
id="radialGradient4364"
gradientUnits="userSpaceOnUse"
cx="38.658855"
cy="9.3411446"
fx="38.658855"
fy="9.3411446"
r="8.341651" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4440"
id="linearGradient4647"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.7730392,-0.1877302,0.179191,0.7581772,42.71329,-12.352936)"
x1="30.656250"
y1="34.000000"
x2="33.218750"
y2="31.062500" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2846"
id="linearGradient4651"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.805118,-0.192885,0.192885,0.805118,51.417196,-17.381556)"
x1="27.366341"
y1="26.580296"
x2="31.335964"
y2="30.557772" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4487"
id="radialGradient5645"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
cx="24.130018"
cy="37.967922"
fx="24.130018"
fy="37.967922"
r="16.528622" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4467"
id="radialGradient5648"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.4574099,-0.349157,0.3032584,1.2658255,58.779285,-19.812754)"
cx="15.414371"
cy="13.078408"
fx="15.414371"
fy="13.078408"
r="6.6562500" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4440"
id="linearGradient5655"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.750126,-0.1797104,0.1738797,0.7257881,70.490607,-15.795443)"
x1="30.656250"
y1="34.000000"
x2="33.218750"
y2="31.062500" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2846"
id="linearGradient5659"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5620635,-0.1346556,0.1346556,0.5620635,75.414967,-12.541146)"
x1="27.366341"
y1="26.580296"
x2="31.335964"
y2="30.557772" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4487"
id="radialGradient6645"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
cx="24.130018"
cy="37.967922"
fx="24.130018"
fy="37.967922"
r="16.528622" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4440"
id="linearGradient6647"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.7730392,-0.1877302,0.179191,0.7581772,42.71329,-12.352936)"
x1="30.656250"
y1="34.000000"
x2="33.218750"
y2="31.062500" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4440"
id="linearGradient6651"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.4776547,-0.3392034,0.3425214,1.369925,-103.68065,-20.257635)"
x1="30.656250"
y1="34.000000"
x2="33.218750"
y2="31.062500" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
gridtolerance="10000"
guidetolerance="10"
objecttolerance="10"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="9.6218182"
inkscape:cx="18.453133"
inkscape:cy="20.777286"
inkscape:document-units="px"
inkscape:current-layer="layer1"
width="48px"
height="48px"
inkscape:window-width="748"
inkscape:window-height="737"
inkscape:window-x="52"
inkscape:window-y="0" />
<metadata
id="metadata2561">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:description></dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/" />
<dc:creator>
<cc:Agent>
<dc:title>Benny Malengier</dc:title>
</cc:Agent>
</dc:creator>
<dc:contributor>
<cc:Agent>
<dc:title>original elemens from
tango: Andreas Nilsson
oxygen guys
Jakub Steiner http://jimmac.musichall.cz</dc:title>
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/2.5/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Attribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<path
sodipodi:type="arc"
style="opacity:0.5;fill:url(#radialGradient4791);fill-opacity:1;stroke:none;stroke-width:1.02499998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path4775"
sodipodi:cx="23.82066"
sodipodi:cy="45.083183"
sodipodi:rx="22.318058"
sodipodi:ry="1.6793786"
d="M 46.138718 45.083183 A 22.318058 1.6793786 0 1 1 1.5026016,45.083183 A 22.318058 1.6793786 0 1 1 46.138718 45.083183 z"
transform="matrix(0.940942,0,0,1.786371,1.8356947,-35.516123)" />
<rect
style="opacity:1;fill:url(#linearGradient4761);fill-opacity:1;stroke:#888a85;stroke-width:1.03376043;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect1314"
width="45.05592"
height="43.290195"
x="1.2480121"
y="2.0161252"
rx="0.99906075"
ry="0.99914879" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.034;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4753"
width="42.641914"
height="41.02454"
x="2.2469499"
y="2.9127214"
rx="0"
ry="0" />
<rect
style="opacity:0.8;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect15830"
width="40.636814"
height="25.670822"
x="3.2218444"
y="3.4138322"
rx="0.99906075"
ry="0.99914879" />
<path
style="font-size:29.01771545px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:120.00000477%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial Rounded CE"
d="M 9.5944949,8.966246 L 9.5944949,14.874639 C 10.321825,14.118983 11.063325,13.542785 11.818995,13.146045 C 12.574655,12.739887 13.509795,12.536801 14.624425,12.536786 C 15.909045,12.536801 17.033105,12.843792 17.996595,13.457758 C 18.969505,14.062308 19.720455,14.945496 20.249435,16.107325 C 20.787835,17.259732 21.057045,18.629382 21.057055,20.216279 C 21.057045,21.387573 20.905905,22.464402 20.603655,23.446767 C 20.310815,24.419695 19.881035,25.2651 19.314295,25.982983 C 18.747525,26.700871 18.057985,27.258176 17.245645,27.654902 C 16.442735,28.042183 15.554825,28.235823 14.581915,28.235823 C 13.986815,28.235823 13.424785,28.164979 12.895825,28.023291 C 12.376295,27.881603 11.932335,27.697409 11.563955,27.470708 C 11.195565,27.234562 10.879125,26.993692 10.614645,26.748099 C 10.359605,26.502507 10.019555,26.134119 9.5944949,25.642932 L 9.5944949,26.02549 C 9.5944849,26.752823 9.4197449,27.305406 9.0702449,27.68324 C 8.7207449,28.051629 8.2767949,28.235823 7.7383849,28.235823 C 7.1905149,28.235823 6.7512849,28.051629 6.4206849,27.68324 C 6.0995249,27.305406 5.9389449,26.752823 5.9389449,26.02549 L 5.9389449,9.136271 C 5.9389449,8.352284 6.0947949,7.761917 6.4065149,7.365171 C 6.7276749,6.959019 7.1716249,6.755933 7.7383849,6.755912 C 8.3334649,6.755933 8.7915949,6.949573 9.1127549,7.336833 C 9.4339049,7.714688 9.5944849,8.257825 9.5944949,8.966246 M 9.7786849,20.457149 C 9.7786849,21.996831 10.128185,23.182287 10.827185,24.013519 C 11.535615,24.835313 12.461305,25.246208 13.604265,25.246205 C 14.577185,25.246208 15.413135,24.825867 16.112145,23.985181 C 16.820575,23.135058 17.174795,21.921265 17.174805,20.343798 C 17.174795,19.323653 17.028385,18.445188 16.735575,17.7084 C 16.442735,16.971633 16.027125,16.404882 15.488715,16.008143 C 14.950295,15.601983 14.322145,15.398897 13.604265,15.398885 C 12.867475,15.398897 12.210995,15.601983 11.634805,16.008143 C 11.058595,16.404882 10.605195,16.985802 10.274595,17.750907 C 9.9439849,18.506586 9.7786849,19.408665 9.7786849,20.457149"
id="text3427" />
<rect
style="opacity:0.8;fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect15832"
width="40.53289"
height="14.03061"
x="3.2218418"
y="30.071997"
rx="0.99906075"
ry="0.99914879" />
<path
style="font-size:19.52186584px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:120.00000477%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Carbon Block"
d="M 22.427884,33.874073 C 22.427874,34.069301 22.414864,34.355622 22.388834,34.733036 C 22.375814,35.097452 22.369314,35.364251 22.369314,35.533433 L 19.636254,35.533433 L 19.636254,33.132242 C 19.636254,32.663728 19.375964,32.429466 18.855384,32.429455 C 18.334794,32.429466 18.074504,32.663728 18.074504,33.132242 L 18.074504,40.84338 C 18.074504,41.324921 18.334794,41.565691 18.855384,41.565689 C 19.375964,41.565691 19.636254,41.324921 19.636254,40.84338 L 19.636254,38.286016 L 22.369314,38.286016 L 22.369314,40.784815 C 22.369314,41.552676 21.952844,42.138331 21.119914,42.541783 C 20.456164,42.867147 19.701324,43.029829 18.855384,43.029829 C 17.996414,43.029829 17.241574,42.867147 16.590844,42.541783 C 15.757914,42.138331 15.341444,41.552676 15.341444,40.784815 L 15.341444,33.268895 C 15.341444,31.824288 16.512754,31.10198 18.855384,31.101968 C 20.026684,31.10198 20.885644,31.277677 21.432264,31.629059 C 22.096004,32.05855 22.427874,32.806888 22.427884,33.874073"
id="text3431" />
<path
style="font-size:46.60050201px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Nimbus Roman No9 L"
d="M 43.172979,27.372882 C 41.127511,27.193455 40.912197,27.195143 40.445686,24.57551 L 37.072454,4.264354 L 36.428208,4.264354 L 25.732658,22.207071 C 22.897712,26.979828 22.226015,27.085799 20.790599,27.372882 L 20.790599,28.235823 L 27.814014,28.235823 L 27.814014,27.372882 C 25.983858,27.193455 25.696773,27.302802 25.696773,26.405667 C 25.696773,25.723844 25.80443,25.400873 26.414482,24.180768 L 28.459952,20.558877 L 36.354747,20.558877 L 37.072454,24.826707 C 37.108341,25.149676 37.144226,25.472645 37.144226,25.759728 C 37.144226,27.123374 36.954666,27.15757 34.658001,27.372882 L 34.658001,28.235823 L 43.172979,28.235823 L 43.172979,27.372882 M 29.213546,18.83384 L 34.59636,9.503628 L 36.17532,18.83384 L 29.213546,18.83384"
id="text2044"
sodipodi:nodetypes="cccccccccsccccscccccccc" />
<rect
transform="matrix(0.8855746,0.4644972,-0.4537765,0.8911155,0,0)"
ry="1.8879371"
rx="2.1366627"
y="-39.43214"
x="88.910667"
height="2.5664566"
width="11.009403"
id="rect5641"
style="opacity:0.43315507;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5779866;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<g
id="g14338"
transform="translate(28.672762,9.9011646)">
<rect
transform="matrix(0.7401646,0.6724257,-0.6724257,0.7401646,0,0)"
ry="2.3471549"
rx="2.3471549"
y="12.558686"
x="-0.38879183"
height="4.6943097"
width="38.003391"
id="rect2228"
style="color:#000000;fill:url(#linearGradient14342);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:0.99999928;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
style="opacity:0.46590911;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient14344);stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect2248"
width="35.89901"
height="2.6089065"
x="0.61250293"
y="13.551793"
rx="1.7837232"
ry="1.1017078"
transform="matrix(0.7401651,0.6724251,-0.6724251,0.7401651,0,0)" />
</g>
<g
id="g4360"
transform="translate(-58.425666,15.08829)"
style="opacity:0.81499999">
<path
transform="matrix(1.14985,0,0,1.14985,31.814632,-5.672398)"
d="M 47.000506 9.3411446 A 8.341651 8.341651 0 1 1 30.317204,9.3411446 A 8.341651 8.341651 0 1 1 47.000506 9.3411446 z"
sodipodi:ry="8.341651"
sodipodi:rx="8.341651"
sodipodi:cy="9.3411446"
sodipodi:cx="38.658855"
id="path2388"
style="fill:url(#radialGradient4364);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
sodipodi:type="arc" />
<path
transform="matrix(0.674116,0.299577,-0.299577,0.674116,54.87409,-13.355762)"
d="M 44.520054,15.50279 C 44.012883,16.381236 39.925351,15.341967 38.998703,15.754538 C 38.072055,16.167108 36.109289,19.900142 35.117113,19.689249 C 34.124936,19.478355 33.850222,15.26973 33.171495,14.515926 C 32.492767,13.762123 28.335913,13.048993 28.229885,12.040207 C 28.123857,11.031421 32.041607,9.4696164 32.548778,8.5911701 C 33.055949,7.7127238 32.449637,3.5389508 33.376285,3.1263806 C 34.302933,2.7138103 36.998949,5.957187 37.991126,6.1680807 C 38.983302,6.3789743 42.765436,4.5125708 43.444163,5.2663741 C 44.122891,6.0201775 41.871371,9.5864995 41.977399,10.595285 C 42.083426,11.604071 45.027225,14.624343 44.520054,15.50279 z "
inkscape:randomized="0"
inkscape:rounded="0.18352206"
inkscape:flatsided="false"
sodipodi:arg2="1.1519173"
sodipodi:arg1="0.52359878"
sodipodi:r2="5.0676599"
sodipodi:r1="8.755579"
sodipodi:cy="11.125"
sodipodi:cx="36.9375"
sodipodi:sides="5"
id="path1345"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="star" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,536 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
height="48"
id="svg2556"
sodipodi:version="0.32"
inkscape:version="0.45"
version="1.0"
sodipodi:docbase="/home/benny/programms/gramps/myicons/scalable"
sodipodi:docname="gramps-font-color.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<defs
id="defs2558">
<linearGradient
id="linearGradient2250"
inkscape:collect="always">
<stop
id="stop2252"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop2254"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2250"
id="linearGradient14344"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-20.547862,13.863133)"
x1="21.289597"
y1="0.9565396"
x2="72.147209"
y2="3.8390646" />
<linearGradient
id="linearGradient2230">
<stop
id="stop2232"
offset="0"
style="stop-color:#d3d7cf;stop-opacity:1;" />
<stop
id="stop2234"
offset="1"
style="stop-color:#818d75;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2230"
id="linearGradient14342"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-20.547851,13.863148)"
x1="48.080193"
y1="-1.1340035"
x2="48.017197"
y2="1.5940925" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4454"
id="radialGradient4590"
gradientUnits="userSpaceOnUse"
cx="18.240929"
cy="21.817987"
fx="18.240929"
fy="21.817987"
r="8.3085051" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2366"
id="linearGradient4586"
gradientUnits="userSpaceOnUse"
x1="18.292673"
y1="13.602121"
x2="17.500893"
y2="25.743469" />
<linearGradient
id="linearGradient4467">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop4469" />
<stop
style="stop-color:#ffffff;stop-opacity:0.24761905;"
offset="1.0000000"
id="stop4471" />
</linearGradient>
<linearGradient
id="linearGradient4454">
<stop
style="stop-color:#729fcf;stop-opacity:0.20784314;"
offset="0.0000000"
id="stop4456" />
<stop
style="stop-color:#729fcf;stop-opacity:0.67619050;"
offset="1.0000000"
id="stop4458" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4487">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop4489" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop4491" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4487"
id="radialGradient4588"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
cx="24.130018"
cy="37.967922"
fx="24.130018"
fy="37.967922"
r="16.528622" />
<linearGradient
id="linearGradient2366">
<stop
id="stop2368"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
style="stop-color:#ffffff;stop-opacity:0.21904762;"
offset="0.50000000"
id="stop2374" />
<stop
id="stop2370"
offset="1.0000000"
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
id="linearGradient4440">
<stop
style="stop-color:#7d7d7d;stop-opacity:1;"
offset="0"
id="stop4442" />
<stop
id="stop4448"
offset="0.50000000"
style="stop-color:#b1b1b1;stop-opacity:1.0000000;" />
<stop
style="stop-color:#686868;stop-opacity:1.0000000;"
offset="1.0000000"
id="stop4444" />
</linearGradient>
<linearGradient
id="linearGradient2846">
<stop
id="stop2848"
offset="0.0000000"
style="stop-color:#8a8a8a;stop-opacity:1.0000000;" />
<stop
id="stop2850"
offset="1.0000000"
style="stop-color:#484848;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
id="linearGradient269">
<stop
id="stop270"
offset="0.0000000"
style="stop-color:#a3a3a3;stop-opacity:1.0000000;" />
<stop
id="stop271"
offset="1"
style="stop-color:#8a8a8a;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient259">
<stop
id="stop260"
offset="0.0000000"
style="stop-color:#fafafa;stop-opacity:1.0000000;" />
<stop
id="stop261"
offset="1.0000000"
style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
id="linearGradient2378">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2380" />
<stop
id="stop4146"
offset="0.25"
style="stop-color:#fefede;stop-opacity:0.91836733;" />
<stop
id="stop2386"
offset="0.5"
style="stop-color:#f5f328;stop-opacity:1;" />
<stop
style="stop-color:#f5f32d;stop-opacity:0.12234043;"
offset="1"
id="stop2382" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4785">
<stop
style="stop-color:#2e3436;stop-opacity:1;"
offset="0"
id="stop4787" />
<stop
style="stop-color:#2e3436;stop-opacity:0;"
offset="1"
id="stop4789" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4785"
id="radialGradient4791"
cx="22.402998"
cy="43.071735"
fx="22.402998"
fy="43.071735"
r="22.318058"
gradientTransform="matrix(1.026073,-4.434013e-3,9.770098e-4,7.524542e-2,-0.626191,41.79022)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient4755">
<stop
style="stop-color:#eeeeec;stop-opacity:1;"
offset="0"
id="stop4757" />
<stop
style="stop-color:#ffffff;stop-opacity:1.0000000"
offset="1"
id="stop4759" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4755"
id="linearGradient4761"
x1="36.668537"
y1="36.383247"
x2="10.303555"
y2="7.4928832"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0.2495557,1.9167039e-2)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2378"
id="radialGradient4364"
gradientUnits="userSpaceOnUse"
cx="38.658855"
cy="9.3411446"
fx="38.658855"
fy="9.3411446"
r="8.341651" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4440"
id="linearGradient4647"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.7730392,-0.1877302,0.179191,0.7581772,42.71329,-12.352936)"
x1="30.656250"
y1="34.000000"
x2="33.218750"
y2="31.062500" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2846"
id="linearGradient4651"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.805118,-0.192885,0.192885,0.805118,51.417196,-17.381556)"
x1="27.366341"
y1="26.580296"
x2="31.335964"
y2="30.557772" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4487"
id="radialGradient5645"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
cx="24.130018"
cy="37.967922"
fx="24.130018"
fy="37.967922"
r="16.528622" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4467"
id="radialGradient5648"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.4574099,-0.349157,0.3032584,1.2658255,58.779285,-19.812754)"
cx="15.414371"
cy="13.078408"
fx="15.414371"
fy="13.078408"
r="6.6562500" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4440"
id="linearGradient5655"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.750126,-0.1797104,0.1738797,0.7257881,70.490607,-15.795443)"
x1="30.656250"
y1="34.000000"
x2="33.218750"
y2="31.062500" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2846"
id="linearGradient5659"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5620635,-0.1346556,0.1346556,0.5620635,75.414967,-12.541146)"
x1="27.366341"
y1="26.580296"
x2="31.335964"
y2="30.557772" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4487"
id="radialGradient6645"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
cx="24.130018"
cy="37.967922"
fx="24.130018"
fy="37.967922"
r="16.528622" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4440"
id="linearGradient6647"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.7730392,-0.1877302,0.179191,0.7581772,42.71329,-12.352936)"
x1="30.656250"
y1="34.000000"
x2="33.218750"
y2="31.062500" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4440"
id="linearGradient6651"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.4776547,-0.3392034,0.3425214,1.369925,-103.68065,-20.257635)"
x1="30.656250"
y1="34.000000"
x2="33.218750"
y2="31.062500" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
gridtolerance="10000"
guidetolerance="10"
objecttolerance="10"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="9.6218182"
inkscape:cx="17.752502"
inkscape:cy="22.664997"
inkscape:document-units="px"
inkscape:current-layer="layer1"
width="48px"
height="48px"
inkscape:window-width="748"
inkscape:window-height="737"
inkscape:window-x="441"
inkscape:window-y="0" />
<metadata
id="metadata2561">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:description></dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/" />
<dc:creator>
<cc:Agent>
<dc:title>Benny Malengier</dc:title>
</cc:Agent>
</dc:creator>
<dc:contributor>
<cc:Agent>
<dc:title>original elemens from
tango: Andreas Nilsson
oxygen guys
Jakub Steiner http://jimmac.musichall.cz</dc:title>
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/2.5/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Attribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<path
sodipodi:type="arc"
style="opacity:0.5;fill:url(#radialGradient4791);fill-opacity:1;stroke:none;stroke-width:1.02499998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path4775"
sodipodi:cx="23.82066"
sodipodi:cy="45.083183"
sodipodi:rx="22.318058"
sodipodi:ry="1.6793786"
d="M 46.138718 45.083183 A 22.318058 1.6793786 0 1 1 1.5026016,45.083183 A 22.318058 1.6793786 0 1 1 46.138718 45.083183 z"
transform="matrix(0.940942,0,0,1.786371,1.8356947,-35.516123)" />
<rect
style="opacity:1;fill:url(#linearGradient4761);fill-opacity:1;stroke:#888a85;stroke-width:1.02492535;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect1314"
width="41.011471"
height="42.98724"
x="3.7379258"
y="2.5313601"
rx="0.99906075"
ry="0.99914879" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.02499962;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4753"
width="39.013622"
height="41.033813"
x="4.7366433"
y="3.5316668"
rx="0"
ry="0" />
<path
style="font-size:29.01771545px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:120.00000477%;writing-mode:lr-tb;text-anchor:start;fill:#75507b;fill-opacity:1;stroke:#5c3566;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial Rounded CE"
d="M 9.5944949,8.966246 L 9.5944949,14.874639 C 10.321825,14.118983 11.063325,13.542785 11.818995,13.146045 C 12.574655,12.739887 13.509795,12.536801 14.624425,12.536786 C 15.909045,12.536801 17.033105,12.843792 17.996595,13.457758 C 18.969505,14.062308 19.720455,14.945496 20.249435,16.107325 C 20.787835,17.259732 21.057045,18.629382 21.057055,20.216279 C 21.057045,21.387573 20.905905,22.464402 20.603655,23.446767 C 20.310815,24.419695 19.881035,25.2651 19.314295,25.982983 C 18.747525,26.700871 18.057985,27.258176 17.245645,27.654902 C 16.442735,28.042183 15.554825,28.235823 14.581915,28.235823 C 13.986815,28.235823 13.424785,28.164979 12.895825,28.023291 C 12.376295,27.881603 11.932335,27.697409 11.563955,27.470708 C 11.195565,27.234562 10.879125,26.993692 10.614645,26.748099 C 10.359605,26.502507 10.019555,26.134119 9.5944949,25.642932 L 9.5944949,26.02549 C 9.5944849,26.752823 9.4197449,27.305406 9.0702449,27.68324 C 8.7207449,28.051629 8.2767949,28.235823 7.7383849,28.235823 C 7.1905149,28.235823 6.7512849,28.051629 6.4206849,27.68324 C 6.0995249,27.305406 5.9389449,26.752823 5.9389449,26.02549 L 5.9389449,9.136271 C 5.9389449,8.352284 6.0947949,7.761917 6.4065149,7.365171 C 6.7276749,6.959019 7.1716249,6.755933 7.7383849,6.755912 C 8.3334649,6.755933 8.7915949,6.949573 9.1127549,7.336833 C 9.4339049,7.714688 9.5944849,8.257825 9.5944949,8.966246 M 9.7786849,20.457149 C 9.7786849,21.996831 10.128185,23.182287 10.827185,24.013519 C 11.535615,24.835313 12.461305,25.246208 13.604265,25.246205 C 14.577185,25.246208 15.413135,24.825867 16.112145,23.985181 C 16.820575,23.135058 17.174795,21.921265 17.174805,20.343798 C 17.174795,19.323653 17.028385,18.445188 16.735575,17.7084 C 16.442735,16.971633 16.027125,16.404882 15.488715,16.008143 C 14.950295,15.601983 14.322145,15.398897 13.604265,15.398885 C 12.867475,15.398897 12.210995,15.601983 11.634805,16.008143 C 11.058595,16.404882 10.605195,16.985802 10.274595,17.750907 C 9.9439849,18.506586 9.7786849,19.408665 9.7786849,20.457149"
id="text3427" />
<path
style="font-size:19.52186584px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:120.00000477%;writing-mode:lr-tb;text-anchor:start;fill:#3465a4;fill-opacity:1;stroke:#204a87;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Carbon Block"
d="M 22.427884,33.874073 C 22.427874,34.069301 22.414864,34.355622 22.388834,34.733036 C 22.375814,35.097452 22.369314,35.364251 22.369314,35.533433 L 19.636254,35.533433 L 19.636254,33.132242 C 19.636254,32.663728 19.375964,32.429466 18.855384,32.429455 C 18.334794,32.429466 18.074504,32.663728 18.074504,33.132242 L 18.074504,40.84338 C 18.074504,41.324921 18.334794,41.565691 18.855384,41.565689 C 19.375964,41.565691 19.636254,41.324921 19.636254,40.84338 L 19.636254,38.286016 L 22.369314,38.286016 L 22.369314,40.784815 C 22.369314,41.552676 21.952844,42.138331 21.119914,42.541783 C 20.456164,42.867147 19.701324,43.029829 18.855384,43.029829 C 17.996414,43.029829 17.241574,42.867147 16.590844,42.541783 C 15.757914,42.138331 15.341444,41.552676 15.341444,40.784815 L 15.341444,33.268895 C 15.341444,31.824288 16.512754,31.10198 18.855384,31.101968 C 20.026684,31.10198 20.885644,31.277677 21.432264,31.629059 C 22.096004,32.05855 22.427874,32.806888 22.427884,33.874073"
id="text3431" />
<path
style="font-size:46.60050201px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Nimbus Roman No9 L"
d="M 43.172979,27.372882 C 41.127511,27.193455 40.912197,27.195143 40.445686,24.57551 L 37.072454,4.264354 L 36.428208,4.264354 L 25.732658,22.207071 C 22.897712,26.979828 22.226015,27.085799 20.790599,27.372882 L 20.790599,28.235823 L 27.814014,28.235823 L 27.814014,27.372882 C 25.983858,27.193455 25.696773,27.302802 25.696773,26.405667 C 25.696773,25.723844 25.80443,25.400873 26.414482,24.180768 L 28.459952,20.558877 L 36.354747,20.558877 L 37.072454,24.826707 C 37.108341,25.149676 37.144226,25.472645 37.144226,25.759728 C 37.144226,27.123374 36.954666,27.15757 34.658001,27.372882 L 34.658001,28.235823 L 43.172979,28.235823 L 43.172979,27.372882 M 29.213546,18.83384 L 34.59636,9.503628 L 36.17532,18.83384 L 29.213546,18.83384"
id="text2044"
sodipodi:nodetypes="cccccccccsccccscccccccc" />
<rect
transform="matrix(0.8855746,0.4644972,-0.4537765,0.8911155,0,0)"
ry="1.8879371"
rx="2.1366627"
y="-39.43214"
x="88.910667"
height="2.5664566"
width="11.009403"
id="rect5641"
style="opacity:0.43315507;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5779866;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<g
id="g14338"
transform="translate(28.672762,9.9011646)">
<rect
transform="matrix(0.7401646,0.6724257,-0.6724257,0.7401646,0,0)"
ry="2.3471549"
rx="2.3471549"
y="12.558686"
x="-0.38879183"
height="4.6943097"
width="38.003391"
id="rect2228"
style="color:#000000;fill:url(#linearGradient14342);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:0.99999928;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
style="opacity:0.46590911;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient14344);stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect2248"
width="35.89901"
height="2.6089065"
x="0.61250293"
y="13.551793"
rx="1.7837232"
ry="1.1017078"
transform="matrix(0.7401651,0.6724251,-0.6724251,0.7401651,0,0)" />
</g>
<g
id="g4360"
transform="translate(-58.425666,15.08829)"
style="opacity:0.81499999">
<path
transform="matrix(1.14985,0,0,1.14985,31.814632,-5.672398)"
d="M 47.000506 9.3411446 A 8.341651 8.341651 0 1 1 30.317204,9.3411446 A 8.341651 8.341651 0 1 1 47.000506 9.3411446 z"
sodipodi:ry="8.341651"
sodipodi:rx="8.341651"
sodipodi:cy="9.3411446"
sodipodi:cx="38.658855"
id="path2388"
style="fill:url(#radialGradient4364);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
sodipodi:type="arc" />
<path
transform="matrix(0.674116,0.299577,-0.299577,0.674116,54.87409,-13.355762)"
d="M 44.520054,15.50279 C 44.012883,16.381236 39.925351,15.341967 38.998703,15.754538 C 38.072055,16.167108 36.109289,19.900142 35.117113,19.689249 C 34.124936,19.478355 33.850222,15.26973 33.171495,14.515926 C 32.492767,13.762123 28.335913,13.048993 28.229885,12.040207 C 28.123857,11.031421 32.041607,9.4696164 32.548778,8.5911701 C 33.055949,7.7127238 32.449637,3.5389508 33.376285,3.1263806 C 34.302933,2.7138103 36.998949,5.957187 37.991126,6.1680807 C 38.983302,6.3789743 42.765436,4.5125708 43.444163,5.2663741 C 44.122891,6.0201775 41.871371,9.5864995 41.977399,10.595285 C 42.083426,11.604071 45.027225,14.624343 44.520054,15.50279 z "
inkscape:randomized="0"
inkscape:rounded="0.18352206"
inkscape:flatsided="false"
sodipodi:arg2="1.1519173"
sodipodi:arg1="0.52359878"
sodipodi:r2="5.0676599"
sodipodi:r1="8.755579"
sodipodi:cy="11.125"
sodipodi:cx="36.9375"
sodipodi:sides="5"
id="path1345"
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="star" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 44 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 44 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 51 KiB

View File

@ -13,11 +13,192 @@
height="48px"
id="svg2108"
sodipodi:version="0.32"
inkscape:version="0.44"
sodipodi:docbase="/home/dona/gramps-svn/src/images"
sodipodi:docname="parents.svg">
inkscape:version="0.45"
sodipodi:docbase="/home/benny/programms/gramps/myicons/scalable"
sodipodi:docname="gramps-parents-open.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/benny/programms/gramps/myicons/48x48/gramps-parents-open.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:modified="TRUE">
<defs
id="defs3">
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7989"
id="linearGradient9977"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,34.751323,26.539682)"
x1="8.7275133"
y1="7.8306885"
x2="22.679893"
y2="14.095237" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7989"
id="linearGradient9975"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,25.0582,1.7354494)"
x1="-6.6627526"
y1="20.072517"
x2="6.8253312"
y2="13.903621" />
<linearGradient
id="linearGradient7989">
<stop
id="stop7991"
offset="0"
style="stop-color:#e2e2e2;stop-opacity:0.94845361;" />
<stop
id="stop7993"
offset="1"
style="stop-color:#ffffff;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7989"
id="linearGradient9973"
gradientUnits="userSpaceOnUse"
x1="4.8333335"
y1="14.349207"
x2="15.314814"
y2="22.814814" />
<linearGradient
id="linearGradient7916">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop7918" />
<stop
style="stop-color:#ffffff;stop-opacity:0.34020618;"
offset="1.0000000"
id="stop7920" />
</linearGradient>
<linearGradient
id="linearGradient1322">
<stop
id="stop1324"
offset="0.0000000"
style="stop-color:#729fcf" />
<stop
id="stop1326"
offset="1.0000000"
style="stop-color:#5187d6;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3824"
id="linearGradient1739"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.386065,0,0,1.320668,-57.80026,8.794486)"
x1="30.935921"
y1="29.553486"
x2="30.935921"
y2="35.803486" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4356"
id="linearGradient1736"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,17.35724,3.355106)"
x1="22.686766"
y1="36.390400"
x2="21.408455"
y2="35.739632" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3816"
id="radialGradient1702"
gradientUnits="userSpaceOnUse"
cx="31.112698"
cy="19.008621"
fx="31.112698"
fy="19.008621"
r="8.6620579" />
<linearGradient
id="linearGradient3493">
<stop
id="stop3495"
offset="0"
style="stop-color:#888a85;stop-opacity:1;" />
<stop
id="stop3497"
offset="1"
style="stop-color:#555753;stop-opacity:0.94117647;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3493"
id="radialGradient1732"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.798508,3.805072e-16,-2.72323e-16,1.168568,-52.17368,24.56388)"
cx="28.089741"
cy="27.203083"
fx="28.089741"
fy="27.203083"
r="13.56536" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3824"
id="linearGradient1729"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.386065,0,0,1.320668,-40.58826,18.03917)"
x1="30.935921"
y1="29.553486"
x2="30.935921"
y2="35.803486" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3816"
id="radialGradient1708"
gradientUnits="userSpaceOnUse"
cx="31.112698"
cy="19.008621"
fx="31.112698"
fy="19.008621"
r="8.6620579" />
<linearGradient
id="linearGradient2614">
<stop
id="stop2616"
offset="0"
style="stop-color:#d3d7cf;stop-opacity:1;" />
<stop
id="stop2618"
offset="1"
style="stop-color:#aeb1a9;stop-opacity:1;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2614"
id="radialGradient1710"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.787998,3.877637e-16,-3.877637e-16,0.787998,6.221198,3.617627)"
cx="29.344931"
cy="17.064077"
fx="29.344931"
fy="17.064077"
r="9.1620579" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4356"
id="linearGradient1720"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.363022,0.239817,-0.251693,1.298712,-31.9507,14.53746)"
x1="20.661695"
y1="35.817974"
x2="22.626925"
y2="36.217758" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4356"
id="linearGradient1717"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,35.79723,12.82885)"
x1="22.686766"
y1="36.390400"
x2="21.408455"
y2="35.739632" />
<linearGradient
inkscape:collect="always"
id="linearGradient4356">
@ -382,6 +563,98 @@
y1="36.390400"
x2="21.408455"
y2="35.739632" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3824"
id="linearGradient3573"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.386065,0,0,1.320668,-57.80026,8.794486)"
x1="30.935921"
y1="29.553486"
x2="30.935921"
y2="35.803486" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4356"
id="linearGradient3575"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,17.35724,3.355106)"
x1="22.686766"
y1="36.390400"
x2="21.408455"
y2="35.739632" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3816"
id="radialGradient3577"
gradientUnits="userSpaceOnUse"
cx="31.112698"
cy="19.008621"
fx="31.112698"
fy="19.008621"
r="8.6620579" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3493"
id="radialGradient3579"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.798508,0,0,1.168568,-52.17368,24.56388)"
cx="28.089741"
cy="27.203083"
fx="28.089741"
fy="27.203083"
r="13.56536" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3824"
id="linearGradient3581"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.386065,0,0,1.320668,-40.58826,18.03917)"
x1="30.935921"
y1="29.553486"
x2="30.935921"
y2="35.803486" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3816"
id="radialGradient3583"
gradientUnits="userSpaceOnUse"
cx="31.112698"
cy="19.008621"
fx="31.112698"
fy="19.008621"
r="8.6620579" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2614"
id="radialGradient3585"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.787998,0,0,0.787998,6.221198,3.617627)"
cx="29.344931"
cy="17.064077"
fx="29.344931"
fy="17.064077"
r="9.1620579" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4356"
id="linearGradient3587"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.363022,0.239817,-0.251693,1.298712,-31.9507,14.53746)"
x1="20.661695"
y1="35.817974"
x2="22.626925"
y2="36.217758" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4356"
id="linearGradient3589"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,35.79723,12.82885)"
x1="22.686766"
y1="36.390400"
x2="21.408455"
y2="35.739632" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
@ -392,8 +665,8 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="31.201438"
inkscape:cy="13.80024"
inkscape:cx="18.263989"
inkscape:cy="16.851119"
inkscape:current-layer="g2292"
showgrid="false"
inkscape:grid-bbox="true"
@ -401,9 +674,9 @@
fill="#9db029"
stroke="#727e0a"
inkscape:window-width="914"
inkscape:window-height="815"
inkscape:window-x="265"
inkscape:window-y="121" />
inkscape:window-height="788"
inkscape:window-x="0"
inkscape:window-y="96" />
<metadata
id="metadata4">
<rdf:RDF>
@ -427,6 +700,12 @@
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
<dc:contributor>
<cc:Agent>
<dc:title>Andreas Nilsson, add sign
Benny Malengier, grouping</dc:title>
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
@ -452,7 +731,7 @@
style="display:inline">
<g
id="g1965"
transform="translate(-2.875,3.5)">
transform="translate(-2.875,1.375)">
<path
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
sodipodi:ry="8.6620579"
@ -460,21 +739,21 @@
sodipodi:cy="19.008621"
sodipodi:cx="31.112698"
id="path4177"
style="opacity:1;color:black;fill:url(#radialGradient4336);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient4336);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc"
transform="matrix(1.77551,0,0,0.959183,-37.37822,11.77153)" />
<path
sodipodi:nodetypes="cczcczc"
id="path2329"
d="M 12.861174,34.636039 L 23.467776,34.636039 C 26.47298,34.636039 29.44826,33.534107 30.538843,30.393398 C 31.574482,27.410922 30.71562,21.73134 23.998106,17.135146 L 11.44696,17.135146 C 4.729446,21.377786 3.889969,27.179977 5.436553,30.570174 C 7.012148,34.023964 9.679193,34.636039 12.861174,34.636039 z "
style="opacity:1;color:black;fill:url(#radialGradient1381);fill-opacity:1;fill-rule:evenodd;stroke:#404604;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:url(#radialGradient1381);fill-opacity:1;fill-rule:evenodd;stroke:#404604;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:1;color:black;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 17.932367,19.786797 C 17.932367,19.786797 15.781044,21.447132 15.966376,23.44733 C 13.92515,21.646536 13.866503,18.195806 13.866503,18.195806 L 17.932367,19.786797 z "
id="path3812"
sodipodi:nodetypes="cccc" />
<path
style="opacity:0.21518986;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.21518986;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 12.966639,33.571836 L 23.283309,33.571836 C 25.923032,33.571836 28.53647,32.603917 29.494421,29.845169 C 30.40411,27.225409 29.399699,22.236555 23.499142,18.199332 L 11.974417,18.199332 C 6.07386,21.925999 5.086477,27.022551 6.444971,30.000446 C 7.828949,33.0342 10.171638,33.571836 12.966639,33.571836 z "
id="path3838"
sodipodi:nodetypes="cczcczc" />
@ -482,11 +761,11 @@
sodipodi:nodetypes="cccc"
id="path3810"
d="M 18.910795,19.786797 C 18.910795,19.786797 21.062118,21.447132 20.876786,23.44733 C 22.918012,21.646536 22.976659,18.195806 22.976659,18.195806 L 18.910795,19.786797 z "
style="opacity:1;color:black;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
transform="translate(-13.25,-3.5)"
sodipodi:type="arc"
style="opacity:1;color:black;fill:url(#radialGradient4330);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient4330);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path3814"
sodipodi:cx="31.112698"
sodipodi:cy="19.008621"
@ -501,12 +780,12 @@
sodipodi:cy="19.008621"
sodipodi:cx="31.112698"
id="path2327"
style="opacity:1;color:black;fill:url(#radialGradient4328);fill-opacity:1;fill-rule:evenodd;stroke:#6f4709;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient4328);fill-opacity:1;fill-rule:evenodd;stroke:#6f4709;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
<path
transform="matrix(0.877095,0,0,0.877095,-9.301073,-4.663733)"
sodipodi:type="arc"
style="opacity:0.12658231;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.12658231;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path3834"
sodipodi:cx="31.112698"
sodipodi:cy="19.008621"
@ -516,14 +795,14 @@
<path
id="path4173"
d="M 22.583894,27.034641 L 26.826534,27.034641 L 24.351661,24.736544 L 23.821331,25.443651 L 23.291,24.913321 L 22.583894,27.034641 z "
style="opacity:1;color:black;fill:url(#linearGradient1372);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:url(#linearGradient1372);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
sodipodi:nodetypes="cccc"
id="path4368"
d="M 8.5479535,33.601747 C 7.3003465,33.056778 6.7419595,31.74347 6.7419595,31.74347 C 7.5832405,27.674334 10.461885,24.697254 10.461885,24.697254 C 10.461885,24.697254 8.1825635,31.108768 8.5479535,33.601747 z "
style="opacity:0.22784807;color:black;fill:url(#linearGradient1369);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient1369);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:0.22784807;color:black;fill:url(#linearGradient1366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient1366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 27.453661,32.743396 C 28.684912,32.162418 29.258041,30.741075 29.258041,30.741075 C 28.298921,26.698092 25.281892,23.898254 25.281892,23.898254 C 25.281892,23.898254 27.746485,30.240856 27.453661,32.743396 z "
id="path4370"
sodipodi:nodetypes="cccc" />
@ -536,7 +815,7 @@
style="opacity:1;display:inline">
<g
id="g1952"
transform="translate(2.125,-3.125)">
transform="translate(2.125,-5.25)">
<path
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
sodipodi:ry="8.6620579"
@ -544,26 +823,26 @@
sodipodi:cy="19.008621"
sodipodi:cx="31.112698"
id="path4306"
style="opacity:1;color:black;fill:url(#radialGradient1978);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient1978);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc"
transform="matrix(1.77551,0,0,0.959183,-24.25322,18.77153)" />
<path
sodipodi:nodetypes="cczcczc"
id="path4308"
d="M 25.986174,41.636039 L 36.592776,41.636039 C 39.59798,41.636039 42.57326,40.534107 43.663843,37.393398 C 44.699482,34.410922 43.84062,28.73134 37.123106,24.135146 L 24.57196,24.135146 C 17.854446,28.377786 17.014969,34.179977 18.561553,37.570174 C 20.137148,41.023964 22.804193,41.636039 25.986174,41.636039 z "
style="opacity:1;color:black;fill:url(#radialGradient1980);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:url(#radialGradient1980);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
sodipodi:nodetypes="cccc"
id="path4310"
d="M 26.693281,25.726136 C 29.875261,28.554563 31.289475,38.807612 31.289475,38.807612 C 31.289475,38.807612 32.703688,28.554564 35.178562,25.54936 L 26.693281,25.726136 z "
style="opacity:1;color:black;fill:url(#linearGradient1982);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:url(#linearGradient1982);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:1;color:black;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 28.972721,26.786797 C 28.972721,26.786797 26.821398,28.447132 27.00673,30.44733 C 24.965504,28.646536 24.906857,25.195806 24.906857,25.195806 L 28.972721,26.786797 z "
id="path4312"
sodipodi:nodetypes="cccc" />
<path
style="opacity:0.21518986;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.21518986;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 25.914862,40.593933 L 36.408309,40.571836 C 39.048032,40.571836 41.66147,39.603917 42.619421,36.845169 C 43.52911,34.225409 42.524699,29.236555 36.624142,25.199332 L 25.099417,24.956264 C 19.19886,28.682931 18.056797,33.779483 19.437388,37.000446 C 20.81798,40.221409 22.832599,40.571836 25.914862,40.593933 z "
id="path4314"
sodipodi:nodetypes="cczcczc" />
@ -571,11 +850,11 @@
sodipodi:nodetypes="cccc"
id="path4316"
d="M 33.410795,26.786797 C 33.410795,26.786797 35.562118,28.447132 35.376786,30.44733 C 37.418012,28.646536 37.476659,25.195806 37.476659,25.195806 L 33.410795,26.786797 z "
style="opacity:1;color:black;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
transform="translate(-0.125,3.5)"
sodipodi:type="arc"
style="opacity:1;color:black;fill:url(#radialGradient1984);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient1984);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path4318"
sodipodi:cx="31.112698"
sodipodi:cy="19.008621"
@ -589,12 +868,12 @@
sodipodi:cy="19.008621"
sodipodi:cx="31.112698"
id="path4320"
style="opacity:1;color:black;fill:url(#radialGradient1986);fill-opacity:1;fill-rule:evenodd;stroke:#c17d11;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient1986);fill-opacity:1;fill-rule:evenodd;stroke:#c17d11;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
<path
transform="matrix(0.877095,0,0,0.877095,3.823927,2.336267)"
sodipodi:type="arc"
style="opacity:0.19620254;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.19620254;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path4322"
sodipodi:cx="31.112698"
sodipodi:cy="19.008621"
@ -605,9 +884,9 @@
sodipodi:nodetypes="cccc"
id="path4354"
d="M 21.85179,40.775197 C 20.604183,40.230228 20.045796,38.91692 20.045796,38.91692 C 20.887077,34.847784 23.765721,31.870704 23.765721,31.870704 C 23.765721,31.870704 21.4864,38.282218 21.85179,40.775197 z "
style="opacity:0.22784807;color:black;fill:url(#linearGradient1988);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient1988);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:0.22784807;color:black;fill:url(#linearGradient1990);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient1990);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 40.757497,39.916846 C 41.988748,39.335868 42.561877,37.914525 42.561877,37.914525 C 41.602757,33.871542 38.585728,31.071704 38.585728,31.071704 C 38.585728,31.071704 41.050321,37.414306 40.757497,39.916846 z "
id="path4364"
sodipodi:nodetypes="cccc" />
@ -622,82 +901,136 @@
id="g2292"
transform="translate(-8.237686,3.795331)">
<g
id="g2330"
transform="matrix(0.788681,0,0,0.813202,6.548296,8.214314)">
id="g3540"
transform="matrix(0.63351,0,0,0.63351,29.8034,-5.62889)">
<path
transform="matrix(1.77551,0,0,0.959183,-24.25322,18.77153)"
sodipodi:type="arc"
style="opacity:1;color:black;fill:url(#radialGradient2343);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path2294"
sodipodi:cx="31.112698"
sodipodi:cy="19.008621"
sodipodi:rx="8.6620579"
sodipodi:ry="8.6620579"
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
id="path3514"
d="M -9.2855096,53.742947 L -3.4049346,53.742947 L -6.8352696,50.707924 L -7.5703416,51.641777 L -8.3054146,50.941387 L -9.2855096,53.742947 z "
style="color:#000000;fill:url(#linearGradient3573);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:1;color:black;fill:url(#radialGradient2345);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 25.986174,41.636039 L 36.592776,41.636039 C 39.59798,41.636039 42.57326,40.534107 43.663843,37.393398 C 44.699482,34.410922 43.84062,28.73134 37.123106,24.135146 L 24.57196,24.135146 C 17.854446,28.377786 17.014969,34.179977 18.561553,37.570174 C 20.137148,41.023964 22.804193,41.636039 25.986174,41.636039 z "
id="path2296"
sodipodi:nodetypes="cczcczc" />
<path
style="opacity:1;color:black;fill:url(#linearGradient2347);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 26.693281,25.726136 C 29.875261,28.554563 31.289475,38.807612 31.289475,38.807612 C 31.289475,38.807612 32.703688,28.554564 35.178562,25.54936 L 26.693281,25.726136 z "
id="path2298"
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient3575);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M -2.5356956,61.282317 C -0.82910164,60.515038 -0.034707641,58.637916 -0.034707641,58.637916 C -1.3641106,53.298477 -5.5459086,49.600821 -5.5459086,49.600821 C -5.5459086,49.600821 -2.1298226,57.977292 -2.5356956,61.282317 z "
id="path3516"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
id="path2300"
d="M 28.972721,26.786797 C 28.972721,26.786797 26.821398,28.447132 27.00673,30.44733 C 24.965504,28.646536 24.906857,25.195806 24.906857,25.195806 L 28.972721,26.786797 z "
style="opacity:1;color:black;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
sodipodi:ry="8.6620579"
sodipodi:rx="8.6620579"
sodipodi:cy="19.008621"
sodipodi:cx="31.112698"
id="path3518"
style="color:#000000;fill:url(#radialGradient3577);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc"
transform="matrix(2.460972,0,0,1.266762,-74.20479,42.83012)" />
<path
sodipodi:nodetypes="cczcczc"
id="path2302"
d="M 25.914862,40.593933 L 36.408309,40.571836 C 39.048032,40.571836 41.66147,39.603917 42.619421,36.845169 C 43.52911,34.225409 42.524699,29.236555 36.624142,25.199332 L 25.099417,24.956264 C 19.19886,28.682931 18.056797,33.779483 19.437388,37.000446 C 20.81798,40.221409 22.832599,40.571836 25.914862,40.593933 z "
style="opacity:0.21518986;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
id="path3520"
d="M -4.5697286,73.026546 L 10.131711,73.026546 C 14.297119,73.026546 18.421051,71.57126 19.93267,67.423426 C 21.368133,63.484565 20.177694,55.983723 10.866783,49.913676 L -6.5299206,49.913676 C -15.840832,55.516795 -17.004402,63.179563 -14.860736,67.656888 C -12.676859,72.218198 -8.9801606,73.026546 -4.5697286,73.026546 z "
style="color:#000000;fill:url(#radialGradient3579);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.35297143px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:1;color:black;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 33.410795,26.786797 C 33.410795,26.786797 35.562118,28.447132 35.376786,30.44733 C 37.418012,28.646536 37.476659,25.195806 37.476659,25.195806 L 33.410795,26.786797 z "
id="path2304"
sodipodi:nodetypes="cccc"
id="path3522"
d="M -3.5896316,52.014846 C 0.82079936,55.750259 2.7809914,69.291133 2.7809914,69.291133 C 2.7809914,69.291133 4.7411824,55.75026 8.1715194,51.781384 L -3.5896316,52.014846 z "
style="color:#000000;fill:url(#linearGradient3581);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M -0.43017964,53.415627 C -0.43017964,53.415627 -3.4120536,55.608378 -3.1551716,58.249976 C -5.9844436,55.871725 -6.0657316,51.314456 -6.0657316,51.314456 L -0.43017964,53.415627 z "
id="path3524"
sodipodi:nodetypes="cccc" />
<path
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
sodipodi:ry="8.6620579"
sodipodi:rx="8.6620579"
sodipodi:cy="19.008621"
sodipodi:cx="31.112698"
id="path2306"
style="opacity:1;color:black;fill:url(#radialGradient2349);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc"
transform="translate(-0.125,3.5)" />
style="opacity:0.21518986;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.35297108px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M -4.6685716,71.65027 L 9.8760284,71.621087 C 13.534855,71.621087 17.15725,70.342787 18.485033,66.699397 C 19.745921,63.239564 18.353742,56.650944 10.175186,51.319113 L -5.7988316,50.998101 C -13.977387,55.919791 -15.56036,62.650644 -13.646771,66.904467 C -11.733181,71.158289 -8.9407886,71.621087 -4.6685716,71.65027 z "
id="path3526"
sodipodi:nodetypes="cczcczc" />
<path
sodipodi:nodetypes="cccc"
id="path3528"
d="M 5.7212794,53.415627 C 5.7212794,53.415627 8.7031524,55.608378 8.4462704,58.249976 C 11.275542,55.871725 11.35683,51.314456 11.35683,51.314456 L 5.7212794,53.415627 z "
style="color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
transform="matrix(1.386065,0,0,1.320668,-40.76151,22.6615)"
sodipodi:type="arc"
style="opacity:1;color:black;fill:url(#radialGradient2351);fill-opacity:1;fill-rule:evenodd;stroke:#c17d11;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path2308"
style="color:#000000;fill:url(#radialGradient3583);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path3530"
sodipodi:cx="31.112698"
sodipodi:cy="19.008621"
sodipodi:rx="8.6620579"
sodipodi:ry="8.6620579"
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
<path
transform="matrix(1.386065,0,0,1.320668,-40.58825,18.03917)"
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
sodipodi:ry="8.6620579"
sodipodi:rx="8.6620579"
sodipodi:cy="19.008621"
sodipodi:cx="31.112698"
id="path2310"
style="opacity:0.19620254;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc"
transform="matrix(0.877095,0,0,0.877095,3.823927,2.336267)" />
id="path3532"
style="color:#000000;fill:url(#radialGradient3585);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
<path
style="opacity:0.22784807;color:black;fill:url(#linearGradient2353);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 21.85179,40.775197 C 20.604183,40.230228 20.045796,38.91692 20.045796,38.91692 C 20.887077,34.847784 23.765721,31.870704 23.765721,31.870704 C 23.765721,31.870704 21.4864,38.282218 21.85179,40.775197 z "
id="path2312"
sodipodi:nodetypes="cccc" />
transform="matrix(1.215711,0,0,1.158351,-35.28805,21.1246)"
sodipodi:type="arc"
style="opacity:0.19620254;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path3534"
sodipodi:cx="31.112698"
sodipodi:cy="19.008621"
sodipodi:rx="8.6620579"
sodipodi:ry="8.6620579"
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
<path
sodipodi:nodetypes="cccc"
id="path2314"
d="M 40.757497,39.916846 C 41.988748,39.335868 42.561877,37.914525 42.561877,37.914525 C 41.602757,33.871542 38.585728,31.071704 38.585728,31.071704 C 38.585728,31.071704 41.050321,37.414306 40.757497,39.916846 z "
style="opacity:0.22784807;color:black;fill:url(#linearGradient2355);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
id="path3536"
d="M -10.300254,71.889659 C -12.029518,71.169936 -12.803478,69.435492 -12.803478,69.435492 C -11.637409,64.061515 -7.6474206,60.12978 -7.6474206,60.12978 C -7.6474206,60.12978 -10.806708,68.597262 -10.300254,71.889659 z "
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient3587);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient3589);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 15.904285,70.756063 C 17.610879,69.988784 18.405273,68.111661 18.405273,68.111661 C 17.07587,62.772223 12.894072,59.074567 12.894072,59.074567 C 12.894072,59.074567 16.310158,67.451038 15.904285,70.756063 z "
id="path3538"
sodipodi:nodetypes="cccc" />
</g>
<g
id="g9963"
transform="matrix(0.7382338,0,0,0.8681841,8.7384492,-5.0102514)">
<path
sodipodi:nodetypes="ccccccccc"
id="path7979"
d="M 24.126984,5.5873016 L 31.830688,23.78836 L 18.962963,30.433863 L 14.47619,30.26455 L 7.5343915,24.042328 L 0.33862434,4.1481481 L 9.6507937,12.952381 L 12.275133,13.037037 L 24.126984,5.5873016 z "
style="fill:#3467c1;fill-opacity:1;fill-rule:evenodd;stroke:#114fb7;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccccsc"
id="path7977"
d="M 19.047619,29.62963 C 19.89418,29.079366 30.814814,23.492063 30.814814,23.492063 L 23.703704,6.6031746 L 12.698413,13.883598 L 9.9894183,13.798942 L 1.4391534,5.5873016 L 7.957672,23.280423 C 7.957672,23.280423 14.645503,29.544974 15.068783,29.544974 C 15.492063,29.544974 18.243386,29.62963 19.047619,29.62963 z "
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#4f88d4;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccc"
id="path7002"
d="M 11.174603,13.460317 L 1.8624339,5.5873016 L 8.4656085,23.195768 L 15.322751,29.037037 L 17.523809,29.206349 L 11.174603,13.460317 z "
style="fill:url(#linearGradient9973);fill-opacity:1;fill-rule:evenodd;stroke:#8d9ac9;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccc"
id="path8003"
d="M 11.25926,13.502645 L 23.026454,6.0529102 L 30.222222,23.322752 L 18.793652,29.037037 L 17.439154,29.206349 L 11.25926,13.502645 z "
style="fill:url(#linearGradient9975);fill-opacity:1;fill-rule:evenodd;stroke:#8d9ac9;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccc"
id="path9957"
d="M 10.476191,13.671958 L 16.21164,28.486772 L 15.57672,28.31746 L 9.1428571,22.899471 L 3.1746032,7.4074074 L 10.476191,13.671958 z "
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
id="path9961"
d="M 22.666667,6.9841274 L 29.333333,22.899471 L 18.328042,28.444445 L 12.74074,13.883599 L 22.666667,6.9841274 z "
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
id="path8015"
d="M 17.227514,29.037038 L 23.915344,18.243386 L 17.227513,2.6666659 L 11.132275,13.121694 L 17.227514,29.037038 z "
style="fill:url(#linearGradient9977);fill-opacity:1;fill-rule:evenodd;stroke:#8d9ac9;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
id="path9959"
d="M 17.20635,4.0634929 L 23.365079,18.328042 L 17.354498,27.640212 L 11.89418,13.079366 L 17.20635,4.0634929 z "
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</g>

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -7,15 +7,17 @@
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48px"
height="48px"
id="svg2108"
sodipodi:version="0.32"
inkscape:version="0.43"
sodipodi:docbase="/home/benny/programms/gramps/myicons/scalable"
sodipodi:docname="gramps-parents_2.svg">
inkscape:version="0.45"
sodipodi:docbase="/home/benny/programms/gramps/gramps23/src/images/scalable"
sodipodi:docname="gramps-parents.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<defs
id="defs3">
<linearGradient
@ -531,7 +533,7 @@
xlink:href="#linearGradient3493"
id="radialGradient3579"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.798508,3.805072e-16,-2.72323e-16,1.168568,-52.17368,24.56388)"
gradientTransform="matrix(1.798508,0,0,1.168568,-52.17368,24.56388)"
cx="28.089741"
cy="27.203083"
fx="28.089741"
@ -562,7 +564,7 @@
xlink:href="#linearGradient2614"
id="radialGradient3585"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.787998,3.877637e-16,-3.877637e-16,0.787998,6.221198,3.617627)"
gradientTransform="matrix(0.787998,0,0,0.787998,6.221198,3.617627)"
cx="29.344931"
cy="17.064077"
fx="29.344931"
@ -599,7 +601,7 @@
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="18.263989"
inkscape:cy="-3.148881"
inkscape:cy="16.851119"
inkscape:current-layer="g2292"
showgrid="false"
inkscape:grid-bbox="true"
@ -607,9 +609,9 @@
fill="#9db029"
stroke="#727e0a"
inkscape:window-width="914"
inkscape:window-height="814"
inkscape:window-x="66"
inkscape:window-y="57" />
inkscape:window-height="788"
inkscape:window-x="61"
inkscape:window-y="109" />
<metadata
id="metadata4">
<rdf:RDF>
@ -658,7 +660,7 @@
style="display:inline">
<g
id="g1965"
transform="translate(-2.875,3.5)">
transform="translate(-2.875,1.375)">
<path
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
sodipodi:ry="8.6620579"
@ -666,21 +668,21 @@
sodipodi:cy="19.008621"
sodipodi:cx="31.112698"
id="path4177"
style="opacity:1;color:black;fill:url(#radialGradient4336);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient4336);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc"
transform="matrix(1.77551,0,0,0.959183,-37.37822,11.77153)" />
<path
sodipodi:nodetypes="cczcczc"
id="path2329"
d="M 12.861174,34.636039 L 23.467776,34.636039 C 26.47298,34.636039 29.44826,33.534107 30.538843,30.393398 C 31.574482,27.410922 30.71562,21.73134 23.998106,17.135146 L 11.44696,17.135146 C 4.729446,21.377786 3.889969,27.179977 5.436553,30.570174 C 7.012148,34.023964 9.679193,34.636039 12.861174,34.636039 z "
style="opacity:1;color:black;fill:url(#radialGradient1381);fill-opacity:1;fill-rule:evenodd;stroke:#404604;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:url(#radialGradient1381);fill-opacity:1;fill-rule:evenodd;stroke:#404604;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:1;color:black;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 17.932367,19.786797 C 17.932367,19.786797 15.781044,21.447132 15.966376,23.44733 C 13.92515,21.646536 13.866503,18.195806 13.866503,18.195806 L 17.932367,19.786797 z "
id="path3812"
sodipodi:nodetypes="cccc" />
<path
style="opacity:0.21518986;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.21518986;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 12.966639,33.571836 L 23.283309,33.571836 C 25.923032,33.571836 28.53647,32.603917 29.494421,29.845169 C 30.40411,27.225409 29.399699,22.236555 23.499142,18.199332 L 11.974417,18.199332 C 6.07386,21.925999 5.086477,27.022551 6.444971,30.000446 C 7.828949,33.0342 10.171638,33.571836 12.966639,33.571836 z "
id="path3838"
sodipodi:nodetypes="cczcczc" />
@ -688,11 +690,11 @@
sodipodi:nodetypes="cccc"
id="path3810"
d="M 18.910795,19.786797 C 18.910795,19.786797 21.062118,21.447132 20.876786,23.44733 C 22.918012,21.646536 22.976659,18.195806 22.976659,18.195806 L 18.910795,19.786797 z "
style="opacity:1;color:black;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
transform="translate(-13.25,-3.5)"
sodipodi:type="arc"
style="opacity:1;color:black;fill:url(#radialGradient4330);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient4330);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path3814"
sodipodi:cx="31.112698"
sodipodi:cy="19.008621"
@ -707,12 +709,12 @@
sodipodi:cy="19.008621"
sodipodi:cx="31.112698"
id="path2327"
style="opacity:1;color:black;fill:url(#radialGradient4328);fill-opacity:1;fill-rule:evenodd;stroke:#6f4709;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient4328);fill-opacity:1;fill-rule:evenodd;stroke:#6f4709;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
<path
transform="matrix(0.877095,0,0,0.877095,-9.301073,-4.663733)"
sodipodi:type="arc"
style="opacity:0.12658231;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.12658231;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path3834"
sodipodi:cx="31.112698"
sodipodi:cy="19.008621"
@ -722,14 +724,14 @@
<path
id="path4173"
d="M 22.583894,27.034641 L 26.826534,27.034641 L 24.351661,24.736544 L 23.821331,25.443651 L 23.291,24.913321 L 22.583894,27.034641 z "
style="opacity:1;color:black;fill:url(#linearGradient1372);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:url(#linearGradient1372);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
sodipodi:nodetypes="cccc"
id="path4368"
d="M 8.5479535,33.601747 C 7.3003465,33.056778 6.7419595,31.74347 6.7419595,31.74347 C 7.5832405,27.674334 10.461885,24.697254 10.461885,24.697254 C 10.461885,24.697254 8.1825635,31.108768 8.5479535,33.601747 z "
style="opacity:0.22784807;color:black;fill:url(#linearGradient1369);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient1369);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:0.22784807;color:black;fill:url(#linearGradient1366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient1366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 27.453661,32.743396 C 28.684912,32.162418 29.258041,30.741075 29.258041,30.741075 C 28.298921,26.698092 25.281892,23.898254 25.281892,23.898254 C 25.281892,23.898254 27.746485,30.240856 27.453661,32.743396 z "
id="path4370"
sodipodi:nodetypes="cccc" />
@ -742,7 +744,7 @@
style="opacity:1;display:inline">
<g
id="g1952"
transform="translate(2.125,-3.125)">
transform="translate(2.125,-5.25)">
<path
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
sodipodi:ry="8.6620579"
@ -750,26 +752,26 @@
sodipodi:cy="19.008621"
sodipodi:cx="31.112698"
id="path4306"
style="opacity:1;color:black;fill:url(#radialGradient1978);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient1978);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc"
transform="matrix(1.77551,0,0,0.959183,-24.25322,18.77153)" />
<path
sodipodi:nodetypes="cczcczc"
id="path4308"
d="M 25.986174,41.636039 L 36.592776,41.636039 C 39.59798,41.636039 42.57326,40.534107 43.663843,37.393398 C 44.699482,34.410922 43.84062,28.73134 37.123106,24.135146 L 24.57196,24.135146 C 17.854446,28.377786 17.014969,34.179977 18.561553,37.570174 C 20.137148,41.023964 22.804193,41.636039 25.986174,41.636039 z "
style="opacity:1;color:black;fill:url(#radialGradient1980);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:url(#radialGradient1980);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
sodipodi:nodetypes="cccc"
id="path4310"
d="M 26.693281,25.726136 C 29.875261,28.554563 31.289475,38.807612 31.289475,38.807612 C 31.289475,38.807612 32.703688,28.554564 35.178562,25.54936 L 26.693281,25.726136 z "
style="opacity:1;color:black;fill:url(#linearGradient1982);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:url(#linearGradient1982);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:1;color:black;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 28.972721,26.786797 C 28.972721,26.786797 26.821398,28.447132 27.00673,30.44733 C 24.965504,28.646536 24.906857,25.195806 24.906857,25.195806 L 28.972721,26.786797 z "
id="path4312"
sodipodi:nodetypes="cccc" />
<path
style="opacity:0.21518986;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.21518986;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 25.914862,40.593933 L 36.408309,40.571836 C 39.048032,40.571836 41.66147,39.603917 42.619421,36.845169 C 43.52911,34.225409 42.524699,29.236555 36.624142,25.199332 L 25.099417,24.956264 C 19.19886,28.682931 18.056797,33.779483 19.437388,37.000446 C 20.81798,40.221409 22.832599,40.571836 25.914862,40.593933 z "
id="path4314"
sodipodi:nodetypes="cczcczc" />
@ -777,11 +779,11 @@
sodipodi:nodetypes="cccc"
id="path4316"
d="M 33.410795,26.786797 C 33.410795,26.786797 35.562118,28.447132 35.376786,30.44733 C 37.418012,28.646536 37.476659,25.195806 37.476659,25.195806 L 33.410795,26.786797 z "
style="opacity:1;color:black;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
transform="translate(-0.125,3.5)"
sodipodi:type="arc"
style="opacity:1;color:black;fill:url(#radialGradient1984);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient1984);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path4318"
sodipodi:cx="31.112698"
sodipodi:cy="19.008621"
@ -795,12 +797,12 @@
sodipodi:cy="19.008621"
sodipodi:cx="31.112698"
id="path4320"
style="opacity:1;color:black;fill:url(#radialGradient1986);fill-opacity:1;fill-rule:evenodd;stroke:#c17d11;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:1;color:#000000;fill:url(#radialGradient1986);fill-opacity:1;fill-rule:evenodd;stroke:#c17d11;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
<path
transform="matrix(0.877095,0,0,0.877095,3.823927,2.336267)"
sodipodi:type="arc"
style="opacity:0.19620254;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.19620254;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path4322"
sodipodi:cx="31.112698"
sodipodi:cy="19.008621"
@ -811,9 +813,9 @@
sodipodi:nodetypes="cccc"
id="path4354"
d="M 21.85179,40.775197 C 20.604183,40.230228 20.045796,38.91692 20.045796,38.91692 C 20.887077,34.847784 23.765721,31.870704 23.765721,31.870704 C 23.765721,31.870704 21.4864,38.282218 21.85179,40.775197 z "
style="opacity:0.22784807;color:black;fill:url(#linearGradient1988);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient1988);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:0.22784807;color:black;fill:url(#linearGradient1990);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient1990);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 40.757497,39.916846 C 41.988748,39.335868 42.561877,37.914525 42.561877,37.914525 C 41.602757,33.871542 38.585728,31.071704 38.585728,31.071704 C 38.585728,31.071704 41.050321,37.414306 40.757497,39.916846 z "
id="path4364"
sodipodi:nodetypes="cccc" />
@ -829,7 +831,7 @@
transform="translate(-8.237686,3.795331)">
<g
id="g3540"
transform="matrix(0.63351,0,0,0.63351,29.8034,-3.50389)">
transform="matrix(0.63351,0,0,0.63351,29.8034,-5.62889)">
<path
id="path3514"
d="M -9.2855096,53.742947 L -3.4049346,53.742947 L -6.8352696,50.707924 L -7.5703416,51.641777 L -8.3054146,50.941387 L -9.2855096,53.742947 z "

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 45 KiB